diff --git a/GraphicalRepresentation.png b/GraphicalRepresentation.png new file mode 100644 index 000000000..e3ea27433 Binary files /dev/null and b/GraphicalRepresentation.png differ diff --git a/Group 1 Members.md b/Group 1 Members.md new file mode 100644 index 000000000..e817538d1 --- /dev/null +++ b/Group 1 Members.md @@ -0,0 +1,7 @@ +GROUP 1 - Missing Data & Imputation: + +Elizabeth Subject-Scott + +Michael Underwood + +Javier Estrada diff --git a/Slides.html b/Slides.html new file mode 100644 index 000000000..8729daab7 --- /dev/null +++ b/Slides.html @@ -0,0 +1,4075 @@ + + + + + + + + + + + + + + + Missing Data and Imputation + + + + + + + + + + + + + + + + + + + +
+
+ +
+

Missing Data and Imputation

+

Michael Underwood

+

Elizabeth Subject-Scott

+

Javier Estrada

+
+ +
+

What is Missing Data?

+
    +
  • Missing data occurs when there are missing values in a dataset +
      +
    • Can be intentional or unintentional
    • +
  • +
  • Missing data is classified into 3 different categories: +
      +
    • Missing Completely At Random (MCAR)
    • +
    • Missing At Random (MAR)
    • +
    • Missing Not At Random (MNAR)
    • +
  • +
+
+
+

+ +

X are the completely observed variables.

+

Y are the partly missing variables.

+

Z is the component of the cause of missingness unrelated to X and Y.

+

R is the missingness.

+
+
+

Methods to Handle Missing Data

+
    +
  • Likelihood Bayesian Method +
      +
    • Predicts missing values based on a previous predictive distribution.
    • +
  • +
  • Weighting Method +
      +
    • Uses weights from available data to adjust for missing values.
    • +
  • +
  • Imputation Method +
      +
    • Uses estimates from original data to determine missing values
    • +
  • +
+
+
+

Deleting Missing Data

+
    +
  • When type is MCAR and the amount of missing data is small, deletion can be used.

  • +
  • 2 Types

    +
      +
    • Listwise deletion occurs when the entire observation is removed.

    • +
    • Pairwise deletion occurs when the variable of an observation is removed.

    • +
  • +
  • Deleting missing data can lead to the loss of important information regarding your dataset and is not recommended.

  • +
+
+
+

Preferred Method:

+
    +
  • Imputation

    +
      +
    • 2 Types

      +
        +
      • Single Imputation

        +
          +
        • Only one estimate is used to replace the missing data.
        • +
      • +
      • Multiple Imputation

        +
          +
        • Various estimates are used to replace the missing data by creating mulitple versions of the original dataset.
        • +
      • +
    • +
  • +
+
+
+

Single or Univariate Imputation

+
    +
  • Methods include:

    +
      +
    • Using the mean to replace a missing value. +
        +
      • The problem with this method is that it reduces the variance which leads to a smaller confidence interval.
      • +
    • +
    • Last Observation Carried Forward (LOCF) replaces a missing value with a previously observed value (the most recent value is carried forward). +
        +
      • The problem with this method is that it assumes that the previous observed value is perpetual, when in reality that may not be the case.
      • +
    • +
  • +
+
+
+

Multiple Imputation

+
    +
  • A set of m plausible values are generated for each unobserved data point, resulting in M complete data sets.
  • +
  • The new values are randomly drawn from predictive distributions either through joint modeling (JM) or fully conditional specification (FCS).
  • +
  • It is then analyzed and the results are combined, or pooled together, to obtain a single value for the missing data.
  • +
  • Multiple imputation by chained methods (MICE) is the most common and preferred method of multiple imputation.
  • +
+
+
+

Other Methods of Imputation

+
    +
  • Regression Imputation is based on a linear regression model. Missing data is randomly drawn from a conditional distribution when variables are continuous and from a logistic regression model when they are categorical.

  • +
  • Predictive Mean Matching is also based on a linear regression model. The approach is the same as regression imputation except instead of random draws from a conditional distribution, missing values are based on predicted values of the outcome variable.

  • +
+
+
+

+
    +
  • Hot Deck (HD) imputation is when a missing value is replaced by an observed response of a similar unit, also known as the donor. It can be either random or deterministic, which is based on a metric or value. It does not rely on model fitting.

  • +
  • Stochastic Regression (SR) Imputation is an extension of regression imputation. The process is the same but a residual term from the normal distribution of the regression of the predictor outcome is added to the imputed value. This maintains the variability of the data.

  • +
+
+
+

+
    +
  • Random Forest (RF) Imputation is based on machine learning algorithms. Missing values are first replaced with the mean or mode of that particular variable and then the dataset is split into a training set and a prediction set. The missing values are then replaced with predictions from these sets. This type of imputation can be used on continuous or categorical variables with complex interactions.
  • +
+
+
+

Methodology of Multiple Imputation

+
    +
  • Point of multiple imputation +
      +
    • Not to create artificial values for the missing data
    • +
    • Intended to be a tool in analyzing data with missing values
    • +
  • +
  • Developed by Donald Rubin, Harvard Professor in the 70s +
      +
    • Previous method was not correct +
        +
      • It is impossible to calculate missing data with certainty.
      • +
      • It did not take into account the estimates in error in the predictions.
      • +
      • He recommended creating multiple datasets, based on the Bayesian method.
      • +
      • It gives more precise estimates than using just one imputed dataset.
      • +
    • +
    • According to Rubin’s Rule, in multiple imputation missing values are replaced by m imputed values which result in M complete datasets. +
        +
      • For each of the M datasets, an estimate of \(\theta\) is acquired.
      • +
    • +
  • +
+
+
+

Pooling Estimates

+
    +
  • To calculate the pooled mean differences of \(\theta\):
  • +
+

\[{\overline{\theta}}_{M} = \displaystyle \frac{1}{M}\sum_{m = 1}^{M} {\hat{\theta}}_{m}\]

+
    +
  • This is the average of m estimates of M imputed datasets.
  • +
+
+
+

Pooling Standard Errors

+
    +
  • To calculate the proposed variance estimator of \({\hat{\theta}}_{m}\):
  • +
+

\[{\hat{\Phi}}_{M} = {\overline{\phi}}_{M} + (1+\displaystyle \frac{1}{M})B_{M}\]

+
    +
  • This is the total variance and is made up of two parts: the average within imputation variance and the between imputation variance (with a correction factor).

  • +
  • The average within imputation variance (normal standard error) is:

  • +
+

\[{\overline{\phi}}_{M} = \displaystyle \frac{1}{M}\sum_{m=1}^{M}{SE}^2\]

+

(It will be large in small samples and small in large samples.)

+
    +
  • The between imputation variance (how much extra variation there is due to the imputation process) is:
  • +
+

\[B_{M} = \displaystyle \frac{1}{M-1}\sum_{m = 1}^{M}({\hat{\theta}}_{m}-{\overline{\theta}}_{m})^{2}\]

+
    +
  • When the between variance is greater than the within variance, then greater efficiency occurs and more accurate estimates can be achieved by increasing M.

  • +
  • When the within variance is greater than the between variance, then little is gained by increasing M.

  • +
  • To calculate the total standard error:

  • +
+

\[SE_{pooled} = {\sqrt{\hat{\Phi}}_{M}}\]

+
+
+

Significance Testing

+

\[Wald_{pooled} = \frac{(\overline{\theta} - {\theta_{0}})^2}{{\hat{\Phi}}_{M}}\]

+
    +
  • The Wald test follows a t-distribution with the degrees of freedom as follows:
  • +
+

\[df = (M-1)(1+\frac{1}{M+1} * \frac{\overline{\theta}_{M}}{B_{M}})^2\]

+
    +
  • The 2 sided t-value is as follows:
  • +
+

\[t_{df, 1-\alpha/2}\]

+
    +
  • To test for significance using F-distribution:
  • +
+

\[ F_{1,df} = t^{2}_{df, 1-\alpha/2}\]

+
+
+

Assumptions for Multiple Imputation

+
    +
  • Observed data follow a normal distribution. If not normal, a transformation is first needed.

  • +
  • Missing data are classified as MAR, which is the probability that a missing value depends only on observed values and not unobserved values.

  • +
  • The parameters \({\theta}\) of the data model and the parameters \({\phi}\) of the model for the missing values are distinct. That is, knowing the values of \({\theta}\) does not provide any information about \({\phi}\).

  • +
+
+
+

Steps in Multiple Imputation:

+
+
+
+ +
+
+
    +
  • Step 1: Impute missing data

  • +
  • Step 2: Run regression models on all imputation sets

  • +
  • Step 3: Pool regression results into one regression result

  • +
+
+
+

MICE in R

+
    +
  • MICE = Multivariate Imputation by Chained Equations.

  • +
  • mice() method in R.

  • +
  • The method creates multiple imputations (replacement values) for multivariate missing data.

  • +
  • The MICE algorithm can impute mixes of continuous, binary, unordered categorical and ordered categorical data.

  • +
  • This can be done using the imputation regressions of the mice() method such as:

  • +
  • predictive mean matching (numeric data)

  • +
  • logistic regression imputation (binary data with two factorial levels)

  • +
  • polytomous regression imputation for unordered categorical data (factor > 2 levels)

  • +
  • proportional odds model for (ordered, > 2 levels).

  • +
+
+
+

Dataset

+
    +
  • King County, Seattle Home Sale Prices between 2014 and 2015

    +
      +
    • Contains the sale prices of 21,613 houses

    • +
    • The original dataset contained 21 columns with various selling attributes.

      +
        +
      • For the purpose of this project, we have condensed the variables to the following 4:

        +
          +
        • sales price of home
        • +
        • number of bedrooms
        • +
        • number of bathrooms
        • +
        • square footage of living space
        • +
      • +
    • +
  • +
+
+
# load library
+library(mice, warn.conflicts=FALSE)
+# load data
+original = read.csv("kc_house_data.csv")
+# first row
+head(original, 1)
+
+
   price bedrooms bathrooms sqft_living
+1 221900        3         1        1180
+
+
+
+
+

+
    +
  • First, we evaluate the dataset for missing values by using the is.na() function:
  • +
+
+
# check for missing data
+sapply(original, function(x) sum(is.na(x)))
+
+
      price    bedrooms   bathrooms sqft_living 
+          0           0           0           0 
+
+
+
    +
  • There is no missing data; this is the original, complete dataset.
  • +
  • We will artificially create some missing values.
  • +
  • We do this by first duplicating the dataset. We want to preserve the original so that we can later check the accuracy of the imputation process.
  • +
+
+
# duplicate dataset
+house <- original
+
+
+
+

+
    +
  • Next, we randomly replace the desired amount of values with NA to mimic missing data.

  • +
  • We will assign 200 NA values to the following variables: - bedrooms, - bathrooms, - sqft_living

  • +
  • And 100 NA values to the price variable.

  • +
+
+
# replace some values with NA to create missing data
+set.seed(10)
+house[sample(1:nrow(house), 200), "sqft_living"] <- NA
+house[sample(1:nrow(house), 200), "bedrooms"] <- NA
+house[sample(1:nrow(house), 200), "bathrooms"] <- NA
+house[sample(1:nrow(house), 100), "price"] <- NA
+
+
    +
  • Using the is.na() function, we can check to confirm we have created missing data:
  • +
+
+
# check for missing data
+sapply(house, function(x) sum(is.na(x)))
+
+
      price    bedrooms   bathrooms sqft_living 
+        100         200         200         200 
+
+
+
    +
  • Our dataset now has 700 NA/missing values. This equates to about 3% of the data (700/21,613).
  • +
+
+
+

Visualizations

+
+ +
+
+
+
# check the missingness patterns
+md.pattern(house, rotate.names = TRUE)
+
+

+
+
+
      price bedrooms bathrooms sqft_living    
+20920     1        1         1           1   0
+195       1        1         1           0   1
+196       1        1         0           1   1
+2         1        1         0           0   2
+197       1        0         1           1   1
+2         1        0         1           0   2
+1         1        0         0           1   2
+98        0        1         1           1   1
+1         0        1         1           0   2
+1         0        1         0           1   2
+        100      200       200         200 700
+
+
+
+
+
+
library(VIM)
+aggr_plot <- aggr(house, col=c('navyblue','red'), numbers=TRUE, sortVars=TRUE, labels=names(data), cex.axis=.7, gap=3, ylab=c("Histogram of missing data","Pattern"))
+
+

+
+
+

+ Variables sorted by number of missings: 
+    Variable       Count
+    bedrooms 0.009253690
+   bathrooms 0.009253690
+ sqft_living 0.009253690
+       price 0.004626845
+
+
+
+
+
    +
  • The red box plot on the left shows the distribution of sqft_living with price missing. The blue box plot shows the distribution of the remaining data points. The same is true for the price box plots on the bottom. We expect the red and blue boxplots to be very similar if our assumptions of MCAR data are true. In this case, they are.
  • +
+
+
marginplot(house[c(1,4)])
+
+

+
+
+
+
+
+
+
+

Imputation Process

+
    +
  • Since we are missing about 3% of our data, we need to perform at least 3 imputations. This will be done using the mice() function:

  • +
  • Since 5 is the default, we will use that (the m parameter can be used to adjust the the # of imputations)

  • +
  • The set.seed will be given the value 1337 (any number can be used here) to retrieve the same results each time the multiple imputation is performed.

  • +
+
+
# impute the data 5 times (default)
+imp = mice(data = house, set.seed = 1337, defaultMethod = c("pmm", "logreg", "polyreg",  "norm", "polr"))
+
+

+ iter imp variable
+  1   1  price  bedrooms  bathrooms  sqft_living
+  1   2  price  bedrooms  bathrooms  sqft_living
+  1   3  price  bedrooms  bathrooms  sqft_living
+  1   4  price  bedrooms  bathrooms  sqft_living
+  1   5  price  bedrooms  bathrooms  sqft_living
+  2   1  price  bedrooms  bathrooms  sqft_living
+  2   2  price  bedrooms  bathrooms  sqft_living
+  2   3  price  bedrooms  bathrooms  sqft_living
+  2   4  price  bedrooms  bathrooms  sqft_living
+  2   5  price  bedrooms  bathrooms  sqft_living
+  3   1  price  bedrooms  bathrooms  sqft_living
+  3   2  price  bedrooms  bathrooms  sqft_living
+  3   3  price  bedrooms  bathrooms  sqft_living
+  3   4  price  bedrooms  bathrooms  sqft_living
+  3   5  price  bedrooms  bathrooms  sqft_living
+  4   1  price  bedrooms  bathrooms  sqft_living
+  4   2  price  bedrooms  bathrooms  sqft_living
+  4   3  price  bedrooms  bathrooms  sqft_living
+  4   4  price  bedrooms  bathrooms  sqft_living
+  4   5  price  bedrooms  bathrooms  sqft_living
+  5   1  price  bedrooms  bathrooms  sqft_living
+  5   2  price  bedrooms  bathrooms  sqft_living
+  5   3  price  bedrooms  bathrooms  sqft_living
+  5   4  price  bedrooms  bathrooms  sqft_living
+  5   5  price  bedrooms  bathrooms  sqft_living
+
+
imputed <- complete(imp) # We need to create the imputed dataset using the complete() function
+
+
+
+

Imputation Process - Verifying Missing Data

+
    +
  • We now need to check the imputed dataset to make sure there is no missing data. Again, we use the is.na() function:
  • +
+
+
sapply(imputed, function(x) sum(is.na(x)))
+
+
      price    bedrooms   bathrooms sqft_living 
+          0           0           0           0 
+
+
+
+
+

Post-Imputation Visualizations:

+
    +
  • We can check the quality of the imputations by running a strip plot, which is a single axis scatter plot.

  • +
  • It will show the distribution of the imputed values over the observed values.

  • +
  • Blue values are observed value and red values are imputed values. Ideally, we want the imputations to be values that could have been observed had the data not been missing.

  • +
+
+
# strip plots to check the quality of the imputations
+par(mfrow=c(2,2))
+stripplot(imp, price, pch = 19, cex=1, xlab = "Imputation number")
+
+

+
+
stripplot(imp, bedrooms, pch = 19, cex=1, xlab = "Imputation number")
+
+

+
+
stripplot(imp, bathrooms, pch = 19, cex=1, xlab = "Imputation number")
+
+

+
+
stripplot(imp, sqft_living, pch = 19, cex=1, xlab = "Imputation number")
+
+

+
+
+
+
+

Fitting and Pooling Imputed Datasets

+
    +
  • Next, we will run regression on our imputed datasets, so we will have 5 regression results. We do this with the with() function. For each regression, we get different results.
  • +
+
+
# fit complete-data model
+fit <- with(imp, lm(price~bedrooms+bathrooms+sqft_living))
+
+
    +
  • Next, we will pool the results from our regressions to arrive at estimates that will properly account for the missing data.

  • +
  • It will give us the estimate, standard error, test statistic, degrees of freedom, and the p-value for each variable.

  • +
+
+
# pool and summarize the results
+summary(pool(fit))
+
+
         term    estimate   std.error  statistic        df       p.value
+1 (Intercept)  75043.7775 6952.563287  10.793685 14431.278  4.677205e-27
+2    bedrooms -57930.4966 2357.322483 -24.574702  7683.745 1.936143e-128
+3   bathrooms   7624.2182 3531.505441   2.158914 11516.540  3.087739e-02
+4 sqft_living    309.7992    3.114475  99.470779  8431.335  0.000000e+00
+
+
+
+
+

Checking for Accuracy

+
    +
  • We will now compare the results from our pooled, imputed dataset to our original, complete dataset (before we removed values to create missing data) to check for accuracy of the imputation method by chained equations:
  • +
+
+
+
+
# fit original, complete dataset
+og_lm = lm(price~bedrooms+bathrooms+sqft_living, data = original)
+# compare imputed dataset to the original dataset
+summary(list("Imputed" = pool(fit), "Original" = og_lm), title = "Comparison", statistic = "p.value", estimate = "estimate", gof_omit = 'IC|Log|Adj|F|RMSE')
+
+
         Length Class Mode
+Imputed   4     mipo  list
+Original 12     lm    list
+
+
+
+
+

 

+
+
+
+
+

+
+
+
+
+
+
+

Results

+
    +
  • The estimates from the multiple imputation are very close to the estimates for the original dataset. The p-values are similar and the differences are minimal with exception of bathrooms which is off just slightly.

  • +
  • These results indicate a high accuracy of the imputation process. We can conclude that multiple imputation by chained equation is a reliable source to impute missing data.

  • +
+
+
+

Conclusion

+
    +
  • Missing data can occur in research for a variety of reasons.
  • +
  • It is never a good idea to ignore it. Doing this will lead to biased estimates of parameters, loss of information, decreased statistical power, and weak reliability of findings.
  • +
  • The best course of action is to impute the missing data by using multiple imputation.
  • +
  • Performing multiple imputation will minimize the adverse effects caused by missing data on the analysis.
  • +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Slides.qmd b/Slides.qmd new file mode 100644 index 000000000..57370f7a2 --- /dev/null +++ b/Slides.qmd @@ -0,0 +1,455 @@ +--- +title: "Missing Data and Imputation" +author: + - Michael Underwood + - Elizabeth Subject-Scott + - Javier Estrada +format: + revealjs: + theme: sky + transition: slide + background-transition: fade +editor: visual +self-contained: true +--- + +## What is Missing Data? {.scrollable} + +- Missing data occurs when there are missing values in a dataset + - Can be intentional or unintentional +- Missing data is classified into 3 different categories: + - Missing Completely At Random (MCAR) + - Missing At Random (MAR) + - Missing Not At Random (MNAR) + +## + +![](GraphicalRepresentation.png){fig-align="center"} + +~X are the completely observed variables.~ + +~Y are the partly missing variables.~ + +~Z is the component of the cause of missingness unrelated to X and Y.~ + +~R is the missingness.~ + +## Methods to Handle Missing Data {.scrollable} + +- Likelihood Bayesian Method + - Predicts missing values based on a previous predictive distribution. +- Weighting Method + - Uses weights from available data to adjust for missing values. +- Imputation Method + - Uses estimates from original data to determine missing values + +## Deleting Missing Data + +- When type is MCAR and the amount of missing data is small, deletion can be used. + +- 2 Types + + - Listwise deletion occurs when the entire observation is removed. + + - Pairwise deletion occurs when the variable of an observation is removed. + +- Deleting missing data can lead to the loss of important information regarding your dataset and is not recommended. + +## Preferred Method: {.scrollable} + +- Imputation + + - 2 Types + + - Single Imputation + + - Only one estimate is used to replace the missing data. + + - Multiple Imputation + + - Various estimates are used to replace the missing data by creating mulitple versions of the original dataset. + +## Single or Univariate Imputation {.scrollable} + +- Methods include: + + - Using the mean to replace a missing value. + - The problem with this method is that it reduces the variance which leads to a smaller confidence interval. + - Last Observation Carried Forward (LOCF) replaces a missing value with a previously observed value (the most recent value is carried forward). + - The problem with this method is that it assumes that the previous observed value is perpetual, when in reality that may not be the case. + +## Multiple Imputation {.scrollable} + +- A set of *m* plausible values are generated for each unobserved data point, resulting in *M* complete data sets. +- The new values are randomly drawn from predictive distributions either through joint modeling (JM) or fully conditional specification (FCS). +- It is then analyzed and the results are combined, or pooled together, to obtain a single value for the missing data. +- Multiple imputation by chained methods (MICE) is the most common and preferred method of multiple imputation. + +## Other Methods of Imputation {.scrollable} + +- Regression Imputation is based on a linear regression model. Missing data is randomly drawn from a conditional distribution when variables are continuous and from a logistic regression model when they are categorical. + +- Predictive Mean Matching is also based on a linear regression model. The approach is the same as regression imputation except instead of random draws from a conditional distribution, missing values are based on predicted values of the outcome variable. + +## {.scrollable} + +- Hot Deck (HD) imputation is when a missing value is replaced by an observed response of a similar unit, also known as the donor. It can be either random or deterministic, which is based on a metric or value. It does not rely on model fitting. + +- Stochastic Regression (SR) Imputation is an extension of regression imputation. The process is the same but a residual term from the normal distribution of the regression of the predictor outcome is added to the imputed value. This maintains the variability of the data. + +## {.scrollable} + +- Random Forest (RF) Imputation is based on machine learning algorithms. Missing values are first replaced with the mean or mode of that particular variable and then the dataset is split into a training set and a prediction set. The missing values are then replaced with predictions from these sets. This type of imputation can be used on continuous or categorical variables with complex interactions. + +## Methodology of Multiple Imputation {.scrollable} + +- Point of multiple imputation + - Not to create artificial values for the missing data + - Intended to be a tool in analyzing data with missing values +- Developed by Donald Rubin, Harvard Professor in the 70s + - Previous method was not correct + - It is impossible to calculate missing data with certainty. + - It did not take into account the estimates in error in the predictions. + - He recommended creating multiple datasets, based on the Bayesian method. + - It gives more precise estimates than using just one imputed dataset. + - According to Rubin's Rule, in multiple imputation missing values are replaced by *m* imputed values which result in *M* complete datasets. + - For each of the *M* datasets, an estimate of $\theta$ is acquired. + +## Pooling Estimates {.scrollable} + +- To calculate the pooled mean differences of $\theta$: + +$${\overline{\theta}}_{M} = \displaystyle \frac{1}{M}\sum_{m = 1}^{M} {\hat{\theta}}_{m}$$ + +- This is the average of *m* estimates of *M* imputed datasets. + +## Pooling Standard Errors {.scrollable} + +- To calculate **the proposed variance estimator** of ${\hat{\theta}}_{m}$: + +$${\hat{\Phi}}_{M} = {\overline{\phi}}_{M} + (1+\displaystyle \frac{1}{M})B_{M}$$ + +- This is the total variance and is made up of two parts: the average within imputation variance and the between imputation variance (with a correction factor). + +- **The average within imputation variance** (normal standard error) is: + +$${\overline{\phi}}_{M} = \displaystyle \frac{1}{M}\sum_{m=1}^{M}{SE}^2$$ + +(It will be large in small samples and small in large samples.) + +- **The between imputation variance** (how much extra variation there is due to the imputation process) is: + +$$B_{M} = \displaystyle \frac{1}{M-1}\sum_{m = 1}^{M}({\hat{\theta}}_{m}-{\overline{\theta}}_{m})^{2}$$ + +- When the between variance is greater than the within variance, then greater efficiency occurs and more accurate estimates can be achieved by increasing *M*. + +- When the within variance is greater than the between variance, then little is gained by increasing *M*. + +- To calculate the *total standard error*: + +$$SE_{pooled} = {\sqrt{\hat{\Phi}}_{M}}$$ + +## Significance Testing {.scrollable} + +$$Wald_{pooled} = \frac{(\overline{\theta} - {\theta_{0}})^2}{{\hat{\Phi}}_{M}}$$ + +- The Wald test follows a t-distribution with the degrees of freedom as follows: + +$$df = (M-1)(1+\frac{1}{M+1} * \frac{\overline{\theta}_{M}}{B_{M}})^2$$ + +- The 2 sided t-value is as follows: + +$$t_{df, 1-\alpha/2}$$ + +- To test for significance using F-distribution: + +$$ F_{1,df} = t^{2}_{df, 1-\alpha/2}$$ + +## Assumptions for Multiple Imputation {.scrollable} + +- Observed data follow a normal distribution. If not normal, a transformation is first needed. + +- Missing data are classified as MAR, which is the probability that a missing value depends only on observed values and not unobserved values. + +- The parameters ${\theta}$ of the data model and the parameters ${\phi}$ of the model for the missing values are distinct. That is, knowing the values of ${\theta}$ does not provide any information about ${\phi}$. + +## Steps in Multiple Imputation: {.scrollable} + +```{r, warning=FALSE, echo=F, message=FALSE} +DiagrammeR::grViz("digraph { + +# initiate graph +graph [layout = dot, rankdir = LR, label = 'The MICE-Process\n\n',labelloc = t, fontcolor = DarkSlateBlue, fontsize = 45] + +# global node settings +node [shape = rectangle, style = filled, fillcolor = AliceBlue, fontcolor = DarkSlateBlue, fontsize = 35] +bgcolor = none + +# label nodes +incomplete [label = 'Incomplete data set'] +imputed1 [label = 'Imputed \n data set 1'] +estimates1 [label = 'Estimates from \n analysis 1'] +rubin [label = 'Rubin rules', shape = diamond] +combined [label = 'Combined results'] +imputed2 [label = 'Imputed \n data set 2'] +estimates2 [label = 'Estimates from \n analysis 2'] +imputedm [label = 'Imputed \n data set m'] +estimatesm [label = 'Estimates from \n anaalysis m'] + + +# edge definitions with the node IDs +incomplete -> imputed1 [arrowhead = vee, color = DarkSlateBlue] +imputed1 -> estimates1 [arrowhead = vee, color = DarkSlateBlue] +estimates1 -> rubin [arrowhead = vee, color = DarkSlateBlue] +incomplete -> imputed2 [arrowhead = vee, color = DarkSlateBlue] +imputed2 -> estimates2 [arrowhead = vee, color = DarkSlateBlue] +estimates2-> rubin [arrowhead = vee, color = DarkSlateBlue] +incomplete -> imputedm [arrowhead = vee, color = DarkSlateBlue] +imputedm -> estimatesm [arrowhead = vee, color = DarkSlateBlue] +estimatesm -> rubin [arrowhead = vee, color = DarkSlateBlue] +rubin -> combined [arrowhead = vee, color = DarkSlateBlue] +}") +``` + +- Step 1: Impute missing data + +- Step 2: Run regression models on all imputation sets + +- Step 3: Pool regression results into one regression result + +## MICE in R {.scrollable} + +- MICE = Multivariate Imputation by Chained Equations. + - mice() method in R. + +- The method creates multiple imputations (replacement values) for multivariate missing data. + +- The MICE algorithm can impute mixes of continuous, binary, unordered categorical and ordered categorical data. +- This can be done using the imputation regressions of the mice() method such as: + - predictive mean matching (numeric data) + - logistic regression imputation (binary data with two factorial levels) + - polytomous regression imputation for unordered categorical data (factor > 2 levels) + - proportional odds model for (ordered, > 2 levels). + +## Dataset {.scrollable} + +- King County, Seattle Home Sale Prices between 2014 and 2015 + + - Contains the sale prices of 21,613 houses + + - The original dataset contained 21 +columns with various selling attributes. + + - For the purpose of this project, we have condensed the variables to the following 4: + + - sales price of home + - number of bedrooms + - number of bathrooms + - square footage of living space + +```{r, warning=FALSE, echo=T, message=FALSE} +# load library +library(mice, warn.conflicts=FALSE) +# load data +original = read.csv("kc_house_data.csv") +# first row +head(original, 1) +``` + +## {.scrollable} + +- First, we evaluate the dataset for missing values by using the is.na() +function: + +```{r, warning=FALSE, echo=T, message=FALSE} +# check for missing data +sapply(original, function(x) sum(is.na(x))) +``` + +- There is no missing data; this is the original, complete dataset. +- We will artificially create some missing values. +- We do this by first duplicating the dataset. We want to preserve the original so that we can +later check the accuracy of the imputation process. + +```{r, warning=FALSE, echo=T, message=FALSE} +# duplicate dataset +house <- original +``` + +## {.scrollable} + +- Next, we randomly +replace the desired amount of values with NA to mimic missing data. + +- We will assign 200 NA values to the following variables: + - bedrooms, + - bathrooms, + - sqft_living + +- And 100 NA values to the price variable. + +```{r, warning=FALSE, echo=T, message=FALSE} +# replace some values with NA to create missing data +set.seed(10) +house[sample(1:nrow(house), 200), "sqft_living"] <- NA +house[sample(1:nrow(house), 200), "bedrooms"] <- NA +house[sample(1:nrow(house), 200), "bathrooms"] <- NA +house[sample(1:nrow(house), 100), "price"] <- NA +``` + +- Using the is.na() function, we can check to confirm we have created +missing data: + +```{r, warning=FALSE, echo=T, message=FALSE} +# check for missing data +sapply(house, function(x) sum(is.na(x))) +``` + +- Our dataset now has 700 NA/missing values. This equates to about 3% of the data (700/21,613). + +## Visualizations {.scrollable} + +::: {.panel-tabset} + +### Pattern +```{r, warning=FALSE, echo=T, message=FALSE} +#| echo: true +#| output-location: column +# check the missingness patterns +md.pattern(house, rotate.names = TRUE) +``` + +### Histogram of Missing Data + +```{r, warning=FALSE, echo=T, message=FALSE} +library(VIM) +aggr_plot <- aggr(house, col=c('navyblue','red'), numbers=TRUE, sortVars=TRUE, labels=names(data), cex.axis=.7, gap=3, ylab=c("Histogram of missing data","Pattern")) +``` + +### Margin Plot + +- The red box plot on the left shows the distribution of sqft_living with +price missing. The blue box plot shows the distribution of the remaining +data points. The same is true for the price box plots on the bottom. We +expect the red and blue boxplots to be very similar if our assumptions +of MCAR data are true. In this case, they are. + +```{r, warning=FALSE, echo=T, message=FALSE} +marginplot(house[c(1,4)]) +``` +::: + +## Imputation Process {.scrollable} + +- Since we are missing about 3% of our data, we need to perform at least 3 +imputations. This will be done using the mice() function: + +- Since 5 is the default, we will use that (the m parameter can be used to adjust the the # of imputations) + +- The set.seed will be given the value 1337 (any number can be used here) to +retrieve the same results each time the multiple imputation is +performed. + +```{r, warning=FALSE, echo=T, message=FALSE} +# impute the data 5 times (default) +imp = mice(data = house, set.seed = 1337, defaultMethod = c("pmm", "logreg", "polyreg", "norm", "polr")) +imputed <- complete(imp) # We need to create the imputed dataset using the complete() function +``` + +## Imputation Process - Verifying Missing Data {.scrollable} + +- We now need to check the imputed dataset to make sure there is no +missing data. Again, we use the is.na() function: + +```{r, warning=FALSE, echo=T, message=FALSE} +sapply(imputed, function(x) sum(is.na(x))) +``` + +## Post-Imputation Visualizations: {.scrollable} + +- We can check the quality of the imputations by running a strip plot, +which is a single axis scatter plot. + +- It will show the distribution of the imputed values over the observed values. + +- Blue values are observed value and red values are imputed values. Ideally, we want the +imputations to be values that could have been observed had the data not +been missing. + +```{r, warning=FALSE, echo=T, message=FALSE} +# strip plots to check the quality of the imputations +par(mfrow=c(2,2)) +stripplot(imp, price, pch = 19, cex=1, xlab = "Imputation number") +stripplot(imp, bedrooms, pch = 19, cex=1, xlab = "Imputation number") +stripplot(imp, bathrooms, pch = 19, cex=1, xlab = "Imputation number") +stripplot(imp, sqft_living, pch = 19, cex=1, xlab = "Imputation number") +``` + +## Fitting and Pooling Imputed Datasets {.scrollable} + +- Next, we will run regression on our imputed datasets, so we will have 5 +regression results. We do this with the with() function. For each +regression, we get different results. + +```{r, warning=FALSE, echo=T, message=FALSE} +# fit complete-data model +fit <- with(imp, lm(price~bedrooms+bathrooms+sqft_living)) +``` + +- Next, we will pool the results from our regressions to arrive at estimates that will properly account for the missing data. + +- It will give us the estimate, +standard error, test statistic, degrees of freedom, and the p-value for +each variable. + +```{r, warning=FALSE, echo=T, message=FALSE} +# pool and summarize the results +summary(pool(fit)) +``` + +## Checking for Accuracy {.scrollable} +- We will now compare the results from our pooled, imputed dataset to our original, complete dataset (before we removed values to create missing data) to check for accuracy of the imputation method by chained +equations: + +:::::: {.cols data-latex=""} + +::: {.col data-latex="{0.55\textwidth}"} + + +```{r, warning=FALSE, echo=T, message=FALSE} +# fit original, complete dataset +og_lm = lm(price~bedrooms+bathrooms+sqft_living, data = original) +# compare imputed dataset to the original dataset +summary(list("Imputed" = pool(fit), "Original" = og_lm), title = "Comparison", statistic = "p.value", estimate = "estimate", gof_omit = 'IC|Log|Adj|F|RMSE') +``` +::: + +::: {.col data-latex="{0.05\textwidth}"} +\ + +::: + +::: {.col data-latex="{0.4\textwidth}"} + +![](Summary Table.png){fig-align="center"} + +::: +:::::: + +## Results {.scrollable} + +- The estimates from the multiple imputation are very close to the estimates +for the original dataset. The p-values are similar and the differences are minimal with exception of bathrooms which is off just slightly. + +- These results indicate +a high accuracy of the imputation process. We can conclude that multiple +imputation by chained equation is a reliable source to impute missing +data. + +## Conclusion + +- Missing data can occur in research for a variety of reasons. +- It is never a good idea to ignore it. Doing this will lead to biased estimates of parameters, loss of information, decreased statistical power, and weak reliability of findings. +- The best course of action is to impute the missing data by using multiple imputation. +- Performing multiple imputation will minimize the adverse effects caused by missing data on the analysis. \ No newline at end of file diff --git a/Summary Table.png b/Summary Table.png new file mode 100644 index 000000000..79c8ae241 Binary files /dev/null and b/Summary Table.png differ diff --git a/index.html b/index.html index f8ab42114..4e4e010d7 100644 --- a/index.html +++ b/index.html @@ -2,21 +2,28 @@ - + - - + + + + -Report Sample +Missing Data and Imputation + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + - - -
+ +
+ +
-

Report Sample

+

Missing Data and Imputation

@@ -133,16 +4094,18 @@

Report Sample

-
Author
+
Authors
-

Student name

+

Javier Estrada

+

Michael Underwood

+

Elizabeth Subject-Scott

Published
-

October 25, 2022

+

May 1, 2023

@@ -151,143 +4114,733 @@

Report Sample

+

Website

+

Slides

Introduction

-

Kernel regression is a non-parametric estimator that estimates the conditional expectation of two variables which is random. The goal of a kernel regression is to discover the non-linear relationship between two random variables. To discover the non-linear relationship, kernel estimator or kernel smoothing is the main method to estimate the curve for non-parametric statistics. In kernel estimator, weight function is known as kernel function (Efromovich 2008). Cite this paper (Bro and Smilde 2014).

+
+

Missing Data

+

Missing data occurs when there are missing values in a dataset. There are many reasons why this happens. It can be intentional or unintentional, and oftentimes there is no way to know for sure what causes the missing data. There are three categories, otherwise known as missingness mechanisms, which measure the severity of the missingness (Mainzer et al. 2023):

+
    +
  • Missing completely at random (MCAR) is when the distribution of missing data is completely independent of any other variables. There is no relationship between the pattern of missingness and the observed data. This would be the best-case scenario.

  • +
  • Missing at random (MAR) is when the distribution of missing data is dependent of the observed values. The pattern of missingness is related to the observed data and not the missing data.

  • +
  • Missing not at random (MNAR) is when missing data is neither MCAR or MAR. The distribution of missing data is dependent on other variables. The pattern of missingness is related to the observed data, as well as the missing data. This would be the worst-case scenario and is nonignorable.

  • +
+

Figure 1: Graphical Representation of Missingness Mechanisms (Schafer and Graham 2002)

+

+

(X are the completely observed variables. Y are the partly missing variables. Z is the component of the cause of missingness unrelated to X and Y. R is the missingness.)

+

Looking for patterns in the missing data can help us to determine which category they belong. These mechanisms are important in determining how to handle the missing data. MCAR would be the best-case scenario but seldom occurs. MAR and MNAR are more common. Most methods of dealing with missing data assume a MAR missingness. If data are found to be MNAR, worst-case scenario, then specialized expertise and additional steps are needed to model the missingness before handling the missing data. The problem with ignoring any missing values is that it does not give a true representation of the dataset and can lead to bias when analyzing. This reduces the statistical power of the analysis (van_Ginkel et al. 2020).

+

According to Dong and Peng (2013), to enhance the quality of research, the following should be followed with regards to missing data:

+
    +
  • Determine under what conditions the missing data occur.
  • +
  • Use principled methods to handle the missing data.
  • +
  • Include and report the treatment of the missing data.
  • +
-
-

Methods

-

The common non-parametric regression model is \(Y_i = m(X_i) + \varepsilon_i\), where \(Y_i\) can be defined as the sum of the regression function value \(m(x)\) for \(X_i\). Here \(m(x)\) is unknown and \(\varepsilon_i\) some errors. With the help of this definition, we can create the estimation for local averaging i.e. \(m(x)\) can be estimated with the product of \(Y_i\) average and \(X_i\) is near to \(x\). In other words, this means that we are discovering the line through the data points with the help of surrounding data points. The estimation formula is printed below (R Core Team 2019):

-

\[ -M_n(x) = \sum_{i=1}^{n} W_n (X_i) Y_i \tag{1} -\]

-

\(W_n(x)\) is the sum of weights that belongs to all real numbers. Weights are positive numbers and small if \(X_i\) is far from \(x\).

+
+

Methods to Deal with Missing Data

+

There are three types of methods to deal with missing data, the likelihood and Bayesian method, weighting methods, or imputation methods (Cao et al. 2021).

+
    +
  • Likelihood Bayesian method is when information from a previous predictive distribution is combined with evidence obtained in a sample to predict a value. It requires technical coding and advanced statistical knowledge.

  • +
  • The weighting method is a traditional approach when weights from available data are used to adjust for non-response in a survey. Inefficiency occurs when there are extreme weights or a need for many weights.

  • +
  • The imputation method is when an estimate from the original dataset is used to estimate the missing value. There are two types of imputation: single and multiple.

  • +
-
-

Analysis and Results

-
-

Data and Vizualisation

-

A study was conducted to determine how…

+
+

Deleting Missing Data

+

Another way to handle missing data is to simply delete it. Deleting missing values can lead to the loss of important information regarding your dataset, and is therefore not recommended. The two types of deletion methods are listwise and pairwise.

+

Listwise deletion is when the entire observation is removed from the dataset. In certain cases when the amount of missing data is small and the type is MCAR, listwise deletion can be used. There usually won’t be bias but potentially important information may be lost.

+

T-tests and chi-square tests can be used to assess pairs of predictor variables to determine whether the groups’ means differ significantly. According to van_Ginkel et al. (2020), if significant, the null hypothesis is rejected, therefore, indicating that the missing values are not randomly distributed throughout the data. This implies that the missing data is either MAR or MNAR. Conversely, if non-significant, this implies that the data cannot be MAR. This does not eliminate the possibility that it is not MNAR–other information about the population is needed to determine this.

+

Whenever missing data is categorized as MAR or MNAR, listwise deletion would be wasteful, and the analysis biased. Alternate methods of dealing with the missing data is recommended: either pairwise deletion or imputation.

+

Pairwise deletion is when only the missing variable of an observation is removed. It allows more data to be analyzed than listwise deletion but limits the ability to make inferences of the total sample. For this reason, it is recommended to use imputation to properly deal with missing data.

+
+
+

Preferred Method to Handle Missing Data

+

Imputation is the preferred method to handle missing data. It consists of replacing missing data with an estimate obtained from the original, available data. After imputation, there will be a full dataset to analyze. According to Wulff and Jeppesen (2017), 3-5 imputations are sufficient, and 10 imputations are more than enough. More recent research has indicated that to improve statistical power, the number of imputations created should be at least equal to the percent of missing data (5% equals 5 imputations, 10% equals 10 imputations, 20% equals 20 imputations, etc.) (Pedersen et al. 2017).

+

Single, or univariate, imputation is when only one estimate is used to replace the missing data. Methods of single imputation include using the mean, the last observation carried forward, and random imputation. The following is a brief explanation of each:

+
    +
  • Using the mean to replace a missing value is a straight-forward process. The mean of the dataset is calculated, including the missing value. The mean is then multiplied by the number of observations in the study. Next, the known values are subtracted from the product, and this gives an estimate that can be used for any missing values. The problem with this method is that it can produce misleading results such as showing the variance and the confidence interval smaller than they actually are.

  • +
  • Last Observation Carried Forward (LOCF) is a technique of replacing a missing value in longitudinal studies with a previously observed value, the most recent value is carried forward (Streiner 2008). The problem with this method is that it assumes that the previous observed value is perpetual when in reality that most likely is not the case.

  • +
  • Random imputation is a method of randomly drawing an observation and using that observation for any of the missing values. The problem with this method is that it introduces additional variability.

  • +
+

These single imputation methods are inaccurate. They often result in underestimation of standard errors or too small p-values (Dong and Peng 2013), which can cause bias in the analysis. Therefore, multiple imputation is the superior method because it handles missing data better and provides less biased results.

+

Multiple, or multivariate, imputation is when various estimates are used to replace the missing data by creating multiple datasets from versions of the original dataset. According to Dong and Peng (2013), it can be done by using a “regression model, or a sequence of regression models, such as linear, logistic and Poison,” where a set of m plausible values are generated for each unobserved data point, resulting in M complete data sets. The new values are randomly drawn from predictive distributions either through joint modeling (JM, which is not used much anymore) or fully conditional specification (FCS) (Wongkamthong and Akande 2023). It is then analyzed and the results are combined to obtain a single value for the missing data.

+

The purpose of multiple imputation is to create a pool of imputed data for analysis, but if the pooled results are lacking, then multiple imputation should not be done (Mainzer et al. 2023). Another reason not to use multiple imputation is if there are very few missing values; there may be no benefit in using it. Also worth noting is some statistical analyses software already have built-in features to deal with missing data.

+

Multiple imputation by chained methods, otherwise known as MICE, is the most common and preferred method of multiple imputation (Wulff and Jeppesen 2017). It provides a more reliable way to analyze data with missing values. For this reason, this paper will focus on the methodology and application of the MICE process.

+

Figure 2: Flowchart of the MICE-process based on procedures proposed by Rubin (Wulff and Jeppesen 2017)

Code -
# loading packages 
-library(tidyverse)
-library(knitr)
-library(ggthemes)
-library(ggrepel)
-library(dslabs)
+
# load package
+library(DiagrammeR)
+
+# flowchart of mice process
+DiagrammeR::grViz("digraph {
+
+# initiate graph
+graph [layout = dot, rankdir = LR, label = 'The MICE-Process\n\n',labelloc = t, fontcolor = DarkSlateBlue, fontsize = 45]
+
+# global node settings
+node [shape = rectangle, style = filled, fillcolor = AliceBlue, fontcolor = DarkSlateBlue, fontsize = 35]
+bgcolor = none
+
+# label nodes
+incomplete [label =  'Incomplete data set']
+imputed1 [label = 'Imputed \n data set 1']
+estimates1 [label = 'Estimates from \n analysis 1']
+rubin [label = 'Rubins Rules', shape = diamond]
+combined [label = 'Combined results']
+imputed2 [label = 'Imputed \n data set 2']
+estimates2 [label = 'Estimates from \n analysis 2']
+imputedm [label = 'Imputed \n data set m']
+estimatesm [label = 'Estimates from \n analysis m']
+
+# edge definitions with the node IDs
+incomplete -> imputed1 [arrowhead = vee, color = DarkSlateBlue]
+imputed1 -> estimates1 [arrowhead = vee, color = DarkSlateBlue]
+estimates1 -> rubin [arrowhead = vee, color = DarkSlateBlue]
+incomplete -> imputed2 [arrowhead = vee, color = DarkSlateBlue]
+imputed2 -> estimates2 [arrowhead = vee, color = DarkSlateBlue]
+estimates2-> rubin [arrowhead = vee, color = DarkSlateBlue]
+incomplete -> imputedm [arrowhead = vee, color = DarkSlateBlue]
+imputedm -> estimatesm [arrowhead = vee, color = DarkSlateBlue]
+estimatesm -> rubin [arrowhead = vee, color = DarkSlateBlue]
+rubin -> combined [arrowhead = vee, color = DarkSlateBlue]
+}")
+
+
+
+
+

Rubin’s Rules: Donald Rubin was a Harvard professor in the seventies. He felt that the then current method of dealing with missing data (single imputation) was flawed. It was impossible to calculate missing values with absolute certainty because the method did not consider the estimates in error in the predictions of the missing data. For this reason, he recommended creating multiple datasets based on the Bayesian method and doing the following steps:

+
    +
  • Impute missing data by averaging the estimates across imputed datasets.
  • +
  • Run regression on each of the imputed datasets.
  • +
  • Find the standard errors and variance of the imputed estimates. Combine them using an adjustment term.
  • +
+

He felt like this would provide more accurate results than using just one imputed dataset. His theory is referred to as Rubin’s Rules.

+
+
+

Other Methods of Imputation

+

There are other methods of imputation worth noting and are briefly described below.

+

Regression Imputation is based on a linear regression model. Missing data is randomly drawn from a conditional distribution when variables are continuous and from a logistic regression model when they are categorical (van_Ginkel et al. 2020).

+

Predictive Mean Matching (PMM) is also based on a linear regression model. The approach is the same as regression imputation when it comes to categorical missing values but different for continuous variables. Instead of random draws from a conditional distribution, missing values are based on predicted values of the outcome variable (van_Ginkel et al. 2020).

+

Hot Deck (HD) imputation is when a missing value is replaced by a similar observed value, known as “the donor.” It can be either random or deterministic, which is based on a metric or value (Thongsri and Samart 2022). It does not rely on model fitting.

+

Stochastic Regression (SR) Imputation is an extension of regression imputation. The process is the same but a residual term from the normal distribution of the regression of the predictor outcome is added to the imputed value (Thongsri and Samart 2022). This maintains the variability of the data.

+

Random Forest (RF) Imputation is based on machine learning algorithms. Missing values are first replaced with the mean or mode of that particular variable and then the dataset is split into a training set and a prediction set (Thongsri and Samart 2022). The missing values are replaced with estimates from these sets. This type of imputation can be used on continuous or categorical variables with complex interactions.

+
+
+
+

Methodology

+
+

Multiple Imputation by Chained Equations (MICE)

+

According to Rubin’s Rules, in multiple imputation m imputed values are created for each of the missing data and result in M complete datasets. For each of the M datasets, an estimate of \(\theta\) is acquired. Let \({\hat{\theta}}_{m}\) and \({\hat{\phi}}_{m}\) be an estimator of the variance of \({\hat{\theta}}_{m}\) based on the Mth complete dataset. The following formulas are used in the multiple imputation process (Arnab 2017) and (Heymans and Eekhout 2019).

+

The combined estimator of \(\theta\), the pooled mean difference, is given by the following equation:

+

\[{\overline{\theta}} = \displaystyle \frac{1}{M}\sum_{m = 1}^{M} {\hat{\theta}}_{m}\] This is the sum of the m estimators from each of the M imputed datasets which are pooled together and averaged.

+

The proposed variance estimator of \({\hat{\theta}}_{M}\), the total variance, is given by the following equation:

+

\[{\hat{\Phi}} = {\overline{\phi}}_{M} + (1+\displaystyle \frac{1}{M})B_{M}\]

+

This formula is made up of two parts: the average within imputation variance and the between imputation variance (with a correction factor of \((1+\displaystyle \frac{1}{M})\)).

+

The imputation variance within, which is the normal standard error, is calculated as follows:

+

\[{\overline{\phi}} = \displaystyle \frac{1}{M}\sum_{m = 1}^{M}{SE}^2_m\]

+

This is the average of the sum of the standard errors squared of the imputed datasets. It will be large in small datasets and small in large datasets.

+

The between imputation variance, which is how much extra variation there is due to the imputation process, is calculated as follows:

+

\[B_{M} = \displaystyle \frac{1}{M-1}\sum_{m = 1}^{M}({\hat{\theta}}_{m}-{\overline{\theta}})^{2}\]

+

This is the sum of the sample variance for each imputed data set multiplied by 1 over the imputed datasets. It will be large when there is a high number of missing data and small when there is a small number of missing data (Heymans and Eekhout 2019). When the between variance is greater than the within variance, then greater efficiency occurs, and more accurate estimates can be achieved by increasing M. Conversely, when the within variance is greater than the between variance, then little is gained by increasing M.

+

To find the total standard error, take the square root of the total variance:

+

\[SE_{pooled} = {\sqrt{\hat{\Phi}}}\]

+

For significance testing, we use the Wald Test:

+

\[Wald_{pooled} = \frac{(\overline{\theta} - {\theta_{0}})^2}{{\hat{\Phi}}}\]

+

The Wald test follows a t-distribution with the degrees of freedom as follows:

+

\[df = (M-1)(1+\frac{1}{M+1} * \frac{\overline{\theta}}{B_{M}})^2\]

+

It results in a 2-sided t-test with the t-value as follows:

+

\[t_{df, 1-\alpha/2}\]

+

To test for significance using F-distribution, we square the t-value:

+

\[ F_{1,df} = t^{2}_{df, 1-\alpha/2}\]

+
+
+

Assumptions

+

All multiple imputation methods have the following assumptions:

+
    +
  • Observed data follow a normal multivariate distribution. If not normal, a transformation is first needed before imputation can be performed.

  • +
  • Missing data are classified as MAR, which is when the distribution of missing data is dependent of the observed values and not the unobserved values.

  • +
  • “The parameters \({\theta}\) of the data model and the parameters \({\phi}\) of the model for the missing values are distinct. That is, knowing the values of \({\theta}\) does not provide any information about \({\phi}\)(“MI Procedure” 2019).

  • +
+

These assumptions are essential, otherwise we wouldn’t be able to predict a plausible replacement value for the missing data.

+
+
+

Steps:

+

The chained equation process has the following steps (Azur et al. 2011):

+

Step 1: Using simple imputation, replace the missing data with this value, referred to as the “place holder.”

+

Step 2: The “place holder” values for one variable are set back to missing.

+

Step 3: The observed values from this variable (dependent variable) are regressed on the other variables (independent variables) in the model, using the same assumptions when performing linear, logistic, or Poison regression.

+

Step 4: The missing values are replaced with predictions “m” from this newly created model.

+

Step 5: Repeat Steps 2-4 for each variable that have missing values until all missing values have been replaced.

+

Step 6: Repeat Steps 2-4, updating imputations each cycle for as many “M” cycles/imputations that are required.

+
+
+
+

Analysis and Results

+
+
MICE in R
+

Using the MICE (Multivariate Imputation by Chained Equations) package in R, a statistical programming software, we will be demonstrating how to impute missing data. We will run through the MICE process and provide results of the imputations. We will then check the accuracy of the imputations by comparing these results to the results of the original, complete data set.

+
+
+

Data and Visualizations

+
+
Load Data and Packages
Code -
# Load Data
-kable(head(murders))
+
# load libraries
+library(vtable)
+library(gtsummary)
+library(gt)
+library(ggplot2)
+library(VIM, warn.conflicts=FALSE)
+library(dplyr, warn.conflicts=FALSE)
+library(mice, warn.conflicts=FALSE)
+library(tidyverse)
+library(modelsummary)
+
+# load data
+original = read.csv("kc_house_data.csv")
-
- + + +
+
Description of Dataset
+

kc_house_data.csv

+
+
+
Details of Dataset
+

This dataset contains the sale prices of 21,613 houses in King County, Seattle between May 2014 to May 2015. The original dataset contained 21 columns with various selling attributes. For the purpose of this project, we have condensed the variables to the following four: sales price, number of bedrooms, number of bathrooms, and square footage of living space.

+
+
+
Definition of Data in Dataset
+
+++++ - - - - - + + + - - - - - - - - - - - - - - - - - - - + + + - - - - - + + + - - - - - + + + - - - - - + + +
stateabbregionpopulationtotalVariableTypeDescription
AlabamaALSouth4779736135
AlaskaAKWest71023119
ArizonaAZWest6392017232pricenumericSale price of homes sold between May 2014 and May 2015 in King County, Seattle; range from $75,000 to $7,700,000.
ArkansasARSouth291591893bedroomsintegerNumber of bedrooms in homes sold between May 2014 and May 2015 in King County, Seattle; range from 0 to 33.
CaliforniaCAWest372539561257bathroomsnumericNumber of bathrooms in homes sold between May 2014 and May 2015 in King County, Seattle; range from 0 to 8.
ColoradoCOWest502919665sqft_livingintegerNumber of square feet of living space in homes sold between May 2014 and May 2015 in King County, Seattle; range from 290 sf to 13,540 sf.
+
+
+
Summary of Dataset:
+
+
+Code +
# summary of data
+sumtable(original, col.align = c('left', 'center'))
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Summary Statistics
Variable N Mean Std. Dev. Min Pctl. 25 Pctl. 75 Max
price 21613 540182 367362 75000 321950 645000 7700000
bedrooms 21613 3.4 0.93 0 3 4 33
bathrooms 21613 2.1 0.77 0 1.8 2.5 8
sqft_living 21613 2080 918 290 1427 2550 13540
+ +
+
+
+
+
Plotting of Data
+
+
+Code +
# plot the data
+ggplot(original, aes(x=sqft_living, y=price)) +
+  geom_point(alpha=0.5, color='darkblue') +
+  labs(x="sqft_living", y="price")
+
+
+

+
+
+
+
+
Evaluate Dataset
+

First, we evaluate the dataset for missing values by using the is.na() function:

+
+
+Code +
# check for missing data
+sapply(original, function(x) sum(is.na(x)))
+
+
+
      price    bedrooms   bathrooms sqft_living 
+          0           0           0           0 
+
+
+

There are no missing values; this is the original, complete dataset. Normally, this is where you would find out how much missing data your dataset contains and you would move on to the next step in imputation. Since our dataset does not contain any missing values, we will need to add an additional step to artificially create some missing data. We do this by first duplicating the dataset. We want to preserve the original dataset so that we can later check the accuracy of the imputation process.

+
+
+Code +
# duplicate dataset
+house <- original
+
+
+

Next, we randomly replace the desired amount of values with NA to mimic missing data. We will assign 200 NA values to the following variables: bedrooms, bathrooms, and sqft_living and 100 NA values to the price variable.

+
+
+Code +
# replace some values with NA to create missing data
+set.seed(10)
+house[sample(1:nrow(house), 200), "sqft_living"] <- NA
+house[sample(1:nrow(house), 200), "bedrooms"] <- NA
+house[sample(1:nrow(house), 200), "bathrooms"] <- NA
+house[sample(1:nrow(house), 100), "price"] <- NA
+
+
+

Using the is.na() function, we can check to confirm we have created missing data:

+
+
+Code +
# check for missing data
+sapply(house, function(x) sum(is.na(x)))
+
+
+
      price    bedrooms   bathrooms sqft_living 
+        100         200         200         200 
+
+
+

Our dataset now has 700 NA/missing values. This equates to about 3% of the data (700/21,613).

+
+
+
Checking for Patterns
+

Next, we need to check the missingness by looking for patterns in the dataset by using the md.pattern() function. Of course our missing data was randomly created, so we know we have MCAR.

+
+
+Code +
# check the missingness patterns
+md.pattern(house, rotate.names = TRUE)
+
+
+

+
+
+
      price bedrooms bathrooms sqft_living    
+20920     1        1         1           1   0
+195       1        1         1           0   1
+196       1        1         0           1   1
+2         1        1         0           0   2
+197       1        0         1           1   1
+2         1        0         1           0   2
+1         1        0         0           1   2
+98        0        1         1           1   1
+1         0        1         1           0   2
+1         0        1         0           1   2
+        100      200       200         200 700
+
+
+

Blue are the observed/complete values, and red are the missing values. The numbers on the left indicate how many complete values there are and the numbers on the right show how many variables contain missing data. So for example, the first line shows there are 20,920 complete observations across all four variables. The next line indicates there are 195 complete observations in three of the variables with data missing in the sqft_living variable, so forth and so on all the way down the list. The total number of missing data for each variable is listed across the bottom. This visual gives a breakdown of where the missing data occurs.

+

Another way to look for patterns in the missing data is to use the aggr() function:

+
+
+Code +
# histogram, patterns and count for missing data
+aggr_plot <- aggr(house, col=c('navyblue','red'), numbers=TRUE, sortVars=TRUE, labels=names(data), cex.axis=.7, gap=3, ylab=c("Histogram of missing data","Pattern"))
+
+
+

+
+
+

+ Variables sorted by number of missings: 
+    Variable       Count
+    bedrooms 0.009253690
+   bathrooms 0.009253690
+ sqft_living 0.009253690
+       price 0.004626845
+
+
+

It provides a histogram of the missing values and shows each variable and the percent of missing data for each (as a decimal):

+
    +
  • bedrooms: 0.9%

  • +
  • bathrooms: 0.9%

  • +
  • sqft_living: 0.9%

  • +
  • price: 0.5%

  • +
+

Another visualization to check for the missingness is a margin plot:

+
+
+Code +
# margin plot for missingness
+marginplot(house[c(1,4)])
+
+
+

+
+
+

The red box plot on the left shows the distribution of sqft_living with price missing. The blue box plot shows the distribution of the remaining data. The same is true for the price box plots on the bottom. We expect the red and blue boxplots to be very similar if our assumptions of MCAR data are true. In this case, they are.

+
+
+
Imputation Process
+

Since we are missing about 3% of our data, we need to perform at least 3 imputations. This can be done by using the mice() function. Since 5 is the default, we will use that; if you need to use something different, you must set m equal to the number of imputations that you desire. The set.seed will be given the value 1337 (any number can be used here) to ensure that the same random values are generated each time.

+
+
+Code +
# impute the data 5 times (default)
+imp = mice(data = house, set.seed = 1337)
+
+
+

+ iter imp variable
+  1   1  price  bedrooms  bathrooms  sqft_living
+  1   2  price  bedrooms  bathrooms  sqft_living
+  1   3  price  bedrooms  bathrooms  sqft_living
+  1   4  price  bedrooms  bathrooms  sqft_living
+  1   5  price  bedrooms  bathrooms  sqft_living
+  2   1  price  bedrooms  bathrooms  sqft_living
+  2   2  price  bedrooms  bathrooms  sqft_living
+  2   3  price  bedrooms  bathrooms  sqft_living
+  2   4  price  bedrooms  bathrooms  sqft_living
+  2   5  price  bedrooms  bathrooms  sqft_living
+  3   1  price  bedrooms  bathrooms  sqft_living
+  3   2  price  bedrooms  bathrooms  sqft_living
+  3   3  price  bedrooms  bathrooms  sqft_living
+  3   4  price  bedrooms  bathrooms  sqft_living
+  3   5  price  bedrooms  bathrooms  sqft_living
+  4   1  price  bedrooms  bathrooms  sqft_living
+  4   2  price  bedrooms  bathrooms  sqft_living
+  4   3  price  bedrooms  bathrooms  sqft_living
+  4   4  price  bedrooms  bathrooms  sqft_living
+  4   5  price  bedrooms  bathrooms  sqft_living
+  5   1  price  bedrooms  bathrooms  sqft_living
+  5   2  price  bedrooms  bathrooms  sqft_living
+  5   3  price  bedrooms  bathrooms  sqft_living
+  5   4  price  bedrooms  bathrooms  sqft_living
+  5   5  price  bedrooms  bathrooms  sqft_living
+
+
+

We need to create the imputed dataset using the complete() function. We will not display the results since there are 21,613 rows.

+
+
+Code +
# create imputed dataset
+imputed <- complete(imp)
+
+
+

We now need to check the imputed dataset to make sure there is no missing data. Again, we use the is.na() function:

+
+
+Code +
# check imputed dataset for missing values
+sapply(imputed, function(x) sum(is.na(x)))
+
+
+
      price    bedrooms   bathrooms sqft_living 
+          0           0           0           0 
+
+
+

We can check the quality of the imputations by running a strip plot, which is a single axis scatter plot. It will show the distribution of the imputed values (red) over the observed values (blue). We want the imputations to be values that could have been observed had the data not been missing. These look to be acceptable.

+
+
+Code +
# strip plots to check the quality of the imputations
+par(mfrow=c(2,2))
+stripplot(imp, price, pch = 19, cex=1, xlab = "Imputation number")
+
+
+

+
+
+Code +
stripplot(imp, bedrooms, pch = 19, cex=1, xlab = "Imputation number")
+
+
+

+
+
+Code +
stripplot(imp, bathrooms, pch = 19, cex=1, xlab = "Imputation number")
+
+
+

Code -
ggplot1 = murders %>% ggplot(mapping = aes(x=population/10^6, y=total)) 
-
-  ggplot1 + geom_point(aes(col=region), size = 4) +
-  geom_text_repel(aes(label=abb)) +
-  scale_x_log10() +
-  scale_y_log10() +
-  geom_smooth(formula = "y~x", method=lm,se = F)+
-  xlab("Populations in millions (log10 scale)") + 
-  ylab("Total number of murders (log10 scale)") +
-  ggtitle("US Gun Murders in 2010") +
-  scale_color_discrete(name = "Region")+
-      theme_wsj()
+
stripplot(imp, sqft_living, pch = 19, cex=1, xlab = "Imputation number")
-

+

+
+
+
+
Fitting and Pooling Imputed Datasets
+

Next, we will run regression on our imputed datasets, so we will have 5 regression results. We do this with the with() function. For each regression, we get different results.

+
+
+Code +
# fit complete-data model
+fit <- with(imp, lm(price~bedrooms+bathrooms+sqft_living))
+
+
+

Next, we will pool the results to arrive at estimates that will properly account for the missing data. It will give us the estimate, standard error, test statistic, degrees of freedom, and the p-value for each variable.

+
+
+Code +
# pool and summarize the results
+summary(pool(fit))
+
+
+
         term    estimate   std.error  statistic        df       p.value
+1 (Intercept)  75043.7775 6952.563287  10.793685 14431.278  4.677205e-27
+2    bedrooms -57930.4966 2357.322483 -24.574702  7683.745 1.936143e-128
+3   bathrooms   7624.2182 3531.505441   2.158914 11516.540  3.087739e-02
+4 sqft_living    309.7992    3.114475  99.470779  8431.335  0.000000e+00
+
+

We can now analyze our dataset as if there were no missing data!

-
-

Statistical Modeling

+
+
Checking for Accuracy
+

We will now compare the results from our pooled, imputed dataset to our original, complete dataset (before we removed values to create missing data) to check for accuracy of the imputation method by chained equations:

+
+
+Code +
# fit original, complete dataset
+og_lm = lm(price~bedrooms+bathrooms+sqft_living, data = original)
+
+# compare imputed dataset to the original dataset
+msummary(list("Imputed" = pool(fit), "Original" = og_lm), title = "Comparison of Results", statistic = "p.value", estimate = "estimate", gof_omit = 'IC|Log|Adj|F|RMSE')
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Comparison of Results
 Imputed Original
(Intercept) 75043.777 74662.099
(<0.001) (<0.001)
bedrooms −57930.497 −57906.631
(<0.001) (<0.001)
bathrooms 7624.218 7928.708
(0.031) (0.024)
sqft_living 309.799 309.605
(<0.001) (<0.001)
Num.Obs. 21613 21613
Num.Imp. 5
R2 0.507 0.507
+ +
+
+

The estimates from the multiple imputation are very close to the estimates for the original dataset, with the exception of bathrooms which is off just slightly. The p-values are all statistically significant in the original dataset, as well as the imputed dataset, with very minimal differences in their values. These results indicate a high accuracy of the imputation process. We can conclude that multiple imputation by chained equation is a reliable source to impute missing data.

-
-

Conlusion

-
+
+

Conclusion

+

In conclusion, missing data can occur in research for a variety of reasons. It is never a good idea to ignore it. Doing this will lead “to biased estimates of parameters, loss of information, decreased statistical power, and weak reliability of findings” (Dong and Peng 2013). When missing data is discovered, it is important to first identify it and look for missing data patterns. The best course of action is to impute the missing data by using multiple imputation. Next, define the variables in the dataset that are related to the missing values that will be used for imputation. Create the necessary number of complete data sets with imputed values. Run regression on these models and combine them using Rubin’s Rules. Finally, analyze the dataset. Performing these steps will minimize the adverse effects on the analysis caused by missing data (Pampka, Hutcheson, and Williams 2016).

+

References

-
-Bro, Rasmus, and Age K Smilde. 2014. “Principal Component Analysis.” Analytical Methods 6 (9): 2812–31. +
+Arnab, R. 2017. Survey Sampling Theory and Applications. Academic Press. https://www.sciencedirect.com/topics/mathematics/imputation-method. +
+
+Azur, M. J., E. A. Stuart, C. Frangakis, and P. J. Leaf. 2011. “Multiple Imputation by Chained Equations: What Is It and How Does It Work?” Int J Methods Psychiatr Res. 20 (1): 40–49. https://onlinelibrary.wiley.com/doi/epdf/10.1002/mpr.329. +
+
+Cao, Y., H. Allore, B. V. Wyk, and Gutman R. 2021. “Review and Evaluation of Imputation Methods for Multivariate Longitudinal Data with Mixed-Type Incomplete Variables.” Statistics in Medicine 41 (30): 5844–76. https://doi-org.ezproxy.lib.uwf.edu/10.1002/sim.9592. +
+
+Dong, Y., and C. J. Peng. 2013. “Principled Missing Data Methods for Researchers.” SpringerPlus 2 (222). https://doi.org/10.1186/2193-1801-2-222. +
+
+Heymans, M. W., and I. Eekhout. 2019. Applied Missing Data Analysis with SPSS and (r) Studio. Heymans & Eekhout. https://bookdown.org/mwheymans/bookmi/. +
+
+Mainzer, R., M. Moreno-Betancur, C. Nguyen, J. Simpson, J. Carlin, and K. Lee. 2023. “Handling of Missing Data with Multiple Imputation in Observational Studies That Address Causal Questions: Protocol for a Scoping Review.” BMJ Open 13: 1–6. http://dx.doi.org/10.1136/bmjopen-2022-065576. +
+
+“MI Procedure.” 2019. https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_mi_details03.htm. +
+
+Pampka, M., G. Hutcheson, and J. Williams. 2016. “Handling Missing Data: Analysis of a Challenging Data Set Using Multiple Imputation.” International Journal of Research & Method in Education 39 (1): 19–37. https://doi.org/10.1080/1743727X.2014.979146. +
+
+Pedersen, A. B., E. M. Mikkelsen, D. Cronin-Fenton, N. R. Kristensen, T. M. Pham, L. Pedersen, and I. Petersen. 2017. “Missing Data and Multiple Imputation in Clinical Epidemiological Research.” Clinical Epidemiology 9: 157–66. https://www.tandfonline.com/doi/full/10.2147/CLEP.S129785. +
+
+Schafer, J. L., and J. W. Graham. 2002. “Missing Data: Our View of the State of the Art.” Psychological Methods 7 (2): 147–77. https://psycnet.apa.org/doi/10.1037/1082-989X.7.2.147.
-
-Efromovich, S. 2008. Nonparametric Curve Estimation: Methods, Theory, and Applications. Springer Series in Statistics. Springer New York. https://books.google.com/books?id=mdoLBwAAQBAJ. +
+Streiner, D. L. 2008. “Missing Data and the Trouble with LOCF.” EBMH 11 (1): 1–5. http://dx.doi.org/10.1136/ebmh.11.1.3-a.
-
-R Core Team. 2019. R: A Language and Environment for Statistical Computing. Vienna, Austria: R Foundation for Statistical Computing. https://www.R-project.org. +
+Thongsri, T., and K. Samart. 2022. “Composite Imputation Method for the Multiple Linear Regression with Missing at Random Data.” International Journal of Mathematics and Mathematics and Computer Science 17 (1): 51–62. http://ijmcs.future-in-tech.net/17.1/R-Samart.pdf. +
+
+van_Ginkel, J. R., M. Linting, R. C. Rippe, and A. van der Voort. 2020. “Rebutting Existing Misconceptions about Multiple Imputation as a Method for Handling Missing Data.” Journal of Personality Assessment 102 (3): 2812–31. https://doi.org/10.1080/00223891.2018.1530680. +
+
+Wongkamthong, C., and O. Akande. 2023. “A Comparative Study of Imputation Methods for Multivariate Ordinal Data.” Journal of Survey Statistics and Methodology 11 (1): 189–212. https://doi.org/10.1093/jssam/smab028. +
+
+Wulff, J. N., and L. E. Jeppesen. 2017. “Multiple Imputation by Chained Equations in Praxis: Guidelines and Review.” Electronics Journal of Business Research Methods 15 (1): 41–56. https://vbn.aau.dk/ws/files/257318283/ejbrm_volume15_issue1_article450.pdf.
+
diff --git a/index.qmd b/index.qmd index 080275f87..d0206f146 100644 --- a/index.qmd +++ b/index.qmd @@ -1,73 +1,684 @@ --- -title: "Report Sample" -author: "Student name" +title: "Missing Data and Imputation" +author: + - Javier Estrada + - Michael Underwood + - Elizabeth Subject-Scott date: '`r Sys.Date()`' -format: +format: html: code-fold: true -course: STA 6257 - Advance Statistical Modeling -bibliography: references.bib # file contains bibtex for references -#always_allow_html: true # this allows to get PDF with HTML features + code-tools: true + css: styles.css + theme: morph + toc: true + toc-location: left +course: STA 6257 - Advanced Statistical Modeling +bibliography: references.bib +editor: + markdown: + wrap: 72 +self-contained: true --- +[Website](https://missingdata-imputation.github.io/STA6257_Missing_Data_and_Imputation/) + +[Slides](https://missingdata-imputation.github.io/STA6257_Missing_Data_and_Imputation/Slides.html) + ## Introduction -Kernel regression is a non-parametric estimator that estimates the conditional expectation of two variables which is random. The goal of a kernel regression is to discover the non-linear relationship between two random variables. To discover the non-linear relationship, kernel estimator or kernel smoothing is the main method to estimate the curve for non-parametric -statistics. In kernel estimator, weight function is known as kernel function [@efr2008]. Cite this paper [@bro2014principal]. +#### Missing Data + +Missing data occurs when there are missing values in a dataset. There +are many reasons why this happens. It can be intentional or +unintentional, and oftentimes there is no way to know for sure what +causes the missing data. There are three categories, otherwise known as +missingness mechanisms, which measure the severity of the missingness +[@mai2023]: + +- Missing completely at random (MCAR) is when the distribution of + missing data is completely independent of any other variables. There + is no relationship between the pattern of missingness and the + observed data. This would be the best-case scenario. + +- Missing at random (MAR) is when the distribution of missing data is + dependent of the observed values. The pattern of missingness is + related to the observed data and not the missing data. + +- Missing not at random (MNAR) is when missing data is neither MCAR or + MAR. The distribution of missing data is dependent on other + variables. The pattern of missingness is related to the observed + data, as well as the missing data. This would be the worst-case + scenario and is nonignorable. + +Figure 1: Graphical Representation of Missingness Mechanisms [@sch2002] + +![](GraphicalRepresentation.png) + +(X are the completely observed variables. Y are the partly missing +variables. Z is the component of the cause of missingness unrelated to X +and Y. R is the missingness.) + +Looking for patterns in the missing data can help us to determine which +category they belong. These mechanisms are important in determining how +to handle the missing data. MCAR would be the best-case scenario but +seldom occurs. MAR and MNAR are more common. Most methods of dealing +with missing data assume a MAR missingness. If data are found to be +MNAR, worst-case scenario, then specialized expertise and additional +steps are needed to model the missingness before handling the missing +data. The problem with ignoring any missing values is that it does not +give a true representation of the dataset and can lead to bias when +analyzing. This reduces the statistical power of the analysis +[@van2020]. + +According to @don2013, to enhance the quality of research, the following +should be followed with regards to missing data: + +- Determine under what conditions the missing data occur. +- Use principled methods to handle the missing data. +- Include and report the treatment of the missing data. + +#### Methods to Deal with Missing Data + +There are three types of methods to deal with missing data, the +likelihood and Bayesian method, weighting methods, or imputation methods +[@cao2021]. + +- Likelihood Bayesian method is when information from a previous + predictive distribution is combined with evidence obtained in a + sample to predict a value. It requires technical coding and advanced + statistical knowledge. + +- The weighting method is a traditional approach when weights from + available data are used to adjust for non-response in a survey. + Inefficiency occurs when there are extreme weights or a need for + many weights. + +- The imputation method is when an estimate from the original dataset + is used to estimate the missing value. There are two types of + imputation: single and multiple. + +#### Deleting Missing Data + +Another way to handle missing data is to simply delete it. Deleting +missing values can lead to the loss of important information regarding +your dataset, and is therefore not recommended. The two types of +deletion methods are listwise and pairwise. + +*Listwise deletion* is when the entire observation is removed from the +dataset. In certain cases when the amount of missing data is small and +the type is MCAR, listwise deletion can be used. There usually won't be +bias but potentially important information may be lost. + +T-tests and chi-square tests can be used to assess pairs of predictor +variables to determine whether the groups' means differ significantly. +According to @van2020, if significant, the null hypothesis is rejected, +therefore, indicating that the missing values are not randomly +distributed throughout the data. This implies that the missing data is +either MAR or MNAR. Conversely, if non-significant, this implies that +the data cannot be MAR. This does not eliminate the possibility that it +is not MNAR--other information about the population is needed to +determine this. + +Whenever missing data is categorized as MAR or MNAR, listwise deletion +would be wasteful, and the analysis biased. Alternate methods of dealing +with the missing data is recommended: either pairwise deletion or +imputation. + +*Pairwise deletion* is when only the missing variable of an observation +is removed. It allows more data to be analyzed than listwise deletion +but limits the ability to make inferences of the total sample. For this +reason, it is recommended to use imputation to properly deal with +missing data. + +#### Preferred Method to Handle Missing Data + +Imputation is the preferred method to handle missing data. It consists +of replacing missing data with an estimate obtained from the original, +available data. After imputation, there will be a full dataset to +analyze. According to @wul2017, 3-5 imputations are sufficient, and 10 +imputations are more than enough. More recent research has indicated +that to improve statistical power, the number of imputations created +should be at least equal to the percent of missing data (5% equals 5 +imputations, 10% equals 10 imputations, 20% equals 20 imputations, etc.) +[@ped2017]. + +*Single, or univariate, imputation* is when only one estimate is used to +replace the missing data. Methods of single imputation include using the +mean, the last observation carried forward, and random imputation. The +following is a brief explanation of each: + +- Using the mean to replace a missing value is a straight-forward + process. The mean of the dataset is calculated, including the + missing value. The mean is then multiplied by the number of + observations in the study. Next, the known values are subtracted + from the product, and this gives an estimate that can be used for + any missing values. The problem with this method is that it can + produce misleading results such as showing the variance and the + confidence interval smaller than they actually are. + +- Last Observation Carried Forward (LOCF) is a technique of replacing + a missing value in longitudinal studies with a previously observed + value, the most recent value is carried forward [@str2008]. The + problem with this method is that it assumes that the previous + observed value is perpetual when in reality that most likely is not + the case. + +- Random imputation is a method of randomly drawing an observation and + using that observation for any of the missing values. The problem + with this method is that it introduces additional variability. + +These single imputation methods are inaccurate. They often result in +underestimation of standard errors or too small p-values [@don2013], +which can cause bias in the analysis. Therefore, multiple imputation is +the superior method because it handles missing data better and provides +less biased results. + +*Multiple, or multivariate, imputation* is when various estimates are +used to replace the missing data by creating multiple datasets from +versions of the original dataset. According to @don2013, it can be done +by using a "regression model, or a sequence of regression models, such +as linear, logistic and Poison," where a set of *m* plausible values are +generated for each unobserved data point, resulting in *M* complete data +sets. The new values are randomly drawn from predictive distributions +either through joint modeling (JM, which is not used much anymore) or +fully conditional specification (FCS) [@won2023]. It is then analyzed +and the results are combined to obtain a single value for the missing +data. + +The purpose of multiple imputation is to create a pool of imputed data +for analysis, but if the pooled results are lacking, then multiple +imputation should not be done [@mai2023]. Another reason not to use +multiple imputation is if there are very few missing values; there may +be no benefit in using it. Also worth noting is some statistical +analyses software already have built-in features to deal with missing +data. + +Multiple imputation by chained methods, otherwise known as MICE, is the +most common and preferred method of multiple imputation [@wul2017]. It +provides a more reliable way to analyze data with missing values. For +this reason, this paper will focus on the methodology and application of +the MICE process. + +Figure 2: Flowchart of the MICE-process based on procedures proposed by +Rubin [@wul2017] + +```{r, warning=FALSE, echo=T, message=FALSE} +# load package +library(DiagrammeR) + +# flowchart of mice process +DiagrammeR::grViz("digraph { + +# initiate graph +graph [layout = dot, rankdir = LR, label = 'The MICE-Process\n\n',labelloc = t, fontcolor = DarkSlateBlue, fontsize = 45] + +# global node settings +node [shape = rectangle, style = filled, fillcolor = AliceBlue, fontcolor = DarkSlateBlue, fontsize = 35] +bgcolor = none + +# label nodes +incomplete [label = 'Incomplete data set'] +imputed1 [label = 'Imputed \n data set 1'] +estimates1 [label = 'Estimates from \n analysis 1'] +rubin [label = 'Rubins Rules', shape = diamond] +combined [label = 'Combined results'] +imputed2 [label = 'Imputed \n data set 2'] +estimates2 [label = 'Estimates from \n analysis 2'] +imputedm [label = 'Imputed \n data set m'] +estimatesm [label = 'Estimates from \n analysis m'] + +# edge definitions with the node IDs +incomplete -> imputed1 [arrowhead = vee, color = DarkSlateBlue] +imputed1 -> estimates1 [arrowhead = vee, color = DarkSlateBlue] +estimates1 -> rubin [arrowhead = vee, color = DarkSlateBlue] +incomplete -> imputed2 [arrowhead = vee, color = DarkSlateBlue] +imputed2 -> estimates2 [arrowhead = vee, color = DarkSlateBlue] +estimates2-> rubin [arrowhead = vee, color = DarkSlateBlue] +incomplete -> imputedm [arrowhead = vee, color = DarkSlateBlue] +imputedm -> estimatesm [arrowhead = vee, color = DarkSlateBlue] +estimatesm -> rubin [arrowhead = vee, color = DarkSlateBlue] +rubin -> combined [arrowhead = vee, color = DarkSlateBlue] +}") +``` + +*Rubin's Rules*: Donald Rubin was a Harvard professor in the seventies. +He felt that the then current method of dealing with missing data +(single imputation) was flawed. It was impossible to calculate missing +values with absolute certainty because the method did not consider the +estimates in error in the predictions of the missing data. For this +reason, he recommended creating multiple datasets based on the Bayesian +method and doing the following steps: + +- Impute missing data by averaging the estimates across imputed + datasets. +- Run regression on each of the imputed datasets. +- Find the standard errors and variance of the imputed estimates. + Combine them using an adjustment term. + +He felt like this would provide more accurate results than using just +one imputed dataset. His theory is referred to as Rubin's Rules. + +#### Other Methods of Imputation + +There are other methods of imputation worth noting and are briefly +described below. + +*Regression Imputation* is based on a linear regression model. Missing +data is randomly drawn from a conditional distribution when variables +are continuous and from a logistic regression model when they are +categorical [@van2020]. + +*Predictive Mean Matching (PMM)* is also based on a linear regression +model. The approach is the same as regression imputation when it comes +to categorical missing values but different for continuous variables. +Instead of random draws from a conditional distribution, missing values +are based on predicted values of the outcome variable [@van2020]. + +*Hot Deck (HD) imputation* is when a missing value is replaced by a +similar observed value, known as "the donor." It can be either random or +deterministic, which is based on a metric or value [@tho2022]. It does +not rely on model fitting. + +*Stochastic Regression (SR) Imputation* is an extension of regression +imputation. The process is the same but a residual term from the normal +distribution of the regression of the predictor outcome is added to the +imputed value [@tho2022]. This maintains the variability of the data. + +*Random Forest (RF) Imputation* is based on machine learning algorithms. +Missing values are first replaced with the mean or mode of that +particular variable and then the dataset is split into a training set +and a prediction set [@tho2022]. The missing values are replaced with +estimates from these sets. This type of imputation can be used on +continuous or categorical variables with complex interactions. + +## Methodology + +#### Multiple Imputation by Chained Equations (MICE) + +According to Rubin's Rules, in multiple imputation *m* imputed values +are created for each of the missing data and result in *M* complete +datasets. For each of the *M* datasets, an estimate of $\theta$ is +acquired. Let ${\hat{\theta}}_{m}$ and ${\hat{\phi}}_{m}$ be an +estimator of the variance of ${\hat{\theta}}_{m}$ based on the *M*th +complete dataset. The following formulas are used in the multiple +imputation process [@arn2017] and [@hey2019]. + +The combined estimator of $\theta$, the pooled mean difference, is given +by the following equation: + +$${\overline{\theta}} = \displaystyle \frac{1}{M}\sum_{m = 1}^{M} {\hat{\theta}}_{m}$$ +This is the sum of the *m* estimators from each of the *M* imputed +datasets which are pooled together and averaged. + +The proposed variance estimator of ${\hat{\theta}}_{M}$, the total +variance, is given by the following equation: + +$${\hat{\Phi}} = {\overline{\phi}}_{M} + (1+\displaystyle \frac{1}{M})B_{M}$$ + +This formula is made up of two parts: the average within imputation +variance and the between imputation variance (with a correction factor +of $(1+\displaystyle \frac{1}{M})$). + +The imputation variance within, which is the normal standard error, is +calculated as follows: + +$${\overline{\phi}} = \displaystyle \frac{1}{M}\sum_{m = 1}^{M}{SE}^2_m$$ + +This is the average of the sum of the standard errors squared of the +imputed datasets. It will be large in small datasets and small in large +datasets. + +The between imputation variance, which is how much extra variation there +is due to the imputation process, is calculated as follows: + +$$B_{M} = \displaystyle \frac{1}{M-1}\sum_{m = 1}^{M}({\hat{\theta}}_{m}-{\overline{\theta}})^{2}$$ + +This is the sum of the sample variance for each imputed data set +multiplied by 1 over the imputed datasets. It will be large when there +is a high number of missing data and small when there is a small number +of missing data [@hey2019]. When the between variance is greater than +the within variance, then greater efficiency occurs, and more accurate +estimates can be achieved by increasing *M*. Conversely, when the within +variance is greater than the between variance, then little is gained by +increasing *M*. + +To find the total standard error, take the square root of the total +variance: + +$$SE_{pooled} = {\sqrt{\hat{\Phi}}}$$ + +For significance testing, we use the Wald Test: + +$$Wald_{pooled} = \frac{(\overline{\theta} - {\theta_{0}})^2}{{\hat{\Phi}}}$$ + +The Wald test follows a t-distribution with the degrees of freedom as +follows: + +$$df = (M-1)(1+\frac{1}{M+1} * \frac{\overline{\theta}}{B_{M}})^2$$ + +It results in a 2-sided t-test with the t-value as follows: + +$$t_{df, 1-\alpha/2}$$ + +To test for significance using F-distribution, we square the t-value: + +$$ F_{1,df} = t^{2}_{df, 1-\alpha/2}$$ + +#### Assumptions + +All multiple imputation methods have the following assumptions: + +- Observed data follow a normal multivariate distribution. If not + normal, a transformation is first needed before imputation can be + performed. + +- Missing data are classified as MAR, which is when the distribution + of missing data is dependent of the observed values and not the + unobserved values. + +- "The parameters ${\theta}$ of the data model and the parameters ${\phi}$ of the model for the missing values are distinct. That is, knowing the values of ${\theta}$ does not provide any information about ${\phi}$" [@mip2019]. + +These assumptions are essential, otherwise we wouldn't be able to +predict a plausible replacement value for the missing data. + +#### Steps: + +The chained equation process has the following steps [@azu2011]: + +*Step 1:* Using simple imputation, replace the missing data with this +value, referred to as the "place holder." + +*Step 2:* The "place holder" values for one variable are set back to +missing. -## Methods +*Step 3:* The observed values from this variable (dependent variable) +are regressed on the other variables (independent variables) in the +model, using the same assumptions when performing linear, logistic, or +Poison regression. +*Step 4:* The missing values are replaced with predictions "m" from this +newly created model. -The common non-parametric regression model is $Y_i = m(X_i) + \varepsilon_i$, where -$Y_i$ can be defined as the sum of the regression function value $m(x)$ for $X_i$. -Here $m(x)$ is unknown and $\varepsilon_i$ some errors. With the help of this definition, we can create the estimation for -local averaging i.e. $m(x)$ can be estimated with the product of $Y_i$ average -and $X_i$ is near to $x$. In other words, this means that we are discovering -the line through the data points with the help of surrounding data points. -The estimation formula is printed below [@R-base]: +*Step 5:* Repeat Steps 2-4 for each variable that have missing values +until all missing values have been replaced. -$$ -M_n(x) = \sum_{i=1}^{n} W_n (X_i) Y_i \tag{1} -$$ -$W_n(x)$ is the sum of weights that belongs to all real numbers. Weights -are positive numbers and small if $X_i$ is far from $x$. +*Step 6:* Repeat Steps 2-4, updating imputations each cycle for as many +"M" cycles/imputations that are required. ## Analysis and Results -### Data and Vizualisation -A study was conducted to determine how... + +##### MICE in R + +Using the MICE (Multivariate Imputation by Chained Equations) package in +R, a statistical programming software, we will be demonstrating how to +impute missing data. We will run through the MICE process and provide +results of the imputations. We will then check the accuracy of the +imputations by comparing these results to the results of the original, +complete data set. + +### Data and Visualizations + +##### Load Data and Packages ```{r, warning=FALSE, echo=T, message=FALSE} -# loading packages +# load libraries +library(vtable) +library(gtsummary) +library(gt) +library(ggplot2) +library(VIM, warn.conflicts=FALSE) +library(dplyr, warn.conflicts=FALSE) +library(mice, warn.conflicts=FALSE) library(tidyverse) -library(knitr) -library(ggthemes) -library(ggrepel) -library(dslabs) +library(modelsummary) + +# load data +original = read.csv("kc_house_data.csv") +``` + +##### Description of Dataset + +kc_house_data.csv + +##### Details of Dataset + +This dataset contains the sale prices of 21,613 houses in King County, +Seattle between May 2014 to May 2015. The original dataset contained 21 +columns with various selling attributes. For the purpose of this +project, we have condensed the variables to the following four: sales +price, number of bedrooms, number of bathrooms, and square footage of +living space. + +##### Definition of Data in Dataset + +| Variable | Type | Description | +|------------------|------------------|------------------------------------| +| price | numeric | Sale price of homes sold between May 2014 and May 2015 in King County, Seattle; range from \$75,000 to \$7,700,000. | +| bedrooms | integer | Number of bedrooms in homes sold between May 2014 and May 2015 in King County, Seattle; range from 0 to 33. | +| bathrooms | numeric | Number of bathrooms in homes sold between May 2014 and May 2015 in King County, Seattle; range from 0 to 8. | +| sqft_living | integer | Number of square feet of living space in homes sold between May 2014 and May 2015 in King County, Seattle; range from 290 sf to 13,540 sf. | + +##### Summary of Dataset: + +```{r, warning=FALSE, echo=T, message=FALSE} +# summary of data +sumtable(original, col.align = c('left', 'center')) +``` + +##### Plotting of Data + +```{r, warning=FALSE, echo=T, message=FALSE} +# plot the data +ggplot(original, aes(x=sqft_living, y=price)) + + geom_point(alpha=0.5, color='darkblue') + + labs(x="sqft_living", y="price") +``` + +##### Evaluate Dataset + +First, we evaluate the dataset for missing values by using the is.na() +function: + +```{r, warning=FALSE, echo=T, message=FALSE} +# check for missing data +sapply(original, function(x) sum(is.na(x))) +``` + +There are no missing values; this is the original, complete dataset. Normally, this is where you would find out how much missing data your dataset contains and you would move on to the next step in imputation. Since our dataset does not contain any missing values, we +will need to add an additional step to artificially create some missing data. We do this by first +duplicating the dataset. We want to preserve the original dataset so +that we can later check the accuracy of the imputation process. + +```{r, warning=FALSE, echo=T, message=FALSE} +# duplicate dataset +house <- original +``` + +Next, we randomly replace the desired amount of values with NA to mimic +missing data. We will assign 200 NA values to the following variables: +bedrooms, bathrooms, and sqft_living and 100 NA values to the price +variable. + +```{r, warning=FALSE, echo=T, message=FALSE} +# replace some values with NA to create missing data +set.seed(10) +house[sample(1:nrow(house), 200), "sqft_living"] <- NA +house[sample(1:nrow(house), 200), "bedrooms"] <- NA +house[sample(1:nrow(house), 200), "bathrooms"] <- NA +house[sample(1:nrow(house), 100), "price"] <- NA +``` + +Using the is.na() function, we can check to confirm we have created +missing data: + +```{r, warning=FALSE, echo=T, message=FALSE} +# check for missing data +sapply(house, function(x) sum(is.na(x))) +``` + +Our dataset now has 700 NA/missing values. This equates to about 3% of +the data (700/21,613). + +##### Checking for Patterns + +Next, we need to check the missingness by looking for patterns in the +dataset by using the md.pattern() function. Of course our missing data +was randomly created, so we know we have MCAR. + +```{r, warning=FALSE, echo=T, message=FALSE} +# check the missingness patterns +md.pattern(house, rotate.names = TRUE) +``` + +Blue are the observed/complete values, and red are the missing values. +The numbers on the left indicate how many complete values there are and +the numbers on the right show how many variables contain missing data. +So for example, the first line shows there are 20,920 complete +observations across all four variables. The next line indicates there +are 195 complete observations in three of the variables with data +missing in the sqft_living variable, so forth and so on all the way down +the list. The total number of missing data for each variable is listed +across the bottom. This visual gives a breakdown of where the missing +data occurs. + +Another way to look for patterns in the missing data is to use the +aggr() function: + +```{r, warning=FALSE, echo=T, message=FALSE} +# histogram, patterns and count for missing data +aggr_plot <- aggr(house, col=c('navyblue','red'), numbers=TRUE, sortVars=TRUE, labels=names(data), cex.axis=.7, gap=3, ylab=c("Histogram of missing data","Pattern")) +``` + +It provides a histogram of the missing values and shows each variable +and the percent of missing data for each (as a decimal): + +- bedrooms: 0.9% + +- bathrooms: 0.9% + +- sqft_living: 0.9% + +- price: 0.5% + +Another visualization to check for the missingness is a margin plot: + +```{r, warning=FALSE, echo=T, message=FALSE} +# margin plot for missingness +marginplot(house[c(1,4)]) ``` +The red box plot on the left shows the distribution of sqft_living with +price missing. The blue box plot shows the distribution of the remaining +data. The same is true for the price box plots on the bottom. We expect +the red and blue boxplots to be very similar if our assumptions of MCAR +data are true. In this case, they are. + +##### Imputation Process -```{r, warning=FALSE, echo=TRUE} -# Load Data -kable(head(murders)) +Since we are missing about 3% of our data, we need to perform at least 3 +imputations. This can be done by using the mice() function. Since 5 is +the default, we will use that; if you need to use something different, +you must set m equal to the number of imputations that you desire. The +set.seed will be given the value 1337 (any number can be used here) to +ensure that the same random values are generated each time. + +```{r, warning=FALSE, echo=T, message=FALSE} +# impute the data 5 times (default) +imp = mice(data = house, set.seed = 1337) +``` -ggplot1 = murders %>% ggplot(mapping = aes(x=population/10^6, y=total)) +We need to create the imputed dataset using the complete() function. We will not display the results since there are 21,613 rows. - ggplot1 + geom_point(aes(col=region), size = 4) + - geom_text_repel(aes(label=abb)) + - scale_x_log10() + - scale_y_log10() + - geom_smooth(formula = "y~x", method=lm,se = F)+ - xlab("Populations in millions (log10 scale)") + - ylab("Total number of murders (log10 scale)") + - ggtitle("US Gun Murders in 2010") + - scale_color_discrete(name = "Region")+ - theme_wsj() - +```{r, warning=FALSE, echo=T, message=FALSE} +# create imputed dataset +imputed <- complete(imp) +``` + +We now need to check the imputed dataset to make sure there is no +missing data. Again, we use the is.na() function: + +```{r, warning=FALSE, echo=T, message=FALSE} +# check imputed dataset for missing values +sapply(imputed, function(x) sum(is.na(x))) +``` + +We can check the quality of the imputations by running a strip plot, +which is a single axis scatter plot. It will show the distribution of +the imputed values (red) over the observed values (blue). We want the +imputations to be values that could have been observed had the data not +been missing. These look to be acceptable. + +```{r, warning=FALSE, echo=T, message=FALSE} +# strip plots to check the quality of the imputations +par(mfrow=c(2,2)) +stripplot(imp, price, pch = 19, cex=1, xlab = "Imputation number") +stripplot(imp, bedrooms, pch = 19, cex=1, xlab = "Imputation number") +stripplot(imp, bathrooms, pch = 19, cex=1, xlab = "Imputation number") +stripplot(imp, sqft_living, pch = 19, cex=1, xlab = "Imputation number") +``` + +##### Fitting and Pooling Imputed Datasets + +Next, we will run regression on our imputed datasets, so we will have 5 +regression results. We do this with the with() function. For each +regression, we get different results. + +```{r, warning=FALSE, echo=T, message=FALSE} +# fit complete-data model +fit <- with(imp, lm(price~bedrooms+bathrooms+sqft_living)) +``` + +Next, we will pool the results to arrive at estimates that will properly +account for the missing data. It will give us the estimate, standard +error, test statistic, degrees of freedom, and the p-value for each +variable. + +```{r, warning=FALSE, echo=T, message=FALSE} +# pool and summarize the results +summary(pool(fit)) + + +``` + +We can now analyze our dataset as if there were no missing data! + +##### Checking for Accuracy + +We will now compare the results from our pooled, imputed dataset to our +original, complete dataset (before we removed values to create missing +data) to check for accuracy of the imputation method by chained +equations: + +```{r, warning=FALSE, echo=T, message=FALSE} +# fit original, complete dataset +og_lm = lm(price~bedrooms+bathrooms+sqft_living, data = original) +# compare imputed dataset to the original dataset +msummary(list("Imputed" = pool(fit), "Original" = og_lm), title = "Comparison of Results", statistic = "p.value", estimate = "estimate", gof_omit = 'IC|Log|Adj|F|RMSE') ``` -### Statistical Modeling +The estimates from the multiple imputation are very close to the +estimates for the original dataset, with the exception of bathrooms +which is off just slightly. The p-values are all statistically +significant in the original dataset, as well as the imputed dataset, +with very minimal differences in their values. These results indicate a +high accuracy of the imputation process. We can conclude that multiple +imputation by chained equation is a reliable source to impute missing +data. -### Conlusion +## Conclusion -## References +In conclusion, missing data can occur in research for a variety of +reasons. It is never a good idea to ignore it. Doing this will lead "to +biased estimates of parameters, loss of information, decreased +statistical power, and weak reliability of findings" [@don2013]. When +missing data is discovered, it is important to first identify it and +look for missing data patterns. The best course of action is to impute +the missing data by using multiple imputation. Next, define the +variables in the dataset that are related to the missing values that +will be used for imputation. Create the necessary number of complete +data sets with imputed values. Run regression on these models and +combine them using Rubin's Rules. Finally, analyze the dataset. +Performing these steps will minimize the adverse effects on the analysis +caused by missing data [@pam2016]. diff --git a/index_files/figure-html/unnamed-chunk-2-1.png b/index_files/figure-html/unnamed-chunk-2-1.png deleted file mode 100644 index 623942f8e..000000000 Binary files a/index_files/figure-html/unnamed-chunk-2-1.png and /dev/null differ diff --git a/index_files/libs/bootstrap/bootstrap-icons.css b/index_files/libs/bootstrap/bootstrap-icons.css deleted file mode 100644 index f51d04bc9..000000000 --- a/index_files/libs/bootstrap/bootstrap-icons.css +++ /dev/null @@ -1,1704 +0,0 @@ -@font-face { - font-family: "bootstrap-icons"; - src: -url("./bootstrap-icons.woff?524846017b983fc8ded9325d94ed40f3") format("woff"); -} - -.bi::before, -[class^="bi-"]::before, -[class*=" bi-"]::before { - display: inline-block; - font-family: bootstrap-icons !important; - font-style: normal; - font-weight: normal !important; - font-variant: normal; - text-transform: none; - line-height: 1; - vertical-align: -.125em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.bi-123::before { content: "\f67f"; } -.bi-alarm-fill::before { content: "\f101"; } -.bi-alarm::before { content: "\f102"; } -.bi-align-bottom::before { content: "\f103"; } -.bi-align-center::before { content: "\f104"; } -.bi-align-end::before { content: "\f105"; } -.bi-align-middle::before { content: "\f106"; } -.bi-align-start::before { content: "\f107"; } -.bi-align-top::before { content: "\f108"; } -.bi-alt::before { content: "\f109"; } -.bi-app-indicator::before { content: "\f10a"; } -.bi-app::before { content: "\f10b"; } -.bi-archive-fill::before { content: "\f10c"; } -.bi-archive::before { content: "\f10d"; } -.bi-arrow-90deg-down::before { content: "\f10e"; } -.bi-arrow-90deg-left::before { content: "\f10f"; } -.bi-arrow-90deg-right::before { content: "\f110"; } -.bi-arrow-90deg-up::before { content: "\f111"; } -.bi-arrow-bar-down::before { content: "\f112"; } -.bi-arrow-bar-left::before { content: "\f113"; } -.bi-arrow-bar-right::before { content: "\f114"; } -.bi-arrow-bar-up::before { content: "\f115"; } -.bi-arrow-clockwise::before { content: "\f116"; } -.bi-arrow-counterclockwise::before { content: "\f117"; } -.bi-arrow-down-circle-fill::before { content: "\f118"; } -.bi-arrow-down-circle::before { content: "\f119"; } -.bi-arrow-down-left-circle-fill::before { content: "\f11a"; } -.bi-arrow-down-left-circle::before { content: "\f11b"; } -.bi-arrow-down-left-square-fill::before { content: "\f11c"; } -.bi-arrow-down-left-square::before { content: "\f11d"; } -.bi-arrow-down-left::before { content: "\f11e"; } -.bi-arrow-down-right-circle-fill::before { content: "\f11f"; } -.bi-arrow-down-right-circle::before { content: "\f120"; } -.bi-arrow-down-right-square-fill::before { content: "\f121"; } -.bi-arrow-down-right-square::before { content: "\f122"; } -.bi-arrow-down-right::before { content: "\f123"; } -.bi-arrow-down-short::before { content: "\f124"; } -.bi-arrow-down-square-fill::before { content: "\f125"; } -.bi-arrow-down-square::before { content: "\f126"; } -.bi-arrow-down-up::before { content: "\f127"; } -.bi-arrow-down::before { content: "\f128"; } -.bi-arrow-left-circle-fill::before { content: "\f129"; } -.bi-arrow-left-circle::before { content: "\f12a"; } -.bi-arrow-left-right::before { content: "\f12b"; } -.bi-arrow-left-short::before { content: "\f12c"; } -.bi-arrow-left-square-fill::before { content: "\f12d"; } -.bi-arrow-left-square::before { content: "\f12e"; } -.bi-arrow-left::before { content: "\f12f"; } -.bi-arrow-repeat::before { content: "\f130"; } -.bi-arrow-return-left::before { content: "\f131"; } -.bi-arrow-return-right::before { content: "\f132"; } -.bi-arrow-right-circle-fill::before { content: "\f133"; } -.bi-arrow-right-circle::before { content: "\f134"; } -.bi-arrow-right-short::before { content: "\f135"; } -.bi-arrow-right-square-fill::before { content: "\f136"; } -.bi-arrow-right-square::before { content: "\f137"; } -.bi-arrow-right::before { content: "\f138"; } -.bi-arrow-up-circle-fill::before { content: "\f139"; } -.bi-arrow-up-circle::before { content: "\f13a"; } -.bi-arrow-up-left-circle-fill::before { content: "\f13b"; } -.bi-arrow-up-left-circle::before { content: "\f13c"; } -.bi-arrow-up-left-square-fill::before { content: "\f13d"; } -.bi-arrow-up-left-square::before { content: "\f13e"; } -.bi-arrow-up-left::before { content: "\f13f"; } -.bi-arrow-up-right-circle-fill::before { content: "\f140"; } -.bi-arrow-up-right-circle::before { content: "\f141"; } -.bi-arrow-up-right-square-fill::before { content: "\f142"; } -.bi-arrow-up-right-square::before { content: "\f143"; } -.bi-arrow-up-right::before { content: "\f144"; } -.bi-arrow-up-short::before { content: "\f145"; } -.bi-arrow-up-square-fill::before { content: "\f146"; } -.bi-arrow-up-square::before { content: "\f147"; } -.bi-arrow-up::before { content: "\f148"; } -.bi-arrows-angle-contract::before { content: "\f149"; } -.bi-arrows-angle-expand::before { content: "\f14a"; } -.bi-arrows-collapse::before { content: "\f14b"; } -.bi-arrows-expand::before { content: "\f14c"; } -.bi-arrows-fullscreen::before { content: "\f14d"; } -.bi-arrows-move::before { content: "\f14e"; } -.bi-aspect-ratio-fill::before { content: "\f14f"; } -.bi-aspect-ratio::before { content: "\f150"; } -.bi-asterisk::before { content: "\f151"; } -.bi-at::before { content: "\f152"; } -.bi-award-fill::before { content: "\f153"; } -.bi-award::before { content: "\f154"; } -.bi-back::before { content: "\f155"; } -.bi-backspace-fill::before { content: "\f156"; } -.bi-backspace-reverse-fill::before { content: "\f157"; } -.bi-backspace-reverse::before { content: "\f158"; } -.bi-backspace::before { content: "\f159"; } -.bi-badge-3d-fill::before { content: "\f15a"; } -.bi-badge-3d::before { content: "\f15b"; } -.bi-badge-4k-fill::before { content: "\f15c"; } -.bi-badge-4k::before { content: "\f15d"; } -.bi-badge-8k-fill::before { content: "\f15e"; } -.bi-badge-8k::before { content: "\f15f"; } -.bi-badge-ad-fill::before { content: "\f160"; } -.bi-badge-ad::before { content: "\f161"; } -.bi-badge-ar-fill::before { content: "\f162"; } -.bi-badge-ar::before { content: "\f163"; } -.bi-badge-cc-fill::before { content: "\f164"; } -.bi-badge-cc::before { content: "\f165"; } -.bi-badge-hd-fill::before { content: "\f166"; } -.bi-badge-hd::before { content: "\f167"; } -.bi-badge-tm-fill::before { content: "\f168"; } -.bi-badge-tm::before { content: "\f169"; } -.bi-badge-vo-fill::before { content: "\f16a"; } -.bi-badge-vo::before { content: "\f16b"; } -.bi-badge-vr-fill::before { content: "\f16c"; } -.bi-badge-vr::before { content: "\f16d"; } -.bi-badge-wc-fill::before { content: "\f16e"; } -.bi-badge-wc::before { content: "\f16f"; } -.bi-bag-check-fill::before { content: "\f170"; } -.bi-bag-check::before { content: "\f171"; } -.bi-bag-dash-fill::before { content: "\f172"; } -.bi-bag-dash::before { content: "\f173"; } -.bi-bag-fill::before { content: "\f174"; } -.bi-bag-plus-fill::before { content: "\f175"; } -.bi-bag-plus::before { content: "\f176"; } -.bi-bag-x-fill::before { content: "\f177"; } -.bi-bag-x::before { content: "\f178"; } -.bi-bag::before { content: "\f179"; } -.bi-bar-chart-fill::before { content: "\f17a"; } -.bi-bar-chart-line-fill::before { content: "\f17b"; } -.bi-bar-chart-line::before { content: "\f17c"; } -.bi-bar-chart-steps::before { content: "\f17d"; } -.bi-bar-chart::before { content: "\f17e"; } -.bi-basket-fill::before { content: "\f17f"; } -.bi-basket::before { content: "\f180"; } -.bi-basket2-fill::before { content: "\f181"; } -.bi-basket2::before { content: "\f182"; } -.bi-basket3-fill::before { content: "\f183"; } -.bi-basket3::before { content: "\f184"; } -.bi-battery-charging::before { content: "\f185"; } -.bi-battery-full::before { content: "\f186"; } -.bi-battery-half::before { content: "\f187"; } -.bi-battery::before { content: "\f188"; } -.bi-bell-fill::before { content: "\f189"; } -.bi-bell::before { content: "\f18a"; } -.bi-bezier::before { content: "\f18b"; } -.bi-bezier2::before { content: "\f18c"; } -.bi-bicycle::before { content: "\f18d"; } -.bi-binoculars-fill::before { content: "\f18e"; } -.bi-binoculars::before { content: "\f18f"; } -.bi-blockquote-left::before { content: "\f190"; } -.bi-blockquote-right::before { content: "\f191"; } -.bi-book-fill::before { content: "\f192"; } -.bi-book-half::before { content: "\f193"; } -.bi-book::before { content: "\f194"; } -.bi-bookmark-check-fill::before { content: "\f195"; } -.bi-bookmark-check::before { content: "\f196"; } -.bi-bookmark-dash-fill::before { content: "\f197"; } -.bi-bookmark-dash::before { content: "\f198"; } -.bi-bookmark-fill::before { content: "\f199"; } -.bi-bookmark-heart-fill::before { content: "\f19a"; } -.bi-bookmark-heart::before { content: "\f19b"; } -.bi-bookmark-plus-fill::before { content: "\f19c"; } -.bi-bookmark-plus::before { content: "\f19d"; } -.bi-bookmark-star-fill::before { content: "\f19e"; } -.bi-bookmark-star::before { content: "\f19f"; } -.bi-bookmark-x-fill::before { content: "\f1a0"; } -.bi-bookmark-x::before { content: "\f1a1"; } -.bi-bookmark::before { content: "\f1a2"; } -.bi-bookmarks-fill::before { content: "\f1a3"; } -.bi-bookmarks::before { content: "\f1a4"; } -.bi-bookshelf::before { content: "\f1a5"; } -.bi-bootstrap-fill::before { content: "\f1a6"; } -.bi-bootstrap-reboot::before { content: "\f1a7"; } -.bi-bootstrap::before { content: "\f1a8"; } -.bi-border-all::before { content: "\f1a9"; } -.bi-border-bottom::before { content: "\f1aa"; } -.bi-border-center::before { content: "\f1ab"; } -.bi-border-inner::before { content: "\f1ac"; } -.bi-border-left::before { content: "\f1ad"; } -.bi-border-middle::before { content: "\f1ae"; } -.bi-border-outer::before { content: "\f1af"; } -.bi-border-right::before { content: "\f1b0"; } -.bi-border-style::before { content: "\f1b1"; } -.bi-border-top::before { content: "\f1b2"; } -.bi-border-width::before { content: "\f1b3"; } -.bi-border::before { content: "\f1b4"; } -.bi-bounding-box-circles::before { content: "\f1b5"; } -.bi-bounding-box::before { content: "\f1b6"; } -.bi-box-arrow-down-left::before { content: "\f1b7"; } -.bi-box-arrow-down-right::before { content: "\f1b8"; } -.bi-box-arrow-down::before { content: "\f1b9"; } -.bi-box-arrow-in-down-left::before { content: "\f1ba"; } -.bi-box-arrow-in-down-right::before { content: "\f1bb"; } -.bi-box-arrow-in-down::before { content: "\f1bc"; } -.bi-box-arrow-in-left::before { content: "\f1bd"; } -.bi-box-arrow-in-right::before { content: "\f1be"; } -.bi-box-arrow-in-up-left::before { content: "\f1bf"; } -.bi-box-arrow-in-up-right::before { content: "\f1c0"; } -.bi-box-arrow-in-up::before { content: "\f1c1"; } -.bi-box-arrow-left::before { content: "\f1c2"; } -.bi-box-arrow-right::before { content: "\f1c3"; } -.bi-box-arrow-up-left::before { content: "\f1c4"; } -.bi-box-arrow-up-right::before { content: "\f1c5"; } -.bi-box-arrow-up::before { content: "\f1c6"; } -.bi-box-seam::before { content: "\f1c7"; } -.bi-box::before { content: "\f1c8"; } -.bi-braces::before { content: "\f1c9"; } -.bi-bricks::before { content: "\f1ca"; } -.bi-briefcase-fill::before { content: "\f1cb"; } -.bi-briefcase::before { content: "\f1cc"; } -.bi-brightness-alt-high-fill::before { content: "\f1cd"; } -.bi-brightness-alt-high::before { content: "\f1ce"; } -.bi-brightness-alt-low-fill::before { content: "\f1cf"; } -.bi-brightness-alt-low::before { content: "\f1d0"; } -.bi-brightness-high-fill::before { content: "\f1d1"; } -.bi-brightness-high::before { content: "\f1d2"; } -.bi-brightness-low-fill::before { content: "\f1d3"; } -.bi-brightness-low::before { content: "\f1d4"; } -.bi-broadcast-pin::before { content: "\f1d5"; } -.bi-broadcast::before { content: "\f1d6"; } -.bi-brush-fill::before { content: "\f1d7"; } -.bi-brush::before { content: "\f1d8"; } -.bi-bucket-fill::before { content: "\f1d9"; } -.bi-bucket::before { content: "\f1da"; } -.bi-bug-fill::before { content: "\f1db"; } -.bi-bug::before { content: "\f1dc"; } -.bi-building::before { content: "\f1dd"; } -.bi-bullseye::before { content: "\f1de"; } -.bi-calculator-fill::before { content: "\f1df"; } -.bi-calculator::before { content: "\f1e0"; } -.bi-calendar-check-fill::before { content: "\f1e1"; } -.bi-calendar-check::before { content: "\f1e2"; } -.bi-calendar-date-fill::before { content: "\f1e3"; } -.bi-calendar-date::before { content: "\f1e4"; } -.bi-calendar-day-fill::before { content: "\f1e5"; } -.bi-calendar-day::before { content: "\f1e6"; } -.bi-calendar-event-fill::before { content: "\f1e7"; } -.bi-calendar-event::before { content: "\f1e8"; } -.bi-calendar-fill::before { content: "\f1e9"; } -.bi-calendar-minus-fill::before { content: "\f1ea"; } -.bi-calendar-minus::before { content: "\f1eb"; } -.bi-calendar-month-fill::before { content: "\f1ec"; } -.bi-calendar-month::before { content: "\f1ed"; } -.bi-calendar-plus-fill::before { content: "\f1ee"; } -.bi-calendar-plus::before { content: "\f1ef"; } -.bi-calendar-range-fill::before { content: "\f1f0"; } -.bi-calendar-range::before { content: "\f1f1"; } -.bi-calendar-week-fill::before { content: "\f1f2"; } -.bi-calendar-week::before { content: "\f1f3"; } -.bi-calendar-x-fill::before { content: "\f1f4"; } -.bi-calendar-x::before { content: "\f1f5"; } -.bi-calendar::before { content: "\f1f6"; } -.bi-calendar2-check-fill::before { content: "\f1f7"; } -.bi-calendar2-check::before { content: "\f1f8"; } -.bi-calendar2-date-fill::before { content: "\f1f9"; } -.bi-calendar2-date::before { content: "\f1fa"; } -.bi-calendar2-day-fill::before { content: "\f1fb"; } -.bi-calendar2-day::before { content: "\f1fc"; } -.bi-calendar2-event-fill::before { content: "\f1fd"; } -.bi-calendar2-event::before { content: "\f1fe"; } -.bi-calendar2-fill::before { content: "\f1ff"; } -.bi-calendar2-minus-fill::before { content: "\f200"; } -.bi-calendar2-minus::before { content: "\f201"; } -.bi-calendar2-month-fill::before { content: "\f202"; } -.bi-calendar2-month::before { content: "\f203"; } -.bi-calendar2-plus-fill::before { content: "\f204"; } -.bi-calendar2-plus::before { content: "\f205"; } -.bi-calendar2-range-fill::before { content: "\f206"; } -.bi-calendar2-range::before { content: "\f207"; } -.bi-calendar2-week-fill::before { content: "\f208"; } -.bi-calendar2-week::before { content: "\f209"; } -.bi-calendar2-x-fill::before { content: "\f20a"; } -.bi-calendar2-x::before { content: "\f20b"; } -.bi-calendar2::before { content: "\f20c"; } -.bi-calendar3-event-fill::before { content: "\f20d"; } -.bi-calendar3-event::before { content: "\f20e"; } -.bi-calendar3-fill::before { content: "\f20f"; } -.bi-calendar3-range-fill::before { content: "\f210"; } -.bi-calendar3-range::before { content: "\f211"; } -.bi-calendar3-week-fill::before { content: "\f212"; } -.bi-calendar3-week::before { content: "\f213"; } -.bi-calendar3::before { content: "\f214"; } -.bi-calendar4-event::before { content: "\f215"; } -.bi-calendar4-range::before { content: "\f216"; } -.bi-calendar4-week::before { content: "\f217"; } -.bi-calendar4::before { content: "\f218"; } -.bi-camera-fill::before { content: "\f219"; } -.bi-camera-reels-fill::before { content: "\f21a"; } -.bi-camera-reels::before { content: "\f21b"; } -.bi-camera-video-fill::before { content: "\f21c"; } -.bi-camera-video-off-fill::before { content: "\f21d"; } -.bi-camera-video-off::before { content: "\f21e"; } -.bi-camera-video::before { content: "\f21f"; } -.bi-camera::before { content: "\f220"; } -.bi-camera2::before { content: "\f221"; } -.bi-capslock-fill::before { content: "\f222"; } -.bi-capslock::before { content: "\f223"; } -.bi-card-checklist::before { content: "\f224"; } -.bi-card-heading::before { content: "\f225"; } -.bi-card-image::before { content: "\f226"; } -.bi-card-list::before { content: "\f227"; } -.bi-card-text::before { content: "\f228"; } -.bi-caret-down-fill::before { content: "\f229"; } -.bi-caret-down-square-fill::before { content: "\f22a"; } -.bi-caret-down-square::before { content: "\f22b"; } -.bi-caret-down::before { content: "\f22c"; } -.bi-caret-left-fill::before { content: "\f22d"; } -.bi-caret-left-square-fill::before { content: "\f22e"; } -.bi-caret-left-square::before { content: "\f22f"; } -.bi-caret-left::before { content: "\f230"; } -.bi-caret-right-fill::before { content: "\f231"; } -.bi-caret-right-square-fill::before { content: "\f232"; } -.bi-caret-right-square::before { content: "\f233"; } -.bi-caret-right::before { content: "\f234"; } -.bi-caret-up-fill::before { content: "\f235"; } -.bi-caret-up-square-fill::before { content: "\f236"; } -.bi-caret-up-square::before { content: "\f237"; } -.bi-caret-up::before { content: "\f238"; } -.bi-cart-check-fill::before { content: "\f239"; } -.bi-cart-check::before { content: "\f23a"; } -.bi-cart-dash-fill::before { content: "\f23b"; } -.bi-cart-dash::before { content: "\f23c"; } -.bi-cart-fill::before { content: "\f23d"; } -.bi-cart-plus-fill::before { content: "\f23e"; } -.bi-cart-plus::before { content: "\f23f"; } -.bi-cart-x-fill::before { content: "\f240"; } -.bi-cart-x::before { content: "\f241"; } -.bi-cart::before { content: "\f242"; } -.bi-cart2::before { content: "\f243"; } -.bi-cart3::before { content: "\f244"; } -.bi-cart4::before { content: "\f245"; } -.bi-cash-stack::before { content: "\f246"; } -.bi-cash::before { content: "\f247"; } -.bi-cast::before { content: "\f248"; } -.bi-chat-dots-fill::before { content: "\f249"; } -.bi-chat-dots::before { content: "\f24a"; } -.bi-chat-fill::before { content: "\f24b"; } -.bi-chat-left-dots-fill::before { content: "\f24c"; } -.bi-chat-left-dots::before { content: "\f24d"; } -.bi-chat-left-fill::before { content: "\f24e"; } -.bi-chat-left-quote-fill::before { content: "\f24f"; } -.bi-chat-left-quote::before { content: "\f250"; } -.bi-chat-left-text-fill::before { content: "\f251"; } -.bi-chat-left-text::before { content: "\f252"; } -.bi-chat-left::before { content: "\f253"; } -.bi-chat-quote-fill::before { content: "\f254"; } -.bi-chat-quote::before { content: "\f255"; } -.bi-chat-right-dots-fill::before { content: "\f256"; } -.bi-chat-right-dots::before { content: "\f257"; } -.bi-chat-right-fill::before { content: "\f258"; } -.bi-chat-right-quote-fill::before { content: "\f259"; } -.bi-chat-right-quote::before { content: "\f25a"; } -.bi-chat-right-text-fill::before { content: "\f25b"; } -.bi-chat-right-text::before { content: "\f25c"; } -.bi-chat-right::before { content: "\f25d"; } -.bi-chat-square-dots-fill::before { content: "\f25e"; } -.bi-chat-square-dots::before { content: "\f25f"; } -.bi-chat-square-fill::before { content: "\f260"; } -.bi-chat-square-quote-fill::before { content: "\f261"; } -.bi-chat-square-quote::before { content: "\f262"; } -.bi-chat-square-text-fill::before { content: "\f263"; } -.bi-chat-square-text::before { content: "\f264"; } -.bi-chat-square::before { content: "\f265"; } -.bi-chat-text-fill::before { content: "\f266"; } -.bi-chat-text::before { content: "\f267"; } -.bi-chat::before { content: "\f268"; } -.bi-check-all::before { content: "\f269"; } -.bi-check-circle-fill::before { content: "\f26a"; } -.bi-check-circle::before { content: "\f26b"; } -.bi-check-square-fill::before { content: "\f26c"; } -.bi-check-square::before { content: "\f26d"; } -.bi-check::before { content: "\f26e"; } -.bi-check2-all::before { content: "\f26f"; } -.bi-check2-circle::before { content: "\f270"; } -.bi-check2-square::before { content: "\f271"; } -.bi-check2::before { content: "\f272"; } -.bi-chevron-bar-contract::before { content: "\f273"; } -.bi-chevron-bar-down::before { content: "\f274"; } -.bi-chevron-bar-expand::before { content: "\f275"; } -.bi-chevron-bar-left::before { content: "\f276"; } -.bi-chevron-bar-right::before { content: "\f277"; } -.bi-chevron-bar-up::before { content: "\f278"; } -.bi-chevron-compact-down::before { content: "\f279"; } -.bi-chevron-compact-left::before { content: "\f27a"; } -.bi-chevron-compact-right::before { content: "\f27b"; } -.bi-chevron-compact-up::before { content: "\f27c"; } -.bi-chevron-contract::before { content: "\f27d"; } -.bi-chevron-double-down::before { content: "\f27e"; } -.bi-chevron-double-left::before { content: "\f27f"; } -.bi-chevron-double-right::before { content: "\f280"; } -.bi-chevron-double-up::before { content: "\f281"; } -.bi-chevron-down::before { content: "\f282"; } -.bi-chevron-expand::before { content: "\f283"; } -.bi-chevron-left::before { content: "\f284"; } -.bi-chevron-right::before { content: "\f285"; } -.bi-chevron-up::before { content: "\f286"; } -.bi-circle-fill::before { content: "\f287"; } -.bi-circle-half::before { content: "\f288"; } -.bi-circle-square::before { content: "\f289"; } -.bi-circle::before { content: "\f28a"; } -.bi-clipboard-check::before { content: "\f28b"; } -.bi-clipboard-data::before { content: "\f28c"; } -.bi-clipboard-minus::before { content: "\f28d"; } -.bi-clipboard-plus::before { content: "\f28e"; } -.bi-clipboard-x::before { content: "\f28f"; } -.bi-clipboard::before { content: "\f290"; } -.bi-clock-fill::before { content: "\f291"; } -.bi-clock-history::before { content: "\f292"; } -.bi-clock::before { content: "\f293"; } -.bi-cloud-arrow-down-fill::before { content: "\f294"; } -.bi-cloud-arrow-down::before { content: "\f295"; } -.bi-cloud-arrow-up-fill::before { content: "\f296"; } -.bi-cloud-arrow-up::before { content: "\f297"; } -.bi-cloud-check-fill::before { content: "\f298"; } -.bi-cloud-check::before { content: "\f299"; } -.bi-cloud-download-fill::before { content: "\f29a"; } -.bi-cloud-download::before { content: "\f29b"; } -.bi-cloud-drizzle-fill::before { content: "\f29c"; } -.bi-cloud-drizzle::before { content: "\f29d"; } -.bi-cloud-fill::before { content: "\f29e"; } -.bi-cloud-fog-fill::before { content: "\f29f"; } -.bi-cloud-fog::before { content: "\f2a0"; } -.bi-cloud-fog2-fill::before { content: "\f2a1"; } -.bi-cloud-fog2::before { content: "\f2a2"; } -.bi-cloud-hail-fill::before { content: "\f2a3"; } -.bi-cloud-hail::before { content: "\f2a4"; } -.bi-cloud-haze-1::before { content: "\f2a5"; } -.bi-cloud-haze-fill::before { content: "\f2a6"; } -.bi-cloud-haze::before { content: "\f2a7"; } -.bi-cloud-haze2-fill::before { content: "\f2a8"; } -.bi-cloud-lightning-fill::before { content: "\f2a9"; } -.bi-cloud-lightning-rain-fill::before { content: "\f2aa"; } -.bi-cloud-lightning-rain::before { content: "\f2ab"; } -.bi-cloud-lightning::before { content: "\f2ac"; } -.bi-cloud-minus-fill::before { content: "\f2ad"; } -.bi-cloud-minus::before { content: "\f2ae"; } -.bi-cloud-moon-fill::before { content: "\f2af"; } -.bi-cloud-moon::before { content: "\f2b0"; } -.bi-cloud-plus-fill::before { content: "\f2b1"; } -.bi-cloud-plus::before { content: "\f2b2"; } -.bi-cloud-rain-fill::before { content: "\f2b3"; } -.bi-cloud-rain-heavy-fill::before { content: "\f2b4"; } -.bi-cloud-rain-heavy::before { content: "\f2b5"; } -.bi-cloud-rain::before { content: "\f2b6"; } -.bi-cloud-slash-fill::before { content: "\f2b7"; } -.bi-cloud-slash::before { content: "\f2b8"; } -.bi-cloud-sleet-fill::before { content: "\f2b9"; } -.bi-cloud-sleet::before { content: "\f2ba"; } -.bi-cloud-snow-fill::before { content: "\f2bb"; } -.bi-cloud-snow::before { content: "\f2bc"; } -.bi-cloud-sun-fill::before { content: "\f2bd"; } -.bi-cloud-sun::before { content: "\f2be"; } -.bi-cloud-upload-fill::before { content: "\f2bf"; } -.bi-cloud-upload::before { content: "\f2c0"; } -.bi-cloud::before { content: "\f2c1"; } -.bi-clouds-fill::before { content: "\f2c2"; } -.bi-clouds::before { content: "\f2c3"; } -.bi-cloudy-fill::before { content: "\f2c4"; } -.bi-cloudy::before { content: "\f2c5"; } -.bi-code-slash::before { content: "\f2c6"; } -.bi-code-square::before { content: "\f2c7"; } -.bi-code::before { content: "\f2c8"; } -.bi-collection-fill::before { content: "\f2c9"; } -.bi-collection-play-fill::before { content: "\f2ca"; } -.bi-collection-play::before { content: "\f2cb"; } -.bi-collection::before { content: "\f2cc"; } -.bi-columns-gap::before { content: "\f2cd"; } -.bi-columns::before { content: "\f2ce"; } -.bi-command::before { content: "\f2cf"; } -.bi-compass-fill::before { content: "\f2d0"; } -.bi-compass::before { content: "\f2d1"; } -.bi-cone-striped::before { content: "\f2d2"; } -.bi-cone::before { content: "\f2d3"; } -.bi-controller::before { content: "\f2d4"; } -.bi-cpu-fill::before { content: "\f2d5"; } -.bi-cpu::before { content: "\f2d6"; } -.bi-credit-card-2-back-fill::before { content: "\f2d7"; } -.bi-credit-card-2-back::before { content: "\f2d8"; } -.bi-credit-card-2-front-fill::before { content: "\f2d9"; } -.bi-credit-card-2-front::before { content: "\f2da"; } -.bi-credit-card-fill::before { content: "\f2db"; } -.bi-credit-card::before { content: "\f2dc"; } -.bi-crop::before { content: "\f2dd"; } -.bi-cup-fill::before { content: "\f2de"; } -.bi-cup-straw::before { content: "\f2df"; } -.bi-cup::before { content: "\f2e0"; } -.bi-cursor-fill::before { content: "\f2e1"; } -.bi-cursor-text::before { content: "\f2e2"; } -.bi-cursor::before { content: "\f2e3"; } -.bi-dash-circle-dotted::before { content: "\f2e4"; } -.bi-dash-circle-fill::before { content: "\f2e5"; } -.bi-dash-circle::before { content: "\f2e6"; } -.bi-dash-square-dotted::before { content: "\f2e7"; } -.bi-dash-square-fill::before { content: "\f2e8"; } -.bi-dash-square::before { content: "\f2e9"; } -.bi-dash::before { content: "\f2ea"; } -.bi-diagram-2-fill::before { content: "\f2eb"; } -.bi-diagram-2::before { content: "\f2ec"; } -.bi-diagram-3-fill::before { content: "\f2ed"; } -.bi-diagram-3::before { content: "\f2ee"; } -.bi-diamond-fill::before { content: "\f2ef"; } -.bi-diamond-half::before { content: "\f2f0"; } -.bi-diamond::before { content: "\f2f1"; } -.bi-dice-1-fill::before { content: "\f2f2"; } -.bi-dice-1::before { content: "\f2f3"; } -.bi-dice-2-fill::before { content: "\f2f4"; } -.bi-dice-2::before { content: "\f2f5"; } -.bi-dice-3-fill::before { content: "\f2f6"; } -.bi-dice-3::before { content: "\f2f7"; } -.bi-dice-4-fill::before { content: "\f2f8"; } -.bi-dice-4::before { content: "\f2f9"; } -.bi-dice-5-fill::before { content: "\f2fa"; } -.bi-dice-5::before { content: "\f2fb"; } -.bi-dice-6-fill::before { content: "\f2fc"; } -.bi-dice-6::before { content: "\f2fd"; } -.bi-disc-fill::before { content: "\f2fe"; } -.bi-disc::before { content: "\f2ff"; } -.bi-discord::before { content: "\f300"; } -.bi-display-fill::before { content: "\f301"; } -.bi-display::before { content: "\f302"; } -.bi-distribute-horizontal::before { content: "\f303"; } -.bi-distribute-vertical::before { content: "\f304"; } -.bi-door-closed-fill::before { content: "\f305"; } -.bi-door-closed::before { content: "\f306"; } -.bi-door-open-fill::before { content: "\f307"; } -.bi-door-open::before { content: "\f308"; } -.bi-dot::before { content: "\f309"; } -.bi-download::before { content: "\f30a"; } -.bi-droplet-fill::before { content: "\f30b"; } -.bi-droplet-half::before { content: "\f30c"; } -.bi-droplet::before { content: "\f30d"; } -.bi-earbuds::before { content: "\f30e"; } -.bi-easel-fill::before { content: "\f30f"; } -.bi-easel::before { content: "\f310"; } -.bi-egg-fill::before { content: "\f311"; } -.bi-egg-fried::before { content: "\f312"; } -.bi-egg::before { content: "\f313"; } -.bi-eject-fill::before { content: "\f314"; } -.bi-eject::before { content: "\f315"; } -.bi-emoji-angry-fill::before { content: "\f316"; } -.bi-emoji-angry::before { content: "\f317"; } -.bi-emoji-dizzy-fill::before { content: "\f318"; } -.bi-emoji-dizzy::before { content: "\f319"; } -.bi-emoji-expressionless-fill::before { content: "\f31a"; } -.bi-emoji-expressionless::before { content: "\f31b"; } -.bi-emoji-frown-fill::before { content: "\f31c"; } -.bi-emoji-frown::before { content: "\f31d"; } -.bi-emoji-heart-eyes-fill::before { content: "\f31e"; } -.bi-emoji-heart-eyes::before { content: "\f31f"; } -.bi-emoji-laughing-fill::before { content: "\f320"; } -.bi-emoji-laughing::before { content: "\f321"; } -.bi-emoji-neutral-fill::before { content: "\f322"; } -.bi-emoji-neutral::before { content: "\f323"; } -.bi-emoji-smile-fill::before { content: "\f324"; } -.bi-emoji-smile-upside-down-fill::before { content: "\f325"; } -.bi-emoji-smile-upside-down::before { content: "\f326"; } -.bi-emoji-smile::before { content: "\f327"; } -.bi-emoji-sunglasses-fill::before { content: "\f328"; } -.bi-emoji-sunglasses::before { content: "\f329"; } -.bi-emoji-wink-fill::before { content: "\f32a"; } -.bi-emoji-wink::before { content: "\f32b"; } -.bi-envelope-fill::before { content: "\f32c"; } -.bi-envelope-open-fill::before { content: "\f32d"; } -.bi-envelope-open::before { content: "\f32e"; } -.bi-envelope::before { content: "\f32f"; } -.bi-eraser-fill::before { content: "\f330"; } -.bi-eraser::before { content: "\f331"; } -.bi-exclamation-circle-fill::before { content: "\f332"; } -.bi-exclamation-circle::before { content: "\f333"; } -.bi-exclamation-diamond-fill::before { content: "\f334"; } -.bi-exclamation-diamond::before { content: "\f335"; } -.bi-exclamation-octagon-fill::before { content: "\f336"; } -.bi-exclamation-octagon::before { content: "\f337"; } -.bi-exclamation-square-fill::before { content: "\f338"; } -.bi-exclamation-square::before { content: "\f339"; } -.bi-exclamation-triangle-fill::before { content: "\f33a"; } -.bi-exclamation-triangle::before { content: "\f33b"; } -.bi-exclamation::before { content: "\f33c"; } -.bi-exclude::before { content: "\f33d"; } -.bi-eye-fill::before { content: "\f33e"; } -.bi-eye-slash-fill::before { content: "\f33f"; } -.bi-eye-slash::before { content: "\f340"; } -.bi-eye::before { content: "\f341"; } -.bi-eyedropper::before { content: "\f342"; } -.bi-eyeglasses::before { content: "\f343"; } -.bi-facebook::before { content: "\f344"; } -.bi-file-arrow-down-fill::before { content: "\f345"; } -.bi-file-arrow-down::before { content: "\f346"; } -.bi-file-arrow-up-fill::before { content: "\f347"; } -.bi-file-arrow-up::before { content: "\f348"; } -.bi-file-bar-graph-fill::before { content: "\f349"; } -.bi-file-bar-graph::before { content: "\f34a"; } -.bi-file-binary-fill::before { content: "\f34b"; } -.bi-file-binary::before { content: "\f34c"; } -.bi-file-break-fill::before { content: "\f34d"; } -.bi-file-break::before { content: "\f34e"; } -.bi-file-check-fill::before { content: "\f34f"; } -.bi-file-check::before { content: "\f350"; } -.bi-file-code-fill::before { content: "\f351"; } -.bi-file-code::before { content: "\f352"; } -.bi-file-diff-fill::before { content: "\f353"; } -.bi-file-diff::before { content: "\f354"; } -.bi-file-earmark-arrow-down-fill::before { content: "\f355"; } -.bi-file-earmark-arrow-down::before { content: "\f356"; } -.bi-file-earmark-arrow-up-fill::before { content: "\f357"; } -.bi-file-earmark-arrow-up::before { content: "\f358"; } -.bi-file-earmark-bar-graph-fill::before { content: "\f359"; } -.bi-file-earmark-bar-graph::before { content: "\f35a"; } -.bi-file-earmark-binary-fill::before { content: "\f35b"; } -.bi-file-earmark-binary::before { content: "\f35c"; } -.bi-file-earmark-break-fill::before { content: "\f35d"; } -.bi-file-earmark-break::before { content: "\f35e"; } -.bi-file-earmark-check-fill::before { content: "\f35f"; } -.bi-file-earmark-check::before { content: "\f360"; } -.bi-file-earmark-code-fill::before { content: "\f361"; } -.bi-file-earmark-code::before { content: "\f362"; } -.bi-file-earmark-diff-fill::before { content: "\f363"; } -.bi-file-earmark-diff::before { content: "\f364"; } -.bi-file-earmark-easel-fill::before { content: "\f365"; } -.bi-file-earmark-easel::before { content: "\f366"; } -.bi-file-earmark-excel-fill::before { content: "\f367"; } -.bi-file-earmark-excel::before { content: "\f368"; } -.bi-file-earmark-fill::before { content: "\f369"; } -.bi-file-earmark-font-fill::before { content: "\f36a"; } -.bi-file-earmark-font::before { content: "\f36b"; } -.bi-file-earmark-image-fill::before { content: "\f36c"; } -.bi-file-earmark-image::before { content: "\f36d"; } -.bi-file-earmark-lock-fill::before { content: "\f36e"; } -.bi-file-earmark-lock::before { content: "\f36f"; } -.bi-file-earmark-lock2-fill::before { content: "\f370"; } -.bi-file-earmark-lock2::before { content: "\f371"; } -.bi-file-earmark-medical-fill::before { content: "\f372"; } -.bi-file-earmark-medical::before { content: "\f373"; } -.bi-file-earmark-minus-fill::before { content: "\f374"; } -.bi-file-earmark-minus::before { content: "\f375"; } -.bi-file-earmark-music-fill::before { content: "\f376"; } -.bi-file-earmark-music::before { content: "\f377"; } -.bi-file-earmark-person-fill::before { content: "\f378"; } -.bi-file-earmark-person::before { content: "\f379"; } -.bi-file-earmark-play-fill::before { content: "\f37a"; } -.bi-file-earmark-play::before { content: "\f37b"; } -.bi-file-earmark-plus-fill::before { content: "\f37c"; } -.bi-file-earmark-plus::before { content: "\f37d"; } -.bi-file-earmark-post-fill::before { content: "\f37e"; } -.bi-file-earmark-post::before { content: "\f37f"; } -.bi-file-earmark-ppt-fill::before { content: "\f380"; } -.bi-file-earmark-ppt::before { content: "\f381"; } -.bi-file-earmark-richtext-fill::before { content: "\f382"; } -.bi-file-earmark-richtext::before { content: "\f383"; } -.bi-file-earmark-ruled-fill::before { content: "\f384"; } -.bi-file-earmark-ruled::before { content: "\f385"; } -.bi-file-earmark-slides-fill::before { content: "\f386"; } -.bi-file-earmark-slides::before { content: "\f387"; } -.bi-file-earmark-spreadsheet-fill::before { content: "\f388"; } -.bi-file-earmark-spreadsheet::before { content: "\f389"; } -.bi-file-earmark-text-fill::before { content: "\f38a"; } -.bi-file-earmark-text::before { content: "\f38b"; } -.bi-file-earmark-word-fill::before { content: "\f38c"; } -.bi-file-earmark-word::before { content: "\f38d"; } -.bi-file-earmark-x-fill::before { content: "\f38e"; } -.bi-file-earmark-x::before { content: "\f38f"; } -.bi-file-earmark-zip-fill::before { content: "\f390"; } -.bi-file-earmark-zip::before { content: "\f391"; } -.bi-file-earmark::before { content: "\f392"; } -.bi-file-easel-fill::before { content: "\f393"; } -.bi-file-easel::before { content: "\f394"; } -.bi-file-excel-fill::before { content: "\f395"; } -.bi-file-excel::before { content: "\f396"; } -.bi-file-fill::before { content: "\f397"; } -.bi-file-font-fill::before { content: "\f398"; } -.bi-file-font::before { content: "\f399"; } -.bi-file-image-fill::before { content: "\f39a"; } -.bi-file-image::before { content: "\f39b"; } -.bi-file-lock-fill::before { content: "\f39c"; } -.bi-file-lock::before { content: "\f39d"; } -.bi-file-lock2-fill::before { content: "\f39e"; } -.bi-file-lock2::before { content: "\f39f"; } -.bi-file-medical-fill::before { content: "\f3a0"; } -.bi-file-medical::before { content: "\f3a1"; } -.bi-file-minus-fill::before { content: "\f3a2"; } -.bi-file-minus::before { content: "\f3a3"; } -.bi-file-music-fill::before { content: "\f3a4"; } -.bi-file-music::before { content: "\f3a5"; } -.bi-file-person-fill::before { content: "\f3a6"; } -.bi-file-person::before { content: "\f3a7"; } -.bi-file-play-fill::before { content: "\f3a8"; } -.bi-file-play::before { content: "\f3a9"; } -.bi-file-plus-fill::before { content: "\f3aa"; } -.bi-file-plus::before { content: "\f3ab"; } -.bi-file-post-fill::before { content: "\f3ac"; } -.bi-file-post::before { content: "\f3ad"; } -.bi-file-ppt-fill::before { content: "\f3ae"; } -.bi-file-ppt::before { content: "\f3af"; } -.bi-file-richtext-fill::before { content: "\f3b0"; } -.bi-file-richtext::before { content: "\f3b1"; } -.bi-file-ruled-fill::before { content: "\f3b2"; } -.bi-file-ruled::before { content: "\f3b3"; } -.bi-file-slides-fill::before { content: "\f3b4"; } -.bi-file-slides::before { content: "\f3b5"; } -.bi-file-spreadsheet-fill::before { content: "\f3b6"; } -.bi-file-spreadsheet::before { content: "\f3b7"; } -.bi-file-text-fill::before { content: "\f3b8"; } -.bi-file-text::before { content: "\f3b9"; } -.bi-file-word-fill::before { content: "\f3ba"; } -.bi-file-word::before { content: "\f3bb"; } -.bi-file-x-fill::before { content: "\f3bc"; } -.bi-file-x::before { content: "\f3bd"; } -.bi-file-zip-fill::before { content: "\f3be"; } -.bi-file-zip::before { content: "\f3bf"; } -.bi-file::before { content: "\f3c0"; } -.bi-files-alt::before { content: "\f3c1"; } -.bi-files::before { content: "\f3c2"; } -.bi-film::before { content: "\f3c3"; } -.bi-filter-circle-fill::before { content: "\f3c4"; } -.bi-filter-circle::before { content: "\f3c5"; } -.bi-filter-left::before { content: "\f3c6"; } -.bi-filter-right::before { content: "\f3c7"; } -.bi-filter-square-fill::before { content: "\f3c8"; } -.bi-filter-square::before { content: "\f3c9"; } -.bi-filter::before { content: "\f3ca"; } -.bi-flag-fill::before { content: "\f3cb"; } -.bi-flag::before { content: "\f3cc"; } -.bi-flower1::before { content: "\f3cd"; } -.bi-flower2::before { content: "\f3ce"; } -.bi-flower3::before { content: "\f3cf"; } -.bi-folder-check::before { content: "\f3d0"; } -.bi-folder-fill::before { content: "\f3d1"; } -.bi-folder-minus::before { content: "\f3d2"; } -.bi-folder-plus::before { content: "\f3d3"; } -.bi-folder-symlink-fill::before { content: "\f3d4"; } -.bi-folder-symlink::before { content: "\f3d5"; } -.bi-folder-x::before { content: "\f3d6"; } -.bi-folder::before { content: "\f3d7"; } -.bi-folder2-open::before { content: "\f3d8"; } -.bi-folder2::before { content: "\f3d9"; } -.bi-fonts::before { content: "\f3da"; } -.bi-forward-fill::before { content: "\f3db"; } -.bi-forward::before { content: "\f3dc"; } -.bi-front::before { content: "\f3dd"; } -.bi-fullscreen-exit::before { content: "\f3de"; } -.bi-fullscreen::before { content: "\f3df"; } -.bi-funnel-fill::before { content: "\f3e0"; } -.bi-funnel::before { content: "\f3e1"; } -.bi-gear-fill::before { content: "\f3e2"; } -.bi-gear-wide-connected::before { content: "\f3e3"; } -.bi-gear-wide::before { content: "\f3e4"; } -.bi-gear::before { content: "\f3e5"; } -.bi-gem::before { content: "\f3e6"; } -.bi-geo-alt-fill::before { content: "\f3e7"; } -.bi-geo-alt::before { content: "\f3e8"; } -.bi-geo-fill::before { content: "\f3e9"; } -.bi-geo::before { content: "\f3ea"; } -.bi-gift-fill::before { content: "\f3eb"; } -.bi-gift::before { content: "\f3ec"; } -.bi-github::before { content: "\f3ed"; } -.bi-globe::before { content: "\f3ee"; } -.bi-globe2::before { content: "\f3ef"; } -.bi-google::before { content: "\f3f0"; } -.bi-graph-down::before { content: "\f3f1"; } -.bi-graph-up::before { content: "\f3f2"; } -.bi-grid-1x2-fill::before { content: "\f3f3"; } -.bi-grid-1x2::before { content: "\f3f4"; } -.bi-grid-3x2-gap-fill::before { content: "\f3f5"; } -.bi-grid-3x2-gap::before { content: "\f3f6"; } -.bi-grid-3x2::before { content: "\f3f7"; } -.bi-grid-3x3-gap-fill::before { content: "\f3f8"; } -.bi-grid-3x3-gap::before { content: "\f3f9"; } -.bi-grid-3x3::before { content: "\f3fa"; } -.bi-grid-fill::before { content: "\f3fb"; } -.bi-grid::before { content: "\f3fc"; } -.bi-grip-horizontal::before { content: "\f3fd"; } -.bi-grip-vertical::before { content: "\f3fe"; } -.bi-hammer::before { content: "\f3ff"; } -.bi-hand-index-fill::before { content: "\f400"; } -.bi-hand-index-thumb-fill::before { content: "\f401"; } -.bi-hand-index-thumb::before { content: "\f402"; } -.bi-hand-index::before { content: "\f403"; } -.bi-hand-thumbs-down-fill::before { content: "\f404"; } -.bi-hand-thumbs-down::before { content: "\f405"; } -.bi-hand-thumbs-up-fill::before { content: "\f406"; } -.bi-hand-thumbs-up::before { content: "\f407"; } -.bi-handbag-fill::before { content: "\f408"; } -.bi-handbag::before { content: "\f409"; } -.bi-hash::before { content: "\f40a"; } -.bi-hdd-fill::before { content: "\f40b"; } -.bi-hdd-network-fill::before { content: "\f40c"; } -.bi-hdd-network::before { content: "\f40d"; } -.bi-hdd-rack-fill::before { content: "\f40e"; } -.bi-hdd-rack::before { content: "\f40f"; } -.bi-hdd-stack-fill::before { content: "\f410"; } -.bi-hdd-stack::before { content: "\f411"; } -.bi-hdd::before { content: "\f412"; } -.bi-headphones::before { content: "\f413"; } -.bi-headset::before { content: "\f414"; } -.bi-heart-fill::before { content: "\f415"; } -.bi-heart-half::before { content: "\f416"; } -.bi-heart::before { content: "\f417"; } -.bi-heptagon-fill::before { content: "\f418"; } -.bi-heptagon-half::before { content: "\f419"; } -.bi-heptagon::before { content: "\f41a"; } -.bi-hexagon-fill::before { content: "\f41b"; } -.bi-hexagon-half::before { content: "\f41c"; } -.bi-hexagon::before { content: "\f41d"; } -.bi-hourglass-bottom::before { content: "\f41e"; } -.bi-hourglass-split::before { content: "\f41f"; } -.bi-hourglass-top::before { content: "\f420"; } -.bi-hourglass::before { content: "\f421"; } -.bi-house-door-fill::before { content: "\f422"; } -.bi-house-door::before { content: "\f423"; } -.bi-house-fill::before { content: "\f424"; } -.bi-house::before { content: "\f425"; } -.bi-hr::before { content: "\f426"; } -.bi-hurricane::before { content: "\f427"; } -.bi-image-alt::before { content: "\f428"; } -.bi-image-fill::before { content: "\f429"; } -.bi-image::before { content: "\f42a"; } -.bi-images::before { content: "\f42b"; } -.bi-inbox-fill::before { content: "\f42c"; } -.bi-inbox::before { content: "\f42d"; } -.bi-inboxes-fill::before { content: "\f42e"; } -.bi-inboxes::before { content: "\f42f"; } -.bi-info-circle-fill::before { content: "\f430"; } -.bi-info-circle::before { content: "\f431"; } -.bi-info-square-fill::before { content: "\f432"; } -.bi-info-square::before { content: "\f433"; } -.bi-info::before { content: "\f434"; } -.bi-input-cursor-text::before { content: "\f435"; } -.bi-input-cursor::before { content: "\f436"; } -.bi-instagram::before { content: "\f437"; } -.bi-intersect::before { content: "\f438"; } -.bi-journal-album::before { content: "\f439"; } -.bi-journal-arrow-down::before { content: "\f43a"; } -.bi-journal-arrow-up::before { content: "\f43b"; } -.bi-journal-bookmark-fill::before { content: "\f43c"; } -.bi-journal-bookmark::before { content: "\f43d"; } -.bi-journal-check::before { content: "\f43e"; } -.bi-journal-code::before { content: "\f43f"; } -.bi-journal-medical::before { content: "\f440"; } -.bi-journal-minus::before { content: "\f441"; } -.bi-journal-plus::before { content: "\f442"; } -.bi-journal-richtext::before { content: "\f443"; } -.bi-journal-text::before { content: "\f444"; } -.bi-journal-x::before { content: "\f445"; } -.bi-journal::before { content: "\f446"; } -.bi-journals::before { content: "\f447"; } -.bi-joystick::before { content: "\f448"; } -.bi-justify-left::before { content: "\f449"; } -.bi-justify-right::before { content: "\f44a"; } -.bi-justify::before { content: "\f44b"; } -.bi-kanban-fill::before { content: "\f44c"; } -.bi-kanban::before { content: "\f44d"; } -.bi-key-fill::before { content: "\f44e"; } -.bi-key::before { content: "\f44f"; } -.bi-keyboard-fill::before { content: "\f450"; } -.bi-keyboard::before { content: "\f451"; } -.bi-ladder::before { content: "\f452"; } -.bi-lamp-fill::before { content: "\f453"; } -.bi-lamp::before { content: "\f454"; } -.bi-laptop-fill::before { content: "\f455"; } -.bi-laptop::before { content: "\f456"; } -.bi-layer-backward::before { content: "\f457"; } -.bi-layer-forward::before { content: "\f458"; } -.bi-layers-fill::before { content: "\f459"; } -.bi-layers-half::before { content: "\f45a"; } -.bi-layers::before { content: "\f45b"; } -.bi-layout-sidebar-inset-reverse::before { content: "\f45c"; } -.bi-layout-sidebar-inset::before { content: "\f45d"; } -.bi-layout-sidebar-reverse::before { content: "\f45e"; } -.bi-layout-sidebar::before { content: "\f45f"; } -.bi-layout-split::before { content: "\f460"; } -.bi-layout-text-sidebar-reverse::before { content: "\f461"; } -.bi-layout-text-sidebar::before { content: "\f462"; } -.bi-layout-text-window-reverse::before { content: "\f463"; } -.bi-layout-text-window::before { content: "\f464"; } -.bi-layout-three-columns::before { content: "\f465"; } -.bi-layout-wtf::before { content: "\f466"; } -.bi-life-preserver::before { content: "\f467"; } -.bi-lightbulb-fill::before { content: "\f468"; } -.bi-lightbulb-off-fill::before { content: "\f469"; } -.bi-lightbulb-off::before { content: "\f46a"; } -.bi-lightbulb::before { content: "\f46b"; } -.bi-lightning-charge-fill::before { content: "\f46c"; } -.bi-lightning-charge::before { content: "\f46d"; } -.bi-lightning-fill::before { content: "\f46e"; } -.bi-lightning::before { content: "\f46f"; } -.bi-link-45deg::before { content: "\f470"; } -.bi-link::before { content: "\f471"; } -.bi-linkedin::before { content: "\f472"; } -.bi-list-check::before { content: "\f473"; } -.bi-list-nested::before { content: "\f474"; } -.bi-list-ol::before { content: "\f475"; } -.bi-list-stars::before { content: "\f476"; } -.bi-list-task::before { content: "\f477"; } -.bi-list-ul::before { content: "\f478"; } -.bi-list::before { content: "\f479"; } -.bi-lock-fill::before { content: "\f47a"; } -.bi-lock::before { content: "\f47b"; } -.bi-mailbox::before { content: "\f47c"; } -.bi-mailbox2::before { content: "\f47d"; } -.bi-map-fill::before { content: "\f47e"; } -.bi-map::before { content: "\f47f"; } -.bi-markdown-fill::before { content: "\f480"; } -.bi-markdown::before { content: "\f481"; } -.bi-mask::before { content: "\f482"; } -.bi-megaphone-fill::before { content: "\f483"; } -.bi-megaphone::before { content: "\f484"; } -.bi-menu-app-fill::before { content: "\f485"; } -.bi-menu-app::before { content: "\f486"; } -.bi-menu-button-fill::before { content: "\f487"; } -.bi-menu-button-wide-fill::before { content: "\f488"; } -.bi-menu-button-wide::before { content: "\f489"; } -.bi-menu-button::before { content: "\f48a"; } -.bi-menu-down::before { content: "\f48b"; } -.bi-menu-up::before { content: "\f48c"; } -.bi-mic-fill::before { content: "\f48d"; } -.bi-mic-mute-fill::before { content: "\f48e"; } -.bi-mic-mute::before { content: "\f48f"; } -.bi-mic::before { content: "\f490"; } -.bi-minecart-loaded::before { content: "\f491"; } -.bi-minecart::before { content: "\f492"; } -.bi-moisture::before { content: "\f493"; } -.bi-moon-fill::before { content: "\f494"; } -.bi-moon-stars-fill::before { content: "\f495"; } -.bi-moon-stars::before { content: "\f496"; } -.bi-moon::before { content: "\f497"; } -.bi-mouse-fill::before { content: "\f498"; } -.bi-mouse::before { content: "\f499"; } -.bi-mouse2-fill::before { content: "\f49a"; } -.bi-mouse2::before { content: "\f49b"; } -.bi-mouse3-fill::before { content: "\f49c"; } -.bi-mouse3::before { content: "\f49d"; } -.bi-music-note-beamed::before { content: "\f49e"; } -.bi-music-note-list::before { content: "\f49f"; } -.bi-music-note::before { content: "\f4a0"; } -.bi-music-player-fill::before { content: "\f4a1"; } -.bi-music-player::before { content: "\f4a2"; } -.bi-newspaper::before { content: "\f4a3"; } -.bi-node-minus-fill::before { content: "\f4a4"; } -.bi-node-minus::before { content: "\f4a5"; } -.bi-node-plus-fill::before { content: "\f4a6"; } -.bi-node-plus::before { content: "\f4a7"; } -.bi-nut-fill::before { content: "\f4a8"; } -.bi-nut::before { content: "\f4a9"; } -.bi-octagon-fill::before { content: "\f4aa"; } -.bi-octagon-half::before { content: "\f4ab"; } -.bi-octagon::before { content: "\f4ac"; } -.bi-option::before { content: "\f4ad"; } -.bi-outlet::before { content: "\f4ae"; } -.bi-paint-bucket::before { content: "\f4af"; } -.bi-palette-fill::before { content: "\f4b0"; } -.bi-palette::before { content: "\f4b1"; } -.bi-palette2::before { content: "\f4b2"; } -.bi-paperclip::before { content: "\f4b3"; } -.bi-paragraph::before { content: "\f4b4"; } -.bi-patch-check-fill::before { content: "\f4b5"; } -.bi-patch-check::before { content: "\f4b6"; } -.bi-patch-exclamation-fill::before { content: "\f4b7"; } -.bi-patch-exclamation::before { content: "\f4b8"; } -.bi-patch-minus-fill::before { content: "\f4b9"; } -.bi-patch-minus::before { content: "\f4ba"; } -.bi-patch-plus-fill::before { content: "\f4bb"; } -.bi-patch-plus::before { content: "\f4bc"; } -.bi-patch-question-fill::before { content: "\f4bd"; } -.bi-patch-question::before { content: "\f4be"; } -.bi-pause-btn-fill::before { content: "\f4bf"; } -.bi-pause-btn::before { content: "\f4c0"; } -.bi-pause-circle-fill::before { content: "\f4c1"; } -.bi-pause-circle::before { content: "\f4c2"; } -.bi-pause-fill::before { content: "\f4c3"; } -.bi-pause::before { content: "\f4c4"; } -.bi-peace-fill::before { content: "\f4c5"; } -.bi-peace::before { content: "\f4c6"; } -.bi-pen-fill::before { content: "\f4c7"; } -.bi-pen::before { content: "\f4c8"; } -.bi-pencil-fill::before { content: "\f4c9"; } -.bi-pencil-square::before { content: "\f4ca"; } -.bi-pencil::before { content: "\f4cb"; } -.bi-pentagon-fill::before { content: "\f4cc"; } -.bi-pentagon-half::before { content: "\f4cd"; } -.bi-pentagon::before { content: "\f4ce"; } -.bi-people-fill::before { content: "\f4cf"; } -.bi-people::before { content: "\f4d0"; } -.bi-percent::before { content: "\f4d1"; } -.bi-person-badge-fill::before { content: "\f4d2"; } -.bi-person-badge::before { content: "\f4d3"; } -.bi-person-bounding-box::before { content: "\f4d4"; } -.bi-person-check-fill::before { content: "\f4d5"; } -.bi-person-check::before { content: "\f4d6"; } -.bi-person-circle::before { content: "\f4d7"; } -.bi-person-dash-fill::before { content: "\f4d8"; } -.bi-person-dash::before { content: "\f4d9"; } -.bi-person-fill::before { content: "\f4da"; } -.bi-person-lines-fill::before { content: "\f4db"; } -.bi-person-plus-fill::before { content: "\f4dc"; } -.bi-person-plus::before { content: "\f4dd"; } -.bi-person-square::before { content: "\f4de"; } -.bi-person-x-fill::before { content: "\f4df"; } -.bi-person-x::before { content: "\f4e0"; } -.bi-person::before { content: "\f4e1"; } -.bi-phone-fill::before { content: "\f4e2"; } -.bi-phone-landscape-fill::before { content: "\f4e3"; } -.bi-phone-landscape::before { content: "\f4e4"; } -.bi-phone-vibrate-fill::before { content: "\f4e5"; } -.bi-phone-vibrate::before { content: "\f4e6"; } -.bi-phone::before { content: "\f4e7"; } -.bi-pie-chart-fill::before { content: "\f4e8"; } -.bi-pie-chart::before { content: "\f4e9"; } -.bi-pin-angle-fill::before { content: "\f4ea"; } -.bi-pin-angle::before { content: "\f4eb"; } -.bi-pin-fill::before { content: "\f4ec"; } -.bi-pin::before { content: "\f4ed"; } -.bi-pip-fill::before { content: "\f4ee"; } -.bi-pip::before { content: "\f4ef"; } -.bi-play-btn-fill::before { content: "\f4f0"; } -.bi-play-btn::before { content: "\f4f1"; } -.bi-play-circle-fill::before { content: "\f4f2"; } -.bi-play-circle::before { content: "\f4f3"; } -.bi-play-fill::before { content: "\f4f4"; } -.bi-play::before { content: "\f4f5"; } -.bi-plug-fill::before { content: "\f4f6"; } -.bi-plug::before { content: "\f4f7"; } -.bi-plus-circle-dotted::before { content: "\f4f8"; } -.bi-plus-circle-fill::before { content: "\f4f9"; } -.bi-plus-circle::before { content: "\f4fa"; } -.bi-plus-square-dotted::before { content: "\f4fb"; } -.bi-plus-square-fill::before { content: "\f4fc"; } -.bi-plus-square::before { content: "\f4fd"; } -.bi-plus::before { content: "\f4fe"; } -.bi-power::before { content: "\f4ff"; } -.bi-printer-fill::before { content: "\f500"; } -.bi-printer::before { content: "\f501"; } -.bi-puzzle-fill::before { content: "\f502"; } -.bi-puzzle::before { content: "\f503"; } -.bi-question-circle-fill::before { content: "\f504"; } -.bi-question-circle::before { content: "\f505"; } -.bi-question-diamond-fill::before { content: "\f506"; } -.bi-question-diamond::before { content: "\f507"; } -.bi-question-octagon-fill::before { content: "\f508"; } -.bi-question-octagon::before { content: "\f509"; } -.bi-question-square-fill::before { content: "\f50a"; } -.bi-question-square::before { content: "\f50b"; } -.bi-question::before { content: "\f50c"; } -.bi-rainbow::before { content: "\f50d"; } -.bi-receipt-cutoff::before { content: "\f50e"; } -.bi-receipt::before { content: "\f50f"; } -.bi-reception-0::before { content: "\f510"; } -.bi-reception-1::before { content: "\f511"; } -.bi-reception-2::before { content: "\f512"; } -.bi-reception-3::before { content: "\f513"; } -.bi-reception-4::before { content: "\f514"; } -.bi-record-btn-fill::before { content: "\f515"; } -.bi-record-btn::before { content: "\f516"; } -.bi-record-circle-fill::before { content: "\f517"; } -.bi-record-circle::before { content: "\f518"; } -.bi-record-fill::before { content: "\f519"; } -.bi-record::before { content: "\f51a"; } -.bi-record2-fill::before { content: "\f51b"; } -.bi-record2::before { content: "\f51c"; } -.bi-reply-all-fill::before { content: "\f51d"; } -.bi-reply-all::before { content: "\f51e"; } -.bi-reply-fill::before { content: "\f51f"; } -.bi-reply::before { content: "\f520"; } -.bi-rss-fill::before { content: "\f521"; } -.bi-rss::before { content: "\f522"; } -.bi-rulers::before { content: "\f523"; } -.bi-save-fill::before { content: "\f524"; } -.bi-save::before { content: "\f525"; } -.bi-save2-fill::before { content: "\f526"; } -.bi-save2::before { content: "\f527"; } -.bi-scissors::before { content: "\f528"; } -.bi-screwdriver::before { content: "\f529"; } -.bi-search::before { content: "\f52a"; } -.bi-segmented-nav::before { content: "\f52b"; } -.bi-server::before { content: "\f52c"; } -.bi-share-fill::before { content: "\f52d"; } -.bi-share::before { content: "\f52e"; } -.bi-shield-check::before { content: "\f52f"; } -.bi-shield-exclamation::before { content: "\f530"; } -.bi-shield-fill-check::before { content: "\f531"; } -.bi-shield-fill-exclamation::before { content: "\f532"; } -.bi-shield-fill-minus::before { content: "\f533"; } -.bi-shield-fill-plus::before { content: "\f534"; } -.bi-shield-fill-x::before { content: "\f535"; } -.bi-shield-fill::before { content: "\f536"; } -.bi-shield-lock-fill::before { content: "\f537"; } -.bi-shield-lock::before { content: "\f538"; } -.bi-shield-minus::before { content: "\f539"; } -.bi-shield-plus::before { content: "\f53a"; } -.bi-shield-shaded::before { content: "\f53b"; } -.bi-shield-slash-fill::before { content: "\f53c"; } -.bi-shield-slash::before { content: "\f53d"; } -.bi-shield-x::before { content: "\f53e"; } -.bi-shield::before { content: "\f53f"; } -.bi-shift-fill::before { content: "\f540"; } -.bi-shift::before { content: "\f541"; } -.bi-shop-window::before { content: "\f542"; } -.bi-shop::before { content: "\f543"; } -.bi-shuffle::before { content: "\f544"; } -.bi-signpost-2-fill::before { content: "\f545"; } -.bi-signpost-2::before { content: "\f546"; } -.bi-signpost-fill::before { content: "\f547"; } -.bi-signpost-split-fill::before { content: "\f548"; } -.bi-signpost-split::before { content: "\f549"; } -.bi-signpost::before { content: "\f54a"; } -.bi-sim-fill::before { content: "\f54b"; } -.bi-sim::before { content: "\f54c"; } -.bi-skip-backward-btn-fill::before { content: "\f54d"; } -.bi-skip-backward-btn::before { content: "\f54e"; } -.bi-skip-backward-circle-fill::before { content: "\f54f"; } -.bi-skip-backward-circle::before { content: "\f550"; } -.bi-skip-backward-fill::before { content: "\f551"; } -.bi-skip-backward::before { content: "\f552"; } -.bi-skip-end-btn-fill::before { content: "\f553"; } -.bi-skip-end-btn::before { content: "\f554"; } -.bi-skip-end-circle-fill::before { content: "\f555"; } -.bi-skip-end-circle::before { content: "\f556"; } -.bi-skip-end-fill::before { content: "\f557"; } -.bi-skip-end::before { content: "\f558"; } -.bi-skip-forward-btn-fill::before { content: "\f559"; } -.bi-skip-forward-btn::before { content: "\f55a"; } -.bi-skip-forward-circle-fill::before { content: "\f55b"; } -.bi-skip-forward-circle::before { content: "\f55c"; } -.bi-skip-forward-fill::before { content: "\f55d"; } -.bi-skip-forward::before { content: "\f55e"; } -.bi-skip-start-btn-fill::before { content: "\f55f"; } -.bi-skip-start-btn::before { content: "\f560"; } -.bi-skip-start-circle-fill::before { content: "\f561"; } -.bi-skip-start-circle::before { content: "\f562"; } -.bi-skip-start-fill::before { content: "\f563"; } -.bi-skip-start::before { content: "\f564"; } -.bi-slack::before { content: "\f565"; } -.bi-slash-circle-fill::before { content: "\f566"; } -.bi-slash-circle::before { content: "\f567"; } -.bi-slash-square-fill::before { content: "\f568"; } -.bi-slash-square::before { content: "\f569"; } -.bi-slash::before { content: "\f56a"; } -.bi-sliders::before { content: "\f56b"; } -.bi-smartwatch::before { content: "\f56c"; } -.bi-snow::before { content: "\f56d"; } -.bi-snow2::before { content: "\f56e"; } -.bi-snow3::before { content: "\f56f"; } -.bi-sort-alpha-down-alt::before { content: "\f570"; } -.bi-sort-alpha-down::before { content: "\f571"; } -.bi-sort-alpha-up-alt::before { content: "\f572"; } -.bi-sort-alpha-up::before { content: "\f573"; } -.bi-sort-down-alt::before { content: "\f574"; } -.bi-sort-down::before { content: "\f575"; } -.bi-sort-numeric-down-alt::before { content: "\f576"; } -.bi-sort-numeric-down::before { content: "\f577"; } -.bi-sort-numeric-up-alt::before { content: "\f578"; } -.bi-sort-numeric-up::before { content: "\f579"; } -.bi-sort-up-alt::before { content: "\f57a"; } -.bi-sort-up::before { content: "\f57b"; } -.bi-soundwave::before { content: "\f57c"; } -.bi-speaker-fill::before { content: "\f57d"; } -.bi-speaker::before { content: "\f57e"; } -.bi-speedometer::before { content: "\f57f"; } -.bi-speedometer2::before { content: "\f580"; } -.bi-spellcheck::before { content: "\f581"; } -.bi-square-fill::before { content: "\f582"; } -.bi-square-half::before { content: "\f583"; } -.bi-square::before { content: "\f584"; } -.bi-stack::before { content: "\f585"; } -.bi-star-fill::before { content: "\f586"; } -.bi-star-half::before { content: "\f587"; } -.bi-star::before { content: "\f588"; } -.bi-stars::before { content: "\f589"; } -.bi-stickies-fill::before { content: "\f58a"; } -.bi-stickies::before { content: "\f58b"; } -.bi-sticky-fill::before { content: "\f58c"; } -.bi-sticky::before { content: "\f58d"; } -.bi-stop-btn-fill::before { content: "\f58e"; } -.bi-stop-btn::before { content: "\f58f"; } -.bi-stop-circle-fill::before { content: "\f590"; } -.bi-stop-circle::before { content: "\f591"; } -.bi-stop-fill::before { content: "\f592"; } -.bi-stop::before { content: "\f593"; } -.bi-stoplights-fill::before { content: "\f594"; } -.bi-stoplights::before { content: "\f595"; } -.bi-stopwatch-fill::before { content: "\f596"; } -.bi-stopwatch::before { content: "\f597"; } -.bi-subtract::before { content: "\f598"; } -.bi-suit-club-fill::before { content: "\f599"; } -.bi-suit-club::before { content: "\f59a"; } -.bi-suit-diamond-fill::before { content: "\f59b"; } -.bi-suit-diamond::before { content: "\f59c"; } -.bi-suit-heart-fill::before { content: "\f59d"; } -.bi-suit-heart::before { content: "\f59e"; } -.bi-suit-spade-fill::before { content: "\f59f"; } -.bi-suit-spade::before { content: "\f5a0"; } -.bi-sun-fill::before { content: "\f5a1"; } -.bi-sun::before { content: "\f5a2"; } -.bi-sunglasses::before { content: "\f5a3"; } -.bi-sunrise-fill::before { content: "\f5a4"; } -.bi-sunrise::before { content: "\f5a5"; } -.bi-sunset-fill::before { content: "\f5a6"; } -.bi-sunset::before { content: "\f5a7"; } -.bi-symmetry-horizontal::before { content: "\f5a8"; } -.bi-symmetry-vertical::before { content: "\f5a9"; } -.bi-table::before { content: "\f5aa"; } -.bi-tablet-fill::before { content: "\f5ab"; } -.bi-tablet-landscape-fill::before { content: "\f5ac"; } -.bi-tablet-landscape::before { content: "\f5ad"; } -.bi-tablet::before { content: "\f5ae"; } -.bi-tag-fill::before { content: "\f5af"; } -.bi-tag::before { content: "\f5b0"; } -.bi-tags-fill::before { content: "\f5b1"; } -.bi-tags::before { content: "\f5b2"; } -.bi-telegram::before { content: "\f5b3"; } -.bi-telephone-fill::before { content: "\f5b4"; } -.bi-telephone-forward-fill::before { content: "\f5b5"; } -.bi-telephone-forward::before { content: "\f5b6"; } -.bi-telephone-inbound-fill::before { content: "\f5b7"; } -.bi-telephone-inbound::before { content: "\f5b8"; } -.bi-telephone-minus-fill::before { content: "\f5b9"; } -.bi-telephone-minus::before { content: "\f5ba"; } -.bi-telephone-outbound-fill::before { content: "\f5bb"; } -.bi-telephone-outbound::before { content: "\f5bc"; } -.bi-telephone-plus-fill::before { content: "\f5bd"; } -.bi-telephone-plus::before { content: "\f5be"; } -.bi-telephone-x-fill::before { content: "\f5bf"; } -.bi-telephone-x::before { content: "\f5c0"; } -.bi-telephone::before { content: "\f5c1"; } -.bi-terminal-fill::before { content: "\f5c2"; } -.bi-terminal::before { content: "\f5c3"; } -.bi-text-center::before { content: "\f5c4"; } -.bi-text-indent-left::before { content: "\f5c5"; } -.bi-text-indent-right::before { content: "\f5c6"; } -.bi-text-left::before { content: "\f5c7"; } -.bi-text-paragraph::before { content: "\f5c8"; } -.bi-text-right::before { content: "\f5c9"; } -.bi-textarea-resize::before { content: "\f5ca"; } -.bi-textarea-t::before { content: "\f5cb"; } -.bi-textarea::before { content: "\f5cc"; } -.bi-thermometer-half::before { content: "\f5cd"; } -.bi-thermometer-high::before { content: "\f5ce"; } -.bi-thermometer-low::before { content: "\f5cf"; } -.bi-thermometer-snow::before { content: "\f5d0"; } -.bi-thermometer-sun::before { content: "\f5d1"; } -.bi-thermometer::before { content: "\f5d2"; } -.bi-three-dots-vertical::before { content: "\f5d3"; } -.bi-three-dots::before { content: "\f5d4"; } -.bi-toggle-off::before { content: "\f5d5"; } -.bi-toggle-on::before { content: "\f5d6"; } -.bi-toggle2-off::before { content: "\f5d7"; } -.bi-toggle2-on::before { content: "\f5d8"; } -.bi-toggles::before { content: "\f5d9"; } -.bi-toggles2::before { content: "\f5da"; } -.bi-tools::before { content: "\f5db"; } -.bi-tornado::before { content: "\f5dc"; } -.bi-trash-fill::before { content: "\f5dd"; } -.bi-trash::before { content: "\f5de"; } -.bi-trash2-fill::before { content: "\f5df"; } -.bi-trash2::before { content: "\f5e0"; } -.bi-tree-fill::before { content: "\f5e1"; } -.bi-tree::before { content: "\f5e2"; } -.bi-triangle-fill::before { content: "\f5e3"; } -.bi-triangle-half::before { content: "\f5e4"; } -.bi-triangle::before { content: "\f5e5"; } -.bi-trophy-fill::before { content: "\f5e6"; } -.bi-trophy::before { content: "\f5e7"; } -.bi-tropical-storm::before { content: "\f5e8"; } -.bi-truck-flatbed::before { content: "\f5e9"; } -.bi-truck::before { content: "\f5ea"; } -.bi-tsunami::before { content: "\f5eb"; } -.bi-tv-fill::before { content: "\f5ec"; } -.bi-tv::before { content: "\f5ed"; } -.bi-twitch::before { content: "\f5ee"; } -.bi-twitter::before { content: "\f5ef"; } -.bi-type-bold::before { content: "\f5f0"; } -.bi-type-h1::before { content: "\f5f1"; } -.bi-type-h2::before { content: "\f5f2"; } -.bi-type-h3::before { content: "\f5f3"; } -.bi-type-italic::before { content: "\f5f4"; } -.bi-type-strikethrough::before { content: "\f5f5"; } -.bi-type-underline::before { content: "\f5f6"; } -.bi-type::before { content: "\f5f7"; } -.bi-ui-checks-grid::before { content: "\f5f8"; } -.bi-ui-checks::before { content: "\f5f9"; } -.bi-ui-radios-grid::before { content: "\f5fa"; } -.bi-ui-radios::before { content: "\f5fb"; } -.bi-umbrella-fill::before { content: "\f5fc"; } -.bi-umbrella::before { content: "\f5fd"; } -.bi-union::before { content: "\f5fe"; } -.bi-unlock-fill::before { content: "\f5ff"; } -.bi-unlock::before { content: "\f600"; } -.bi-upc-scan::before { content: "\f601"; } -.bi-upc::before { content: "\f602"; } -.bi-upload::before { content: "\f603"; } -.bi-vector-pen::before { content: "\f604"; } -.bi-view-list::before { content: "\f605"; } -.bi-view-stacked::before { content: "\f606"; } -.bi-vinyl-fill::before { content: "\f607"; } -.bi-vinyl::before { content: "\f608"; } -.bi-voicemail::before { content: "\f609"; } -.bi-volume-down-fill::before { content: "\f60a"; } -.bi-volume-down::before { content: "\f60b"; } -.bi-volume-mute-fill::before { content: "\f60c"; } -.bi-volume-mute::before { content: "\f60d"; } -.bi-volume-off-fill::before { content: "\f60e"; } -.bi-volume-off::before { content: "\f60f"; } -.bi-volume-up-fill::before { content: "\f610"; } -.bi-volume-up::before { content: "\f611"; } -.bi-vr::before { content: "\f612"; } -.bi-wallet-fill::before { content: "\f613"; } -.bi-wallet::before { content: "\f614"; } -.bi-wallet2::before { content: "\f615"; } -.bi-watch::before { content: "\f616"; } -.bi-water::before { content: "\f617"; } -.bi-whatsapp::before { content: "\f618"; } -.bi-wifi-1::before { content: "\f619"; } -.bi-wifi-2::before { content: "\f61a"; } -.bi-wifi-off::before { content: "\f61b"; } -.bi-wifi::before { content: "\f61c"; } -.bi-wind::before { content: "\f61d"; } -.bi-window-dock::before { content: "\f61e"; } -.bi-window-sidebar::before { content: "\f61f"; } -.bi-window::before { content: "\f620"; } -.bi-wrench::before { content: "\f621"; } -.bi-x-circle-fill::before { content: "\f622"; } -.bi-x-circle::before { content: "\f623"; } -.bi-x-diamond-fill::before { content: "\f624"; } -.bi-x-diamond::before { content: "\f625"; } -.bi-x-octagon-fill::before { content: "\f626"; } -.bi-x-octagon::before { content: "\f627"; } -.bi-x-square-fill::before { content: "\f628"; } -.bi-x-square::before { content: "\f629"; } -.bi-x::before { content: "\f62a"; } -.bi-youtube::before { content: "\f62b"; } -.bi-zoom-in::before { content: "\f62c"; } -.bi-zoom-out::before { content: "\f62d"; } -.bi-bank::before { content: "\f62e"; } -.bi-bank2::before { content: "\f62f"; } -.bi-bell-slash-fill::before { content: "\f630"; } -.bi-bell-slash::before { content: "\f631"; } -.bi-cash-coin::before { content: "\f632"; } -.bi-check-lg::before { content: "\f633"; } -.bi-coin::before { content: "\f634"; } -.bi-currency-bitcoin::before { content: "\f635"; } -.bi-currency-dollar::before { content: "\f636"; } -.bi-currency-euro::before { content: "\f637"; } -.bi-currency-exchange::before { content: "\f638"; } -.bi-currency-pound::before { content: "\f639"; } -.bi-currency-yen::before { content: "\f63a"; } -.bi-dash-lg::before { content: "\f63b"; } -.bi-exclamation-lg::before { content: "\f63c"; } -.bi-file-earmark-pdf-fill::before { content: "\f63d"; } -.bi-file-earmark-pdf::before { content: "\f63e"; } -.bi-file-pdf-fill::before { content: "\f63f"; } -.bi-file-pdf::before { content: "\f640"; } -.bi-gender-ambiguous::before { content: "\f641"; } -.bi-gender-female::before { content: "\f642"; } -.bi-gender-male::before { content: "\f643"; } -.bi-gender-trans::before { content: "\f644"; } -.bi-headset-vr::before { content: "\f645"; } -.bi-info-lg::before { content: "\f646"; } -.bi-mastodon::before { content: "\f647"; } -.bi-messenger::before { content: "\f648"; } -.bi-piggy-bank-fill::before { content: "\f649"; } -.bi-piggy-bank::before { content: "\f64a"; } -.bi-pin-map-fill::before { content: "\f64b"; } -.bi-pin-map::before { content: "\f64c"; } -.bi-plus-lg::before { content: "\f64d"; } -.bi-question-lg::before { content: "\f64e"; } -.bi-recycle::before { content: "\f64f"; } -.bi-reddit::before { content: "\f650"; } -.bi-safe-fill::before { content: "\f651"; } -.bi-safe2-fill::before { content: "\f652"; } -.bi-safe2::before { content: "\f653"; } -.bi-sd-card-fill::before { content: "\f654"; } -.bi-sd-card::before { content: "\f655"; } -.bi-skype::before { content: "\f656"; } -.bi-slash-lg::before { content: "\f657"; } -.bi-translate::before { content: "\f658"; } -.bi-x-lg::before { content: "\f659"; } -.bi-safe::before { content: "\f65a"; } -.bi-apple::before { content: "\f65b"; } -.bi-microsoft::before { content: "\f65d"; } -.bi-windows::before { content: "\f65e"; } -.bi-behance::before { content: "\f65c"; } -.bi-dribbble::before { content: "\f65f"; } -.bi-line::before { content: "\f660"; } -.bi-medium::before { content: "\f661"; } -.bi-paypal::before { content: "\f662"; } -.bi-pinterest::before { content: "\f663"; } -.bi-signal::before { content: "\f664"; } -.bi-snapchat::before { content: "\f665"; } -.bi-spotify::before { content: "\f666"; } -.bi-stack-overflow::before { content: "\f667"; } -.bi-strava::before { content: "\f668"; } -.bi-wordpress::before { content: "\f669"; } -.bi-vimeo::before { content: "\f66a"; } -.bi-activity::before { content: "\f66b"; } -.bi-easel2-fill::before { content: "\f66c"; } -.bi-easel2::before { content: "\f66d"; } -.bi-easel3-fill::before { content: "\f66e"; } -.bi-easel3::before { content: "\f66f"; } -.bi-fan::before { content: "\f670"; } -.bi-fingerprint::before { content: "\f671"; } -.bi-graph-down-arrow::before { content: "\f672"; } -.bi-graph-up-arrow::before { content: "\f673"; } -.bi-hypnotize::before { content: "\f674"; } -.bi-magic::before { content: "\f675"; } -.bi-person-rolodex::before { content: "\f676"; } -.bi-person-video::before { content: "\f677"; } -.bi-person-video2::before { content: "\f678"; } -.bi-person-video3::before { content: "\f679"; } -.bi-person-workspace::before { content: "\f67a"; } -.bi-radioactive::before { content: "\f67b"; } -.bi-webcam-fill::before { content: "\f67c"; } -.bi-webcam::before { content: "\f67d"; } -.bi-yin-yang::before { content: "\f67e"; } -.bi-bandaid-fill::before { content: "\f680"; } -.bi-bandaid::before { content: "\f681"; } -.bi-bluetooth::before { content: "\f682"; } -.bi-body-text::before { content: "\f683"; } -.bi-boombox::before { content: "\f684"; } -.bi-boxes::before { content: "\f685"; } -.bi-dpad-fill::before { content: "\f686"; } -.bi-dpad::before { content: "\f687"; } -.bi-ear-fill::before { content: "\f688"; } -.bi-ear::before { content: "\f689"; } -.bi-envelope-check-1::before { content: "\f68a"; } -.bi-envelope-check-fill::before { content: "\f68b"; } -.bi-envelope-check::before { content: "\f68c"; } -.bi-envelope-dash-1::before { content: "\f68d"; } -.bi-envelope-dash-fill::before { content: "\f68e"; } -.bi-envelope-dash::before { content: "\f68f"; } -.bi-envelope-exclamation-1::before { content: "\f690"; } -.bi-envelope-exclamation-fill::before { content: "\f691"; } -.bi-envelope-exclamation::before { content: "\f692"; } -.bi-envelope-plus-fill::before { content: "\f693"; } -.bi-envelope-plus::before { content: "\f694"; } -.bi-envelope-slash-1::before { content: "\f695"; } -.bi-envelope-slash-fill::before { content: "\f696"; } -.bi-envelope-slash::before { content: "\f697"; } -.bi-envelope-x-1::before { content: "\f698"; } -.bi-envelope-x-fill::before { content: "\f699"; } -.bi-envelope-x::before { content: "\f69a"; } -.bi-explicit-fill::before { content: "\f69b"; } -.bi-explicit::before { content: "\f69c"; } -.bi-git::before { content: "\f69d"; } -.bi-infinity::before { content: "\f69e"; } -.bi-list-columns-reverse::before { content: "\f69f"; } -.bi-list-columns::before { content: "\f6a0"; } -.bi-meta::before { content: "\f6a1"; } -.bi-mortorboard-fill::before { content: "\f6a2"; } -.bi-mortorboard::before { content: "\f6a3"; } -.bi-nintendo-switch::before { content: "\f6a4"; } -.bi-pc-display-horizontal::before { content: "\f6a5"; } -.bi-pc-display::before { content: "\f6a6"; } -.bi-pc-horizontal::before { content: "\f6a7"; } -.bi-pc::before { content: "\f6a8"; } -.bi-playstation::before { content: "\f6a9"; } -.bi-plus-slash-minus::before { content: "\f6aa"; } -.bi-projector-fill::before { content: "\f6ab"; } -.bi-projector::before { content: "\f6ac"; } -.bi-qr-code-scan::before { content: "\f6ad"; } -.bi-qr-code::before { content: "\f6ae"; } -.bi-quora::before { content: "\f6af"; } -.bi-quote::before { content: "\f6b0"; } -.bi-robot::before { content: "\f6b1"; } -.bi-send-check-fill::before { content: "\f6b2"; } -.bi-send-check::before { content: "\f6b3"; } -.bi-send-dash-fill::before { content: "\f6b4"; } -.bi-send-dash::before { content: "\f6b5"; } -.bi-send-exclamation-1::before { content: "\f6b6"; } -.bi-send-exclamation-fill::before { content: "\f6b7"; } -.bi-send-exclamation::before { content: "\f6b8"; } -.bi-send-fill::before { content: "\f6b9"; } -.bi-send-plus-fill::before { content: "\f6ba"; } -.bi-send-plus::before { content: "\f6bb"; } -.bi-send-slash-fill::before { content: "\f6bc"; } -.bi-send-slash::before { content: "\f6bd"; } -.bi-send-x-fill::before { content: "\f6be"; } -.bi-send-x::before { content: "\f6bf"; } -.bi-send::before { content: "\f6c0"; } -.bi-steam::before { content: "\f6c1"; } -.bi-terminal-dash-1::before { content: "\f6c2"; } -.bi-terminal-dash::before { content: "\f6c3"; } -.bi-terminal-plus::before { content: "\f6c4"; } -.bi-terminal-split::before { content: "\f6c5"; } -.bi-ticket-detailed-fill::before { content: "\f6c6"; } -.bi-ticket-detailed::before { content: "\f6c7"; } -.bi-ticket-fill::before { content: "\f6c8"; } -.bi-ticket-perforated-fill::before { content: "\f6c9"; } -.bi-ticket-perforated::before { content: "\f6ca"; } -.bi-ticket::before { content: "\f6cb"; } -.bi-tiktok::before { content: "\f6cc"; } -.bi-window-dash::before { content: "\f6cd"; } -.bi-window-desktop::before { content: "\f6ce"; } -.bi-window-fullscreen::before { content: "\f6cf"; } -.bi-window-plus::before { content: "\f6d0"; } -.bi-window-split::before { content: "\f6d1"; } -.bi-window-stack::before { content: "\f6d2"; } -.bi-window-x::before { content: "\f6d3"; } -.bi-xbox::before { content: "\f6d4"; } -.bi-ethernet::before { content: "\f6d5"; } -.bi-hdmi-fill::before { content: "\f6d6"; } -.bi-hdmi::before { content: "\f6d7"; } -.bi-usb-c-fill::before { content: "\f6d8"; } -.bi-usb-c::before { content: "\f6d9"; } -.bi-usb-fill::before { content: "\f6da"; } -.bi-usb-plug-fill::before { content: "\f6db"; } -.bi-usb-plug::before { content: "\f6dc"; } -.bi-usb-symbol::before { content: "\f6dd"; } -.bi-usb::before { content: "\f6de"; } -.bi-boombox-fill::before { content: "\f6df"; } -.bi-displayport-1::before { content: "\f6e0"; } -.bi-displayport::before { content: "\f6e1"; } -.bi-gpu-card::before { content: "\f6e2"; } -.bi-memory::before { content: "\f6e3"; } -.bi-modem-fill::before { content: "\f6e4"; } -.bi-modem::before { content: "\f6e5"; } -.bi-motherboard-fill::before { content: "\f6e6"; } -.bi-motherboard::before { content: "\f6e7"; } -.bi-optical-audio-fill::before { content: "\f6e8"; } -.bi-optical-audio::before { content: "\f6e9"; } -.bi-pci-card::before { content: "\f6ea"; } -.bi-router-fill::before { content: "\f6eb"; } -.bi-router::before { content: "\f6ec"; } -.bi-ssd-fill::before { content: "\f6ed"; } -.bi-ssd::before { content: "\f6ee"; } -.bi-thunderbolt-fill::before { content: "\f6ef"; } -.bi-thunderbolt::before { content: "\f6f0"; } -.bi-usb-drive-fill::before { content: "\f6f1"; } -.bi-usb-drive::before { content: "\f6f2"; } -.bi-usb-micro-fill::before { content: "\f6f3"; } -.bi-usb-micro::before { content: "\f6f4"; } -.bi-usb-mini-fill::before { content: "\f6f5"; } -.bi-usb-mini::before { content: "\f6f6"; } -.bi-cloud-haze2::before { content: "\f6f7"; } -.bi-device-hdd-fill::before { content: "\f6f8"; } -.bi-device-hdd::before { content: "\f6f9"; } -.bi-device-ssd-fill::before { content: "\f6fa"; } -.bi-device-ssd::before { content: "\f6fb"; } -.bi-displayport-fill::before { content: "\f6fc"; } -.bi-mortarboard-fill::before { content: "\f6fd"; } -.bi-mortarboard::before { content: "\f6fe"; } -.bi-terminal-x::before { content: "\f6ff"; } -.bi-arrow-through-heart-fill::before { content: "\f700"; } -.bi-arrow-through-heart::before { content: "\f701"; } -.bi-badge-sd-fill::before { content: "\f702"; } -.bi-badge-sd::before { content: "\f703"; } -.bi-bag-heart-fill::before { content: "\f704"; } -.bi-bag-heart::before { content: "\f705"; } -.bi-balloon-fill::before { content: "\f706"; } -.bi-balloon-heart-fill::before { content: "\f707"; } -.bi-balloon-heart::before { content: "\f708"; } -.bi-balloon::before { content: "\f709"; } -.bi-box2-fill::before { content: "\f70a"; } -.bi-box2-heart-fill::before { content: "\f70b"; } -.bi-box2-heart::before { content: "\f70c"; } -.bi-box2::before { content: "\f70d"; } -.bi-braces-asterisk::before { content: "\f70e"; } -.bi-calendar-heart-fill::before { content: "\f70f"; } -.bi-calendar-heart::before { content: "\f710"; } -.bi-calendar2-heart-fill::before { content: "\f711"; } -.bi-calendar2-heart::before { content: "\f712"; } -.bi-chat-heart-fill::before { content: "\f713"; } -.bi-chat-heart::before { content: "\f714"; } -.bi-chat-left-heart-fill::before { content: "\f715"; } -.bi-chat-left-heart::before { content: "\f716"; } -.bi-chat-right-heart-fill::before { content: "\f717"; } -.bi-chat-right-heart::before { content: "\f718"; } -.bi-chat-square-heart-fill::before { content: "\f719"; } -.bi-chat-square-heart::before { content: "\f71a"; } -.bi-clipboard-check-fill::before { content: "\f71b"; } -.bi-clipboard-data-fill::before { content: "\f71c"; } -.bi-clipboard-fill::before { content: "\f71d"; } -.bi-clipboard-heart-fill::before { content: "\f71e"; } -.bi-clipboard-heart::before { content: "\f71f"; } -.bi-clipboard-minus-fill::before { content: "\f720"; } -.bi-clipboard-plus-fill::before { content: "\f721"; } -.bi-clipboard-pulse::before { content: "\f722"; } -.bi-clipboard-x-fill::before { content: "\f723"; } -.bi-clipboard2-check-fill::before { content: "\f724"; } -.bi-clipboard2-check::before { content: "\f725"; } -.bi-clipboard2-data-fill::before { content: "\f726"; } -.bi-clipboard2-data::before { content: "\f727"; } -.bi-clipboard2-fill::before { content: "\f728"; } -.bi-clipboard2-heart-fill::before { content: "\f729"; } -.bi-clipboard2-heart::before { content: "\f72a"; } -.bi-clipboard2-minus-fill::before { content: "\f72b"; } -.bi-clipboard2-minus::before { content: "\f72c"; } -.bi-clipboard2-plus-fill::before { content: "\f72d"; } -.bi-clipboard2-plus::before { content: "\f72e"; } -.bi-clipboard2-pulse-fill::before { content: "\f72f"; } -.bi-clipboard2-pulse::before { content: "\f730"; } -.bi-clipboard2-x-fill::before { content: "\f731"; } -.bi-clipboard2-x::before { content: "\f732"; } -.bi-clipboard2::before { content: "\f733"; } -.bi-emoji-kiss-fill::before { content: "\f734"; } -.bi-emoji-kiss::before { content: "\f735"; } -.bi-envelope-heart-fill::before { content: "\f736"; } -.bi-envelope-heart::before { content: "\f737"; } -.bi-envelope-open-heart-fill::before { content: "\f738"; } -.bi-envelope-open-heart::before { content: "\f739"; } -.bi-envelope-paper-fill::before { content: "\f73a"; } -.bi-envelope-paper-heart-fill::before { content: "\f73b"; } -.bi-envelope-paper-heart::before { content: "\f73c"; } -.bi-envelope-paper::before { content: "\f73d"; } -.bi-filetype-aac::before { content: "\f73e"; } -.bi-filetype-ai::before { content: "\f73f"; } -.bi-filetype-bmp::before { content: "\f740"; } -.bi-filetype-cs::before { content: "\f741"; } -.bi-filetype-css::before { content: "\f742"; } -.bi-filetype-csv::before { content: "\f743"; } -.bi-filetype-doc::before { content: "\f744"; } -.bi-filetype-docx::before { content: "\f745"; } -.bi-filetype-exe::before { content: "\f746"; } -.bi-filetype-gif::before { content: "\f747"; } -.bi-filetype-heic::before { content: "\f748"; } -.bi-filetype-html::before { content: "\f749"; } -.bi-filetype-java::before { content: "\f74a"; } -.bi-filetype-jpg::before { content: "\f74b"; } -.bi-filetype-js::before { content: "\f74c"; } -.bi-filetype-jsx::before { content: "\f74d"; } -.bi-filetype-key::before { content: "\f74e"; } -.bi-filetype-m4p::before { content: "\f74f"; } -.bi-filetype-md::before { content: "\f750"; } -.bi-filetype-mdx::before { content: "\f751"; } -.bi-filetype-mov::before { content: "\f752"; } -.bi-filetype-mp3::before { content: "\f753"; } -.bi-filetype-mp4::before { content: "\f754"; } -.bi-filetype-otf::before { content: "\f755"; } -.bi-filetype-pdf::before { content: "\f756"; } -.bi-filetype-php::before { content: "\f757"; } -.bi-filetype-png::before { content: "\f758"; } -.bi-filetype-ppt-1::before { content: "\f759"; } -.bi-filetype-ppt::before { content: "\f75a"; } -.bi-filetype-psd::before { content: "\f75b"; } -.bi-filetype-py::before { content: "\f75c"; } -.bi-filetype-raw::before { content: "\f75d"; } -.bi-filetype-rb::before { content: "\f75e"; } -.bi-filetype-sass::before { content: "\f75f"; } -.bi-filetype-scss::before { content: "\f760"; } -.bi-filetype-sh::before { content: "\f761"; } -.bi-filetype-svg::before { content: "\f762"; } -.bi-filetype-tiff::before { content: "\f763"; } -.bi-filetype-tsx::before { content: "\f764"; } -.bi-filetype-ttf::before { content: "\f765"; } -.bi-filetype-txt::before { content: "\f766"; } -.bi-filetype-wav::before { content: "\f767"; } -.bi-filetype-woff::before { content: "\f768"; } -.bi-filetype-xls-1::before { content: "\f769"; } -.bi-filetype-xls::before { content: "\f76a"; } -.bi-filetype-xml::before { content: "\f76b"; } -.bi-filetype-yml::before { content: "\f76c"; } -.bi-heart-arrow::before { content: "\f76d"; } -.bi-heart-pulse-fill::before { content: "\f76e"; } -.bi-heart-pulse::before { content: "\f76f"; } -.bi-heartbreak-fill::before { content: "\f770"; } -.bi-heartbreak::before { content: "\f771"; } -.bi-hearts::before { content: "\f772"; } -.bi-hospital-fill::before { content: "\f773"; } -.bi-hospital::before { content: "\f774"; } -.bi-house-heart-fill::before { content: "\f775"; } -.bi-house-heart::before { content: "\f776"; } -.bi-incognito::before { content: "\f777"; } -.bi-magnet-fill::before { content: "\f778"; } -.bi-magnet::before { content: "\f779"; } -.bi-person-heart::before { content: "\f77a"; } -.bi-person-hearts::before { content: "\f77b"; } -.bi-phone-flip::before { content: "\f77c"; } -.bi-plugin::before { content: "\f77d"; } -.bi-postage-fill::before { content: "\f77e"; } -.bi-postage-heart-fill::before { content: "\f77f"; } -.bi-postage-heart::before { content: "\f780"; } -.bi-postage::before { content: "\f781"; } -.bi-postcard-fill::before { content: "\f782"; } -.bi-postcard-heart-fill::before { content: "\f783"; } -.bi-postcard-heart::before { content: "\f784"; } -.bi-postcard::before { content: "\f785"; } -.bi-search-heart-fill::before { content: "\f786"; } -.bi-search-heart::before { content: "\f787"; } -.bi-sliders2-vertical::before { content: "\f788"; } -.bi-sliders2::before { content: "\f789"; } -.bi-trash3-fill::before { content: "\f78a"; } -.bi-trash3::before { content: "\f78b"; } -.bi-valentine::before { content: "\f78c"; } -.bi-valentine2::before { content: "\f78d"; } -.bi-wrench-adjustable-circle-fill::before { content: "\f78e"; } -.bi-wrench-adjustable-circle::before { content: "\f78f"; } -.bi-wrench-adjustable::before { content: "\f790"; } -.bi-filetype-json::before { content: "\f791"; } -.bi-filetype-pptx::before { content: "\f792"; } -.bi-filetype-xlsx::before { content: "\f793"; } diff --git a/index_files/libs/bootstrap/bootstrap-icons.woff b/index_files/libs/bootstrap/bootstrap-icons.woff deleted file mode 100644 index b26ccd1ac..000000000 Binary files a/index_files/libs/bootstrap/bootstrap-icons.woff and /dev/null differ diff --git a/index_files/libs/bootstrap/bootstrap.min.css b/index_files/libs/bootstrap/bootstrap.min.css deleted file mode 100644 index bc9935fd0..000000000 --- a/index_files/libs/bootstrap/bootstrap.min.css +++ /dev/null @@ -1,10 +0,0 @@ -/*! - * Bootstrap v5.1.3 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-white: #ffffff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-default: #dee2e6;--bs-primary: #0d6efd;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-default-rgb: 222, 226, 230;--bs-primary-rgb: 13, 110, 253;--bs-secondary-rgb: 108, 117, 125;--bs-success-rgb: 25, 135, 84;--bs-info-rgb: 13, 202, 240;--bs-warning-rgb: 255, 193, 7;--bs-danger-rgb: 220, 53, 69;--bs-light-rgb: 248, 249, 250;--bs-dark-rgb: 33, 37, 41;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-body-color-rgb: 33, 37, 41;--bs-body-bg-rgb: 255, 255, 255;--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-root-font-size: 18px;--bs-body-font-family: var(--bs-font-sans-serif);--bs-body-font-size: 1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #212529;--bs-body-bg: #ffffff}*,*::before,*::after{box-sizing:border-box}:root{font-size:var(--bs-root-font-size)}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:calc(1.345rem + 1.14vw)}@media(min-width: 1200px){h1,.h1{font-size:2.2rem}}h2,.h2{font-size:calc(1.3rem + 0.6vw)}@media(min-width: 1200px){h2,.h2{font-size:1.75rem}}h3,.h3{font-size:calc(1.275rem + 0.3vw)}@media(min-width: 1200px){h3,.h3{font-size:1.5rem}}h4,.h4{font-size:1.25rem}h5,.h5{font-size:1.1rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-bs-original-title]{text-decoration:underline dotted;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;-ms-text-decoration:underline dotted;-o-text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem;padding:.625rem 1.25rem;border-left:.25rem solid #e9ecef}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}b,strong{font-weight:bolder}small,.small{font-size:0.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:#0d6efd;text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr /* rtl:ignore */;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em;color:#000;background-color:#f6f6f6;padding:.5rem;border:1px solid #dee2e6;border-radius:.25rem}pre code{background-color:transparent;font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:#9954bb;background-color:#f6f6f6;border-radius:.25rem;padding:.125rem .25rem;word-wrap:break-word}a>code{color:inherit}kbd{padding:.4rem .4rem;font-size:0.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:#6c757d}.grid{display:grid;grid-template-rows:repeat(var(--bs-rows, 1), 1fr);grid-template-columns:repeat(var(--bs-columns, 12), 1fr);gap:var(--bs-gap, 1.5rem)}.grid .g-col-1{grid-column:auto/span 1}.grid .g-col-2{grid-column:auto/span 2}.grid .g-col-3{grid-column:auto/span 3}.grid .g-col-4{grid-column:auto/span 4}.grid .g-col-5{grid-column:auto/span 5}.grid .g-col-6{grid-column:auto/span 6}.grid .g-col-7{grid-column:auto/span 7}.grid .g-col-8{grid-column:auto/span 8}.grid .g-col-9{grid-column:auto/span 9}.grid .g-col-10{grid-column:auto/span 10}.grid .g-col-11{grid-column:auto/span 11}.grid .g-col-12{grid-column:auto/span 12}.grid .g-start-1{grid-column-start:1}.grid .g-start-2{grid-column-start:2}.grid .g-start-3{grid-column-start:3}.grid .g-start-4{grid-column-start:4}.grid .g-start-5{grid-column-start:5}.grid .g-start-6{grid-column-start:6}.grid .g-start-7{grid-column-start:7}.grid .g-start-8{grid-column-start:8}.grid .g-start-9{grid-column-start:9}.grid .g-start-10{grid-column-start:10}.grid .g-start-11{grid-column-start:11}@media(min-width: 576px){.grid .g-col-sm-1{grid-column:auto/span 1}.grid .g-col-sm-2{grid-column:auto/span 2}.grid .g-col-sm-3{grid-column:auto/span 3}.grid .g-col-sm-4{grid-column:auto/span 4}.grid .g-col-sm-5{grid-column:auto/span 5}.grid .g-col-sm-6{grid-column:auto/span 6}.grid .g-col-sm-7{grid-column:auto/span 7}.grid .g-col-sm-8{grid-column:auto/span 8}.grid .g-col-sm-9{grid-column:auto/span 9}.grid .g-col-sm-10{grid-column:auto/span 10}.grid .g-col-sm-11{grid-column:auto/span 11}.grid .g-col-sm-12{grid-column:auto/span 12}.grid .g-start-sm-1{grid-column-start:1}.grid .g-start-sm-2{grid-column-start:2}.grid .g-start-sm-3{grid-column-start:3}.grid .g-start-sm-4{grid-column-start:4}.grid .g-start-sm-5{grid-column-start:5}.grid .g-start-sm-6{grid-column-start:6}.grid .g-start-sm-7{grid-column-start:7}.grid .g-start-sm-8{grid-column-start:8}.grid .g-start-sm-9{grid-column-start:9}.grid .g-start-sm-10{grid-column-start:10}.grid .g-start-sm-11{grid-column-start:11}}@media(min-width: 768px){.grid .g-col-md-1{grid-column:auto/span 1}.grid .g-col-md-2{grid-column:auto/span 2}.grid .g-col-md-3{grid-column:auto/span 3}.grid .g-col-md-4{grid-column:auto/span 4}.grid .g-col-md-5{grid-column:auto/span 5}.grid .g-col-md-6{grid-column:auto/span 6}.grid .g-col-md-7{grid-column:auto/span 7}.grid .g-col-md-8{grid-column:auto/span 8}.grid .g-col-md-9{grid-column:auto/span 9}.grid .g-col-md-10{grid-column:auto/span 10}.grid .g-col-md-11{grid-column:auto/span 11}.grid .g-col-md-12{grid-column:auto/span 12}.grid .g-start-md-1{grid-column-start:1}.grid .g-start-md-2{grid-column-start:2}.grid .g-start-md-3{grid-column-start:3}.grid .g-start-md-4{grid-column-start:4}.grid .g-start-md-5{grid-column-start:5}.grid .g-start-md-6{grid-column-start:6}.grid .g-start-md-7{grid-column-start:7}.grid .g-start-md-8{grid-column-start:8}.grid .g-start-md-9{grid-column-start:9}.grid .g-start-md-10{grid-column-start:10}.grid .g-start-md-11{grid-column-start:11}}@media(min-width: 992px){.grid .g-col-lg-1{grid-column:auto/span 1}.grid .g-col-lg-2{grid-column:auto/span 2}.grid .g-col-lg-3{grid-column:auto/span 3}.grid .g-col-lg-4{grid-column:auto/span 4}.grid .g-col-lg-5{grid-column:auto/span 5}.grid .g-col-lg-6{grid-column:auto/span 6}.grid .g-col-lg-7{grid-column:auto/span 7}.grid .g-col-lg-8{grid-column:auto/span 8}.grid .g-col-lg-9{grid-column:auto/span 9}.grid .g-col-lg-10{grid-column:auto/span 10}.grid .g-col-lg-11{grid-column:auto/span 11}.grid .g-col-lg-12{grid-column:auto/span 12}.grid .g-start-lg-1{grid-column-start:1}.grid .g-start-lg-2{grid-column-start:2}.grid .g-start-lg-3{grid-column-start:3}.grid .g-start-lg-4{grid-column-start:4}.grid .g-start-lg-5{grid-column-start:5}.grid .g-start-lg-6{grid-column-start:6}.grid .g-start-lg-7{grid-column-start:7}.grid .g-start-lg-8{grid-column-start:8}.grid .g-start-lg-9{grid-column-start:9}.grid .g-start-lg-10{grid-column-start:10}.grid .g-start-lg-11{grid-column-start:11}}@media(min-width: 1200px){.grid .g-col-xl-1{grid-column:auto/span 1}.grid .g-col-xl-2{grid-column:auto/span 2}.grid .g-col-xl-3{grid-column:auto/span 3}.grid .g-col-xl-4{grid-column:auto/span 4}.grid .g-col-xl-5{grid-column:auto/span 5}.grid .g-col-xl-6{grid-column:auto/span 6}.grid .g-col-xl-7{grid-column:auto/span 7}.grid .g-col-xl-8{grid-column:auto/span 8}.grid .g-col-xl-9{grid-column:auto/span 9}.grid .g-col-xl-10{grid-column:auto/span 10}.grid .g-col-xl-11{grid-column:auto/span 11}.grid .g-col-xl-12{grid-column:auto/span 12}.grid .g-start-xl-1{grid-column-start:1}.grid .g-start-xl-2{grid-column-start:2}.grid .g-start-xl-3{grid-column-start:3}.grid .g-start-xl-4{grid-column-start:4}.grid .g-start-xl-5{grid-column-start:5}.grid .g-start-xl-6{grid-column-start:6}.grid .g-start-xl-7{grid-column-start:7}.grid .g-start-xl-8{grid-column-start:8}.grid .g-start-xl-9{grid-column-start:9}.grid .g-start-xl-10{grid-column-start:10}.grid .g-start-xl-11{grid-column-start:11}}@media(min-width: 1400px){.grid .g-col-xxl-1{grid-column:auto/span 1}.grid .g-col-xxl-2{grid-column:auto/span 2}.grid .g-col-xxl-3{grid-column:auto/span 3}.grid .g-col-xxl-4{grid-column:auto/span 4}.grid .g-col-xxl-5{grid-column:auto/span 5}.grid .g-col-xxl-6{grid-column:auto/span 6}.grid .g-col-xxl-7{grid-column:auto/span 7}.grid .g-col-xxl-8{grid-column:auto/span 8}.grid .g-col-xxl-9{grid-column:auto/span 9}.grid .g-col-xxl-10{grid-column:auto/span 10}.grid .g-col-xxl-11{grid-column:auto/span 11}.grid .g-col-xxl-12{grid-column:auto/span 12}.grid .g-start-xxl-1{grid-column-start:1}.grid .g-start-xxl-2{grid-column-start:2}.grid .g-start-xxl-3{grid-column-start:3}.grid .g-start-xxl-4{grid-column-start:4}.grid .g-start-xxl-5{grid-column-start:5}.grid .g-start-xxl-6{grid-column-start:6}.grid .g-start-xxl-7{grid-column-start:7}.grid .g-start-xxl-8{grid-column-start:8}.grid .g-start-xxl-9{grid-column-start:9}.grid .g-start-xxl-10{grid-column-start:10}.grid .g-start-xxl-11{grid-column-start:11}}.table{--bs-table-bg: transparent;--bs-table-accent-bg: transparent;--bs-table-striped-color: #212529;--bs-table-striped-bg: rgba(0, 0, 0, 0.05);--bs-table-active-color: #212529;--bs-table-active-bg: rgba(0, 0, 0, 0.1);--bs-table-hover-color: #212529;--bs-table-hover-bg: rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg: var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg: var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg: var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg: #cfe2ff;--bs-table-striped-bg: #c5d7f2;--bs-table-striped-color: #000;--bs-table-active-bg: #bacbe6;--bs-table-active-color: #000;--bs-table-hover-bg: #bfd1ec;--bs-table-hover-color: #000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg: #e2e3e5;--bs-table-striped-bg: #d7d8da;--bs-table-striped-color: #000;--bs-table-active-bg: #cbccce;--bs-table-active-color: #000;--bs-table-hover-bg: #d1d2d4;--bs-table-hover-color: #000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg: #d1e7dd;--bs-table-striped-bg: #c7dbd2;--bs-table-striped-color: #000;--bs-table-active-bg: #bcd0c7;--bs-table-active-color: #000;--bs-table-hover-bg: #c1d6cc;--bs-table-hover-color: #000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg: #cff4fc;--bs-table-striped-bg: #c5e8ef;--bs-table-striped-color: #000;--bs-table-active-bg: #badce3;--bs-table-active-color: #000;--bs-table-hover-bg: #bfe2e9;--bs-table-hover-color: #000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg: #fff3cd;--bs-table-striped-bg: #f2e7c3;--bs-table-striped-color: #000;--bs-table-active-bg: #e6dbb9;--bs-table-active-color: #000;--bs-table-hover-bg: #ece1be;--bs-table-hover-color: #000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg: #f8d7da;--bs-table-striped-bg: #eccccf;--bs-table-striped-color: #000;--bs-table-active-bg: #dfc2c4;--bs-table-active-color: #000;--bs-table-hover-bg: #e5c7ca;--bs-table-hover-color: #000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg: #f8f9fa;--bs-table-striped-bg: #ecedee;--bs-table-striped-color: #000;--bs-table-active-bg: #dfe0e1;--bs-table-active-color: #000;--bs-table-hover-bg: #e5e6e7;--bs-table-hover-color: #000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg: #212529;--bs-table-striped-bg: #2c3034;--bs-table-striped-color: #ffffff;--bs-table-active-bg: #373b3e;--bs-table-active-color: #ffffff;--bs-table-hover-bg: #323539;--bs-table-hover-color: #ffffff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label,.shiny-input-container .control-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem}.form-text{margin-top:.25rem;font-size:0.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::-webkit-file-upload-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + 0.5rem + 2px);padding:.25rem .5rem;font-size:0.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-0.5rem -1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + 0.75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + 0.5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none}@media(prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.875rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:.3rem}.form-check,.shiny-input-container .checkbox,.shiny-input-container .radio{display:block;min-height:1.5rem;padding-left:0;margin-bottom:.125rem}.form-check .form-check-input,.form-check .shiny-input-container .checkbox input,.form-check .shiny-input-container .radio input,.shiny-input-container .checkbox .form-check-input,.shiny-input-container .checkbox .shiny-input-container .checkbox input,.shiny-input-container .checkbox .shiny-input-container .radio input,.shiny-input-container .radio .form-check-input,.shiny-input-container .radio .shiny-input-container .checkbox input,.shiny-input-container .radio .shiny-input-container .radio input{float:left;margin-left:0}.form-check-input,.shiny-input-container .checkbox input,.shiny-input-container .checkbox-inline input,.shiny-input-container .radio input,.shiny-input-container .radio-inline input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;color-adjust:exact;-webkit-print-color-adjust:exact}.form-check-input[type=checkbox],.shiny-input-container .checkbox input[type=checkbox],.shiny-input-container .checkbox-inline input[type=checkbox],.shiny-input-container .radio input[type=checkbox],.shiny-input-container .radio-inline input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio],.shiny-input-container .checkbox input[type=radio],.shiny-input-container .checkbox-inline input[type=radio],.shiny-input-container .radio input[type=radio],.shiny-input-container .radio-inline input[type=radio]{border-radius:50%}.form-check-input:active,.shiny-input-container .checkbox input:active,.shiny-input-container .checkbox-inline input:active,.shiny-input-container .radio input:active,.shiny-input-container .radio-inline input:active{filter:brightness(90%)}.form-check-input:focus,.shiny-input-container .checkbox input:focus,.shiny-input-container .checkbox-inline input:focus,.shiny-input-container .radio input:focus,.shiny-input-container .radio-inline input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked,.shiny-input-container .checkbox input:checked,.shiny-input-container .checkbox-inline input:checked,.shiny-input-container .radio input:checked,.shiny-input-container .radio-inline input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox],.shiny-input-container .checkbox input:checked[type=checkbox],.shiny-input-container .checkbox-inline input:checked[type=checkbox],.shiny-input-container .radio input:checked[type=checkbox],.shiny-input-container .radio-inline input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio],.shiny-input-container .checkbox input:checked[type=radio],.shiny-input-container .checkbox-inline input:checked[type=radio],.shiny-input-container .radio input:checked[type=radio],.shiny-input-container .radio-inline input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate,.shiny-input-container .checkbox input[type=checkbox]:indeterminate,.shiny-input-container .checkbox-inline input[type=checkbox]:indeterminate,.shiny-input-container .radio input[type=checkbox]:indeterminate,.shiny-input-container .radio-inline input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled,.shiny-input-container .checkbox input:disabled,.shiny-input-container .checkbox-inline input:disabled,.shiny-input-container .radio input:disabled,.shiny-input-container .radio-inline input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input[disabled]~span,.form-check-input:disabled~.form-check-label,.form-check-input:disabled~span,.shiny-input-container .checkbox input[disabled]~.form-check-label,.shiny-input-container .checkbox input[disabled]~span,.shiny-input-container .checkbox input:disabled~.form-check-label,.shiny-input-container .checkbox input:disabled~span,.shiny-input-container .checkbox-inline input[disabled]~.form-check-label,.shiny-input-container .checkbox-inline input[disabled]~span,.shiny-input-container .checkbox-inline input:disabled~.form-check-label,.shiny-input-container .checkbox-inline input:disabled~span,.shiny-input-container .radio input[disabled]~.form-check-label,.shiny-input-container .radio input[disabled]~span,.shiny-input-container .radio input:disabled~.form-check-label,.shiny-input-container .radio input:disabled~span,.shiny-input-container .radio-inline input[disabled]~.form-check-label,.shiny-input-container .radio-inline input[disabled]~span,.shiny-input-container .radio-inline input:disabled~.form-check-label,.shiny-input-container .radio-inline input:disabled~span{opacity:.5}.form-check-label,.shiny-input-container .checkbox label,.shiny-input-container .checkbox-inline label,.shiny-input-container .radio label,.shiny-input-container .radio-inline label{cursor:pointer}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e")}.form-check-inline,.shiny-input-container .checkbox-inline,.shiny-input-container .radio-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.input-group{position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:stretch;-webkit-align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:0.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#198754}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#198754}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#198754}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group .form-control:valid,.input-group .form-control.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.input-group .form-control.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#dc3545}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#dc3545}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group .form-control:invalid,.input-group .form-control.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.input-group .form-control.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-default{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-default:hover{color:#000;background-color:#e3e6ea;border-color:#e1e5e9}.btn-check:focus+.btn-default,.btn-default:focus{color:#000;background-color:#e3e6ea;border-color:#e1e5e9;box-shadow:0 0 0 .25rem rgba(189,192,196,.5)}.btn-check:checked+.btn-default,.btn-check:active+.btn-default,.btn-default:active,.btn-default.active,.show>.btn-default.dropdown-toggle{color:#000;background-color:#e5e8eb;border-color:#e1e5e9}.btn-check:checked+.btn-default:focus,.btn-check:active+.btn-default:focus,.btn-default:active:focus,.btn-default.active:focus,.show>.btn-default.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(189,192,196,.5)}.btn-default:disabled,.btn-default.disabled{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary:disabled,.btn-secondary.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info:disabled,.btn-info.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning:disabled,.btn-warning.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-default{color:#dee2e6;border-color:#dee2e6;background-color:transparent}.btn-outline-default:hover{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:focus+.btn-outline-default,.btn-outline-default:focus{box-shadow:0 0 0 .25rem rgba(222,226,230,.5)}.btn-check:checked+.btn-outline-default,.btn-check:active+.btn-outline-default,.btn-outline-default:active,.btn-outline-default.active,.btn-outline-default.dropdown-toggle.show{color:#000;background-color:#dee2e6;border-color:#dee2e6}.btn-check:checked+.btn-outline-default:focus,.btn-check:active+.btn-outline-default:focus,.btn-outline-default:active:focus,.btn-outline-default.active:focus,.btn-outline-default.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(222,226,230,.5)}.btn-outline-default:disabled,.btn-outline-default.disabled{color:#dee2e6;background-color:transparent}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd;background-color:transparent}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d;background-color:transparent}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754;background-color:transparent}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0;background-color:transparent}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107;background-color:transparent}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545;background-color:transparent}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa;background-color:transparent}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529;background-color:transparent}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link:disabled,.btn-link.disabled{color:#6c757d}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:0.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .2s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:0.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:hover,.dropdown-menu-dark .dropdown-item:focus{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:flex-start;-webkit-justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;-webkit-flex-direction:column;align-items:flex-start;-webkit-align-items:flex-start;justify-content:center;-webkit-justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;-webkit-flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;-webkit-flex-basis:0;flex-grow:1;-webkit-flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container-xxl,.navbar>.container-xl,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container,.navbar>.container-fluid{display:flex;display:-webkit-flex;flex-wrap:inherit;-webkit-flex-wrap:inherit;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;-webkit-flex-basis:100%;flex-grow:1;-webkit-flex-grow:1;align-items:center;-webkit-align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}@media(min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-top,.navbar-expand-sm .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-top,.navbar-expand-md .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-top,.navbar-expand-lg .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-top,.navbar-expand-xl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-top,.navbar-expand-xxl .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;-webkit-flex-grow:1;visibility:visible !important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-top,.navbar-expand .offcanvas-bottom{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}.navbar-light{background-color:#517699}.navbar-light .navbar-brand{color:#fdfefe}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:#fdfefe}.navbar-light .navbar-nav .nav-link{color:#fdfefe}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(253,254,254,.8)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(253,254,254,.75)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .nav-link.active{color:#fdfefe}.navbar-light .navbar-toggler{color:#fdfefe;border-color:rgba(253,254,254,.4)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fdfefe' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:#fdfefe}.navbar-light .navbar-text a,.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:#fdfefe}.navbar-dark{background-color:#517699}.navbar-dark .navbar-brand{color:#fdfefe}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fdfefe}.navbar-dark .navbar-nav .nav-link{color:#fdfefe}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(253,254,254,.8)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(253,254,254,.75)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active{color:#fdfefe}.navbar-dark .navbar-toggler{color:#fdfefe;border-color:rgba(253,254,254,.4)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fdfefe' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:#fdfefe}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fdfefe}.card{position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;-webkit-flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-0.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.card-header-tabs{margin-right:-0.5rem;margin-bottom:-0.5rem;margin-left:-0.5rem;border-bottom:0}.card-header-pills{margin-right:-0.5rem;margin-left:-0.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(0.25rem - 1px)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media(min-width: 576px){.card-group{display:flex;display:-webkit-flex;flex-flow:row wrap;-webkit-flex-flow:row wrap}.card-group>.card{flex:1 0 0%;-webkit-flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;-webkit-flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;display:-webkit-flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:0.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:0.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-default{color:#595a5c;background-color:#f8f9fa;border-color:#f5f6f8}.alert-default .alert-link{color:#47484a}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;display:-webkit-flex;height:1rem;overflow:hidden;font-size:0.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;justify-content:center;-webkit-justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media(prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media(prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.list-group{display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media(min-width: 576px){.list-group-horizontal-sm{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 768px){.list-group-horizontal-md{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 992px){.list-group-horizontal-lg{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 1200px){.list-group-horizontal-xl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-default{color:#595a5c;background-color:#f8f9fa}.list-group-item-default.list-group-item-action:hover,.list-group-item-default.list-group-item-action:focus{color:#595a5c;background-color:#dfe0e1}.list-group-item-default.list-group-item-action.active{color:#fff;background-color:#595a5c;border-color:#595a5c}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:0.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:max-content;width:-webkit-max-content;width:-moz-max-content;width:-ms-max-content;width:-o-max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.toast-header .btn-close{margin-right:-0.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;display:-webkit-flex;flex-shrink:0;-webkit-flex-shrink:0;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-0.5rem -0.5rem -0.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;padding:1rem}.modal-footer{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-shrink:0;-webkit-flex-shrink:0;align-items:center;-webkit-align-items:center;justify-content:flex-end;-webkit-justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(0.3rem - 1px);border-bottom-left-radius:calc(0.3rem - 1px)}.modal-footer>*{margin:.25rem}@media(min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media(min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width: 1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media(max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media(max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media(max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media(max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media(max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^=top]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^=right]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^=left]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0 /* rtl:ignore */;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y;-webkit-touch-action:pan-y;-moz-touch-action:pan-y;-ms-touch-action:pan-y;-o-touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:center;-webkit-justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;display:-webkit-flex;justify-content:center;-webkit-justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;-webkit-flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@keyframes spinner-border{to{transform:rotate(360deg) /* rtl:ignore */}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;background-color:currentColor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media(prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{animation-duration:1.5s;-webkit-animation-duration:1.5s;-moz-animation-duration:1.5s;-ms-animation-duration:1.5s;-o-animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media(prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-0.5rem;margin-right:-0.5rem;margin-bottom:-0.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;-webkit-flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);-webkit-mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);mask-size:200% 100%;-webkit-mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{mask-position:-200% 0%;-webkit-mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-default{color:#dee2e6}.link-default:hover,.link-default:focus{color:#e5e8eb}.link-primary{color:#0d6efd}.link-primary:hover,.link-primary:focus{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:hover,.link-secondary:focus{color:#565e64}.link-success{color:#198754}.link-success:hover,.link-success:focus{color:#146c43}.link-info{color:#0dcaf0}.link-info:hover,.link-info:focus{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:hover,.link-warning:focus{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:hover,.link-danger:focus{color:#b02a37}.link-light{color:#f8f9fa}.link-light:hover,.link-light:focus{color:#f9fafb}.link-dark{color:#212529}.link-dark:hover,.link-dark:focus{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-4x3{--bs-aspect-ratio: calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio: calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio: calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}}.hstack{display:flex;display:-webkit-flex;flex-direction:row;-webkit-flex-direction:row;align-items:center;-webkit-align-items:center;align-self:stretch;-webkit-align-self:stretch}.vstack{display:flex;display:-webkit-flex;flex:1 1 auto;-webkit-flex:1 1 auto;flex-direction:column;-webkit-flex-direction:column;align-self:stretch;-webkit-align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;-webkit-align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.opacity-0{opacity:0 !important}.opacity-25{opacity:.25 !important}.opacity-50{opacity:.5 !important}.opacity-75{opacity:.75 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-top-0{border-top:0 !important}.border-end{border-right:1px solid #dee2e6 !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:1px solid #dee2e6 !important}.border-start-0{border-left:0 !important}.border-default{border-color:#dee2e6 !important}.border-primary{border-color:#0d6efd !important}.border-secondary{border-color:#6c757d !important}.border-success{border-color:#198754 !important}.border-info{border-color:#0dcaf0 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#212529 !important}.border-white{border-color:#fff !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}.font-monospace{font-family:var(--bs-font-monospace) !important}.fs-1{font-size:calc(1.345rem + 1.14vw) !important}.fs-2{font-size:calc(1.3rem + 0.6vw) !important}.fs-3{font-size:calc(1.275rem + 0.3vw) !important}.fs-4{font-size:1.25rem !important}.fs-5{font-size:1.1rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-light{font-weight:300 !important}.fw-lighter{font-weight:lighter !important}.fw-normal{font-weight:400 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.5 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-break{word-wrap:break-word !important;word-break:break-word !important}.text-default{--bs-text-opacity: 1;color:rgba(var(--bs-default-rgb), var(--bs-text-opacity)) !important}.text-primary{--bs-text-opacity: 1;color:rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important}.text-secondary{--bs-text-opacity: 1;color:rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important}.text-success{--bs-text-opacity: 1;color:rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important}.text-info{--bs-text-opacity: 1;color:rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important}.text-warning{--bs-text-opacity: 1;color:rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important}.text-danger{--bs-text-opacity: 1;color:rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important}.text-light{--bs-text-opacity: 1;color:rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important}.text-dark{--bs-text-opacity: 1;color:rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important}.text-black{--bs-text-opacity: 1;color:rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important}.text-white{--bs-text-opacity: 1;color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important}.text-body{--bs-text-opacity: 1;color:rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important}.text-muted{--bs-text-opacity: 1;color:#6c757d !important}.text-black-50{--bs-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--bs-text-opacity: 1;color:rgba(255,255,255,.5) !important}.text-reset{--bs-text-opacity: 1;color:inherit !important}.text-opacity-25{--bs-text-opacity: 0.25}.text-opacity-50{--bs-text-opacity: 0.5}.text-opacity-75{--bs-text-opacity: 0.75}.text-opacity-100{--bs-text-opacity: 1}.bg-default{--bs-bg-opacity: 1;background-color:rgba(var(--bs-default-rgb), var(--bs-bg-opacity)) !important}.bg-primary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important}.bg-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important}.bg-success{--bs-bg-opacity: 1;background-color:rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important}.bg-info{--bs-bg-opacity: 1;background-color:rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important}.bg-warning{--bs-bg-opacity: 1;background-color:rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important}.bg-danger{--bs-bg-opacity: 1;background-color:rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important}.bg-light{--bs-bg-opacity: 1;background-color:rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important}.bg-dark{--bs-bg-opacity: 1;background-color:rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important}.bg-black{--bs-bg-opacity: 1;background-color:rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important}.bg-white{--bs-bg-opacity: 1;background-color:rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important}.bg-body{--bs-bg-opacity: 1;background-color:rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important}.bg-transparent{--bs-bg-opacity: 1;background-color:transparent !important}.bg-opacity-10{--bs-bg-opacity: 0.1}.bg-opacity-25{--bs-bg-opacity: 0.25}.bg-opacity-50{--bs-bg-opacity: 0.5}.bg-opacity-75{--bs-bg-opacity: 0.75}.bg-opacity-100{--bs-bg-opacity: 1}.bg-gradient{background-image:var(--bs-gradient) !important}.user-select-all{user-select:all !important}.user-select-auto{user-select:auto !important}.user-select-none{user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:.25rem !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:.2rem !important}.rounded-2{border-radius:.25rem !important}.rounded-3{border-radius:.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.rounded-end{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-start{border-bottom-left-radius:.25rem !important;border-top-left-radius:.25rem !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media(min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}.bg-default{color:#000}.bg-primary{color:#fff}.bg-secondary{color:#fff}.bg-success{color:#fff}.bg-info{color:#000}.bg-warning{color:#000}.bg-danger{color:#fff}.bg-light{color:#000}.bg-dark{color:#fff}@media(min-width: 1200px){.fs-1{font-size:2.2rem !important}.fs-2{font-size:1.75rem !important}.fs-3{font-size:1.5rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}.tippy-box[data-theme~=quarto]{background-color:#fff;color:#212529;border-radius:.25rem;border:solid 1px #dee2e6;font-size:.875rem}.tippy-box[data-theme~=quarto] .tippy-arrow{color:#dee2e6}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:-1px}.tippy-box[data-placement^=bottom]>.tippy-content{padding:.75em 1em;z-index:1}.top-right{position:absolute;top:1em;right:1em}.hidden{display:none !important}.quarto-layout-panel{margin-bottom:1em}.quarto-layout-panel>figure{width:100%}.quarto-layout-panel>figure>figcaption,.quarto-layout-panel>.panel-caption{margin-top:10pt}.quarto-layout-panel>.table-caption{margin-top:0px}.table-caption p{margin-bottom:.5em}.quarto-layout-row{display:flex;flex-direction:row;align-items:flex-start}.quarto-layout-valign-top{align-items:flex-start}.quarto-layout-valign-bottom{align-items:flex-end}.quarto-layout-valign-center{align-items:center}.quarto-layout-cell{position:relative;margin-right:20px}.quarto-layout-cell:last-child{margin-right:0}.quarto-layout-cell figure,.quarto-layout-cell>p{margin:.2em}.quarto-layout-cell img{max-width:100%}.quarto-layout-cell .html-widget{width:100% !important}.quarto-layout-cell div figure p{margin:0}.quarto-layout-cell figure{display:inline-block;margin-inline-start:0;margin-inline-end:0}.quarto-layout-cell table{display:inline-table}.quarto-layout-cell-subref figcaption,figure .quarto-layout-row figure figcaption{text-align:center;font-style:italic}.quarto-figure{position:relative;margin-bottom:1em}.quarto-figure>figure{width:100%;margin-bottom:0}.quarto-figure-left>figure>p{text-align:left}.quarto-figure-center>figure>p{text-align:center}.quarto-figure-right>figure>p{text-align:right}figure>p:empty{display:none}figure>p:first-child{margin-top:0;margin-bottom:0}figure>figcaption{margin-top:.5em}div[id^=tbl-]{position:relative}.quarto-figure>.anchorjs-link,div[id^=tbl-]>.anchorjs-link{position:absolute;top:0;right:0}.quarto-figure:hover>.anchorjs-link,div[id^=tbl-]:hover>.anchorjs-link,h2:hover>.anchorjs-link,.h2:hover>.anchorjs-link,h3:hover>.anchorjs-link,.h3:hover>.anchorjs-link,h4:hover>.anchorjs-link,.h4:hover>.anchorjs-link,h5:hover>.anchorjs-link,.h5:hover>.anchorjs-link,h6:hover>.anchorjs-link,.h6:hover>.anchorjs-link,.reveal-anchorjs-link>.anchorjs-link{opacity:1}#title-block-header{margin-block-end:1rem;position:relative;margin-top:-1px}#title-block-header .abstract{margin-block-start:1rem}#title-block-header .abstract .abstract-title{font-weight:600}#title-block-header a{text-decoration:none}#title-block-header .author,#title-block-header .date,#title-block-header .doi{margin-block-end:.2rem}#title-block-header .quarto-title-block>div{display:flex}#title-block-header .quarto-title-block>div>h1,#title-block-header .quarto-title-block>div>.h1{flex-grow:1}#title-block-header .quarto-title-block>div>button{flex-shrink:0;height:2.25rem;margin-top:0}@media(min-width: 992px){#title-block-header .quarto-title-block>div>button{margin-top:5px}}tr.header>th>p:last-of-type{margin-bottom:0px}table,.table{caption-side:top;margin-bottom:1.5rem}caption,.table-caption{text-align:center}.utterances{max-width:none;margin-left:-8px}iframe{margin-bottom:1em}details{margin-bottom:1em}details[show]{margin-bottom:0}details>summary{color:#6c757d}details>summary>p:only-child{display:inline}pre.sourceCode,code.sourceCode{position:relative}code{white-space:pre}@media print{code{white-space:pre-wrap}}pre>code{display:block}pre>code.sourceCode{white-space:pre}pre>code.sourceCode>span>a:first-child::before{text-decoration:none}pre.code-overflow-wrap>code.sourceCode{white-space:pre-wrap}pre.code-overflow-scroll>code.sourceCode{white-space:pre}code a:any-link{color:inherit;text-decoration:none}code a:hover{color:inherit;text-decoration:underline}ul.task-list{padding-left:1em}[data-tippy-root]{display:inline-block}.tippy-content .footnote-back{display:none}.quarto-embedded-source-code{display:none}.quarto-unresolved-ref{font-weight:600}.quarto-cover-image{max-width:35%;float:right;margin-left:30px}.cell-output-display .widget-subarea{margin-bottom:1em}.cell-output-display:not(.no-overflow-x){overflow-x:auto}.panel-input{margin-bottom:1em}.panel-input>div,.panel-input>div>div{display:inline-block;vertical-align:top;padding-right:12px}.panel-input>p:last-child{margin-bottom:0}.layout-sidebar{margin-bottom:1em}.layout-sidebar .tab-content{border:none}.tab-content>.page-columns.active{display:grid}div.sourceCode>iframe{width:100%;height:300px;margin-bottom:-0.5em}div.ansi-escaped-output{font-family:monospace;display:block}/*! -* -* ansi colors from IPython notebook's -* -*/.ansi-black-fg{color:#3e424d}.ansi-black-bg{background-color:#3e424d}.ansi-black-intense-fg{color:#282c36}.ansi-black-intense-bg{background-color:#282c36}.ansi-red-fg{color:#e75c58}.ansi-red-bg{background-color:#e75c58}.ansi-red-intense-fg{color:#b22b31}.ansi-red-intense-bg{background-color:#b22b31}.ansi-green-fg{color:#00a250}.ansi-green-bg{background-color:#00a250}.ansi-green-intense-fg{color:#007427}.ansi-green-intense-bg{background-color:#007427}.ansi-yellow-fg{color:#ddb62b}.ansi-yellow-bg{background-color:#ddb62b}.ansi-yellow-intense-fg{color:#b27d12}.ansi-yellow-intense-bg{background-color:#b27d12}.ansi-blue-fg{color:#208ffb}.ansi-blue-bg{background-color:#208ffb}.ansi-blue-intense-fg{color:#0065ca}.ansi-blue-intense-bg{background-color:#0065ca}.ansi-magenta-fg{color:#d160c4}.ansi-magenta-bg{background-color:#d160c4}.ansi-magenta-intense-fg{color:#a03196}.ansi-magenta-intense-bg{background-color:#a03196}.ansi-cyan-fg{color:#60c6c8}.ansi-cyan-bg{background-color:#60c6c8}.ansi-cyan-intense-fg{color:#258f8f}.ansi-cyan-intense-bg{background-color:#258f8f}.ansi-white-fg{color:#c5c1b4}.ansi-white-bg{background-color:#c5c1b4}.ansi-white-intense-fg{color:#a1a6b2}.ansi-white-intense-bg{background-color:#a1a6b2}.ansi-default-inverse-fg{color:#fff}.ansi-default-inverse-bg{background-color:#000}.ansi-bold{font-weight:bold}.ansi-underline{text-decoration:underline}.code-copy-button{position:absolute;top:0;right:0;border:0;margin-top:5px;margin-right:5px;background-color:transparent}.code-copy-button:focus{outline:none}pre.sourceCode:hover>.code-copy-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:1rem 1rem}pre.sourceCode:hover>.code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml,')}pre.sourceCode:hover>.code-copy-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}pre.sourceCode:hover>.code-copy-button-checked:hover>.bi::before{background-image:url('data:image/svg+xml,')}main ol ol,main ul ul,main ol ul,main ul ol{margin-bottom:1em}body{margin:0}main.page-columns>header>h1.title,main.page-columns>header>.title.h1{margin-bottom:0}@media(min-width: 992px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] 35px [page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1200px - 3em)) [body-content-end] 3em [body-end] 50px [body-end-outset] minmax(0px, 250px) [page-end-inset] 50px [page-end] 1fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc( 1000px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 100px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc( 1000px - 3em )) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc( 1000px - 3em )) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 100px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(50px, 150px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 991.98px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(1200px - 3em)) [body-content-end body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc( 1000px - 3em )) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 4fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 767.98px){body .page-columns,body.fullcontent:not(.floating):not(.docked) .page-columns,body.slimcontent:not(.floating):not(.docked) .page-columns,body.docked .page-columns,body.docked.slimcontent .page-columns,body.docked.fullcontent .page-columns,body.floating .page-columns,body.floating.slimcontent .page-columns,body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}nav[role=doc-toc]{display:none}}body,.page-row-navigation{grid-template-rows:[page-top] max-content [contents-top] max-content [contents-bottom] max-content [page-bottom]}.page-rows-contents{grid-template-rows:[content-top] minmax(max-content, 1fr) [content-bottom] minmax(60px, max-content) [page-bottom]}.page-full{grid-column:screen-start/screen-end !important}.page-columns>*{grid-column:body-content-start/body-content-end}.page-columns.column-page>*{grid-column:page-start/page-end}.page-columns.column-page-left>*{grid-column:page-start/body-content-end}.page-columns.column-page-right>*{grid-column:body-content-start/page-end}.page-rows{grid-auto-rows:auto}.header{grid-column:screen-start/screen-end;grid-row:page-top/contents-top}#quarto-content{padding:0;grid-column:screen-start/screen-end;grid-row:contents-top/contents-bottom}body.floating .sidebar.sidebar-navigation{grid-column:page-start/body-start;grid-row:content-top/page-bottom}body.docked .sidebar.sidebar-navigation{grid-column:screen-start/body-start;grid-row:content-top/page-bottom}.sidebar.toc-left{grid-column:page-start/body-start;grid-row:content-top/page-bottom}.sidebar.margin-sidebar{grid-column:body-end/page-end;grid-row:content-top/page-bottom}.page-columns .content{grid-column:body-content-start/body-content-end;grid-row:content-top/content-bottom;align-content:flex-start}.page-columns .page-navigation{grid-column:body-content-start/body-content-end;grid-row:content-bottom/page-bottom}.page-columns .footer{grid-column:screen-start/screen-end;grid-row:contents-bottom/page-bottom}.page-columns .column-body{grid-column:body-content-start/body-content-end}.page-columns .column-body-fullbleed{grid-column:body-start/body-end}.page-columns .column-body-outset{grid-column:body-start-outset/body-end-outset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-body-outset table{background:#fff}.page-columns .column-body-outset-left{grid-column:body-start-outset/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-body-outset-left table{background:#fff}.page-columns .column-body-outset-right{grid-column:body-content-start/body-end-outset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-body-outset-right table{background:#fff}.page-columns .column-page{grid-column:page-start/page-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page table{background:#fff}.page-columns .column-page-inset{grid-column:page-start-inset/page-end-inset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page-inset table{background:#fff}.page-columns .column-page-inset-left{grid-column:page-start-inset/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page-inset-left table{background:#fff}.page-columns .column-page-inset-right{grid-column:body-content-start/page-end-inset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page-inset-right figcaption table{background:#fff}.page-columns .column-page-left{grid-column:page-start/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page-left table{background:#fff}.page-columns .column-page-right{grid-column:body-content-start/page-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-page-right figcaption table{background:#fff}#quarto-content.page-columns #quarto-margin-sidebar,#quarto-content.page-columns #quarto-sidebar{z-index:1}@media(max-width: 991.98px){#quarto-content.page-columns #quarto-margin-sidebar.collapse,#quarto-content.page-columns #quarto-sidebar.collapse{z-index:1055}}#quarto-content.page-columns main.column-page,#quarto-content.page-columns main.column-page-right,#quarto-content.page-columns main.column-page-left{z-index:0}.page-columns .column-screen-inset{grid-column:screen-start-inset/screen-end-inset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-inset table{background:#fff}.page-columns .column-screen-inset-left{grid-column:screen-start-inset/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-inset-left table{background:#fff}.page-columns .column-screen-inset-right{grid-column:body-content-start/screen-end-inset;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-inset-right table{background:#fff}.page-columns .column-screen{grid-column:screen-start/screen-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen table{background:#fff}.page-columns .column-screen-left{grid-column:screen-start/body-content-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-left table{background:#fff}.page-columns .column-screen-right{grid-column:body-content-start/screen-end;z-index:998;transform:translate3d(0, 0, 0)}.page-columns .column-screen-right table{background:#fff}.page-columns .column-screen-inset-shaded{grid-column:screen-start/screen-end;padding:1em;background:#f8f9fa;z-index:998;transform:translate3d(0, 0, 0);margin-bottom:1em}.zindex-content{z-index:998;transform:translate3d(0, 0, 0)}.zindex-modal{z-index:1055;transform:translate3d(0, 0, 0)}.zindex-over-content{z-index:999;transform:translate3d(0, 0, 0)}img.img-fluid.column-screen,img.img-fluid.column-screen-inset-shaded,img.img-fluid.column-screen-inset,img.img-fluid.column-screen-inset-left,img.img-fluid.column-screen-inset-right,img.img-fluid.column-screen-left,img.img-fluid.column-screen-right{width:100%}@media(min-width: 992px){.margin-caption,div.aside,aside,.column-margin{grid-column:body-end/page-end !important;z-index:998}.column-sidebar{grid-column:page-start/body-start !important;z-index:998}.column-leftmargin{grid-column:screen-start-inset/body-start !important;z-index:998}.no-row-height{height:1em;overflow:visible}}@media(max-width: 991.98px){.margin-caption,div.aside,aside,.column-margin{grid-column:body-end/page-end !important;z-index:998}.no-row-height{height:1em;overflow:visible}.page-columns.page-full{overflow:visible}.page-columns.toc-left .margin-caption,.page-columns.toc-left div.aside,.page-columns.toc-left aside,.page-columns.toc-left .column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;transform:translate3d(0, 0, 0)}.page-columns.toc-left .no-row-height{height:initial;overflow:initial}}@media(max-width: 767.98px){.margin-caption,div.aside,aside,.column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;transform:translate3d(0, 0, 0)}.no-row-height{height:initial;overflow:initial}#quarto-margin-sidebar{display:none}.hidden-sm{display:none}}.panel-grid{display:grid;grid-template-rows:repeat(1, 1fr);grid-template-columns:repeat(24, 1fr);gap:1em}.panel-grid .g-col-1{grid-column:auto/span 1}.panel-grid .g-col-2{grid-column:auto/span 2}.panel-grid .g-col-3{grid-column:auto/span 3}.panel-grid .g-col-4{grid-column:auto/span 4}.panel-grid .g-col-5{grid-column:auto/span 5}.panel-grid .g-col-6{grid-column:auto/span 6}.panel-grid .g-col-7{grid-column:auto/span 7}.panel-grid .g-col-8{grid-column:auto/span 8}.panel-grid .g-col-9{grid-column:auto/span 9}.panel-grid .g-col-10{grid-column:auto/span 10}.panel-grid .g-col-11{grid-column:auto/span 11}.panel-grid .g-col-12{grid-column:auto/span 12}.panel-grid .g-col-13{grid-column:auto/span 13}.panel-grid .g-col-14{grid-column:auto/span 14}.panel-grid .g-col-15{grid-column:auto/span 15}.panel-grid .g-col-16{grid-column:auto/span 16}.panel-grid .g-col-17{grid-column:auto/span 17}.panel-grid .g-col-18{grid-column:auto/span 18}.panel-grid .g-col-19{grid-column:auto/span 19}.panel-grid .g-col-20{grid-column:auto/span 20}.panel-grid .g-col-21{grid-column:auto/span 21}.panel-grid .g-col-22{grid-column:auto/span 22}.panel-grid .g-col-23{grid-column:auto/span 23}.panel-grid .g-col-24{grid-column:auto/span 24}.panel-grid .g-start-1{grid-column-start:1}.panel-grid .g-start-2{grid-column-start:2}.panel-grid .g-start-3{grid-column-start:3}.panel-grid .g-start-4{grid-column-start:4}.panel-grid .g-start-5{grid-column-start:5}.panel-grid .g-start-6{grid-column-start:6}.panel-grid .g-start-7{grid-column-start:7}.panel-grid .g-start-8{grid-column-start:8}.panel-grid .g-start-9{grid-column-start:9}.panel-grid .g-start-10{grid-column-start:10}.panel-grid .g-start-11{grid-column-start:11}.panel-grid .g-start-12{grid-column-start:12}.panel-grid .g-start-13{grid-column-start:13}.panel-grid .g-start-14{grid-column-start:14}.panel-grid .g-start-15{grid-column-start:15}.panel-grid .g-start-16{grid-column-start:16}.panel-grid .g-start-17{grid-column-start:17}.panel-grid .g-start-18{grid-column-start:18}.panel-grid .g-start-19{grid-column-start:19}.panel-grid .g-start-20{grid-column-start:20}.panel-grid .g-start-21{grid-column-start:21}.panel-grid .g-start-22{grid-column-start:22}.panel-grid .g-start-23{grid-column-start:23}@media(min-width: 576px){.panel-grid .g-col-sm-1{grid-column:auto/span 1}.panel-grid .g-col-sm-2{grid-column:auto/span 2}.panel-grid .g-col-sm-3{grid-column:auto/span 3}.panel-grid .g-col-sm-4{grid-column:auto/span 4}.panel-grid .g-col-sm-5{grid-column:auto/span 5}.panel-grid .g-col-sm-6{grid-column:auto/span 6}.panel-grid .g-col-sm-7{grid-column:auto/span 7}.panel-grid .g-col-sm-8{grid-column:auto/span 8}.panel-grid .g-col-sm-9{grid-column:auto/span 9}.panel-grid .g-col-sm-10{grid-column:auto/span 10}.panel-grid .g-col-sm-11{grid-column:auto/span 11}.panel-grid .g-col-sm-12{grid-column:auto/span 12}.panel-grid .g-col-sm-13{grid-column:auto/span 13}.panel-grid .g-col-sm-14{grid-column:auto/span 14}.panel-grid .g-col-sm-15{grid-column:auto/span 15}.panel-grid .g-col-sm-16{grid-column:auto/span 16}.panel-grid .g-col-sm-17{grid-column:auto/span 17}.panel-grid .g-col-sm-18{grid-column:auto/span 18}.panel-grid .g-col-sm-19{grid-column:auto/span 19}.panel-grid .g-col-sm-20{grid-column:auto/span 20}.panel-grid .g-col-sm-21{grid-column:auto/span 21}.panel-grid .g-col-sm-22{grid-column:auto/span 22}.panel-grid .g-col-sm-23{grid-column:auto/span 23}.panel-grid .g-col-sm-24{grid-column:auto/span 24}.panel-grid .g-start-sm-1{grid-column-start:1}.panel-grid .g-start-sm-2{grid-column-start:2}.panel-grid .g-start-sm-3{grid-column-start:3}.panel-grid .g-start-sm-4{grid-column-start:4}.panel-grid .g-start-sm-5{grid-column-start:5}.panel-grid .g-start-sm-6{grid-column-start:6}.panel-grid .g-start-sm-7{grid-column-start:7}.panel-grid .g-start-sm-8{grid-column-start:8}.panel-grid .g-start-sm-9{grid-column-start:9}.panel-grid .g-start-sm-10{grid-column-start:10}.panel-grid .g-start-sm-11{grid-column-start:11}.panel-grid .g-start-sm-12{grid-column-start:12}.panel-grid .g-start-sm-13{grid-column-start:13}.panel-grid .g-start-sm-14{grid-column-start:14}.panel-grid .g-start-sm-15{grid-column-start:15}.panel-grid .g-start-sm-16{grid-column-start:16}.panel-grid .g-start-sm-17{grid-column-start:17}.panel-grid .g-start-sm-18{grid-column-start:18}.panel-grid .g-start-sm-19{grid-column-start:19}.panel-grid .g-start-sm-20{grid-column-start:20}.panel-grid .g-start-sm-21{grid-column-start:21}.panel-grid .g-start-sm-22{grid-column-start:22}.panel-grid .g-start-sm-23{grid-column-start:23}}@media(min-width: 768px){.panel-grid .g-col-md-1{grid-column:auto/span 1}.panel-grid .g-col-md-2{grid-column:auto/span 2}.panel-grid .g-col-md-3{grid-column:auto/span 3}.panel-grid .g-col-md-4{grid-column:auto/span 4}.panel-grid .g-col-md-5{grid-column:auto/span 5}.panel-grid .g-col-md-6{grid-column:auto/span 6}.panel-grid .g-col-md-7{grid-column:auto/span 7}.panel-grid .g-col-md-8{grid-column:auto/span 8}.panel-grid .g-col-md-9{grid-column:auto/span 9}.panel-grid .g-col-md-10{grid-column:auto/span 10}.panel-grid .g-col-md-11{grid-column:auto/span 11}.panel-grid .g-col-md-12{grid-column:auto/span 12}.panel-grid .g-col-md-13{grid-column:auto/span 13}.panel-grid .g-col-md-14{grid-column:auto/span 14}.panel-grid .g-col-md-15{grid-column:auto/span 15}.panel-grid .g-col-md-16{grid-column:auto/span 16}.panel-grid .g-col-md-17{grid-column:auto/span 17}.panel-grid .g-col-md-18{grid-column:auto/span 18}.panel-grid .g-col-md-19{grid-column:auto/span 19}.panel-grid .g-col-md-20{grid-column:auto/span 20}.panel-grid .g-col-md-21{grid-column:auto/span 21}.panel-grid .g-col-md-22{grid-column:auto/span 22}.panel-grid .g-col-md-23{grid-column:auto/span 23}.panel-grid .g-col-md-24{grid-column:auto/span 24}.panel-grid .g-start-md-1{grid-column-start:1}.panel-grid .g-start-md-2{grid-column-start:2}.panel-grid .g-start-md-3{grid-column-start:3}.panel-grid .g-start-md-4{grid-column-start:4}.panel-grid .g-start-md-5{grid-column-start:5}.panel-grid .g-start-md-6{grid-column-start:6}.panel-grid .g-start-md-7{grid-column-start:7}.panel-grid .g-start-md-8{grid-column-start:8}.panel-grid .g-start-md-9{grid-column-start:9}.panel-grid .g-start-md-10{grid-column-start:10}.panel-grid .g-start-md-11{grid-column-start:11}.panel-grid .g-start-md-12{grid-column-start:12}.panel-grid .g-start-md-13{grid-column-start:13}.panel-grid .g-start-md-14{grid-column-start:14}.panel-grid .g-start-md-15{grid-column-start:15}.panel-grid .g-start-md-16{grid-column-start:16}.panel-grid .g-start-md-17{grid-column-start:17}.panel-grid .g-start-md-18{grid-column-start:18}.panel-grid .g-start-md-19{grid-column-start:19}.panel-grid .g-start-md-20{grid-column-start:20}.panel-grid .g-start-md-21{grid-column-start:21}.panel-grid .g-start-md-22{grid-column-start:22}.panel-grid .g-start-md-23{grid-column-start:23}}@media(min-width: 992px){.panel-grid .g-col-lg-1{grid-column:auto/span 1}.panel-grid .g-col-lg-2{grid-column:auto/span 2}.panel-grid .g-col-lg-3{grid-column:auto/span 3}.panel-grid .g-col-lg-4{grid-column:auto/span 4}.panel-grid .g-col-lg-5{grid-column:auto/span 5}.panel-grid .g-col-lg-6{grid-column:auto/span 6}.panel-grid .g-col-lg-7{grid-column:auto/span 7}.panel-grid .g-col-lg-8{grid-column:auto/span 8}.panel-grid .g-col-lg-9{grid-column:auto/span 9}.panel-grid .g-col-lg-10{grid-column:auto/span 10}.panel-grid .g-col-lg-11{grid-column:auto/span 11}.panel-grid .g-col-lg-12{grid-column:auto/span 12}.panel-grid .g-col-lg-13{grid-column:auto/span 13}.panel-grid .g-col-lg-14{grid-column:auto/span 14}.panel-grid .g-col-lg-15{grid-column:auto/span 15}.panel-grid .g-col-lg-16{grid-column:auto/span 16}.panel-grid .g-col-lg-17{grid-column:auto/span 17}.panel-grid .g-col-lg-18{grid-column:auto/span 18}.panel-grid .g-col-lg-19{grid-column:auto/span 19}.panel-grid .g-col-lg-20{grid-column:auto/span 20}.panel-grid .g-col-lg-21{grid-column:auto/span 21}.panel-grid .g-col-lg-22{grid-column:auto/span 22}.panel-grid .g-col-lg-23{grid-column:auto/span 23}.panel-grid .g-col-lg-24{grid-column:auto/span 24}.panel-grid .g-start-lg-1{grid-column-start:1}.panel-grid .g-start-lg-2{grid-column-start:2}.panel-grid .g-start-lg-3{grid-column-start:3}.panel-grid .g-start-lg-4{grid-column-start:4}.panel-grid .g-start-lg-5{grid-column-start:5}.panel-grid .g-start-lg-6{grid-column-start:6}.panel-grid .g-start-lg-7{grid-column-start:7}.panel-grid .g-start-lg-8{grid-column-start:8}.panel-grid .g-start-lg-9{grid-column-start:9}.panel-grid .g-start-lg-10{grid-column-start:10}.panel-grid .g-start-lg-11{grid-column-start:11}.panel-grid .g-start-lg-12{grid-column-start:12}.panel-grid .g-start-lg-13{grid-column-start:13}.panel-grid .g-start-lg-14{grid-column-start:14}.panel-grid .g-start-lg-15{grid-column-start:15}.panel-grid .g-start-lg-16{grid-column-start:16}.panel-grid .g-start-lg-17{grid-column-start:17}.panel-grid .g-start-lg-18{grid-column-start:18}.panel-grid .g-start-lg-19{grid-column-start:19}.panel-grid .g-start-lg-20{grid-column-start:20}.panel-grid .g-start-lg-21{grid-column-start:21}.panel-grid .g-start-lg-22{grid-column-start:22}.panel-grid .g-start-lg-23{grid-column-start:23}}@media(min-width: 1200px){.panel-grid .g-col-xl-1{grid-column:auto/span 1}.panel-grid .g-col-xl-2{grid-column:auto/span 2}.panel-grid .g-col-xl-3{grid-column:auto/span 3}.panel-grid .g-col-xl-4{grid-column:auto/span 4}.panel-grid .g-col-xl-5{grid-column:auto/span 5}.panel-grid .g-col-xl-6{grid-column:auto/span 6}.panel-grid .g-col-xl-7{grid-column:auto/span 7}.panel-grid .g-col-xl-8{grid-column:auto/span 8}.panel-grid .g-col-xl-9{grid-column:auto/span 9}.panel-grid .g-col-xl-10{grid-column:auto/span 10}.panel-grid .g-col-xl-11{grid-column:auto/span 11}.panel-grid .g-col-xl-12{grid-column:auto/span 12}.panel-grid .g-col-xl-13{grid-column:auto/span 13}.panel-grid .g-col-xl-14{grid-column:auto/span 14}.panel-grid .g-col-xl-15{grid-column:auto/span 15}.panel-grid .g-col-xl-16{grid-column:auto/span 16}.panel-grid .g-col-xl-17{grid-column:auto/span 17}.panel-grid .g-col-xl-18{grid-column:auto/span 18}.panel-grid .g-col-xl-19{grid-column:auto/span 19}.panel-grid .g-col-xl-20{grid-column:auto/span 20}.panel-grid .g-col-xl-21{grid-column:auto/span 21}.panel-grid .g-col-xl-22{grid-column:auto/span 22}.panel-grid .g-col-xl-23{grid-column:auto/span 23}.panel-grid .g-col-xl-24{grid-column:auto/span 24}.panel-grid .g-start-xl-1{grid-column-start:1}.panel-grid .g-start-xl-2{grid-column-start:2}.panel-grid .g-start-xl-3{grid-column-start:3}.panel-grid .g-start-xl-4{grid-column-start:4}.panel-grid .g-start-xl-5{grid-column-start:5}.panel-grid .g-start-xl-6{grid-column-start:6}.panel-grid .g-start-xl-7{grid-column-start:7}.panel-grid .g-start-xl-8{grid-column-start:8}.panel-grid .g-start-xl-9{grid-column-start:9}.panel-grid .g-start-xl-10{grid-column-start:10}.panel-grid .g-start-xl-11{grid-column-start:11}.panel-grid .g-start-xl-12{grid-column-start:12}.panel-grid .g-start-xl-13{grid-column-start:13}.panel-grid .g-start-xl-14{grid-column-start:14}.panel-grid .g-start-xl-15{grid-column-start:15}.panel-grid .g-start-xl-16{grid-column-start:16}.panel-grid .g-start-xl-17{grid-column-start:17}.panel-grid .g-start-xl-18{grid-column-start:18}.panel-grid .g-start-xl-19{grid-column-start:19}.panel-grid .g-start-xl-20{grid-column-start:20}.panel-grid .g-start-xl-21{grid-column-start:21}.panel-grid .g-start-xl-22{grid-column-start:22}.panel-grid .g-start-xl-23{grid-column-start:23}}@media(min-width: 1400px){.panel-grid .g-col-xxl-1{grid-column:auto/span 1}.panel-grid .g-col-xxl-2{grid-column:auto/span 2}.panel-grid .g-col-xxl-3{grid-column:auto/span 3}.panel-grid .g-col-xxl-4{grid-column:auto/span 4}.panel-grid .g-col-xxl-5{grid-column:auto/span 5}.panel-grid .g-col-xxl-6{grid-column:auto/span 6}.panel-grid .g-col-xxl-7{grid-column:auto/span 7}.panel-grid .g-col-xxl-8{grid-column:auto/span 8}.panel-grid .g-col-xxl-9{grid-column:auto/span 9}.panel-grid .g-col-xxl-10{grid-column:auto/span 10}.panel-grid .g-col-xxl-11{grid-column:auto/span 11}.panel-grid .g-col-xxl-12{grid-column:auto/span 12}.panel-grid .g-col-xxl-13{grid-column:auto/span 13}.panel-grid .g-col-xxl-14{grid-column:auto/span 14}.panel-grid .g-col-xxl-15{grid-column:auto/span 15}.panel-grid .g-col-xxl-16{grid-column:auto/span 16}.panel-grid .g-col-xxl-17{grid-column:auto/span 17}.panel-grid .g-col-xxl-18{grid-column:auto/span 18}.panel-grid .g-col-xxl-19{grid-column:auto/span 19}.panel-grid .g-col-xxl-20{grid-column:auto/span 20}.panel-grid .g-col-xxl-21{grid-column:auto/span 21}.panel-grid .g-col-xxl-22{grid-column:auto/span 22}.panel-grid .g-col-xxl-23{grid-column:auto/span 23}.panel-grid .g-col-xxl-24{grid-column:auto/span 24}.panel-grid .g-start-xxl-1{grid-column-start:1}.panel-grid .g-start-xxl-2{grid-column-start:2}.panel-grid .g-start-xxl-3{grid-column-start:3}.panel-grid .g-start-xxl-4{grid-column-start:4}.panel-grid .g-start-xxl-5{grid-column-start:5}.panel-grid .g-start-xxl-6{grid-column-start:6}.panel-grid .g-start-xxl-7{grid-column-start:7}.panel-grid .g-start-xxl-8{grid-column-start:8}.panel-grid .g-start-xxl-9{grid-column-start:9}.panel-grid .g-start-xxl-10{grid-column-start:10}.panel-grid .g-start-xxl-11{grid-column-start:11}.panel-grid .g-start-xxl-12{grid-column-start:12}.panel-grid .g-start-xxl-13{grid-column-start:13}.panel-grid .g-start-xxl-14{grid-column-start:14}.panel-grid .g-start-xxl-15{grid-column-start:15}.panel-grid .g-start-xxl-16{grid-column-start:16}.panel-grid .g-start-xxl-17{grid-column-start:17}.panel-grid .g-start-xxl-18{grid-column-start:18}.panel-grid .g-start-xxl-19{grid-column-start:19}.panel-grid .g-start-xxl-20{grid-column-start:20}.panel-grid .g-start-xxl-21{grid-column-start:21}.panel-grid .g-start-xxl-22{grid-column-start:22}.panel-grid .g-start-xxl-23{grid-column-start:23}}main{margin-top:1em;margin-bottom:1em}h1,.h1,h2,.h2{margin-top:2rem;margin-bottom:1rem}h1.title,.title.h1{margin-top:0}h2,.h2{border-bottom:1px solid #dee2e6;padding-bottom:.5rem}h3,.h3,h4,.h4{margin-top:1.5rem}.header-section-number{color:#5a6570}.nav-link.active .header-section-number{color:inherit}mark,.mark{padding:0em}.panel-caption,caption,.figure-caption{font-size:1rem}.panel-caption,.figure-caption,figcaption{color:#5a6570}.table-caption,caption{color:#212529}.quarto-layout-cell[data-ref-parent] caption{color:#5a6570}.column-margin figcaption,.margin-caption,div.aside,aside,.column-margin{color:#5a6570;font-size:.825rem}.panel-caption.margin-caption{text-align:inherit}.column-margin.column-container p{margin-bottom:0}.column-margin.column-container>*:not(.collapse){padding-top:.5em;padding-bottom:.5em;display:block}.column-margin.column-container>*.collapse:not(.show){display:none}@media(min-width: 768px){.column-margin.column-container .callout-margin-content:first-child{margin-top:4.5em}.column-margin.column-container .callout-margin-content-simple:first-child{margin-top:3.5em}}.margin-caption>*{padding-top:.5em;padding-bottom:.5em}@media(max-width: 767.98px){.quarto-layout-row{flex-direction:column}}.tab-content{margin-top:0px;border-left:#dee2e6 1px solid;border-right:#dee2e6 1px solid;border-bottom:#dee2e6 1px solid;margin-left:0;padding:1em;margin-bottom:1em}@media(max-width: 767.98px){.layout-sidebar{margin-left:0;margin-right:0}}.panel-sidebar,.panel-sidebar .form-control,.panel-input,.panel-input .form-control,.selectize-dropdown{font-size:.9rem}.panel-sidebar .form-control,.panel-input .form-control{padding-top:.1rem}.tab-pane div.sourceCode{margin-top:0px}.tab-pane>p{padding-top:1em}.tab-content>.tab-pane:not(.active){display:none !important}div.sourceCode{background-color:rgba(233,236,239,.65);border:1px solid rgba(233,236,239,.65);border-radius:.25rem}pre.sourceCode{background-color:transparent}pre.sourceCode{border:none;font-size:.875em;overflow:visible !important;padding:.4em}.callout pre.sourceCode{padding-left:0}div.sourceCode{overflow-y:hidden}.callout div.sourceCode{margin-left:initial}.blockquote{font-size:inherit;padding-left:1rem;padding-right:1.5rem;color:#5a6570}.blockquote h1:first-child,.blockquote .h1:first-child,.blockquote h2:first-child,.blockquote .h2:first-child,.blockquote h3:first-child,.blockquote .h3:first-child,.blockquote h4:first-child,.blockquote .h4:first-child,.blockquote h5:first-child,.blockquote .h5:first-child{margin-top:0}pre{background-color:initial;padding:initial;border:initial}p code:not(.sourceCode),li code:not(.sourceCode){background-color:#f6f6f6;padding:.2em}nav p code:not(.sourceCode),nav li code:not(.sourceCode){background-color:transparent;padding:0}#quarto-embedded-source-code-modal>.modal-dialog{max-width:1000px;padding-left:1.75rem;padding-right:1.75rem}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body{padding:0}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body div.sourceCode{margin:0;padding:.2rem .2rem;background-color:inherit;border:none}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-header{padding:.7rem}.code-tools-button{font-size:1rem;padding:.15rem .15rem;margin-left:5px;color:#6c757d;background-color:transparent;transition:initial;cursor:pointer}.code-tools-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:1rem 1rem}.code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}#quarto-embedded-source-code-modal .code-copy-button>.bi::before{background-image:url('data:image/svg+xml,')}#quarto-embedded-source-code-modal .code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml,')}.sidebar{will-change:top;transition:top 200ms linear;position:sticky;overflow-y:auto;padding-top:1.2em;max-height:100vh}.sidebar.toc-left,.sidebar.margin-sidebar{top:0px;padding-top:1em}.sidebar.toc-left>*,.sidebar.margin-sidebar>*{padding-top:.5em}.sidebar.quarto-banner-title-block-sidebar>*{padding-top:1.65em}.sidebar nav[role=doc-toc]>h2,.sidebar nav[role=doc-toc]>.h2{font-size:.875rem;font-weight:400;margin-bottom:.5rem;margin-top:.3rem;font-family:inherit;border-bottom:0;padding-bottom:0;padding-top:0px}.sidebar nav[role=doc-toc]>ul a{border-left:1px solid #e9ecef;padding-left:.6rem}.sidebar nav[role=doc-toc] ul{padding-left:0;list-style:none;font-size:.875rem;font-weight:300}.sidebar nav[role=doc-toc]>ul li a{line-height:1.1rem;padding-bottom:.2rem;padding-top:.2rem;color:inherit}.sidebar nav[role=doc-toc] ul>li>ul>li>a{padding-left:1.2em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>a{padding-left:2.4em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>a{padding-left:3.6em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:4.8em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:6em}.sidebar nav[role=doc-toc] ul>li>ul>li>a.active{border-left:1px solid #0d6efd;color:#0d6efd !important}.sidebar nav[role=doc-toc] ul>li>a.active{border-left:1px solid #0d6efd;color:#0d6efd !important}kbd,.kbd{color:#212529;background-color:#f8f9fa;border:1px solid;border-radius:5px;border-color:#dee2e6}div.hanging-indent{margin-left:1em;text-indent:-1em}.citation a,.footnote-ref{text-decoration:none}.footnotes ol{padding-left:1em}.tippy-content>*{margin-bottom:.7em}.tippy-content>*:last-child{margin-bottom:0}.table a{word-break:break-word}.table>:not(:first-child){border-top-width:1px;border-top-color:#dee2e6}.table>thead{border-bottom:1px solid currentColor}.table>tbody{border-top:1px solid #dee2e6}.callout{margin-top:1.25rem;margin-bottom:1.25rem;border-radius:.25rem}.callout.callout-style-simple{padding:.4em .7em;border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout.callout-style-default{border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout .callout-body-container{flex-grow:1}.callout.callout-style-simple .callout-body{font-size:1rem;font-weight:400}.callout.callout-style-default .callout-body{font-size:.9rem;font-weight:400}.callout.callout-captioned .callout-body{margin-top:.2em}.callout:not(.no-icon).callout-captioned.callout-style-simple .callout-body{padding-left:1.6em}.callout.callout-captioned>.callout-header{padding-top:.2em;margin-bottom:-0.2em}.callout.callout-style-simple>div.callout-header{border-bottom:none;font-size:.9rem;font-weight:600;opacity:75%}.callout.callout-style-default>div.callout-header{border-bottom:none;font-weight:600;opacity:85%;font-size:.9rem;padding-left:.5em;padding-right:.5em}.callout.callout-style-default div.callout-body{padding-left:.5em;padding-right:.5em}.callout.callout-style-default div.callout-body>:first-child{margin-top:.5em}.callout>div.callout-header[data-bs-toggle=collapse]{cursor:pointer}.callout.callout-style-default .callout-header[aria-expanded=false],.callout.callout-style-default .callout-header[aria-expanded=true]{padding-top:0px;margin-bottom:0px;align-items:center}.callout.callout-captioned .callout-body>:last-child:not(.sourceCode),.callout.callout-captioned .callout-body>div>:last-child:not(.sourceCode){margin-bottom:.5rem}.callout:not(.callout-captioned) .callout-body>:last-child,.callout:not(.callout-captioned) .callout-body>div>:last-child{margin-bottom:.25rem}.callout.callout-style-simple .callout-icon::before,.callout.callout-style-simple .callout-toggle::before{height:1rem;width:1rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.callout.callout-style-default .callout-icon::before,.callout.callout-style-default .callout-toggle::before{height:.9rem;width:.9rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:.9rem .9rem}.callout.callout-style-default .callout-toggle::before{margin-top:5px}.callout .callout-btn-toggle .callout-toggle::before{transition:transform .2s linear}.callout .callout-header[aria-expanded=false] .callout-toggle::before{transform:rotate(-90deg)}.callout .callout-header[aria-expanded=true] .callout-toggle::before{transform:none}.callout.callout-style-simple:not(.no-icon) div.callout-icon-container{padding-top:.2em;padding-right:.55em}.callout.callout-style-default:not(.no-icon) div.callout-icon-container{padding-top:.1em;padding-right:.35em}.callout.callout-style-default:not(.no-icon) div.callout-caption-container{margin-top:-1px}.callout.callout-style-default.callout-caution:not(.no-icon) div.callout-icon-container{padding-top:.3em;padding-right:.35em}.callout>.callout-body>.callout-icon-container>.no-icon,.callout>.callout-header>.callout-icon-container>.no-icon{display:none}div.callout.callout{border-left-color:#6c757d}div.callout.callout-style-default>.callout-header{background-color:#6c757d}div.callout-note.callout{border-left-color:#0d6efd}div.callout-note.callout-style-default>.callout-header{background-color:#e7f1ff}div.callout-note:not(.callout-captioned) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-note.callout-captioned .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-note .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-tip.callout{border-left-color:#198754}div.callout-tip.callout-style-default>.callout-header{background-color:#e8f3ee}div.callout-tip:not(.callout-captioned) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-tip.callout-captioned .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-tip .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-warning.callout{border-left-color:#ffc107}div.callout-warning.callout-style-default>.callout-header{background-color:#fff9e6}div.callout-warning:not(.callout-captioned) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-warning.callout-captioned .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-warning .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-caution.callout{border-left-color:#fd7e14}div.callout-caution.callout-style-default>.callout-header{background-color:#fff2e8}div.callout-caution:not(.callout-captioned) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-caution.callout-captioned .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-caution .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-important.callout{border-left-color:#dc3545}div.callout-important.callout-style-default>.callout-header{background-color:#fcebec}div.callout-important:not(.callout-captioned) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-important.callout-captioned .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-important .callout-toggle::before{background-image:url('data:image/svg+xml,')}.quarto-toggle-container{display:flex}@media(min-width: 992px){.navbar .quarto-color-scheme-toggle{padding-left:.5rem;padding-right:.5rem}}@media(max-width: 767.98px){.navbar .quarto-color-scheme-toggle{padding-left:0;padding-right:0;padding-bottom:.5em}}.quarto-reader-toggle .bi::before,.quarto-color-scheme-toggle .bi::before{display:inline-block;height:1rem;width:1rem;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.navbar-collapse .quarto-color-scheme-toggle{padding-left:.6rem;padding-right:0;margin-top:-12px}.sidebar-navigation{padding-left:20px}.sidebar-navigation .quarto-color-scheme-toggle .bi::before{padding-top:.2rem;margin-bottom:-0.2rem}.sidebar-tools-main .quarto-color-scheme-toggle .bi::before{padding-top:.2rem;margin-bottom:-0.2rem}.navbar .quarto-color-scheme-toggle .bi::before{padding-top:7px;margin-bottom:-7px;padding-left:2px;margin-right:2px}.navbar .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml,')}.navbar .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml,')}.quarto-sidebar-toggle{border-color:#dee2e6;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem;border-style:solid;border-width:1px;overflow:hidden;border-top-width:0px;padding-top:0px !important}.quarto-sidebar-toggle-title{cursor:pointer;padding-bottom:2px;margin-left:.25em;text-align:center;font-weight:400;font-size:.775em}#quarto-content .quarto-sidebar-toggle{background:#fafafa}#quarto-content .quarto-sidebar-toggle-title{color:#212529}.quarto-sidebar-toggle-icon{color:#dee2e6;margin-right:.5em;float:right;transition:transform .2s ease}.quarto-sidebar-toggle-icon::before{padding-top:5px}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-icon{transform:rotate(-180deg)}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-title{border-bottom:solid #dee2e6 1px}.quarto-sidebar-toggle-contents{background-color:#fff;padding-right:10px;padding-left:10px;margin-top:0px !important;transition:max-height .5s ease}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-contents{padding-top:1em;padding-bottom:10px}.quarto-sidebar-toggle:not(.expanded) .quarto-sidebar-toggle-contents{padding-top:0px !important;padding-bottom:0px}nav[role=doc-toc]{z-index:1020}#quarto-sidebar>*,nav[role=doc-toc]>*{transition:opacity .1s ease,border .1s ease}#quarto-sidebar.slow>*,nav[role=doc-toc].slow>*{transition:opacity .4s ease,border .4s ease}.quarto-color-scheme-toggle:not(.alternate).top-right .bi::before{background-image:url('data:image/svg+xml,')}.quarto-color-scheme-toggle.alternate.top-right .bi::before{background-image:url('data:image/svg+xml,')}#quarto-appendix.default{border-top:1px solid #dee2e6}#quarto-appendix.default{background-color:#fff;padding-top:1.5em;margin-top:2em;z-index:998}#quarto-appendix.default .quarto-appendix-heading{margin-top:0;line-height:1.4em;font-weight:600;opacity:.9;border-bottom:none;margin-bottom:0}#quarto-appendix.default .footnotes ol,#quarto-appendix.default .footnotes ol li>p:last-of-type,#quarto-appendix.default .quarto-appendix-contents>p:last-of-type{margin-bottom:0}#quarto-appendix.default .quarto-appendix-secondary-label{margin-bottom:.4em}#quarto-appendix.default .quarto-appendix-bibtex{font-size:.7em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-bibtex code.sourceCode{white-space:pre-wrap}#quarto-appendix.default .quarto-appendix-citeas{font-size:.9em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-heading{font-size:1em !important}#quarto-appendix.default *[role=doc-endnotes]>ol,#quarto-appendix.default .quarto-appendix-contents>*:not(h2):not(.h2){font-size:.9em}#quarto-appendix.default section{padding-bottom:1.5em}#quarto-appendix.default section *[role=doc-endnotes],#quarto-appendix.default section>*:not(a){opacity:.9;word-wrap:break-word}.btn.btn-quarto,div.cell-output-display .btn-quarto{color:#fefefe;background-color:#6c757d;border-color:#6c757d}.btn.btn-quarto:hover,div.cell-output-display .btn-quarto:hover{color:#fefefe;background-color:#828a91;border-color:#7b838a}.btn-check:focus+.btn.btn-quarto,.btn.btn-quarto:focus,.btn-check:focus+div.cell-output-display .btn-quarto,div.cell-output-display .btn-quarto:focus{color:#fefefe;background-color:#828a91;border-color:#7b838a;box-shadow:0 0 0 .25rem rgba(130,138,144,.5)}.btn-check:checked+.btn.btn-quarto,.btn-check:active+.btn.btn-quarto,.btn.btn-quarto:active,.btn.btn-quarto.active,.show>.btn.btn-quarto.dropdown-toggle,.btn-check:checked+div.cell-output-display .btn-quarto,.btn-check:active+div.cell-output-display .btn-quarto,div.cell-output-display .btn-quarto:active,div.cell-output-display .btn-quarto.active,.show>div.cell-output-display .btn-quarto.dropdown-toggle{color:#000;background-color:#899197;border-color:#7b838a}.btn-check:checked+.btn.btn-quarto:focus,.btn-check:active+.btn.btn-quarto:focus,.btn.btn-quarto:active:focus,.btn.btn-quarto.active:focus,.show>.btn.btn-quarto.dropdown-toggle:focus,.btn-check:checked+div.cell-output-display .btn-quarto:focus,.btn-check:active+div.cell-output-display .btn-quarto:focus,div.cell-output-display .btn-quarto:active:focus,div.cell-output-display .btn-quarto.active:focus,.show>div.cell-output-display .btn-quarto.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,144,.5)}.btn.btn-quarto:disabled,.btn.btn-quarto.disabled,div.cell-output-display .btn-quarto:disabled,div.cell-output-display .btn-quarto.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}nav.quarto-secondary-nav.color-navbar{background-color:#517699;color:#fdfefe}nav.quarto-secondary-nav.color-navbar h1,nav.quarto-secondary-nav.color-navbar .h1,nav.quarto-secondary-nav.color-navbar .quarto-btn-toggle{color:#fdfefe}@media(max-width: 991.98px){body.nav-sidebar .quarto-title-banner,body.nav-sidebar .quarto-title-banner{display:none}}p.subtitle{margin-top:.25em;margin-bottom:.5em}code a:any-link{color:inherit;text-decoration-color:#6c757d}/*! light */a.external:after{display:inline-block;height:.75rem;width:.75rem;margin-bottom:.15em;margin-left:.25em;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:.75rem .75rem}a.external:after:hover{cursor:pointer}.quarto-ext-icon{display:inline-block;font-size:.75em;padding-left:.3em}.quarto-title-banner{margin-bottom:1em;color:#fdfefe;background:#517699}.quarto-title-banner .code-tools-button{color:#b9dcdc}.quarto-title-banner .code-tools-button:hover{color:#fdfefe}.quarto-title-banner .code-tools-button>.bi::before{background-image:url('data:image/svg+xml,')}.quarto-title-banner .code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}.quarto-title-banner .quarto-title .title{font-weight:600}.quarto-title-banner .quarto-categories{margin-top:.75em}@media(min-width: 992px){.quarto-title-banner{padding-top:2.5em;padding-bottom:2.5em}}@media(max-width: 991.98px){.quarto-title-banner{padding-top:1em;padding-bottom:1em}}main.quarto-banner-title-block section:first-of-type h2:first-of-type,main.quarto-banner-title-block section:first-of-type .h2:first-of-type,main.quarto-banner-title-block section:first-of-type h3:first-of-type,main.quarto-banner-title-block section:first-of-type .h3:first-of-type,main.quarto-banner-title-block section:first-of-type h4:first-of-type,main.quarto-banner-title-block section:first-of-type .h4:first-of-type{margin-top:0}.quarto-title .quarto-categories{display:flex;column-gap:.4em;padding-bottom:.5em;margin-top:.25em}.quarto-title .quarto-categories .quarto-category{padding:.25em .75em;font-size:.65em;text-transform:uppercase;border:solid 1px;border-radius:.25rem;opacity:.6}.quarto-title .quarto-categories .quarto-category a{color:inherit}#title-block-header.quarto-title-block.default .quarto-title-meta{display:grid;grid-template-columns:repeat(2, 1fr)}#title-block-header.quarto-title-block.default .quarto-title .title{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-author-orcid img{margin-top:-5px}#title-block-header.quarto-title-block.default .quarto-description p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p,#title-block-header.quarto-title-block.default .quarto-title-authors p,#title-block-header.quarto-title-block.default .quarto-title-affiliations p{margin-bottom:.1em}#title-block-header.quarto-title-block.default .quarto-title-meta-heading{text-transform:uppercase;margin-top:1em;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-contents{font-size:.9em}#title-block-header.quarto-title-block.default .quarto-title-meta-contents a{color:#212529}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p.affiliation:last-of-type{margin-bottom:.7em}#title-block-header.quarto-title-block.default p.affiliation{margin-bottom:.1em}#title-block-header.quarto-title-block.default .description,#title-block-header.quarto-title-block.default .abstract{margin-top:0}#title-block-header.quarto-title-block.default .description>p,#title-block-header.quarto-title-block.default .abstract>p{font-size:.9em}#title-block-header.quarto-title-block.default .description>p:last-of-type,#title-block-header.quarto-title-block.default .abstract>p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .description .abstract-title,#title-block-header.quarto-title-block.default .abstract .abstract-title{margin-top:1em;text-transform:uppercase;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-author{display:grid;grid-template-columns:1fr 1fr}/*# sourceMappingURL=397ef2e52d54cf686e4908b90039e9db.css.map */ diff --git a/index_files/libs/bootstrap/bootstrap.min.js b/index_files/libs/bootstrap/bootstrap.min.js deleted file mode 100644 index cc0a25561..000000000 --- a/index_files/libs/bootstrap/bootstrap.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v5.1.3 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t="transitionend",e=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return e},i=t=>{const i=e(t);return i&&document.querySelector(i)?i:null},n=t=>{const i=e(t);return i?document.querySelector(i):null},s=e=>{e.dispatchEvent(new Event(t))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(t):null,a=(t,e,i)=>{Object.keys(i).forEach((n=>{const s=i[n],r=e[n],a=r&&o(r)?"element":null==(l=r)?`${l}`:{}.toString.call(l).match(/\s([a-z]+)/i)[1].toLowerCase();var l;if(!new RegExp(s).test(a))throw new TypeError(`${t.toUpperCase()}: Option "${n}" provided type "${a}" but expected type "${s}".`)}))},l=t=>!(!o(t)||0===t.getClientRects().length)&&"visible"===getComputedStyle(t).getPropertyValue("visibility"),c=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),h=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?h(t.parentNode):null},d=()=>{},u=t=>{t.offsetHeight},f=()=>{const{jQuery:t}=window;return t&&!document.body.hasAttribute("data-bs-no-jquery")?t:null},p=[],m=()=>"rtl"===document.documentElement.dir,g=t=>{var e;e=()=>{const e=f();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(p.length||document.addEventListener("DOMContentLoaded",(()=>{p.forEach((t=>t()))})),p.push(e)):e()},_=t=>{"function"==typeof t&&t()},b=(e,i,n=!0)=>{if(!n)return void _(e);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(i)+5;let r=!1;const a=({target:n})=>{n===i&&(r=!0,i.removeEventListener(t,a),_(e))};i.addEventListener(t,a),setTimeout((()=>{r||s(i)}),o)},v=(t,e,i,n)=>{let s=t.indexOf(e);if(-1===s)return t[!i&&n?t.length-1:0];const o=t.length;return s+=i?1:-1,n&&(s=(s+o)%o),t[Math.max(0,Math.min(s,o-1))]},y=/[^.]*(?=\..*)\.|.*/,w=/\..*/,E=/::\d+$/,A={};let T=1;const O={mouseenter:"mouseover",mouseleave:"mouseout"},C=/^(mouseenter|mouseleave)/i,k=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function L(t,e){return e&&`${e}::${T++}`||t.uidEvent||T++}function x(t){const e=L(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function D(t,e,i=null){const n=Object.keys(t);for(let s=0,o=n.length;sfunction(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};n?n=t(n):i=t(i)}const[o,r,a]=S(e,i,n),l=x(t),c=l[a]||(l[a]={}),h=D(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=L(r,e.replace(y,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(let a=o.length;a--;)if(o[a]===r)return s.delegateTarget=r,n.oneOff&&j.off(t,s.type,e,i),i.apply(r,[s]);return null}}(t,i,n):function(t,e){return function i(n){return n.delegateTarget=t,i.oneOff&&j.off(t,n.type,e),e.apply(t,[n])}}(t,i);u.delegationSelector=o?i:null,u.originalHandler=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function I(t,e,i,n,s){const o=D(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function P(t){return t=t.replace(w,""),O[t]||t}const j={on(t,e,i,n){N(t,e,i,n,!1)},one(t,e,i,n){N(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=S(e,i,n),a=r!==e,l=x(t),c=e.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void I(t,l,r,o,s?i:null)}c&&Object.keys(l).forEach((i=>{!function(t,e,i,n){const s=e[i]||{};Object.keys(s).forEach((o=>{if(o.includes(n)){const n=s[o];I(t,e,i,n.originalHandler,n.delegationSelector)}}))}(t,l,i,e.slice(1))}));const h=l[r]||{};Object.keys(h).forEach((i=>{const n=i.replace(E,"");if(!a||e.includes(n)){const e=h[i];I(t,l,r,e.originalHandler,e.delegationSelector)}}))},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=f(),s=P(e),o=e!==s,r=k.has(s);let a,l=!0,c=!0,h=!1,d=null;return o&&n&&(a=n.Event(e,i),n(t).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),h=a.isDefaultPrevented()),r?(d=document.createEvent("HTMLEvents"),d.initEvent(s,l,!0)):d=new CustomEvent(e,{bubbles:l,cancelable:!0}),void 0!==i&&Object.keys(i).forEach((t=>{Object.defineProperty(d,t,{get:()=>i[t]})})),h&&d.preventDefault(),c&&t.dispatchEvent(d),d.defaultPrevented&&void 0!==a&&a.preventDefault(),d}},M=new Map,H={set(t,e,i){M.has(t)||M.set(t,new Map);const n=M.get(t);n.has(e)||0===n.size?n.set(e,i):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(n.keys())[0]}.`)},get:(t,e)=>M.has(t)&&M.get(t).get(e)||null,remove(t,e){if(!M.has(t))return;const i=M.get(t);i.delete(e),0===i.size&&M.delete(t)}};class B{constructor(t){(t=r(t))&&(this._element=t,H.set(this._element,this.constructor.DATA_KEY,this))}dispose(){H.remove(this._element,this.constructor.DATA_KEY),j.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach((t=>{this[t]=null}))}_queueCallback(t,e,i=!0){b(t,e,i)}static getInstance(t){return H.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.1.3"}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}}const R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,s=t.NAME;j.on(document,i,`[data-bs-dismiss="${s}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),c(this))return;const o=n(this)||this.closest(`.${s}`);t.getOrCreateInstance(o)[e]()}))};class W extends B{static get NAME(){return"alert"}close(){if(j.trigger(this._element,"close.bs.alert").defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),j.trigger(this._element,"closed.bs.alert"),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=W.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(W,"close"),g(W);const $='[data-bs-toggle="button"]';class z extends B{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=z.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}function q(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function F(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}j.on(document,"click.bs.button.data-api",$,(t=>{t.preventDefault();const e=t.target.closest($);z.getOrCreateInstance(e).toggle()})),g(z);const U={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${F(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${F(e)}`)},getDataAttributes(t){if(!t)return{};const e={};return Object.keys(t.dataset).filter((t=>t.startsWith("bs"))).forEach((i=>{let n=i.replace(/^bs/,"");n=n.charAt(0).toLowerCase()+n.slice(1,n.length),e[n]=q(t.dataset[i])})),e},getDataAttribute:(t,e)=>q(t.getAttribute(`data-bs-${F(e)}`)),offset(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset,left:e.left+window.pageXOffset}},position:t=>({top:t.offsetTop,left:t.offsetLeft})},V={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode;for(;n&&n.nodeType===Node.ELEMENT_NODE&&3!==n.nodeType;)n.matches(e)&&i.push(n),n=n.parentNode;return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(", ");return this.find(e,t).filter((t=>!c(t)&&l(t)))}},K="carousel",X={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},Y={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},Q="next",G="prev",Z="left",J="right",tt={ArrowLeft:J,ArrowRight:Z},et="slid.bs.carousel",it="active",nt=".active.carousel-item";class st extends B{constructor(t,e){super(t),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._indicatorsElement=V.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return X}static get NAME(){return K}next(){this._slide(Q)}nextWhenVisible(){!document.hidden&&l(this._element)&&this.next()}prev(){this._slide(G)}pause(t){t||(this._isPaused=!0),V.findOne(".carousel-item-next, .carousel-item-prev",this._element)&&(s(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(t){this._activeElement=V.findOne(nt,this._element);const e=this._getItemIndex(this._activeElement);if(t>this._items.length-1||t<0)return;if(this._isSliding)return void j.one(this._element,et,(()=>this.to(t)));if(e===t)return this.pause(),void this.cycle();const i=t>e?Q:G;this._slide(i,this._items[t])}_getConfig(t){return t={...X,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(K,t,Y),t}_handleSwipe(){const t=Math.abs(this.touchDeltaX);if(t<=40)return;const e=t/this.touchDeltaX;this.touchDeltaX=0,e&&this._slide(e>0?J:Z)}_addEventListeners(){this._config.keyboard&&j.on(this._element,"keydown.bs.carousel",(t=>this._keydown(t))),"hover"===this._config.pause&&(j.on(this._element,"mouseenter.bs.carousel",(t=>this.pause(t))),j.on(this._element,"mouseleave.bs.carousel",(t=>this.cycle(t)))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const t=t=>this._pointerEvent&&("pen"===t.pointerType||"touch"===t.pointerType),e=e=>{t(e)?this.touchStartX=e.clientX:this._pointerEvent||(this.touchStartX=e.touches[0].clientX)},i=t=>{this.touchDeltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this.touchStartX},n=e=>{t(e)&&(this.touchDeltaX=e.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((t=>this.cycle(t)),500+this._config.interval))};V.find(".carousel-item img",this._element).forEach((t=>{j.on(t,"dragstart.bs.carousel",(t=>t.preventDefault()))})),this._pointerEvent?(j.on(this._element,"pointerdown.bs.carousel",(t=>e(t))),j.on(this._element,"pointerup.bs.carousel",(t=>n(t))),this._element.classList.add("pointer-event")):(j.on(this._element,"touchstart.bs.carousel",(t=>e(t))),j.on(this._element,"touchmove.bs.carousel",(t=>i(t))),j.on(this._element,"touchend.bs.carousel",(t=>n(t))))}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=tt[t.key];e&&(t.preventDefault(),this._slide(e))}_getItemIndex(t){return this._items=t&&t.parentNode?V.find(".carousel-item",t.parentNode):[],this._items.indexOf(t)}_getItemByOrder(t,e){const i=t===Q;return v(this._items,e,i,this._config.wrap)}_triggerSlideEvent(t,e){const i=this._getItemIndex(t),n=this._getItemIndex(V.findOne(nt,this._element));return j.trigger(this._element,"slide.bs.carousel",{relatedTarget:t,direction:e,from:n,to:i})}_setActiveIndicatorElement(t){if(this._indicatorsElement){const e=V.findOne(".active",this._indicatorsElement);e.classList.remove(it),e.removeAttribute("aria-current");const i=V.find("[data-bs-target]",this._indicatorsElement);for(let e=0;e{j.trigger(this._element,et,{relatedTarget:o,direction:d,from:s,to:r})};if(this._element.classList.contains("slide")){o.classList.add(h),u(o),n.classList.add(c),o.classList.add(c);const t=()=>{o.classList.remove(c,h),o.classList.add(it),n.classList.remove(it,h,c),this._isSliding=!1,setTimeout(f,0)};this._queueCallback(t,n,!0)}else n.classList.remove(it),o.classList.add(it),this._isSliding=!1,f();a&&this.cycle()}_directionToOrder(t){return[J,Z].includes(t)?m()?t===Z?G:Q:t===Z?Q:G:t}_orderToDirection(t){return[Q,G].includes(t)?m()?t===G?Z:J:t===G?J:Z:t}static carouselInterface(t,e){const i=st.getOrCreateInstance(t,e);let{_config:n}=i;"object"==typeof e&&(n={...n,...e});const s="string"==typeof e?e:n.slide;if("number"==typeof e)i.to(e);else if("string"==typeof s){if(void 0===i[s])throw new TypeError(`No method named "${s}"`);i[s]()}else n.interval&&n.ride&&(i.pause(),i.cycle())}static jQueryInterface(t){return this.each((function(){st.carouselInterface(this,t)}))}static dataApiClickHandler(t){const e=n(this);if(!e||!e.classList.contains("carousel"))return;const i={...U.getDataAttributes(e),...U.getDataAttributes(this)},s=this.getAttribute("data-bs-slide-to");s&&(i.interval=!1),st.carouselInterface(e,i),s&&st.getInstance(e).to(s),t.preventDefault()}}j.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",st.dataApiClickHandler),j.on(window,"load.bs.carousel.data-api",(()=>{const t=V.find('[data-bs-ride="carousel"]');for(let e=0,i=t.length;et===this._element));null!==s&&o.length&&(this._selector=s,this._triggerArray.push(e))}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return rt}static get NAME(){return ot}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t,e=[];if(this._config.parent){const t=V.find(ut,this._config.parent);e=V.find(".collapse.show, .collapse.collapsing",this._config.parent).filter((e=>!t.includes(e)))}const i=V.findOne(this._selector);if(e.length){const n=e.find((t=>i!==t));if(t=n?pt.getInstance(n):null,t&&t._isTransitioning)return}if(j.trigger(this._element,"show.bs.collapse").defaultPrevented)return;e.forEach((e=>{i!==e&&pt.getOrCreateInstance(e,{toggle:!1}).hide(),t||H.set(e,"bs.collapse",null)}));const n=this._getDimension();this._element.classList.remove(ct),this._element.classList.add(ht),this._element.style[n]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const s=`scroll${n[0].toUpperCase()+n.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(ht),this._element.classList.add(ct,lt),this._element.style[n]="",j.trigger(this._element,"shown.bs.collapse")}),this._element,!0),this._element.style[n]=`${this._element[s]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(j.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,u(this._element),this._element.classList.add(ht),this._element.classList.remove(ct,lt);const e=this._triggerArray.length;for(let t=0;t{this._isTransitioning=!1,this._element.classList.remove(ht),this._element.classList.add(ct),j.trigger(this._element,"hidden.bs.collapse")}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(lt)}_getConfig(t){return(t={...rt,...U.getDataAttributes(this._element),...t}).toggle=Boolean(t.toggle),t.parent=r(t.parent),a(ot,t,at),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=V.find(ut,this._config.parent);V.find(ft,this._config.parent).filter((e=>!t.includes(e))).forEach((t=>{const e=n(t);e&&this._addAriaAndCollapsedClass([t],this._isShown(e))}))}_addAriaAndCollapsedClass(t,e){t.length&&t.forEach((t=>{e?t.classList.remove(dt):t.classList.add(dt),t.setAttribute("aria-expanded",e)}))}static jQueryInterface(t){return this.each((function(){const e={};"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1);const i=pt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}j.on(document,"click.bs.collapse.data-api",ft,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();const e=i(this);V.find(e).forEach((t=>{pt.getOrCreateInstance(t,{toggle:!1}).toggle()}))})),g(pt);var mt="top",gt="bottom",_t="right",bt="left",vt="auto",yt=[mt,gt,_t,bt],wt="start",Et="end",At="clippingParents",Tt="viewport",Ot="popper",Ct="reference",kt=yt.reduce((function(t,e){return t.concat([e+"-"+wt,e+"-"+Et])}),[]),Lt=[].concat(yt,[vt]).reduce((function(t,e){return t.concat([e,e+"-"+wt,e+"-"+Et])}),[]),xt="beforeRead",Dt="read",St="afterRead",Nt="beforeMain",It="main",Pt="afterMain",jt="beforeWrite",Mt="write",Ht="afterWrite",Bt=[xt,Dt,St,Nt,It,Pt,jt,Mt,Ht];function Rt(t){return t?(t.nodeName||"").toLowerCase():null}function Wt(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function $t(t){return t instanceof Wt(t).Element||t instanceof Element}function zt(t){return t instanceof Wt(t).HTMLElement||t instanceof HTMLElement}function qt(t){return"undefined"!=typeof ShadowRoot&&(t instanceof Wt(t).ShadowRoot||t instanceof ShadowRoot)}const Ft={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];zt(s)&&Rt(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});zt(n)&&Rt(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function Ut(t){return t.split("-")[0]}function Vt(t,e){var i=t.getBoundingClientRect();return{width:i.width/1,height:i.height/1,top:i.top/1,right:i.right/1,bottom:i.bottom/1,left:i.left/1,x:i.left/1,y:i.top/1}}function Kt(t){var e=Vt(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Xt(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&qt(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function Yt(t){return Wt(t).getComputedStyle(t)}function Qt(t){return["table","td","th"].indexOf(Rt(t))>=0}function Gt(t){return(($t(t)?t.ownerDocument:t.document)||window.document).documentElement}function Zt(t){return"html"===Rt(t)?t:t.assignedSlot||t.parentNode||(qt(t)?t.host:null)||Gt(t)}function Jt(t){return zt(t)&&"fixed"!==Yt(t).position?t.offsetParent:null}function te(t){for(var e=Wt(t),i=Jt(t);i&&Qt(i)&&"static"===Yt(i).position;)i=Jt(i);return i&&("html"===Rt(i)||"body"===Rt(i)&&"static"===Yt(i).position)?e:i||function(t){var e=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&zt(t)&&"fixed"===Yt(t).position)return null;for(var i=Zt(t);zt(i)&&["html","body"].indexOf(Rt(i))<0;){var n=Yt(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function ee(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}var ie=Math.max,ne=Math.min,se=Math.round;function oe(t,e,i){return ie(t,ne(e,i))}function re(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function ae(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const le={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=Ut(i.placement),l=ee(a),c=[bt,_t].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return re("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:ae(t,yt))}(s.padding,i),d=Kt(o),u="y"===l?mt:bt,f="y"===l?gt:_t,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=te(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,E=oe(v,w,y),A=l;i.modifiersData[n]=((e={})[A]=E,e.centerOffset=E-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Xt(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function ce(t){return t.split("-")[1]}var he={top:"auto",right:"auto",bottom:"auto",left:"auto"};function de(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=!0===h?function(t){var e=t.x,i=t.y,n=window.devicePixelRatio||1;return{x:se(se(e*n)/n)||0,y:se(se(i*n)/n)||0}}(r):"function"==typeof h?h(r):r,u=d.x,f=void 0===u?0:u,p=d.y,m=void 0===p?0:p,g=r.hasOwnProperty("x"),_=r.hasOwnProperty("y"),b=bt,v=mt,y=window;if(c){var w=te(i),E="clientHeight",A="clientWidth";w===Wt(i)&&"static"!==Yt(w=Gt(i)).position&&"absolute"===a&&(E="scrollHeight",A="scrollWidth"),w=w,s!==mt&&(s!==bt&&s!==_t||o!==Et)||(v=gt,m-=w[E]-n.height,m*=l?1:-1),s!==bt&&(s!==mt&&s!==gt||o!==Et)||(b=_t,f-=w[A]-n.width,f*=l?1:-1)}var T,O=Object.assign({position:a},c&&he);return l?Object.assign({},O,((T={})[v]=_?"0":"",T[b]=g?"0":"",T.transform=(y.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",T)):Object.assign({},O,((e={})[v]=_?m+"px":"",e[b]=g?f+"px":"",e.transform="",e))}const ue={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:Ut(e.placement),variation:ce(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,de(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,de(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var fe={passive:!0};const pe={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=Wt(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,fe)})),a&&l.addEventListener("resize",i.update,fe),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,fe)})),a&&l.removeEventListener("resize",i.update,fe)}},data:{}};var me={left:"right",right:"left",bottom:"top",top:"bottom"};function ge(t){return t.replace(/left|right|bottom|top/g,(function(t){return me[t]}))}var _e={start:"end",end:"start"};function be(t){return t.replace(/start|end/g,(function(t){return _e[t]}))}function ve(t){var e=Wt(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function ye(t){return Vt(Gt(t)).left+ve(t).scrollLeft}function we(t){var e=Yt(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ee(t){return["html","body","#document"].indexOf(Rt(t))>=0?t.ownerDocument.body:zt(t)&&we(t)?t:Ee(Zt(t))}function Ae(t,e){var i;void 0===e&&(e=[]);var n=Ee(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=Wt(n),r=s?[o].concat(o.visualViewport||[],we(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Ae(Zt(r)))}function Te(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function Oe(t,e){return e===Tt?Te(function(t){var e=Wt(t),i=Gt(t),n=e.visualViewport,s=i.clientWidth,o=i.clientHeight,r=0,a=0;return n&&(s=n.width,o=n.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(r=n.offsetLeft,a=n.offsetTop)),{width:s,height:o,x:r+ye(t),y:a}}(t)):zt(e)?function(t){var e=Vt(t);return e.top=e.top+t.clientTop,e.left=e.left+t.clientLeft,e.bottom=e.top+t.clientHeight,e.right=e.left+t.clientWidth,e.width=t.clientWidth,e.height=t.clientHeight,e.x=e.left,e.y=e.top,e}(e):Te(function(t){var e,i=Gt(t),n=ve(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=ie(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=ie(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+ye(t),l=-n.scrollTop;return"rtl"===Yt(s||i).direction&&(a+=ie(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Gt(t)))}function Ce(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?Ut(s):null,r=s?ce(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case mt:e={x:a,y:i.y-n.height};break;case gt:e={x:a,y:i.y+i.height};break;case _t:e={x:i.x+i.width,y:l};break;case bt:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?ee(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case wt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case Et:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ke(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.boundary,r=void 0===o?At:o,a=i.rootBoundary,l=void 0===a?Tt:a,c=i.elementContext,h=void 0===c?Ot:c,d=i.altBoundary,u=void 0!==d&&d,f=i.padding,p=void 0===f?0:f,m=re("number"!=typeof p?p:ae(p,yt)),g=h===Ot?Ct:Ot,_=t.rects.popper,b=t.elements[u?g:h],v=function(t,e,i){var n="clippingParents"===e?function(t){var e=Ae(Zt(t)),i=["absolute","fixed"].indexOf(Yt(t).position)>=0&&zt(t)?te(t):t;return $t(i)?e.filter((function(t){return $t(t)&&Xt(t,i)&&"body"!==Rt(t)})):[]}(t):[].concat(e),s=[].concat(n,[i]),o=s[0],r=s.reduce((function(e,i){var n=Oe(t,i);return e.top=ie(n.top,e.top),e.right=ne(n.right,e.right),e.bottom=ne(n.bottom,e.bottom),e.left=ie(n.left,e.left),e}),Oe(t,o));return r.width=r.right-r.left,r.height=r.bottom-r.top,r.x=r.left,r.y=r.top,r}($t(b)?b:b.contextElement||Gt(t.elements.popper),r,l),y=Vt(t.elements.reference),w=Ce({reference:y,element:_,strategy:"absolute",placement:s}),E=Te(Object.assign({},_,w)),A=h===Ot?E:y,T={top:v.top-A.top+m.top,bottom:A.bottom-v.bottom+m.bottom,left:v.left-A.left+m.left,right:A.right-v.right+m.right},O=t.modifiersData.offset;if(h===Ot&&O){var C=O[s];Object.keys(T).forEach((function(t){var e=[_t,gt].indexOf(t)>=0?1:-1,i=[mt,gt].indexOf(t)>=0?"y":"x";T[t]+=C[i]*e}))}return T}function Le(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?Lt:l,h=ce(n),d=h?a?kt:kt.filter((function(t){return ce(t)===h})):yt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ke(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[Ut(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const xe={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=Ut(g),b=l||(_!==g&&p?function(t){if(Ut(t)===vt)return[];var e=ge(t);return[be(t),e,be(e)]}(g):[ge(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(Ut(i)===vt?Le(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,E=new Map,A=!0,T=v[0],O=0;O=0,D=x?"width":"height",S=ke(e,{placement:C,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),N=x?L?_t:bt:L?gt:mt;y[D]>w[D]&&(N=ge(N));var I=ge(N),P=[];if(o&&P.push(S[k]<=0),a&&P.push(S[N]<=0,S[I]<=0),P.every((function(t){return t}))){T=C,A=!1;break}E.set(C,P)}if(A)for(var j=function(t){var e=v.find((function(e){var i=E.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==j(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function De(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function Se(t){return[mt,_t,gt,bt].some((function(e){return t[e]>=0}))}const Ne={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ke(e,{elementContext:"reference"}),a=ke(e,{altBoundary:!0}),l=De(r,n),c=De(a,s,o),h=Se(l),d=Se(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},Ie={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=Lt.reduce((function(t,i){return t[i]=function(t,e,i){var n=Ut(t),s=[bt,mt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[bt,_t].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},Pe={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=Ce({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},je={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ke(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=Ut(e.placement),b=ce(e.placement),v=!b,y=ee(_),w="x"===y?"y":"x",E=e.modifiersData.popperOffsets,A=e.rects.reference,T=e.rects.popper,O="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,C={x:0,y:0};if(E){if(o||a){var k="y"===y?mt:bt,L="y"===y?gt:_t,x="y"===y?"height":"width",D=E[y],S=E[y]+g[k],N=E[y]-g[L],I=f?-T[x]/2:0,P=b===wt?A[x]:T[x],j=b===wt?-T[x]:-A[x],M=e.elements.arrow,H=f&&M?Kt(M):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},R=B[k],W=B[L],$=oe(0,A[x],H[x]),z=v?A[x]/2-I-$-R-O:P-$-R-O,q=v?-A[x]/2+I+$+W+O:j+$+W+O,F=e.elements.arrow&&te(e.elements.arrow),U=F?"y"===y?F.clientTop||0:F.clientLeft||0:0,V=e.modifiersData.offset?e.modifiersData.offset[e.placement][y]:0,K=E[y]+z-V-U,X=E[y]+q-V;if(o){var Y=oe(f?ne(S,K):S,D,f?ie(N,X):N);E[y]=Y,C[y]=Y-D}if(a){var Q="x"===y?mt:bt,G="x"===y?gt:_t,Z=E[w],J=Z+g[Q],tt=Z-g[G],et=oe(f?ne(J,K):J,Z,f?ie(tt,X):tt);E[w]=et,C[w]=et-Z}}e.modifiersData[n]=C}},requiresIfExists:["offset"]};function Me(t,e,i){void 0===i&&(i=!1);var n=zt(e);zt(e)&&function(t){var e=t.getBoundingClientRect();e.width,t.offsetWidth,e.height,t.offsetHeight}(e);var s,o,r=Gt(e),a=Vt(t),l={scrollLeft:0,scrollTop:0},c={x:0,y:0};return(n||!n&&!i)&&(("body"!==Rt(e)||we(r))&&(l=(s=e)!==Wt(s)&&zt(s)?{scrollLeft:(o=s).scrollLeft,scrollTop:o.scrollTop}:ve(s)),zt(e)?((c=Vt(e)).x+=e.clientLeft,c.y+=e.clientTop):r&&(c.x=ye(r))),{x:a.left+l.scrollLeft-c.x,y:a.top+l.scrollTop-c.y,width:a.width,height:a.height}}function He(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var Be={placement:"bottom",modifiers:[],strategy:"absolute"};function Re(){for(var t=arguments.length,e=new Array(t),i=0;ij.on(t,"mouseover",d))),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add(Je),this._element.classList.add(Je),j.trigger(this._element,"shown.bs.dropdown",t)}hide(){if(c(this._element)||!this._isShown(this._menu))return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(t){j.trigger(this._element,"hide.bs.dropdown",t).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>j.off(t,"mouseover",d))),this._popper&&this._popper.destroy(),this._menu.classList.remove(Je),this._element.classList.remove(Je),this._element.setAttribute("aria-expanded","false"),U.removeDataAttribute(this._menu,"popper"),j.trigger(this._element,"hidden.bs.dropdown",t))}_getConfig(t){if(t={...this.constructor.Default,...U.getDataAttributes(this._element),...t},a(Ue,t,this.constructor.DefaultType),"object"==typeof t.reference&&!o(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError(`${Ue.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`);return t}_createPopper(t){if(void 0===Fe)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;"parent"===this._config.reference?e=t:o(this._config.reference)?e=r(this._config.reference):"object"==typeof this._config.reference&&(e=this._config.reference);const i=this._getPopperConfig(),n=i.modifiers.find((t=>"applyStyles"===t.name&&!1===t.enabled));this._popper=qe(e,this._menu,i),n&&U.setDataAttribute(this._menu,"popper","static")}_isShown(t=this._element){return t.classList.contains(Je)}_getMenuElement(){return V.next(this._element,ei)[0]}_getPlacement(){const t=this._element.parentNode;if(t.classList.contains("dropend"))return ri;if(t.classList.contains("dropstart"))return ai;const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?ni:ii:e?oi:si}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_selectMenuItem({key:t,target:e}){const i=V.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(l);i.length&&v(i,e,t===Ye,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=hi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(t&&(2===t.button||"keyup"===t.type&&"Tab"!==t.key))return;const e=V.find(ti);for(let i=0,n=e.length;ie+t)),this._setElementAttributes(di,"paddingRight",(e=>e+t)),this._setElementAttributes(ui,"marginRight",(e=>e-t))}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t)[e];t.style[e]=`${i(Number.parseFloat(s))}px`}))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,"paddingRight"),this._resetElementAttributes(di,"paddingRight"),this._resetElementAttributes(ui,"marginRight")}_saveInitialAttribute(t,e){const i=t.style[e];i&&U.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=U.getDataAttribute(t,e);void 0===i?t.style.removeProperty(e):(U.removeDataAttribute(t,e),t.style[e]=i)}))}_applyManipulationCallback(t,e){o(t)?e(t):V.find(t,this._element).forEach(e)}isOverflowing(){return this.getWidth()>0}}const pi={className:"modal-backdrop",isVisible:!0,isAnimated:!1,rootElement:"body",clickCallback:null},mi={className:"string",isVisible:"boolean",isAnimated:"boolean",rootElement:"(element|string)",clickCallback:"(function|null)"},gi="show",_i="mousedown.bs.backdrop";class bi{constructor(t){this._config=this._getConfig(t),this._isAppended=!1,this._element=null}show(t){this._config.isVisible?(this._append(),this._config.isAnimated&&u(this._getElement()),this._getElement().classList.add(gi),this._emulateAnimation((()=>{_(t)}))):_(t)}hide(t){this._config.isVisible?(this._getElement().classList.remove(gi),this._emulateAnimation((()=>{this.dispose(),_(t)}))):_(t)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_getConfig(t){return(t={...pi,..."object"==typeof t?t:{}}).rootElement=r(t.rootElement),a("backdrop",t,mi),t}_append(){this._isAppended||(this._config.rootElement.append(this._getElement()),j.on(this._getElement(),_i,(()=>{_(this._config.clickCallback)})),this._isAppended=!0)}dispose(){this._isAppended&&(j.off(this._element,_i),this._element.remove(),this._isAppended=!1)}_emulateAnimation(t){b(t,this._getElement(),this._config.isAnimated)}}const vi={trapElement:null,autofocus:!0},yi={trapElement:"element",autofocus:"boolean"},wi=".bs.focustrap",Ei="backward";class Ai{constructor(t){this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}activate(){const{trapElement:t,autofocus:e}=this._config;this._isActive||(e&&t.focus(),j.off(document,wi),j.on(document,"focusin.bs.focustrap",(t=>this._handleFocusin(t))),j.on(document,"keydown.tab.bs.focustrap",(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,j.off(document,wi))}_handleFocusin(t){const{target:e}=t,{trapElement:i}=this._config;if(e===document||e===i||i.contains(e))return;const n=V.focusableChildren(i);0===n.length?i.focus():this._lastTabNavDirection===Ei?n[n.length-1].focus():n[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?Ei:"forward")}_getConfig(t){return t={...vi,..."object"==typeof t?t:{}},a("focustrap",t,yi),t}}const Ti="modal",Oi="Escape",Ci={backdrop:!0,keyboard:!0,focus:!0},ki={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"},Li="hidden.bs.modal",xi="show.bs.modal",Di="resize.bs.modal",Si="click.dismiss.bs.modal",Ni="keydown.dismiss.bs.modal",Ii="mousedown.dismiss.bs.modal",Pi="modal-open",ji="show",Mi="modal-static";class Hi extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._dialog=V.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollBar=new fi}static get Default(){return Ci}static get NAME(){return Ti}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||j.trigger(this._element,xi,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isAnimated()&&(this._isTransitioning=!0),this._scrollBar.hide(),document.body.classList.add(Pi),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),j.on(this._dialog,Ii,(()=>{j.one(this._element,"mouseup.dismiss.bs.modal",(t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)}))})),this._showBackdrop((()=>this._showElement(t))))}hide(){if(!this._isShown||this._isTransitioning)return;if(j.trigger(this._element,"hide.bs.modal").defaultPrevented)return;this._isShown=!1;const t=this._isAnimated();t&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),this._focustrap.deactivate(),this._element.classList.remove(ji),j.off(this._element,Si),j.off(this._dialog,Ii),this._queueCallback((()=>this._hideModal()),this._element,t)}dispose(){[window,this._dialog].forEach((t=>j.off(t,".bs.modal"))),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new bi({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new Ai({trapElement:this._element})}_getConfig(t){return t={...Ci,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(Ti,t,ki),t}_showElement(t){const e=this._isAnimated(),i=V.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0,i&&(i.scrollTop=0),e&&u(this._element),this._element.classList.add(ji),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,j.trigger(this._element,"shown.bs.modal",{relatedTarget:t})}),this._dialog,e)}_setEscapeEvent(){this._isShown?j.on(this._element,Ni,(t=>{this._config.keyboard&&t.key===Oi?(t.preventDefault(),this.hide()):this._config.keyboard||t.key!==Oi||this._triggerBackdropTransition()})):j.off(this._element,Ni)}_setResizeEvent(){this._isShown?j.on(window,Di,(()=>this._adjustDialog())):j.off(window,Di)}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(Pi),this._resetAdjustments(),this._scrollBar.reset(),j.trigger(this._element,Li)}))}_showBackdrop(t){j.on(this._element,Si,(t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())})),this._backdrop.show(t)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(j.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const{classList:t,scrollHeight:e,style:i}=this._element,n=e>document.documentElement.clientHeight;!n&&"hidden"===i.overflowY||t.contains(Mi)||(n||(i.overflowY="hidden"),t.add(Mi),this._queueCallback((()=>{t.remove(Mi),n||this._queueCallback((()=>{i.overflowY=""}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;(!i&&t&&!m()||i&&!t&&m())&&(this._element.style.paddingLeft=`${e}px`),(i&&!t&&!m()||!i&&t&&m())&&(this._element.style.paddingRight=`${e}px`)}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=Hi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}j.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=n(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),j.one(e,xi,(t=>{t.defaultPrevented||j.one(e,Li,(()=>{l(this)&&this.focus()}))}));const i=V.findOne(".modal.show");i&&Hi.getInstance(i).hide(),Hi.getOrCreateInstance(e).toggle(this)})),R(Hi),g(Hi);const Bi="offcanvas",Ri={backdrop:!0,keyboard:!0,scroll:!1},Wi={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"},$i="show",zi=".offcanvas.show",qi="hidden.bs.offcanvas";class Fi extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get NAME(){return Bi}static get Default(){return Ri}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||j.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||(new fi).hide(),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add($i),this._queueCallback((()=>{this._config.scroll||this._focustrap.activate(),j.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(j.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.remove($i),this._backdrop.hide(),this._queueCallback((()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||(new fi).reset(),j.trigger(this._element,qi)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_getConfig(t){return t={...Ri,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(Bi,t,Wi),t}_initializeBackDrop(){return new bi({className:"offcanvas-backdrop",isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_initializeFocusTrap(){return new Ai({trapElement:this._element})}_addEventListeners(){j.on(this._element,"keydown.dismiss.bs.offcanvas",(t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()}))}static jQueryInterface(t){return this.each((function(){const e=Fi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}j.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(t){const e=n(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),c(this))return;j.one(e,qi,(()=>{l(this)&&this.focus()}));const i=V.findOne(zi);i&&i!==e&&Fi.getInstance(i).hide(),Fi.getOrCreateInstance(e).toggle(this)})),j.on(window,"load.bs.offcanvas.data-api",(()=>V.find(zi).forEach((t=>Fi.getOrCreateInstance(t).show())))),R(Fi),g(Fi);const Ui=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Vi=/^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i,Ki=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,Xi=(t,e)=>{const i=t.nodeName.toLowerCase();if(e.includes(i))return!Ui.has(i)||Boolean(Vi.test(t.nodeValue)||Ki.test(t.nodeValue));const n=e.filter((t=>t instanceof RegExp));for(let t=0,e=n.length;t{Xi(t,r)||i.removeAttribute(t.nodeName)}))}return n.body.innerHTML}const Qi="tooltip",Gi=new Set(["sanitize","allowList","sanitizeFn"]),Zi={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},Ji={AUTO:"auto",TOP:"top",RIGHT:m()?"left":"right",BOTTOM:"bottom",LEFT:m()?"right":"left"},tn={animation:!0,template:'',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},en={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},nn="fade",sn="show",on="show",rn="out",an=".tooltip-inner",ln=".modal",cn="hide.bs.modal",hn="hover",dn="focus";class un extends B{constructor(t,e){if(void 0===Fe)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return tn}static get NAME(){return Qi}static get Event(){return en}static get DefaultType(){return Zi}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else{if(this.getTipElement().classList.contains(sn))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),j.off(this._element.closest(ln),cn,this._hideModalHandler),this.tip&&this.tip.remove(),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const t=j.trigger(this._element,this.constructor.Event.SHOW),e=h(this._element),i=null===e?this._element.ownerDocument.documentElement.contains(this._element):e.contains(this._element);if(t.defaultPrevented||!i)return;"tooltip"===this.constructor.NAME&&this.tip&&this.getTitle()!==this.tip.querySelector(an).innerHTML&&(this._disposePopper(),this.tip.remove(),this.tip=null);const n=this.getTipElement(),s=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME);n.setAttribute("id",s),this._element.setAttribute("aria-describedby",s),this._config.animation&&n.classList.add(nn);const o="function"==typeof this._config.placement?this._config.placement.call(this,n,this._element):this._config.placement,r=this._getAttachment(o);this._addAttachmentClass(r);const{container:a}=this._config;H.set(n,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(a.append(n),j.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=qe(this._element,n,this._getPopperConfig(r)),n.classList.add(sn);const l=this._resolvePossibleFunction(this._config.customClass);l&&n.classList.add(...l.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>{j.on(t,"mouseover",d)}));const c=this.tip.classList.contains(nn);this._queueCallback((()=>{const t=this._hoverState;this._hoverState=null,j.trigger(this._element,this.constructor.Event.SHOWN),t===rn&&this._leave(null,this)}),this.tip,c)}hide(){if(!this._popper)return;const t=this.getTipElement();if(j.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented)return;t.classList.remove(sn),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>j.off(t,"mouseover",d))),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1;const e=this.tip.classList.contains(nn);this._queueCallback((()=>{this._isWithActiveTrigger()||(this._hoverState!==on&&t.remove(),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),j.trigger(this._element,this.constructor.Event.HIDDEN),this._disposePopper())}),this.tip,e),this._hoverState=""}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div");t.innerHTML=this._config.template;const e=t.children[0];return this.setContent(e),e.classList.remove(nn,sn),this.tip=e,this.tip}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),an)}_sanitizeAndSetContent(t,e,i){const n=V.findOne(i,t);e||!n?this.setElementContent(n,e):n.remove()}setElementContent(t,e){if(null!==t)return o(e)?(e=r(e),void(this._config.html?e.parentNode!==t&&(t.innerHTML="",t.append(e)):t.textContent=e.textContent)):void(this._config.html?(this._config.sanitize&&(e=Yi(e,this._config.allowList,this._config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){const t=this._element.getAttribute("data-bs-original-title")||this._config.title;return this._resolvePossibleFunction(t)}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){return e||this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return"function"==typeof t?t.call(this._element):t}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...e,..."function"==typeof this._config.popperConfig?this._config.popperConfig(e):this._config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add(`${this._getBasicClassPrefix()}-${this.updateAttachment(t)}`)}_getAttachment(t){return Ji[t.toUpperCase()]}_setListeners(){this._config.trigger.split(" ").forEach((t=>{if("click"===t)j.on(this._element,this.constructor.Event.CLICK,this._config.selector,(t=>this.toggle(t)));else if("manual"!==t){const e=t===hn?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,i=t===hn?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;j.on(this._element,e,this._config.selector,(t=>this._enter(t))),j.on(this._element,i,this._config.selector,(t=>this._leave(t)))}})),this._hideModalHandler=()=>{this._element&&this.hide()},j.on(this._element.closest(ln),cn,this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-bs-original-title");(t||"string"!==e)&&(this._element.setAttribute("data-bs-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?dn:hn]=!0),e.getTipElement().classList.contains(sn)||e._hoverState===on?e._hoverState=on:(clearTimeout(e._timeout),e._hoverState=on,e._config.delay&&e._config.delay.show?e._timeout=setTimeout((()=>{e._hoverState===on&&e.show()}),e._config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?dn:hn]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=rn,e._config.delay&&e._config.delay.hide?e._timeout=setTimeout((()=>{e._hoverState===rn&&e.hide()}),e._config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=U.getDataAttributes(this._element);return Object.keys(e).forEach((t=>{Gi.has(t)&&delete e[t]})),(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),a(Qi,t,this.constructor.DefaultType),t.sanitize&&(t.template=Yi(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};for(const e in this._config)this.constructor.Default[e]!==this._config[e]&&(t[e]=this._config[e]);return t}_cleanTipClass(){const t=this.getTipElement(),e=new RegExp(`(^|\\s)${this._getBasicClassPrefix()}\\S+`,"g"),i=t.getAttribute("class").match(e);null!==i&&i.length>0&&i.map((t=>t.trim())).forEach((e=>t.classList.remove(e)))}_getBasicClassPrefix(){return"bs-tooltip"}_handlePopperPlacementChange(t){const{state:e}=t;e&&(this.tip=e.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(e.placement)))}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null)}static jQueryInterface(t){return this.each((function(){const e=un.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}g(un);const fn={...un.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:''},pn={...un.DefaultType,content:"(string|element|function)"},mn={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"};class gn extends un{static get Default(){return fn}static get NAME(){return"popover"}static get Event(){return mn}static get DefaultType(){return pn}isWithContent(){return this.getTitle()||this._getContent()}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),".popover-header"),this._sanitizeAndSetContent(t,this._getContent(),".popover-body")}_getContent(){return this._resolvePossibleFunction(this._config.content)}_getBasicClassPrefix(){return"bs-popover"}static jQueryInterface(t){return this.each((function(){const e=gn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}g(gn);const _n="scrollspy",bn={offset:10,method:"auto",target:""},vn={offset:"number",method:"string",target:"(string|element)"},yn="active",wn=".nav-link, .list-group-item, .dropdown-item",En="position";class An extends B{constructor(t,e){super(t),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,j.on(this._scrollElement,"scroll.bs.scrollspy",(()=>this._process())),this.refresh(),this._process()}static get Default(){return bn}static get NAME(){return _n}refresh(){const t=this._scrollElement===this._scrollElement.window?"offset":En,e="auto"===this._config.method?t:this._config.method,n=e===En?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),V.find(wn,this._config.target).map((t=>{const s=i(t),o=s?V.findOne(s):null;if(o){const t=o.getBoundingClientRect();if(t.width||t.height)return[U[e](o).top+n,s]}return null})).filter((t=>t)).sort(((t,e)=>t[0]-e[0])).forEach((t=>{this._offsets.push(t[0]),this._targets.push(t[1])}))}dispose(){j.off(this._scrollElement,".bs.scrollspy"),super.dispose()}_getConfig(t){return(t={...bn,...U.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}}).target=r(t.target)||document.documentElement,a(_n,t,vn),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),i=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=i){const t=this._targets[this._targets.length-1];this._activeTarget!==t&&this._activate(t)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(let e=this._offsets.length;e--;)this._activeTarget!==this._targets[e]&&t>=this._offsets[e]&&(void 0===this._offsets[e+1]||t`${e}[data-bs-target="${t}"],${e}[href="${t}"]`)),i=V.findOne(e.join(","),this._config.target);i.classList.add(yn),i.classList.contains("dropdown-item")?V.findOne(".dropdown-toggle",i.closest(".dropdown")).classList.add(yn):V.parents(i,".nav, .list-group").forEach((t=>{V.prev(t,".nav-link, .list-group-item").forEach((t=>t.classList.add(yn))),V.prev(t,".nav-item").forEach((t=>{V.children(t,".nav-link").forEach((t=>t.classList.add(yn)))}))})),j.trigger(this._scrollElement,"activate.bs.scrollspy",{relatedTarget:t})}_clear(){V.find(wn,this._config.target).filter((t=>t.classList.contains(yn))).forEach((t=>t.classList.remove(yn)))}static jQueryInterface(t){return this.each((function(){const e=An.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}j.on(window,"load.bs.scrollspy.data-api",(()=>{V.find('[data-bs-spy="scroll"]').forEach((t=>new An(t)))})),g(An);const Tn="active",On="fade",Cn="show",kn=".active",Ln=":scope > li > .active";class xn extends B{static get NAME(){return"tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains(Tn))return;let t;const e=n(this._element),i=this._element.closest(".nav, .list-group");if(i){const e="UL"===i.nodeName||"OL"===i.nodeName?Ln:kn;t=V.find(e,i),t=t[t.length-1]}const s=t?j.trigger(t,"hide.bs.tab",{relatedTarget:this._element}):null;if(j.trigger(this._element,"show.bs.tab",{relatedTarget:t}).defaultPrevented||null!==s&&s.defaultPrevented)return;this._activate(this._element,i);const o=()=>{j.trigger(t,"hidden.bs.tab",{relatedTarget:this._element}),j.trigger(this._element,"shown.bs.tab",{relatedTarget:t})};e?this._activate(e,e.parentNode,o):o()}_activate(t,e,i){const n=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?V.children(e,kn):V.find(Ln,e))[0],s=i&&n&&n.classList.contains(On),o=()=>this._transitionComplete(t,n,i);n&&s?(n.classList.remove(Cn),this._queueCallback(o,t,!0)):o()}_transitionComplete(t,e,i){if(e){e.classList.remove(Tn);const t=V.findOne(":scope > .dropdown-menu .active",e.parentNode);t&&t.classList.remove(Tn),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}t.classList.add(Tn),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),u(t),t.classList.contains(On)&&t.classList.add(Cn);let n=t.parentNode;if(n&&"LI"===n.nodeName&&(n=n.parentNode),n&&n.classList.contains("dropdown-menu")){const e=t.closest(".dropdown");e&&V.find(".dropdown-toggle",e).forEach((t=>t.classList.add(Tn))),t.setAttribute("aria-expanded",!0)}i&&i()}static jQueryInterface(t){return this.each((function(){const e=xn.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}j.on(document,"click.bs.tab.data-api",'[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),c(this)||xn.getOrCreateInstance(this).show()})),g(xn);const Dn="toast",Sn="hide",Nn="show",In="showing",Pn={animation:"boolean",autohide:"boolean",delay:"number"},jn={animation:!0,autohide:!0,delay:5e3};class Mn extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return Pn}static get Default(){return jn}static get NAME(){return Dn}show(){j.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(Sn),u(this._element),this._element.classList.add(Nn),this._element.classList.add(In),this._queueCallback((()=>{this._element.classList.remove(In),j.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this._element.classList.contains(Nn)&&(j.trigger(this._element,"hide.bs.toast").defaultPrevented||(this._element.classList.add(In),this._queueCallback((()=>{this._element.classList.add(Sn),this._element.classList.remove(In),this._element.classList.remove(Nn),j.trigger(this._element,"hidden.bs.toast")}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this._element.classList.contains(Nn)&&this._element.classList.remove(Nn),super.dispose()}_getConfig(t){return t={...jn,...U.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}},a(Dn,t,this.constructor.DefaultType),t}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){j.on(this._element,"mouseover.bs.toast",(t=>this._onInteraction(t,!0))),j.on(this._element,"mouseout.bs.toast",(t=>this._onInteraction(t,!1))),j.on(this._element,"focusin.bs.toast",(t=>this._onInteraction(t,!0))),j.on(this._element,"focusout.bs.toast",(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=Mn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(Mn),g(Mn),{Alert:W,Button:z,Carousel:st,Collapse:pt,Dropdown:hi,Modal:Hi,Offcanvas:Fi,Popover:gn,ScrollSpy:An,Tab:xn,Toast:Mn,Tooltip:un}})); -//# sourceMappingURL=bootstrap.bundle.min.js.map \ No newline at end of file diff --git a/index_files/libs/clipboard/clipboard.min.js b/index_files/libs/clipboard/clipboard.min.js deleted file mode 100644 index 41c6a0f7b..000000000 --- a/index_files/libs/clipboard/clipboard.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * clipboard.js v2.0.10 - * https://clipboardjs.com/ - * - * Licensed MIT © Zeno Rocha - */ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return o}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),c=n.n(e);function a(t){try{return document.execCommand(t)}catch(t){return}}var f=function(t){t=c()(t);return a("cut"),t};var l=function(t){var e,n,o,r=1.anchorjs-link,.anchorjs-link:focus{opacity:1}",u.sheet.cssRules.length),u.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",u.sheet.cssRules.length),u.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',u.sheet.cssRules.length)),u=document.querySelectorAll("[id]"),t=[].map.call(u,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); -// @license-end \ No newline at end of file diff --git a/index_files/libs/quarto-html/popper.min.js b/index_files/libs/quarto-html/popper.min.js deleted file mode 100644 index 2269d6696..000000000 --- a/index_files/libs/quarto-html/popper.min.js +++ /dev/null @@ -1,6 +0,0 @@ -/** - * @popperjs/core v2.11.4 - MIT License - */ - -!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).Popper={})}(this,(function(e){"use strict";function t(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function n(e){return e instanceof t(e).Element||e instanceof Element}function r(e){return e instanceof t(e).HTMLElement||e instanceof HTMLElement}function o(e){return"undefined"!=typeof ShadowRoot&&(e instanceof t(e).ShadowRoot||e instanceof ShadowRoot)}var i=Math.max,a=Math.min,s=Math.round;function f(e,t){void 0===t&&(t=!1);var n=e.getBoundingClientRect(),o=1,i=1;if(r(e)&&t){var a=e.offsetHeight,f=e.offsetWidth;f>0&&(o=s(n.width)/f||1),a>0&&(i=s(n.height)/a||1)}return{width:n.width/o,height:n.height/i,top:n.top/i,right:n.right/o,bottom:n.bottom/i,left:n.left/o,x:n.left/o,y:n.top/i}}function c(e){var n=t(e);return{scrollLeft:n.pageXOffset,scrollTop:n.pageYOffset}}function p(e){return e?(e.nodeName||"").toLowerCase():null}function u(e){return((n(e)?e.ownerDocument:e.document)||window.document).documentElement}function l(e){return f(u(e)).left+c(e).scrollLeft}function d(e){return t(e).getComputedStyle(e)}function h(e){var t=d(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function m(e,n,o){void 0===o&&(o=!1);var i,a,d=r(n),m=r(n)&&function(e){var t=e.getBoundingClientRect(),n=s(t.width)/e.offsetWidth||1,r=s(t.height)/e.offsetHeight||1;return 1!==n||1!==r}(n),v=u(n),g=f(e,m),y={scrollLeft:0,scrollTop:0},b={x:0,y:0};return(d||!d&&!o)&&(("body"!==p(n)||h(v))&&(y=(i=n)!==t(i)&&r(i)?{scrollLeft:(a=i).scrollLeft,scrollTop:a.scrollTop}:c(i)),r(n)?((b=f(n,!0)).x+=n.clientLeft,b.y+=n.clientTop):v&&(b.x=l(v))),{x:g.left+y.scrollLeft-b.x,y:g.top+y.scrollTop-b.y,width:g.width,height:g.height}}function v(e){var t=f(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function g(e){return"html"===p(e)?e:e.assignedSlot||e.parentNode||(o(e)?e.host:null)||u(e)}function y(e){return["html","body","#document"].indexOf(p(e))>=0?e.ownerDocument.body:r(e)&&h(e)?e:y(g(e))}function b(e,n){var r;void 0===n&&(n=[]);var o=y(e),i=o===(null==(r=e.ownerDocument)?void 0:r.body),a=t(o),s=i?[a].concat(a.visualViewport||[],h(o)?o:[]):o,f=n.concat(s);return i?f:f.concat(b(g(s)))}function x(e){return["table","td","th"].indexOf(p(e))>=0}function w(e){return r(e)&&"fixed"!==d(e).position?e.offsetParent:null}function O(e){for(var n=t(e),i=w(e);i&&x(i)&&"static"===d(i).position;)i=w(i);return i&&("html"===p(i)||"body"===p(i)&&"static"===d(i).position)?n:i||function(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&r(e)&&"fixed"===d(e).position)return null;var n=g(e);for(o(n)&&(n=n.host);r(n)&&["html","body"].indexOf(p(n))<0;){var i=d(n);if("none"!==i.transform||"none"!==i.perspective||"paint"===i.contain||-1!==["transform","perspective"].indexOf(i.willChange)||t&&"filter"===i.willChange||t&&i.filter&&"none"!==i.filter)return n;n=n.parentNode}return null}(e)||n}var j="top",E="bottom",D="right",A="left",L="auto",P=[j,E,D,A],M="start",k="end",W="viewport",B="popper",H=P.reduce((function(e,t){return e.concat([t+"-"+M,t+"-"+k])}),[]),T=[].concat(P,[L]).reduce((function(e,t){return e.concat([t,t+"-"+M,t+"-"+k])}),[]),R=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function S(e){var t=new Map,n=new Set,r=[];function o(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var r=t.get(e);r&&o(r)}})),r.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||o(e)})),r}function C(e){return e.split("-")[0]}function q(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&o(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function V(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function N(e,r){return r===W?V(function(e){var n=t(e),r=u(e),o=n.visualViewport,i=r.clientWidth,a=r.clientHeight,s=0,f=0;return o&&(i=o.width,a=o.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(s=o.offsetLeft,f=o.offsetTop)),{width:i,height:a,x:s+l(e),y:f}}(e)):n(r)?function(e){var t=f(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}(r):V(function(e){var t,n=u(e),r=c(e),o=null==(t=e.ownerDocument)?void 0:t.body,a=i(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=i(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),f=-r.scrollLeft+l(e),p=-r.scrollTop;return"rtl"===d(o||n).direction&&(f+=i(n.clientWidth,o?o.clientWidth:0)-a),{width:a,height:s,x:f,y:p}}(u(e)))}function I(e,t,o){var s="clippingParents"===t?function(e){var t=b(g(e)),o=["absolute","fixed"].indexOf(d(e).position)>=0&&r(e)?O(e):e;return n(o)?t.filter((function(e){return n(e)&&q(e,o)&&"body"!==p(e)})):[]}(e):[].concat(t),f=[].concat(s,[o]),c=f[0],u=f.reduce((function(t,n){var r=N(e,n);return t.top=i(r.top,t.top),t.right=a(r.right,t.right),t.bottom=a(r.bottom,t.bottom),t.left=i(r.left,t.left),t}),N(e,c));return u.width=u.right-u.left,u.height=u.bottom-u.top,u.x=u.left,u.y=u.top,u}function _(e){return e.split("-")[1]}function F(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function U(e){var t,n=e.reference,r=e.element,o=e.placement,i=o?C(o):null,a=o?_(o):null,s=n.x+n.width/2-r.width/2,f=n.y+n.height/2-r.height/2;switch(i){case j:t={x:s,y:n.y-r.height};break;case E:t={x:s,y:n.y+n.height};break;case D:t={x:n.x+n.width,y:f};break;case A:t={x:n.x-r.width,y:f};break;default:t={x:n.x,y:n.y}}var c=i?F(i):null;if(null!=c){var p="y"===c?"height":"width";switch(a){case M:t[c]=t[c]-(n[p]/2-r[p]/2);break;case k:t[c]=t[c]+(n[p]/2-r[p]/2)}}return t}function z(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function X(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function Y(e,t){void 0===t&&(t={});var r=t,o=r.placement,i=void 0===o?e.placement:o,a=r.boundary,s=void 0===a?"clippingParents":a,c=r.rootBoundary,p=void 0===c?W:c,l=r.elementContext,d=void 0===l?B:l,h=r.altBoundary,m=void 0!==h&&h,v=r.padding,g=void 0===v?0:v,y=z("number"!=typeof g?g:X(g,P)),b=d===B?"reference":B,x=e.rects.popper,w=e.elements[m?b:d],O=I(n(w)?w:w.contextElement||u(e.elements.popper),s,p),A=f(e.elements.reference),L=U({reference:A,element:x,strategy:"absolute",placement:i}),M=V(Object.assign({},x,L)),k=d===B?M:A,H={top:O.top-k.top+y.top,bottom:k.bottom-O.bottom+y.bottom,left:O.left-k.left+y.left,right:k.right-O.right+y.right},T=e.modifiersData.offset;if(d===B&&T){var R=T[i];Object.keys(H).forEach((function(e){var t=[D,E].indexOf(e)>=0?1:-1,n=[j,E].indexOf(e)>=0?"y":"x";H[e]+=R[n]*t}))}return H}var G={placement:"bottom",modifiers:[],strategy:"absolute"};function J(){for(var e=arguments.length,t=new Array(e),n=0;n=0?-1:1,i="function"==typeof n?n(Object.assign({},t,{placement:e})):n,a=i[0],s=i[1];return a=a||0,s=(s||0)*o,[A,D].indexOf(r)>=0?{x:s,y:a}:{x:a,y:s}}(n,t.rects,i),e}),{}),s=a[t.placement],f=s.x,c=s.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=f,t.modifiersData.popperOffsets.y+=c),t.modifiersData[r]=a}},ie={left:"right",right:"left",bottom:"top",top:"bottom"};function ae(e){return e.replace(/left|right|bottom|top/g,(function(e){return ie[e]}))}var se={start:"end",end:"start"};function fe(e){return e.replace(/start|end/g,(function(e){return se[e]}))}function ce(e,t){void 0===t&&(t={});var n=t,r=n.placement,o=n.boundary,i=n.rootBoundary,a=n.padding,s=n.flipVariations,f=n.allowedAutoPlacements,c=void 0===f?T:f,p=_(r),u=p?s?H:H.filter((function(e){return _(e)===p})):P,l=u.filter((function(e){return c.indexOf(e)>=0}));0===l.length&&(l=u);var d=l.reduce((function(t,n){return t[n]=Y(e,{placement:n,boundary:o,rootBoundary:i,padding:a})[C(n)],t}),{});return Object.keys(d).sort((function(e,t){return d[e]-d[t]}))}var pe={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,i=void 0===o||o,a=n.altAxis,s=void 0===a||a,f=n.fallbackPlacements,c=n.padding,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.flipVariations,h=void 0===d||d,m=n.allowedAutoPlacements,v=t.options.placement,g=C(v),y=f||(g===v||!h?[ae(v)]:function(e){if(C(e)===L)return[];var t=ae(e);return[fe(e),t,fe(t)]}(v)),b=[v].concat(y).reduce((function(e,n){return e.concat(C(n)===L?ce(t,{placement:n,boundary:p,rootBoundary:u,padding:c,flipVariations:h,allowedAutoPlacements:m}):n)}),[]),x=t.rects.reference,w=t.rects.popper,O=new Map,P=!0,k=b[0],W=0;W=0,S=R?"width":"height",q=Y(t,{placement:B,boundary:p,rootBoundary:u,altBoundary:l,padding:c}),V=R?T?D:A:T?E:j;x[S]>w[S]&&(V=ae(V));var N=ae(V),I=[];if(i&&I.push(q[H]<=0),s&&I.push(q[V]<=0,q[N]<=0),I.every((function(e){return e}))){k=B,P=!1;break}O.set(B,I)}if(P)for(var F=function(e){var t=b.find((function(t){var n=O.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return k=t,"break"},U=h?3:1;U>0;U--){if("break"===F(U))break}t.placement!==k&&(t.modifiersData[r]._skip=!0,t.placement=k,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function ue(e,t,n){return i(e,a(t,n))}var le={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,s=void 0===o||o,f=n.altAxis,c=void 0!==f&&f,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.padding,h=n.tether,m=void 0===h||h,g=n.tetherOffset,y=void 0===g?0:g,b=Y(t,{boundary:p,rootBoundary:u,padding:d,altBoundary:l}),x=C(t.placement),w=_(t.placement),L=!w,P=F(x),k="x"===P?"y":"x",W=t.modifiersData.popperOffsets,B=t.rects.reference,H=t.rects.popper,T="function"==typeof y?y(Object.assign({},t.rects,{placement:t.placement})):y,R="number"==typeof T?{mainAxis:T,altAxis:T}:Object.assign({mainAxis:0,altAxis:0},T),S=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,q={x:0,y:0};if(W){if(s){var V,N="y"===P?j:A,I="y"===P?E:D,U="y"===P?"height":"width",z=W[P],X=z+b[N],G=z-b[I],J=m?-H[U]/2:0,K=w===M?B[U]:H[U],Q=w===M?-H[U]:-B[U],Z=t.elements.arrow,$=m&&Z?v(Z):{width:0,height:0},ee=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},te=ee[N],ne=ee[I],re=ue(0,B[U],$[U]),oe=L?B[U]/2-J-re-te-R.mainAxis:K-re-te-R.mainAxis,ie=L?-B[U]/2+J+re+ne+R.mainAxis:Q+re+ne+R.mainAxis,ae=t.elements.arrow&&O(t.elements.arrow),se=ae?"y"===P?ae.clientTop||0:ae.clientLeft||0:0,fe=null!=(V=null==S?void 0:S[P])?V:0,ce=z+ie-fe,pe=ue(m?a(X,z+oe-fe-se):X,z,m?i(G,ce):G);W[P]=pe,q[P]=pe-z}if(c){var le,de="x"===P?j:A,he="x"===P?E:D,me=W[k],ve="y"===k?"height":"width",ge=me+b[de],ye=me-b[he],be=-1!==[j,A].indexOf(x),xe=null!=(le=null==S?void 0:S[k])?le:0,we=be?ge:me-B[ve]-H[ve]-xe+R.altAxis,Oe=be?me+B[ve]+H[ve]-xe-R.altAxis:ye,je=m&&be?function(e,t,n){var r=ue(e,t,n);return r>n?n:r}(we,me,Oe):ue(m?we:ge,me,m?Oe:ye);W[k]=je,q[k]=je-me}t.modifiersData[r]=q}},requiresIfExists:["offset"]};var de={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,r=e.name,o=e.options,i=n.elements.arrow,a=n.modifiersData.popperOffsets,s=C(n.placement),f=F(s),c=[A,D].indexOf(s)>=0?"height":"width";if(i&&a){var p=function(e,t){return z("number"!=typeof(e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e)?e:X(e,P))}(o.padding,n),u=v(i),l="y"===f?j:A,d="y"===f?E:D,h=n.rects.reference[c]+n.rects.reference[f]-a[f]-n.rects.popper[c],m=a[f]-n.rects.reference[f],g=O(i),y=g?"y"===f?g.clientHeight||0:g.clientWidth||0:0,b=h/2-m/2,x=p[l],w=y-u[c]-p[d],L=y/2-u[c]/2+b,M=ue(x,L,w),k=f;n.modifiersData[r]=((t={})[k]=M,t.centerOffset=M-L,t)}},effect:function(e){var t=e.state,n=e.options.element,r=void 0===n?"[data-popper-arrow]":n;null!=r&&("string"!=typeof r||(r=t.elements.popper.querySelector(r)))&&q(t.elements.popper,r)&&(t.elements.arrow=r)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function he(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function me(e){return[j,D,E,A].some((function(t){return e[t]>=0}))}var ve={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,a=Y(t,{elementContext:"reference"}),s=Y(t,{altBoundary:!0}),f=he(a,r),c=he(s,o,i),p=me(f),u=me(c);t.modifiersData[n]={referenceClippingOffsets:f,popperEscapeOffsets:c,isReferenceHidden:p,hasPopperEscaped:u},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":u})}},ge=K({defaultModifiers:[Z,$,ne,re]}),ye=[Z,$,ne,re,oe,pe,le,de,ve],be=K({defaultModifiers:ye});e.applyStyles=re,e.arrow=de,e.computeStyles=ne,e.createPopper=be,e.createPopperLite=ge,e.defaultModifiers=ye,e.detectOverflow=Y,e.eventListeners=Z,e.flip=pe,e.hide=ve,e.offset=oe,e.popperGenerator=K,e.popperOffsets=$,e.preventOverflow=le,Object.defineProperty(e,"__esModule",{value:!0})})); - diff --git a/index_files/libs/quarto-html/quarto-syntax-highlighting.css b/index_files/libs/quarto-html/quarto-syntax-highlighting.css deleted file mode 100644 index 0bba76702..000000000 --- a/index_files/libs/quarto-html/quarto-syntax-highlighting.css +++ /dev/null @@ -1,167 +0,0 @@ -/* quarto syntax highlight colors */ -:root { - --quarto-hl-ot-color: #003B4F; - --quarto-hl-at-color: #657422; - --quarto-hl-ss-color: #20794D; - --quarto-hl-an-color: #5E5E5E; - --quarto-hl-fu-color: #4758AB; - --quarto-hl-st-color: #20794D; - --quarto-hl-cf-color: #003B4F; - --quarto-hl-op-color: #5E5E5E; - --quarto-hl-er-color: #AD0000; - --quarto-hl-bn-color: #AD0000; - --quarto-hl-al-color: #AD0000; - --quarto-hl-va-color: #111111; - --quarto-hl-bu-color: inherit; - --quarto-hl-ex-color: inherit; - --quarto-hl-pp-color: #AD0000; - --quarto-hl-in-color: #5E5E5E; - --quarto-hl-vs-color: #20794D; - --quarto-hl-wa-color: #5E5E5E; - --quarto-hl-do-color: #5E5E5E; - --quarto-hl-im-color: #00769E; - --quarto-hl-ch-color: #20794D; - --quarto-hl-dt-color: #AD0000; - --quarto-hl-fl-color: #AD0000; - --quarto-hl-co-color: #5E5E5E; - --quarto-hl-cv-color: #5E5E5E; - --quarto-hl-cn-color: #8f5902; - --quarto-hl-sc-color: #5E5E5E; - --quarto-hl-dv-color: #AD0000; - --quarto-hl-kw-color: #003B4F; -} - -/* other quarto variables */ -:root { - --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -} - -code span { - color: #003B4F; -} - -code.sourceCode > span { - color: #003B4F; -} - -div.sourceCode, -div.sourceCode pre.sourceCode { - color: #003B4F; -} - -code span.ot { - color: #003B4F; -} - -code span.at { - color: #657422; -} - -code span.ss { - color: #20794D; -} - -code span.an { - color: #5E5E5E; -} - -code span.fu { - color: #4758AB; -} - -code span.st { - color: #20794D; -} - -code span.cf { - color: #003B4F; -} - -code span.op { - color: #5E5E5E; -} - -code span.er { - color: #AD0000; -} - -code span.bn { - color: #AD0000; -} - -code span.al { - color: #AD0000; -} - -code span.va { - color: #111111; -} - -code span.pp { - color: #AD0000; -} - -code span.in { - color: #5E5E5E; -} - -code span.vs { - color: #20794D; -} - -code span.wa { - color: #5E5E5E; - font-style: italic; -} - -code span.do { - color: #5E5E5E; - font-style: italic; -} - -code span.im { - color: #00769E; -} - -code span.ch { - color: #20794D; -} - -code span.dt { - color: #AD0000; -} - -code span.fl { - color: #AD0000; -} - -code span.co { - color: #5E5E5E; -} - -code span.cv { - color: #5E5E5E; - font-style: italic; -} - -code span.cn { - color: #8f5902; -} - -code span.sc { - color: #5E5E5E; -} - -code span.dv { - color: #AD0000; -} - -code span.kw { - color: #003B4F; -} - -.prevent-inlining { - content: " { - const sibling = el.previousElementSibling; - if (sibling && sibling.tagName === "A") { - return sibling.classList.contains("active"); - } else { - return false; - } - }; - - // fire slideEnter for bootstrap tab activations (for htmlwidget resize behavior) - function fireSlideEnter(e) { - const event = window.document.createEvent("Event"); - event.initEvent("slideenter", true, true); - window.document.dispatchEvent(event); - } - const tabs = window.document.querySelectorAll('a[data-bs-toggle="tab"]'); - tabs.forEach((tab) => { - tab.addEventListener("shown.bs.tab", fireSlideEnter); - }); - - // Track scrolling and mark TOC links as active - // get table of contents and sidebar (bail if we don't have at least one) - const tocLinks = tocEl - ? [...tocEl.querySelectorAll("a[data-scroll-target]")] - : []; - const makeActive = (link) => tocLinks[link].classList.add("active"); - const removeActive = (link) => tocLinks[link].classList.remove("active"); - const removeAllActive = () => - [...Array(tocLinks.length).keys()].forEach((link) => removeActive(link)); - - // activate the anchor for a section associated with this TOC entry - tocLinks.forEach((link) => { - link.addEventListener("click", () => { - if (link.href.indexOf("#") !== -1) { - const anchor = link.href.split("#")[1]; - const heading = window.document.querySelector( - `[data-anchor-id=${anchor}]` - ); - if (heading) { - // Add the class - heading.classList.add("reveal-anchorjs-link"); - - // function to show the anchor - const handleMouseout = () => { - heading.classList.remove("reveal-anchorjs-link"); - heading.removeEventListener("mouseout", handleMouseout); - }; - - // add a function to clear the anchor when the user mouses out of it - heading.addEventListener("mouseout", handleMouseout); - } - } - }); - }); - - const sections = tocLinks.map((link) => { - const target = link.getAttribute("data-scroll-target"); - if (target.startsWith("#")) { - return window.document.getElementById(decodeURI(`${target.slice(1)}`)); - } else { - return window.document.querySelector(decodeURI(`${target}`)); - } - }); - - const sectionMargin = 200; - let currentActive = 0; - // track whether we've initialized state the first time - let init = false; - - const updateActiveLink = () => { - // The index from bottom to top (e.g. reversed list) - let sectionIndex = -1; - if ( - window.innerHeight + window.pageYOffset >= - window.document.body.offsetHeight - ) { - sectionIndex = 0; - } else { - sectionIndex = [...sections].reverse().findIndex((section) => { - if (section) { - return window.pageYOffset >= section.offsetTop - sectionMargin; - } else { - return false; - } - }); - } - if (sectionIndex > -1) { - const current = sections.length - sectionIndex - 1; - if (current !== currentActive) { - removeAllActive(); - currentActive = current; - makeActive(current); - if (init) { - window.dispatchEvent(sectionChanged); - } - init = true; - } - } - }; - - const inHiddenRegion = (top, bottom, hiddenRegions) => { - for (const region of hiddenRegions) { - if (top <= region.bottom && bottom >= region.top) { - return true; - } - } - return false; - }; - - const categorySelector = "header.quarto-title-block .quarto-category"; - const activateCategories = (href) => { - // Find any categories - // Surround them with a link pointing back to: - // #category=Authoring - try { - const categoryEls = window.document.querySelectorAll(categorySelector); - for (const categoryEl of categoryEls) { - const categoryText = categoryEl.textContent; - if (categoryText) { - const link = `${href}#category=${encodeURIComponent(categoryText)}`; - const linkEl = window.document.createElement("a"); - linkEl.setAttribute("href", link); - for (const child of categoryEl.childNodes) { - linkEl.append(child); - } - categoryEl.appendChild(linkEl); - } - } - } catch { - // Ignore errors - } - }; - function hasTitleCategories() { - return window.document.querySelector(categorySelector) !== null; - } - - function offsetRelativeUrl(url) { - const offset = getMeta("quarto:offset"); - return offset ? offset + url : url; - } - - function offsetAbsoluteUrl(url) { - const offset = getMeta("quarto:offset"); - const baseUrl = new URL(offset, window.location); - - const projRelativeUrl = url.replace(baseUrl, ""); - if (projRelativeUrl.startsWith("/")) { - return projRelativeUrl; - } else { - return "/" + projRelativeUrl; - } - } - - // read a meta tag value - function getMeta(metaName) { - const metas = window.document.getElementsByTagName("meta"); - for (let i = 0; i < metas.length; i++) { - if (metas[i].getAttribute("name") === metaName) { - return metas[i].getAttribute("content"); - } - } - return ""; - } - - async function findAndActivateCategories() { - const currentPagePath = offsetAbsoluteUrl(window.location.href); - const response = await fetch(offsetRelativeUrl("listings.json")); - if (response.status == 200) { - return response.json().then(function (listingPaths) { - const listingHrefs = []; - for (const listingPath of listingPaths) { - const pathWithoutLeadingSlash = listingPath.listing.substring(1); - for (const item of listingPath.items) { - if ( - item === currentPagePath || - item === currentPagePath + "index.html" - ) { - // Resolve this path against the offset to be sure - // we already are using the correct path to the listing - // (this adjusts the listing urls to be rooted against - // whatever root the page is actually running against) - const relative = offsetRelativeUrl(pathWithoutLeadingSlash); - const baseUrl = window.location; - const resolvedPath = new URL(relative, baseUrl); - listingHrefs.push(resolvedPath.pathname); - break; - } - } - } - - // Look up the tree for a nearby linting and use that if we find one - const nearestListing = findNearestParentListing( - offsetAbsoluteUrl(window.location.pathname), - listingHrefs - ); - if (nearestListing) { - activateCategories(nearestListing); - } else { - // See if the referrer is a listing page for this item - const referredRelativePath = offsetAbsoluteUrl(document.referrer); - const referrerListing = listingHrefs.find((listingHref) => { - const isListingReferrer = - listingHref === referredRelativePath || - listingHref === referredRelativePath + "index.html"; - return isListingReferrer; - }); - - if (referrerListing) { - // Try to use the referrer if possible - activateCategories(referrerListing); - } else if (listingHrefs.length > 0) { - // Otherwise, just fall back to the first listing - activateCategories(listingHrefs[0]); - } - } - }); - } - } - if (hasTitleCategories()) { - findAndActivateCategories(); - } - - const findNearestParentListing = (href, listingHrefs) => { - if (!href || !listingHrefs) { - return undefined; - } - // Look up the tree for a nearby linting and use that if we find one - const relativeParts = href.substring(1).split("/"); - while (relativeParts.length > 0) { - const path = relativeParts.join("/"); - for (const listingHref of listingHrefs) { - if (listingHref.startsWith(path)) { - return listingHref; - } - } - relativeParts.pop(); - } - - return undefined; - }; - - const manageSidebarVisiblity = (el, placeholderDescriptor) => { - let isVisible = true; - - return (hiddenRegions) => { - if (el === null) { - return; - } - - // Find the last element of the TOC - const lastChildEl = el.lastElementChild; - - if (lastChildEl) { - // Find the top and bottom o the element that is being managed - const elTop = el.offsetTop; - const elBottom = - elTop + lastChildEl.offsetTop + lastChildEl.offsetHeight; - - // Converts the sidebar to a menu - const convertToMenu = () => { - for (const child of el.children) { - child.style.opacity = 0; - child.style.display = "none"; - } - - const toggleContainer = window.document.createElement("div"); - toggleContainer.style.width = "100%"; - toggleContainer.classList.add("zindex-over-content"); - toggleContainer.classList.add("quarto-sidebar-toggle"); - toggleContainer.classList.add("headroom-target"); // Marks this to be managed by headeroom - toggleContainer.id = placeholderDescriptor.id; - toggleContainer.style.position = "fixed"; - - const toggleIcon = window.document.createElement("i"); - toggleIcon.classList.add("quarto-sidebar-toggle-icon"); - toggleIcon.classList.add("bi"); - toggleIcon.classList.add("bi-caret-down-fill"); - - const toggleTitle = window.document.createElement("div"); - const titleEl = window.document.body.querySelector( - placeholderDescriptor.titleSelector - ); - if (titleEl) { - toggleTitle.append(titleEl.innerText, toggleIcon); - } - toggleTitle.classList.add("zindex-over-content"); - toggleTitle.classList.add("quarto-sidebar-toggle-title"); - toggleContainer.append(toggleTitle); - - const toggleContents = window.document.createElement("div"); - toggleContents.classList = el.classList; - toggleContents.classList.add("zindex-over-content"); - toggleContents.classList.add("quarto-sidebar-toggle-contents"); - for (const child of el.children) { - if (child.id === "toc-title") { - continue; - } - - const clone = child.cloneNode(true); - clone.style.opacity = 1; - clone.style.display = null; - toggleContents.append(clone); - } - toggleContents.style.height = "0px"; - toggleContainer.append(toggleContents); - el.parentElement.prepend(toggleContainer); - - // Process clicks - let tocShowing = false; - // Allow the caller to control whether this is dismissed - // when it is clicked (e.g. sidebar navigation supports - // opening and closing the nav tree, so don't dismiss on click) - const clickEl = placeholderDescriptor.dismissOnClick - ? toggleContainer - : toggleTitle; - - const closeToggle = () => { - if (tocShowing) { - toggleContainer.classList.remove("expanded"); - toggleContents.style.height = "0px"; - tocShowing = false; - } - }; - - const positionToggle = () => { - // position the element (top left of parent, same width as parent) - const elRect = el.getBoundingClientRect(); - toggleContainer.style.left = `${elRect.left}px`; - toggleContainer.style.top = `${elRect.top}px`; - toggleContainer.style.width = `${elRect.width}px`; - }; - - // Get rid of any expanded toggle if the user scrolls - window.document.addEventListener( - "scroll", - throttle(() => { - closeToggle(); - }, 50) - ); - - // Handle positioning of the toggle - window.addEventListener( - "resize", - throttle(() => { - positionToggle(); - }, 50) - ); - positionToggle(); - - // Process the click - clickEl.onclick = () => { - if (!tocShowing) { - toggleContainer.classList.add("expanded"); - toggleContents.style.height = null; - tocShowing = true; - } else { - closeToggle(); - } - }; - }; - - // Converts a sidebar from a menu back to a sidebar - const convertToSidebar = () => { - for (const child of el.children) { - child.style.opacity = 1; - clone.style.display = null; - } - - const placeholderEl = window.document.getElementById( - placeholderDescriptor.id - ); - if (placeholderEl) { - placeholderEl.remove(); - } - - el.classList.remove("rollup"); - }; - - if (isReaderMode()) { - convertToMenu(); - isVisible = false; - } else { - if (!isVisible) { - // If the element is current not visible reveal if there are - // no conflicts with overlay regions - if (!inHiddenRegion(elTop, elBottom, hiddenRegions)) { - convertToSidebar(); - isVisible = true; - } - } else { - // If the element is visible, hide it if it conflicts with overlay regions - // and insert a placeholder toggle (or if we're in reader mode) - if (inHiddenRegion(elTop, elBottom, hiddenRegions)) { - convertToMenu(); - isVisible = false; - } - } - } - } - }; - }; - - // Find any conflicting margin elements and add margins to the - // top to prevent overlap - const marginChildren = window.document.querySelectorAll( - ".column-margin.column-container > * " - ); - let lastBottom = 0; - for (const marginChild of marginChildren) { - const top = marginChild.getBoundingClientRect().top; - if (top < lastBottom) { - const margin = lastBottom - top; - marginChild.style.marginTop = `${margin}px`; - } - lastBottom = top + marginChild.getBoundingClientRect().height; - } - - // Manage the visibility of the toc and the sidebar - const marginScrollVisibility = manageSidebarVisiblity(marginSidebarEl, { - id: "quarto-toc-toggle", - titleSelector: "#toc-title", - dismissOnClick: true, - }); - const sidebarScrollVisiblity = manageSidebarVisiblity(sidebarEl, { - id: "quarto-sidebarnav-toggle", - titleSelector: ".title", - dismissOnClick: false, - }); - let tocLeftScrollVisibility; - if (leftTocEl) { - tocLeftScrollVisibility = manageSidebarVisiblity(leftTocEl, { - id: "quarto-lefttoc-toggle", - titleSelector: "#toc-title", - dismissOnClick: true, - }); - } - - // Find the first element that uses formatting in special columns - const conflictingEls = window.document.body.querySelectorAll( - '[class^="column-"], [class*=" column-"], aside, [class*="margin-caption"], [class*=" margin-caption"], [class*="margin-ref"], [class*=" margin-ref"]' - ); - - // Filter all the possibly conflicting elements into ones - // the do conflict on the left or ride side - const arrConflictingEls = Array.from(conflictingEls); - const leftSideConflictEls = arrConflictingEls.filter((el) => { - if (el.tagName === "ASIDE") { - return false; - } - return Array.from(el.classList).find((className) => { - return ( - className !== "column-body" && - className.startsWith("column-") && - !className.endsWith("right") && - !className.endsWith("container") && - className !== "column-margin" - ); - }); - }); - const rightSideConflictEls = arrConflictingEls.filter((el) => { - if (el.tagName === "ASIDE") { - return true; - } - - const hasMarginCaption = Array.from(el.classList).find((className) => { - return className == "margin-caption"; - }); - if (hasMarginCaption) { - return true; - } - - return Array.from(el.classList).find((className) => { - return ( - className !== "column-body" && - !className.endsWith("container") && - className.startsWith("column-") && - !className.endsWith("left") - ); - }); - }); - - const kOverlapPaddingSize = 10; - function toRegions(els) { - return els.map((el) => { - const top = - el.getBoundingClientRect().top + - document.documentElement.scrollTop - - kOverlapPaddingSize; - return { - top, - bottom: top + el.scrollHeight + 2 * kOverlapPaddingSize, - }; - }); - } - - const hideOverlappedSidebars = () => { - marginScrollVisibility(toRegions(rightSideConflictEls)); - sidebarScrollVisiblity(toRegions(leftSideConflictEls)); - if (tocLeftScrollVisibility) { - tocLeftScrollVisibility(toRegions(leftSideConflictEls)); - } - }; - - window.quartoToggleReader = () => { - // Applies a slow class (or removes it) - // to update the transition speed - const slowTransition = (slow) => { - const manageTransition = (id, slow) => { - const el = document.getElementById(id); - if (el) { - if (slow) { - el.classList.add("slow"); - } else { - el.classList.remove("slow"); - } - } - }; - - manageTransition("TOC", slow); - manageTransition("quarto-sidebar", slow); - }; - - const readerMode = !isReaderMode(); - setReaderModeValue(readerMode); - - // If we're entering reader mode, slow the transition - if (readerMode) { - slowTransition(readerMode); - } - highlightReaderToggle(readerMode); - hideOverlappedSidebars(); - - // If we're exiting reader mode, restore the non-slow transition - if (!readerMode) { - slowTransition(!readerMode); - } - }; - - const highlightReaderToggle = (readerMode) => { - const els = document.querySelectorAll(".quarto-reader-toggle"); - if (els) { - els.forEach((el) => { - if (readerMode) { - el.classList.add("reader"); - } else { - el.classList.remove("reader"); - } - }); - } - }; - - const setReaderModeValue = (val) => { - if (window.location.protocol !== "file:") { - window.localStorage.setItem("quarto-reader-mode", val); - } else { - localReaderMode = val; - } - }; - - const isReaderMode = () => { - if (window.location.protocol !== "file:") { - return window.localStorage.getItem("quarto-reader-mode") === "true"; - } else { - return localReaderMode; - } - }; - let localReaderMode = null; - - // Walk the TOC and collapse/expand nodes - // Nodes are expanded if: - // - they are top level - // - they have children that are 'active' links - // - they are directly below an link that is 'active' - const walk = (el, depth) => { - // Tick depth when we enter a UL - if (el.tagName === "UL") { - depth = depth + 1; - } - - // It this is active link - let isActiveNode = false; - if (el.tagName === "A" && el.classList.contains("active")) { - isActiveNode = true; - } - - // See if there is an active child to this element - let hasActiveChild = false; - for (child of el.children) { - hasActiveChild = walk(child, depth) || hasActiveChild; - } - - // Process the collapse state if this is an UL - if (el.tagName === "UL") { - if (depth === 1 || hasActiveChild || prevSiblingIsActiveLink(el)) { - el.classList.remove("collapse"); - } else { - el.classList.add("collapse"); - } - - // untick depth when we leave a UL - depth = depth - 1; - } - return hasActiveChild || isActiveNode; - }; - - // walk the TOC and expand / collapse any items that should be shown - - if (tocEl) { - walk(tocEl, 0); - updateActiveLink(); - } - - // Throttle the scroll event and walk peridiocally - window.document.addEventListener( - "scroll", - throttle(() => { - if (tocEl) { - updateActiveLink(); - walk(tocEl, 0); - } - if (!isReaderMode()) { - hideOverlappedSidebars(); - } - }, 5) - ); - window.addEventListener( - "resize", - throttle(() => { - if (!isReaderMode()) { - hideOverlappedSidebars(); - } - }, 10) - ); - hideOverlappedSidebars(); - highlightReaderToggle(isReaderMode()); -}); - -function throttle(func, wait) { - let waiting = false; - return function () { - if (!waiting) { - func.apply(this, arguments); - waiting = true; - setTimeout(function () { - waiting = false; - }, wait); - } - }; -} diff --git a/index_files/libs/quarto-html/tippy.css b/index_files/libs/quarto-html/tippy.css deleted file mode 100644 index e6ae635cb..000000000 --- a/index_files/libs/quarto-html/tippy.css +++ /dev/null @@ -1 +0,0 @@ -.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1} \ No newline at end of file diff --git a/index_files/libs/quarto-html/tippy.umd.min.js b/index_files/libs/quarto-html/tippy.umd.min.js deleted file mode 100644 index ca292be32..000000000 --- a/index_files/libs/quarto-html/tippy.umd.min.js +++ /dev/null @@ -1,2 +0,0 @@ -!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("@popperjs/core")):"function"==typeof define&&define.amd?define(["@popperjs/core"],t):(e=e||self).tippy=t(e.Popper)}(this,(function(e){"use strict";var t={passive:!0,capture:!0},n=function(){return document.body};function r(e,t,n){if(Array.isArray(e)){var r=e[t];return null==r?Array.isArray(n)?n[t]:n:r}return e}function o(e,t){var n={}.toString.call(e);return 0===n.indexOf("[object")&&n.indexOf(t+"]")>-1}function i(e,t){return"function"==typeof e?e.apply(void 0,t):e}function a(e,t){return 0===t?e:function(r){clearTimeout(n),n=setTimeout((function(){e(r)}),t)};var n}function s(e,t){var n=Object.assign({},e);return t.forEach((function(e){delete n[e]})),n}function u(e){return[].concat(e)}function c(e,t){-1===e.indexOf(t)&&e.push(t)}function p(e){return e.split("-")[0]}function f(e){return[].slice.call(e)}function l(e){return Object.keys(e).reduce((function(t,n){return void 0!==e[n]&&(t[n]=e[n]),t}),{})}function d(){return document.createElement("div")}function v(e){return["Element","Fragment"].some((function(t){return o(e,t)}))}function m(e){return o(e,"MouseEvent")}function g(e){return!(!e||!e._tippy||e._tippy.reference!==e)}function h(e){return v(e)?[e]:function(e){return o(e,"NodeList")}(e)?f(e):Array.isArray(e)?e:f(document.querySelectorAll(e))}function b(e,t){e.forEach((function(e){e&&(e.style.transitionDuration=t+"ms")}))}function y(e,t){e.forEach((function(e){e&&e.setAttribute("data-state",t)}))}function w(e){var t,n=u(e)[0];return null!=n&&null!=(t=n.ownerDocument)&&t.body?n.ownerDocument:document}function E(e,t,n){var r=t+"EventListener";["transitionend","webkitTransitionEnd"].forEach((function(t){e[r](t,n)}))}function O(e,t){for(var n=t;n;){var r;if(e.contains(n))return!0;n=null==n.getRootNode||null==(r=n.getRootNode())?void 0:r.host}return!1}var x={isTouch:!1},C=0;function T(){x.isTouch||(x.isTouch=!0,window.performance&&document.addEventListener("mousemove",A))}function A(){var e=performance.now();e-C<20&&(x.isTouch=!1,document.removeEventListener("mousemove",A)),C=e}function L(){var e=document.activeElement;if(g(e)){var t=e._tippy;e.blur&&!t.state.isVisible&&e.blur()}}var D=!!("undefined"!=typeof window&&"undefined"!=typeof document)&&!!window.msCrypto,R=Object.assign({appendTo:n,aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},{animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},{allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999}),k=Object.keys(R);function P(e){var t=(e.plugins||[]).reduce((function(t,n){var r,o=n.name,i=n.defaultValue;o&&(t[o]=void 0!==e[o]?e[o]:null!=(r=R[o])?r:i);return t}),{});return Object.assign({},e,t)}function j(e,t){var n=Object.assign({},t,{content:i(t.content,[e])},t.ignoreAttributes?{}:function(e,t){return(t?Object.keys(P(Object.assign({},R,{plugins:t}))):k).reduce((function(t,n){var r=(e.getAttribute("data-tippy-"+n)||"").trim();if(!r)return t;if("content"===n)t[n]=r;else try{t[n]=JSON.parse(r)}catch(e){t[n]=r}return t}),{})}(e,t.plugins));return n.aria=Object.assign({},R.aria,n.aria),n.aria={expanded:"auto"===n.aria.expanded?t.interactive:n.aria.expanded,content:"auto"===n.aria.content?t.interactive?null:"describedby":n.aria.content},n}function M(e,t){e.innerHTML=t}function V(e){var t=d();return!0===e?t.className="tippy-arrow":(t.className="tippy-svg-arrow",v(e)?t.appendChild(e):M(t,e)),t}function I(e,t){v(t.content)?(M(e,""),e.appendChild(t.content)):"function"!=typeof t.content&&(t.allowHTML?M(e,t.content):e.textContent=t.content)}function S(e){var t=e.firstElementChild,n=f(t.children);return{box:t,content:n.find((function(e){return e.classList.contains("tippy-content")})),arrow:n.find((function(e){return e.classList.contains("tippy-arrow")||e.classList.contains("tippy-svg-arrow")})),backdrop:n.find((function(e){return e.classList.contains("tippy-backdrop")}))}}function N(e){var t=d(),n=d();n.className="tippy-box",n.setAttribute("data-state","hidden"),n.setAttribute("tabindex","-1");var r=d();function o(n,r){var o=S(t),i=o.box,a=o.content,s=o.arrow;r.theme?i.setAttribute("data-theme",r.theme):i.removeAttribute("data-theme"),"string"==typeof r.animation?i.setAttribute("data-animation",r.animation):i.removeAttribute("data-animation"),r.inertia?i.setAttribute("data-inertia",""):i.removeAttribute("data-inertia"),i.style.maxWidth="number"==typeof r.maxWidth?r.maxWidth+"px":r.maxWidth,r.role?i.setAttribute("role",r.role):i.removeAttribute("role"),n.content===r.content&&n.allowHTML===r.allowHTML||I(a,e.props),r.arrow?s?n.arrow!==r.arrow&&(i.removeChild(s),i.appendChild(V(r.arrow))):i.appendChild(V(r.arrow)):s&&i.removeChild(s)}return r.className="tippy-content",r.setAttribute("data-state","hidden"),I(r,e.props),t.appendChild(n),n.appendChild(r),o(e.props,e.props),{popper:t,onUpdate:o}}N.$$tippy=!0;var B=1,H=[],U=[];function _(o,s){var v,g,h,C,T,A,L,k,M=j(o,Object.assign({},R,P(l(s)))),V=!1,I=!1,N=!1,_=!1,F=[],W=a(we,M.interactiveDebounce),X=B++,Y=(k=M.plugins).filter((function(e,t){return k.indexOf(e)===t})),$={id:X,reference:o,popper:d(),popperInstance:null,props:M,state:{isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},plugins:Y,clearDelayTimeouts:function(){clearTimeout(v),clearTimeout(g),cancelAnimationFrame(h)},setProps:function(e){if($.state.isDestroyed)return;ae("onBeforeUpdate",[$,e]),be();var t=$.props,n=j(o,Object.assign({},t,l(e),{ignoreAttributes:!0}));$.props=n,he(),t.interactiveDebounce!==n.interactiveDebounce&&(ce(),W=a(we,n.interactiveDebounce));t.triggerTarget&&!n.triggerTarget?u(t.triggerTarget).forEach((function(e){e.removeAttribute("aria-expanded")})):n.triggerTarget&&o.removeAttribute("aria-expanded");ue(),ie(),J&&J(t,n);$.popperInstance&&(Ce(),Ae().forEach((function(e){requestAnimationFrame(e._tippy.popperInstance.forceUpdate)})));ae("onAfterUpdate",[$,e])},setContent:function(e){$.setProps({content:e})},show:function(){var e=$.state.isVisible,t=$.state.isDestroyed,o=!$.state.isEnabled,a=x.isTouch&&!$.props.touch,s=r($.props.duration,0,R.duration);if(e||t||o||a)return;if(te().hasAttribute("disabled"))return;if(ae("onShow",[$],!1),!1===$.props.onShow($))return;$.state.isVisible=!0,ee()&&(z.style.visibility="visible");ie(),de(),$.state.isMounted||(z.style.transition="none");if(ee()){var u=re(),p=u.box,f=u.content;b([p,f],0)}A=function(){var e;if($.state.isVisible&&!_){if(_=!0,z.offsetHeight,z.style.transition=$.props.moveTransition,ee()&&$.props.animation){var t=re(),n=t.box,r=t.content;b([n,r],s),y([n,r],"visible")}se(),ue(),c(U,$),null==(e=$.popperInstance)||e.forceUpdate(),ae("onMount",[$]),$.props.animation&&ee()&&function(e,t){me(e,t)}(s,(function(){$.state.isShown=!0,ae("onShown",[$])}))}},function(){var e,t=$.props.appendTo,r=te();e=$.props.interactive&&t===n||"parent"===t?r.parentNode:i(t,[r]);e.contains(z)||e.appendChild(z);$.state.isMounted=!0,Ce()}()},hide:function(){var e=!$.state.isVisible,t=$.state.isDestroyed,n=!$.state.isEnabled,o=r($.props.duration,1,R.duration);if(e||t||n)return;if(ae("onHide",[$],!1),!1===$.props.onHide($))return;$.state.isVisible=!1,$.state.isShown=!1,_=!1,V=!1,ee()&&(z.style.visibility="hidden");if(ce(),ve(),ie(!0),ee()){var i=re(),a=i.box,s=i.content;$.props.animation&&(b([a,s],o),y([a,s],"hidden"))}se(),ue(),$.props.animation?ee()&&function(e,t){me(e,(function(){!$.state.isVisible&&z.parentNode&&z.parentNode.contains(z)&&t()}))}(o,$.unmount):$.unmount()},hideWithInteractivity:function(e){ne().addEventListener("mousemove",W),c(H,W),W(e)},enable:function(){$.state.isEnabled=!0},disable:function(){$.hide(),$.state.isEnabled=!1},unmount:function(){$.state.isVisible&&$.hide();if(!$.state.isMounted)return;Te(),Ae().forEach((function(e){e._tippy.unmount()})),z.parentNode&&z.parentNode.removeChild(z);U=U.filter((function(e){return e!==$})),$.state.isMounted=!1,ae("onHidden",[$])},destroy:function(){if($.state.isDestroyed)return;$.clearDelayTimeouts(),$.unmount(),be(),delete o._tippy,$.state.isDestroyed=!0,ae("onDestroy",[$])}};if(!M.render)return $;var q=M.render($),z=q.popper,J=q.onUpdate;z.setAttribute("data-tippy-root",""),z.id="tippy-"+$.id,$.popper=z,o._tippy=$,z._tippy=$;var G=Y.map((function(e){return e.fn($)})),K=o.hasAttribute("aria-expanded");return he(),ue(),ie(),ae("onCreate",[$]),M.showOnCreate&&Le(),z.addEventListener("mouseenter",(function(){$.props.interactive&&$.state.isVisible&&$.clearDelayTimeouts()})),z.addEventListener("mouseleave",(function(){$.props.interactive&&$.props.trigger.indexOf("mouseenter")>=0&&ne().addEventListener("mousemove",W)})),$;function Q(){var e=$.props.touch;return Array.isArray(e)?e:[e,0]}function Z(){return"hold"===Q()[0]}function ee(){var e;return!(null==(e=$.props.render)||!e.$$tippy)}function te(){return L||o}function ne(){var e=te().parentNode;return e?w(e):document}function re(){return S(z)}function oe(e){return $.state.isMounted&&!$.state.isVisible||x.isTouch||C&&"focus"===C.type?0:r($.props.delay,e?0:1,R.delay)}function ie(e){void 0===e&&(e=!1),z.style.pointerEvents=$.props.interactive&&!e?"":"none",z.style.zIndex=""+$.props.zIndex}function ae(e,t,n){var r;(void 0===n&&(n=!0),G.forEach((function(n){n[e]&&n[e].apply(n,t)})),n)&&(r=$.props)[e].apply(r,t)}function se(){var e=$.props.aria;if(e.content){var t="aria-"+e.content,n=z.id;u($.props.triggerTarget||o).forEach((function(e){var r=e.getAttribute(t);if($.state.isVisible)e.setAttribute(t,r?r+" "+n:n);else{var o=r&&r.replace(n,"").trim();o?e.setAttribute(t,o):e.removeAttribute(t)}}))}}function ue(){!K&&$.props.aria.expanded&&u($.props.triggerTarget||o).forEach((function(e){$.props.interactive?e.setAttribute("aria-expanded",$.state.isVisible&&e===te()?"true":"false"):e.removeAttribute("aria-expanded")}))}function ce(){ne().removeEventListener("mousemove",W),H=H.filter((function(e){return e!==W}))}function pe(e){if(!x.isTouch||!N&&"mousedown"!==e.type){var t=e.composedPath&&e.composedPath()[0]||e.target;if(!$.props.interactive||!O(z,t)){if(u($.props.triggerTarget||o).some((function(e){return O(e,t)}))){if(x.isTouch)return;if($.state.isVisible&&$.props.trigger.indexOf("click")>=0)return}else ae("onClickOutside",[$,e]);!0===$.props.hideOnClick&&($.clearDelayTimeouts(),$.hide(),I=!0,setTimeout((function(){I=!1})),$.state.isMounted||ve())}}}function fe(){N=!0}function le(){N=!1}function de(){var e=ne();e.addEventListener("mousedown",pe,!0),e.addEventListener("touchend",pe,t),e.addEventListener("touchstart",le,t),e.addEventListener("touchmove",fe,t)}function ve(){var e=ne();e.removeEventListener("mousedown",pe,!0),e.removeEventListener("touchend",pe,t),e.removeEventListener("touchstart",le,t),e.removeEventListener("touchmove",fe,t)}function me(e,t){var n=re().box;function r(e){e.target===n&&(E(n,"remove",r),t())}if(0===e)return t();E(n,"remove",T),E(n,"add",r),T=r}function ge(e,t,n){void 0===n&&(n=!1),u($.props.triggerTarget||o).forEach((function(r){r.addEventListener(e,t,n),F.push({node:r,eventType:e,handler:t,options:n})}))}function he(){var e;Z()&&(ge("touchstart",ye,{passive:!0}),ge("touchend",Ee,{passive:!0})),(e=$.props.trigger,e.split(/\s+/).filter(Boolean)).forEach((function(e){if("manual"!==e)switch(ge(e,ye),e){case"mouseenter":ge("mouseleave",Ee);break;case"focus":ge(D?"focusout":"blur",Oe);break;case"focusin":ge("focusout",Oe)}}))}function be(){F.forEach((function(e){var t=e.node,n=e.eventType,r=e.handler,o=e.options;t.removeEventListener(n,r,o)})),F=[]}function ye(e){var t,n=!1;if($.state.isEnabled&&!xe(e)&&!I){var r="focus"===(null==(t=C)?void 0:t.type);C=e,L=e.currentTarget,ue(),!$.state.isVisible&&m(e)&&H.forEach((function(t){return t(e)})),"click"===e.type&&($.props.trigger.indexOf("mouseenter")<0||V)&&!1!==$.props.hideOnClick&&$.state.isVisible?n=!0:Le(e),"click"===e.type&&(V=!n),n&&!r&&De(e)}}function we(e){var t=e.target,n=te().contains(t)||z.contains(t);"mousemove"===e.type&&n||function(e,t){var n=t.clientX,r=t.clientY;return e.every((function(e){var t=e.popperRect,o=e.popperState,i=e.props.interactiveBorder,a=p(o.placement),s=o.modifiersData.offset;if(!s)return!0;var u="bottom"===a?s.top.y:0,c="top"===a?s.bottom.y:0,f="right"===a?s.left.x:0,l="left"===a?s.right.x:0,d=t.top-r+u>i,v=r-t.bottom-c>i,m=t.left-n+f>i,g=n-t.right-l>i;return d||v||m||g}))}(Ae().concat(z).map((function(e){var t,n=null==(t=e._tippy.popperInstance)?void 0:t.state;return n?{popperRect:e.getBoundingClientRect(),popperState:n,props:M}:null})).filter(Boolean),e)&&(ce(),De(e))}function Ee(e){xe(e)||$.props.trigger.indexOf("click")>=0&&V||($.props.interactive?$.hideWithInteractivity(e):De(e))}function Oe(e){$.props.trigger.indexOf("focusin")<0&&e.target!==te()||$.props.interactive&&e.relatedTarget&&z.contains(e.relatedTarget)||De(e)}function xe(e){return!!x.isTouch&&Z()!==e.type.indexOf("touch")>=0}function Ce(){Te();var t=$.props,n=t.popperOptions,r=t.placement,i=t.offset,a=t.getReferenceClientRect,s=t.moveTransition,u=ee()?S(z).arrow:null,c=a?{getBoundingClientRect:a,contextElement:a.contextElement||te()}:o,p=[{name:"offset",options:{offset:i}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!s}},{name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(e){var t=e.state;if(ee()){var n=re().box;["placement","reference-hidden","escaped"].forEach((function(e){"placement"===e?n.setAttribute("data-placement",t.placement):t.attributes.popper["data-popper-"+e]?n.setAttribute("data-"+e,""):n.removeAttribute("data-"+e)})),t.attributes.popper={}}}}];ee()&&u&&p.push({name:"arrow",options:{element:u,padding:3}}),p.push.apply(p,(null==n?void 0:n.modifiers)||[]),$.popperInstance=e.createPopper(c,z,Object.assign({},n,{placement:r,onFirstUpdate:A,modifiers:p}))}function Te(){$.popperInstance&&($.popperInstance.destroy(),$.popperInstance=null)}function Ae(){return f(z.querySelectorAll("[data-tippy-root]"))}function Le(e){$.clearDelayTimeouts(),e&&ae("onTrigger",[$,e]),de();var t=oe(!0),n=Q(),r=n[0],o=n[1];x.isTouch&&"hold"===r&&o&&(t=o),t?v=setTimeout((function(){$.show()}),t):$.show()}function De(e){if($.clearDelayTimeouts(),ae("onUntrigger",[$,e]),$.state.isVisible){if(!($.props.trigger.indexOf("mouseenter")>=0&&$.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(e.type)>=0&&V)){var t=oe(!1);t?g=setTimeout((function(){$.state.isVisible&&$.hide()}),t):h=requestAnimationFrame((function(){$.hide()}))}}else ve()}}function F(e,n){void 0===n&&(n={});var r=R.plugins.concat(n.plugins||[]);document.addEventListener("touchstart",T,t),window.addEventListener("blur",L);var o=Object.assign({},n,{plugins:r}),i=h(e).reduce((function(e,t){var n=t&&_(t,o);return n&&e.push(n),e}),[]);return v(e)?i[0]:i}F.defaultProps=R,F.setDefaultProps=function(e){Object.keys(e).forEach((function(t){R[t]=e[t]}))},F.currentInput=x;var W=Object.assign({},e.applyStyles,{effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow)}}),X={mouseover:"mouseenter",focusin:"focus",click:"click"};var Y={name:"animateFill",defaultValue:!1,fn:function(e){var t;if(null==(t=e.props.render)||!t.$$tippy)return{};var n=S(e.popper),r=n.box,o=n.content,i=e.props.animateFill?function(){var e=d();return e.className="tippy-backdrop",y([e],"hidden"),e}():null;return{onCreate:function(){i&&(r.insertBefore(i,r.firstElementChild),r.setAttribute("data-animatefill",""),r.style.overflow="hidden",e.setProps({arrow:!1,animation:"shift-away"}))},onMount:function(){if(i){var e=r.style.transitionDuration,t=Number(e.replace("ms",""));o.style.transitionDelay=Math.round(t/10)+"ms",i.style.transitionDuration=e,y([i],"visible")}},onShow:function(){i&&(i.style.transitionDuration="0ms")},onHide:function(){i&&y([i],"hidden")}}}};var $={clientX:0,clientY:0},q=[];function z(e){var t=e.clientX,n=e.clientY;$={clientX:t,clientY:n}}var J={name:"followCursor",defaultValue:!1,fn:function(e){var t=e.reference,n=w(e.props.triggerTarget||t),r=!1,o=!1,i=!0,a=e.props;function s(){return"initial"===e.props.followCursor&&e.state.isVisible}function u(){n.addEventListener("mousemove",f)}function c(){n.removeEventListener("mousemove",f)}function p(){r=!0,e.setProps({getReferenceClientRect:null}),r=!1}function f(n){var r=!n.target||t.contains(n.target),o=e.props.followCursor,i=n.clientX,a=n.clientY,s=t.getBoundingClientRect(),u=i-s.left,c=a-s.top;!r&&e.props.interactive||e.setProps({getReferenceClientRect:function(){var e=t.getBoundingClientRect(),n=i,r=a;"initial"===o&&(n=e.left+u,r=e.top+c);var s="horizontal"===o?e.top:r,p="vertical"===o?e.right:n,f="horizontal"===o?e.bottom:r,l="vertical"===o?e.left:n;return{width:p-l,height:f-s,top:s,right:p,bottom:f,left:l}}})}function l(){e.props.followCursor&&(q.push({instance:e,doc:n}),function(e){e.addEventListener("mousemove",z)}(n))}function d(){0===(q=q.filter((function(t){return t.instance!==e}))).filter((function(e){return e.doc===n})).length&&function(e){e.removeEventListener("mousemove",z)}(n)}return{onCreate:l,onDestroy:d,onBeforeUpdate:function(){a=e.props},onAfterUpdate:function(t,n){var i=n.followCursor;r||void 0!==i&&a.followCursor!==i&&(d(),i?(l(),!e.state.isMounted||o||s()||u()):(c(),p()))},onMount:function(){e.props.followCursor&&!o&&(i&&(f($),i=!1),s()||u())},onTrigger:function(e,t){m(t)&&($={clientX:t.clientX,clientY:t.clientY}),o="focus"===t.type},onHidden:function(){e.props.followCursor&&(p(),c(),i=!0)}}}};var G={name:"inlinePositioning",defaultValue:!1,fn:function(e){var t,n=e.reference;var r=-1,o=!1,i=[],a={name:"tippyInlinePositioning",enabled:!0,phase:"afterWrite",fn:function(o){var a=o.state;e.props.inlinePositioning&&(-1!==i.indexOf(a.placement)&&(i=[]),t!==a.placement&&-1===i.indexOf(a.placement)&&(i.push(a.placement),e.setProps({getReferenceClientRect:function(){return function(e){return function(e,t,n,r){if(n.length<2||null===e)return t;if(2===n.length&&r>=0&&n[0].left>n[1].right)return n[r]||t;switch(e){case"top":case"bottom":var o=n[0],i=n[n.length-1],a="top"===e,s=o.top,u=i.bottom,c=a?o.left:i.left,p=a?o.right:i.right;return{top:s,bottom:u,left:c,right:p,width:p-c,height:u-s};case"left":case"right":var f=Math.min.apply(Math,n.map((function(e){return e.left}))),l=Math.max.apply(Math,n.map((function(e){return e.right}))),d=n.filter((function(t){return"left"===e?t.left===f:t.right===l})),v=d[0].top,m=d[d.length-1].bottom;return{top:v,bottom:m,left:f,right:l,width:l-f,height:m-v};default:return t}}(p(e),n.getBoundingClientRect(),f(n.getClientRects()),r)}(a.placement)}})),t=a.placement)}};function s(){var t;o||(t=function(e,t){var n;return{popperOptions:Object.assign({},e.popperOptions,{modifiers:[].concat(((null==(n=e.popperOptions)?void 0:n.modifiers)||[]).filter((function(e){return e.name!==t.name})),[t])})}}(e.props,a),o=!0,e.setProps(t),o=!1)}return{onCreate:s,onAfterUpdate:s,onTrigger:function(t,n){if(m(n)){var o=f(e.reference.getClientRects()),i=o.find((function(e){return e.left-2<=n.clientX&&e.right+2>=n.clientX&&e.top-2<=n.clientY&&e.bottom+2>=n.clientY})),a=o.indexOf(i);r=a>-1?a:r}},onHidden:function(){r=-1}}}};var K={name:"sticky",defaultValue:!1,fn:function(e){var t=e.reference,n=e.popper;function r(t){return!0===e.props.sticky||e.props.sticky===t}var o=null,i=null;function a(){var s=r("reference")?(e.popperInstance?e.popperInstance.state.elements.reference:t).getBoundingClientRect():null,u=r("popper")?n.getBoundingClientRect():null;(s&&Q(o,s)||u&&Q(i,u))&&e.popperInstance&&e.popperInstance.update(),o=s,i=u,e.state.isMounted&&requestAnimationFrame(a)}return{onMount:function(){e.props.sticky&&a()}}}};function Q(e,t){return!e||!t||(e.top!==t.top||e.right!==t.right||e.bottom!==t.bottom||e.left!==t.left)}return F.setDefaultProps({plugins:[Y,J,G,K],render:N}),F.createSingleton=function(e,t){var n;void 0===t&&(t={});var r,o=e,i=[],a=[],c=t.overrides,p=[],f=!1;function l(){a=o.map((function(e){return u(e.props.triggerTarget||e.reference)})).reduce((function(e,t){return e.concat(t)}),[])}function v(){i=o.map((function(e){return e.reference}))}function m(e){o.forEach((function(t){e?t.enable():t.disable()}))}function g(e){return o.map((function(t){var n=t.setProps;return t.setProps=function(o){n(o),t.reference===r&&e.setProps(o)},function(){t.setProps=n}}))}function h(e,t){var n=a.indexOf(t);if(t!==r){r=t;var s=(c||[]).concat("content").reduce((function(e,t){return e[t]=o[n].props[t],e}),{});e.setProps(Object.assign({},s,{getReferenceClientRect:"function"==typeof s.getReferenceClientRect?s.getReferenceClientRect:function(){var e;return null==(e=i[n])?void 0:e.getBoundingClientRect()}}))}}m(!1),v(),l();var b={fn:function(){return{onDestroy:function(){m(!0)},onHidden:function(){r=null},onClickOutside:function(e){e.props.showOnCreate&&!f&&(f=!0,r=null)},onShow:function(e){e.props.showOnCreate&&!f&&(f=!0,h(e,i[0]))},onTrigger:function(e,t){h(e,t.currentTarget)}}}},y=F(d(),Object.assign({},s(t,["overrides"]),{plugins:[b].concat(t.plugins||[]),triggerTarget:a,popperOptions:Object.assign({},t.popperOptions,{modifiers:[].concat((null==(n=t.popperOptions)?void 0:n.modifiers)||[],[W])})})),w=y.show;y.show=function(e){if(w(),!r&&null==e)return h(y,i[0]);if(!r||null!=e){if("number"==typeof e)return i[e]&&h(y,i[e]);if(o.indexOf(e)>=0){var t=e.reference;return h(y,t)}return i.indexOf(e)>=0?h(y,e):void 0}},y.showNext=function(){var e=i[0];if(!r)return y.show(0);var t=i.indexOf(r);y.show(i[t+1]||e)},y.showPrevious=function(){var e=i[i.length-1];if(!r)return y.show(e);var t=i.indexOf(r),n=i[t-1]||e;y.show(n)};var E=y.setProps;return y.setProps=function(e){c=e.overrides||c,E(e)},y.setInstances=function(e){m(!0),p.forEach((function(e){return e()})),o=e,m(!1),v(),l(),p=g(y),y.setProps({triggerTarget:a})},p=g(y),y},F.delegate=function(e,n){var r=[],o=[],i=!1,a=n.target,c=s(n,["target"]),p=Object.assign({},c,{trigger:"manual",touch:!1}),f=Object.assign({touch:R.touch},c,{showOnCreate:!0}),l=F(e,p);function d(e){if(e.target&&!i){var t=e.target.closest(a);if(t){var r=t.getAttribute("data-tippy-trigger")||n.trigger||R.trigger;if(!t._tippy&&!("touchstart"===e.type&&"boolean"==typeof f.touch||"touchstart"!==e.type&&r.indexOf(X[e.type])<0)){var s=F(t,f);s&&(o=o.concat(s))}}}}function v(e,t,n,o){void 0===o&&(o=!1),e.addEventListener(t,n,o),r.push({node:e,eventType:t,handler:n,options:o})}return u(l).forEach((function(e){var n=e.destroy,a=e.enable,s=e.disable;e.destroy=function(e){void 0===e&&(e=!0),e&&o.forEach((function(e){e.destroy()})),o=[],r.forEach((function(e){var t=e.node,n=e.eventType,r=e.handler,o=e.options;t.removeEventListener(n,r,o)})),r=[],n()},e.enable=function(){a(),o.forEach((function(e){return e.enable()})),i=!1},e.disable=function(){s(),o.forEach((function(e){return e.disable()})),i=!0},function(e){var n=e.reference;v(n,"touchstart",d,t),v(n,"mouseover",d),v(n,"focusin",d),v(n,"click",d)}(e)})),l},F.hideAll=function(e){var t=void 0===e?{}:e,n=t.exclude,r=t.duration;U.forEach((function(e){var t=!1;if(n&&(t=g(n)?e.reference===n:e.popper===n.popper),!t){var o=e.props.duration;e.setProps({duration:r}),e.hide(),e.state.isDestroyed||e.setProps({duration:o})}}))},F.roundArrow='',F})); - diff --git a/kc_house_data.csv b/kc_house_data.csv new file mode 100644 index 000000000..854951ca0 --- /dev/null +++ b/kc_house_data.csv @@ -0,0 +1,21614 @@ +price,bedrooms,bathrooms,sqft_living +221900,3,1,1180 +538000,3,2.25,2570 +180000,2,1,770 +604000,4,3,1960 +510000,3,2,1680 +1.23E+06,4,4.5,5420 +257500,3,2.25,1715 +291850,3,1.5,1060 +229500,3,1,1780 +323000,3,2.5,1890 +662500,3,2.5,3560 +468000,2,1,1160 +310000,3,1,1430 +400000,3,1.75,1370 +530000,5,2,1810 +650000,4,3,2950 +395000,3,2,1890 +485000,4,1,1600 +189000,2,1,1200 +230000,3,1,1250 +385000,4,1.75,1620 +2.00E+06,3,2.75,3050 +285000,5,2.5,2270 +252700,2,1.5,1070 +329000,3,2.25,2450 +233000,3,2,1710 +937000,3,1.75,2450 +667000,3,1,1400 +438000,3,1.75,1520 +719000,4,2.5,2570 +580500,3,2.5,2320 +280000,2,1.5,1190 +687500,4,1.75,2330 +535000,3,1,1090 +322500,4,2.75,2060 +696000,3,2.5,2300 +550000,4,1,1660 +640000,4,2,2360 +240000,4,1,1220 +605000,4,2.5,2620 +625000,4,2.5,2570 +775000,4,2.25,4220 +861990,5,2.75,3595 +685000,3,1,1570 +309000,3,1,1280 +488000,3,2.5,3160 +210490,3,1,990 +785000,4,2.5,2290 +450000,3,1.75,1250 +1.35E+06,3,2.5,2753 +228000,3,1,1190 +345000,5,2.5,3150 +600000,3,1.75,1410 +585000,2,1.75,1980 +920000,5,2.25,2730 +885000,4,2.5,2830 +292500,4,2.5,2250 +301000,3,2.5,2420 +951000,5,3.25,3250 +430000,4,3,1850 +650000,3,2.25,2150 +289000,3,1.75,1260 +505000,3,1.75,2519 +549000,3,1.75,1540 +425000,3,2.25,1660 +317625,3,2.75,2770 +975000,4,2.5,2720 +287000,4,2.5,2240 +204000,3,1,1000 +1.33E+06,5,2.25,3200 +1.04E+06,5,3.25,4770 +325000,3,2,1260 +571000,4,2,2750 +360000,4,2.5,2380 +349000,3,1.75,1790 +832500,4,4,3430 +380000,4,1.75,1760 +480000,3,1,1040 +410000,3,1,1410 +720000,4,2.5,3450 +390000,3,2.5,2350 +360000,4,2.5,1900 +355000,2,1,2020 +356000,3,1.5,1680 +315000,3,1,960 +940000,3,1.5,2140 +305000,5,2.25,2660 +461000,3,3.25,2770 +215000,2,2.25,1610 +335000,2,1.75,1030 +243500,4,2.5,1980 +1.10E+06,5,2.75,3520 +153000,3,1,1200 +430000,3,1.5,1580 +700000,3,1.5,1580 +905000,4,2.5,3300 +247500,3,1.75,1960 +199000,4,1.5,1160 +314000,3,1.75,1810 +437500,3,2.5,2320 +850830,3,2.5,2070 +555000,3,2,1980 +699950,3,2.25,2190 +1.09E+06,3,2.5,2920 +290000,3,1,1210 +375000,3,2.5,2340 +460000,3,1,1670 +188500,2,1.75,1240 +680000,4,2.5,3140 +470000,5,1.75,2030 +597750,4,2.5,2310 +570000,3,1.75,1260 +272500,3,1.75,1540 +329950,3,1.75,2080 +480000,4,2.5,3230 +740500,3,3.5,4380 +518500,3,3.5,1590 +205425,2,1,880 +171800,4,2,1570 +535000,4,1,1610 +660000,3,2.5,2400 +391500,3,2,1450 +395000,2,1,770 +445000,4,1.75,2100 +770000,3,2.25,2910 +1.45E+06,4,2.75,2750 +445000,3,2.25,2100 +260000,4,2.25,2160 +822500,5,3.5,2320 +430000,4,2.5,2070 +212000,3,1.75,1060 +660500,4,2.25,2010 +784000,3,3.5,3950 +453246,3,2.5,2010 +675000,4,3.5,2140 +199000,3,1.75,1320 +220000,4,1.75,2020 +452000,4,2.25,2590 +382500,2,1,1190 +519950,3,2.25,1170 +665000,2,1,1110 +527700,5,2.5,2820 +205000,3,1,1610 +420000,3,1,1060 +500000,4,2.25,2030 +921500,4,2.5,3670 +890000,4,1,2550 +430000,2,2.5,2420 +258000,5,2,2260 +511000,3,1,1430 +532170,3,2,1360 +560000,3,1,1110 +282950,3,1,1250 +2.25E+06,4,3.25,5180 +350000,1,1,700 +215000,3,1,1180 +650000,5,3.5,3960 +320000,4,2.75,2640 +247000,3,2,1270 +320000,4,1.75,1760 +255000,5,2.25,2060 +438000,3,1.75,1780 +900000,3,2.5,3400 +441000,3,2.75,1910 +420000,3,2,2020 +370000,3,1.75,1580 +269950,2,1.75,1340 +807100,4,2.5,2680 +653000,3,2.5,2680 +371500,3,2,1370 +284000,3,1.75,1560 +272000,3,1.75,2160 +313000,3,1.5,1340 +917500,4,2.5,3880 +673000,4,2.25,2590 +425000,3,2.5,1120 +399950,5,2.75,1970 +385000,3,1,1220 +269950,3,1.5,1950 +330000,2,1,1350 +260000,3,2.5,1670 +470000,4,3,2380 +589000,4,3,2440 +163500,2,1.5,1050 +835000,4,2.75,3130 +1.10E+06,5,3,4090 +269000,4,1.75,1490 +560000,3,2.5,1900 +615000,4,1,1330 +585188,3,2.25,2230 +305000,3,1.75,1650 +166950,3,1,1190 +799000,3,2.5,2140 +400000,3,2.5,2180 +230000,3,1,1060 +256883,3,2.5,1690 +423000,4,2,1970 +465000,3,2.5,2150 +440000,3,2.5,1910 +385000,3,1.75,1350 +210000,3,1,860 +297000,3,2.5,1940 +470000,3,1,1010 +226500,3,1.5,1300 +274250,3,1,910 +840000,4,1.75,2480 +677900,3,2.5,2440 +425000,3,1,1010 +180250,2,0.75,900 +464000,6,3,2300 +320000,4,2.25,1550 +625504,3,2.25,1270 +592500,4,2.5,2240 +465000,3,2.5,2714 +477000,4,2.75,1720 +280000,2,1,850 +1.51E+06,5,3,3300 +445838,3,2.5,2250 +1.07E+06,2,2.25,3900 +467000,2,1.5,1320 +686000,4,2.5,2760 +279950,3,2,1750 +527000,4,2.25,2330 +325000,3,2.25,2220 +328000,3,2.25,2020 +390000,3,2.25,1250 +479950,2,2,1510 +264950,4,2.25,1720 +235000,3,1,1430 +516500,3,2.5,1480 +655000,2,1.75,1450 +500000,4,2.75,2280 +315000,6,2.75,2940 +213000,2,1,1000 +475000,3,1.5,2480 +1.03E+06,5,4,3760 +416000,3,2,2220 +410000,4,1,1970 +800000,3,3.5,3830 +472000,6,2.5,4410 +225000,3,1.75,1430 +210000,2,1,830 +455000,2,1,1430 +225000,3,1,1300 +480000,2,1,1030 +363000,3,2.5,2740 +2.40E+06,4,2.5,3650 +181000,2,1.5,720 +250000,4,2,2010 +481000,3,1.75,1560 +260000,3,2,1810 +455000,4,2.5,3360 +415000,3,2.25,1510 +349500,3,1,1400 +245000,3,2.5,1730 +592500,2,2,1420 +385000,4,1.75,2360 +315000,3,1.75,1580 +255000,3,1,1230 +693000,4,2.5,2460 +780000,3,1,1660 +237000,3,1.75,1270 +525000,3,2.25,2100 +425000,2,1,770 +369900,1,0.75,760 +290000,4,2.5,1700 +285000,3,1,1120 +415000,2,1,1070 +272500,3,2.5,2070 +2.90E+06,4,3.25,5050 +1.37E+06,4,4.75,5310 +436000,2,1,1040 +210000,3,1,1700 +236000,3,1,1300 +331000,3,1.75,1080 +365000,3,2.5,2653 +450000,3,2,2290 +770000,4,2.75,3820 +455000,4,2.5,2210 +405000,3,1.75,2390 +304900,4,1.75,2600 +170000,2,1,860 +2.05E+06,5,3,3830 +780000,4,2.5,3500 +330000,3,3,2420 +370000,4,2.5,2720 +467000,5,2.25,2500 +405000,3,1.75,1670 +675000,5,2.25,2900 +500000,2,1,1640 +389999,4,2.5,1890 +630000,4,1.75,2950 +360000,4,2.5,2160 +580000,4,3,3280 +550000,3,2,1970 +879000,4,2.5,3360 +265000,3,2,1320 +446500,3,2.5,2650 +404000,3,1.5,2030 +267500,3,1.75,1590 +3.08E+06,4,5,4550 +335000,3,2.5,2440 +576000,3,2.5,1940 +208633,3,2.5,2040 +315000,3,2.25,2200 +725000,3,1.75,1920 +550000,4,2.75,1800 +610750,4,2.25,2180 +550700,2,1,1010 +665000,4,2.75,3320 +834000,4,2.5,2370 +201000,5,1.75,1660 +2.38E+06,5,2.5,3650 +1.38E+06,4,3.25,4290 +1.40E+06,4,3.25,4290 +305000,4,2.25,1950 +487000,3,2,2590 +390000,3,2.5,1930 +548000,2,1,1470 +268750,4,1,800 +819900,5,2.75,3150 +520000,3,2.25,2030 +230000,3,2,1450 +240000,3,1.75,1510 +232000,2,1,1240 +240500,2,1,1240 +274975,3,2.5,3030 +740000,4,2,2050 +186375,3,1,1000 +790000,3,2.25,2370 +880000,4,3.5,2800 +279000,6,1.75,2240 +295000,3,2,1810 +640000,2,1,1070 +940000,4,2,2490 +260000,4,2.5,1960 +559900,3,2.75,2930 +791500,4,2,1510 +265000,3,1.75,1420 +245000,3,1.75,1740 +485000,4,1.75,2560 +684000,4,3.5,3040 +425000,3,1.75,2500 +309600,4,1.75,1275 +552250,4,2.5,2580 +165000,4,1,1000 +239900,4,1,1000 +320000,2,1,1070 +206600,3,2,1390 +387000,4,1.75,2500 +299000,1,0.75,560 +855000,4,2.75,2270 +315000,3,1,1900 +437500,2,1,990 +252000,4,1.5,1550 +375000,4,1.75,2200 +300000,4,2.5,1910 +420000,4,1,1750 +900000,3,1,1330 +679900,3,2.5,2440 +463000,3,2.5,1640 +380000,5,2.5,2760 +329500,4,2.5,1820 +604950,3,2.5,2110 +795000,5,2.5,3040 +465000,3,2,1840 +673000,4,2.5,2990 +810000,4,2.5,3520 +785000,4,2.75,2440 +338000,4,3,2090 +280000,3,2.25,1430 +315000,4,2.25,2180 +530000,4,2.25,2180 +380000,5,3,3450 +297000,3,2.25,1450 +730000,4,2.5,3230 +450000,3,1.75,1640 +275000,3,3,1590 +595000,4,2,2020 +435000,3,1.5,1300 +270000,2,1.5,1380 +950000,3,3,4040 +389000,4,2.25,2130 +560000,4,2.25,2550 +1.35E+06,5,3.5,4800 +799000,4,2.25,2510 +365500,3,2,1410 +252350,3,2,1650 +403950,4,2.5,2120 +385000,4,1.5,2040 +345000,4,1,1550 +490000,3,2.75,1980 +330000,3,2.5,1600 +927000,4,2.75,3300 +1.12E+06,4,2.5,3840 +330000,2,1,1220 +530000,5,2.25,2720 +365000,4,2,1940 +378750,3,2.5,2160 +269900,4,1.75,1530 +557000,3,3.5,1710 +360000,4,1.75,3730 +352000,2,1,940 +437000,3,2.5,1750 +322500,4,2.5,1820 +650000,3,3.25,1510 +450000,3,2,1290 +278500,3,2,1570 +364950,4,2.5,1930 +840000,4,3.5,2840 +268000,3,2.5,1550 +517534,2,1,833 +632925,3,2.5,2990 +577500,3,2.5,2000 +339000,4,1.5,2390 +570000,3,1.75,2910 +563500,4,1.75,2085 +423000,4,2.25,2200 +355000,3,2.25,1860 +1.55E+06,5,4.25,6070 +482000,2,1,950 +625000,3,1.75,1600 +538000,3,2.5,2250 +380000,3,2.5,2280 +375000,2,1,940 +245000,3,2.5,1530 +310000,5,1.75,2190 +1.30E+06,3,2,2350 +397000,4,2,1440 +365000,3,2.5,2200 +328500,4,3,2290 +988000,4,3,4040 +1.00E+06,4,2.5,2610 +237000,3,2.5,1490 +525000,4,2.5,2450 +749000,4,2.5,1710 +722500,5,2.5,4870 +843000,3,2.5,3130 +438000,2,2,1270 +578000,3,1.75,2120 +227950,3,1.5,1670 +196000,3,2.25,2070 +641000,2,1,1420 +350000,3,1.5,1250 +205000,3,1,940 +400000,3,1.75,1920 +1.03E+06,3,2.5,3545 +505000,3,2,1260 +475000,5,2.5,2340 +520000,3,2.25,2590 +1.45E+06,3,4.5,3970 +333500,3,1.75,1220 +232000,3,1,1400 +691100,3,2.75,2360 +811000,3,1.75,1870 +551000,3,2.5,2830 +496500,3,2.5,2260 +705000,3,3,1970 +578000,4,2.5,3140 +255000,3,1.75,1240 +1.05E+06,4,3.5,3450 +348000,3,2.25,2570 +230000,3,2,1510 +359500,4,2.25,2390 +330000,3,1,980 +80000,1,0.75,430 +465000,3,1.75,1480 +325000,4,2.5,1850 +340500,3,2,2270 +342500,3,2.5,1810 +290900,2,2,1610 +868700,3,4.25,3840 +1.20E+06,4,2.75,4110 +1.15E+06,4,3.25,4190 +859900,4,2.75,3390 +520000,4,2.25,1890 +460000,3,2.5,1610 +438924,3,1.5,1050 +315000,2,1,630 +590000,4,2.75,2910 +378500,4,1.75,1700 +328500,3,2.5,1950 +849950,3,3,2990 +525000,3,1.5,1350 +1.39E+06,4,3.25,4860 +295000,4,2.5,2160 +1.07E+06,6,3.5,4860 +207950,2,2,890 +699900,4,2.75,2810 +1.28E+06,5,2.5,3400 +452000,4,1.5,1580 +370000,3,2,1680 +232000,3,1.75,1300 +669950,5,2.5,2820 +397500,3,2,1510 +490000,2,2.5,1230 +725000,4,2,2110 +299000,3,2.75,3080 +625000,2,1.5,1490 +437500,3,2.5,2120 +650000,4,2.5,3180 +475000,2,1,1490 +342000,3,2,1930 +1.20E+06,4,2.5,2770 +280000,3,1.5,1670 +240000,2,1.75,1330 +529000,3,1,1210 +442000,3,1,1190 +615000,2,1,1540 +1.49E+06,4,3.75,4030 +585000,4,1.75,2430 +480000,4,2.5,2600 +1.10E+06,5,3.5,4410 +290000,4,1,1330 +615000,3,1.75,1900 +300000,2,1,1100 +308000,3,1,1980 +750000,3,2.5,2400 +2.25E+06,4,2.25,4760 +890000,4,3.25,3180 +288000,3,1,1190 +190000,2,1,630 +515000,5,3,2530 +235000,4,1.5,1690 +275000,2,1,940 +727500,2,2,1240 +650000,4,2.5,3040 +1.60E+06,6,5,6050 +365000,4,1,1590 +662000,3,1.75,2500 +270500,3,2.5,1780 +200000,2,1.5,1360 +970000,4,3.25,4740 +160000,3,1.5,1010 +204000,3,1,1040 +358000,3,2.25,1610 +452000,4,1.75,1570 +595000,2,2,1510 +249000,3,2,1360 +346900,4,2.5,1970 +2.13E+06,3,2.5,5403 +280000,4,2.5,1560 +318888,4,1.75,2320 +530000,3,2.25,2120 +375000,3,2.25,2120 +910000,4,2.5,3350 +782000,4,2.5,2380 +259950,2,2,1070 +315000,4,2.75,2300 +215000,2,1,1320 +705000,3,1.75,2180 +1.45E+06,3,3,4380 +451000,3,1.75,1790 +261000,2,1,750 +396000,3,1.5,1300 +725000,4,2.5,2990 +1.95E+06,7,3.5,4640 +238000,4,1,1400 +750000,6,1.75,2750 +331500,4,2.5,2050 +460000,4,3,2230 +404950,4,2.25,2340 +880000,3,2.5,2870 +863000,4,2.5,4120 +638700,3,1.75,2080 +435000,3,2.5,1840 +260000,3,1,1180 +671500,5,2.75,2160 +610000,3,1,1180 +405000,2,0.75,1160 +338900,4,2.5,1830 +720000,4,4,3200 +442000,5,3,2560 +650000,5,2.75,2550 +263500,3,1.75,1330 +300000,2,1,1220 +266000,3,2.5,1805 +930000,4,4,6050 +530000,4,2.5,2320 +180000,3,1,1384 +619000,3,2.5,2720 +264000,3,1.5,1820 +730000,2,2.25,2130 +439000,4,2.25,2060 +268500,4,1.75,1420 +330000,3,1.75,1510 +640000,3,2.5,2160 +900000,3,2.5,3180 +370000,3,2.25,2110 +685000,3,2,2060 +505000,3,1.5,1830 +265000,3,1.75,1820 +290000,3,2.5,1610 +296000,4,2.5,1780 +360000,4,2.5,1840 +240500,3,1.75,1460 +372500,2,2.5,1400 +595000,3,2.5,3370 +515000,4,3,3590 +1.22E+06,4,2.25,3200 +507000,2,1.75,1670 +399950,4,2,2420 +185000,3,1.75,1430 +460000,3,1.75,1440 +435500,3,2.25,1450 +469000,4,2.75,3550 +531000,2,3,1270 +443500,2,1,940 +223000,3,2,1670 +590000,4,3.5,3100 +340000,2,2.5,1100 +650000,3,2,1870 +533600,3,2.5,1930 +695000,3,2.75,2540 +242000,3,1.75,1280 +425000,3,2.25,1820 +525000,3,2.25,1490 +485000,3,2.5,1880 +175000,3,1,1250 +210000,3,2,1440 +260000,3,2.5,1920 +577000,3,2.5,2060 +200000,3,1.5,1210 +605000,2,1.75,1760 +325000,3,1,990 +289500,3,1,960 +559950,3,2.5,1660 +1.04E+06,3,1.75,1900 +543500,3,2.25,1270 +480000,4,2.25,3250 +218000,3,1,960 +565000,2,1.75,1330 +426700,3,1.75,2080 +650000,3,2.5,2690 +542000,2,1,890 +415000,3,1.75,1070 +214000,3,1,1200 +245000,3,1.5,1360 +314500,3,2,2050 +1.12E+06,3,1.5,3000 +378000,2,2,1300 +305000,4,2.5,2250 +595000,5,2.75,3740 +729500,3,2.5,1660 +430000,3,2.5,2360 +240000,3,1.75,1760 +545000,3,1.75,1680 +530000,3,1.75,1320 +157000,1,1,870 +425000,4,1,1260 +220000,3,1,1000 +521000,4,1.75,2020 +325000,3,1,1920 +597500,3,2,2150 +337000,3,2.5,1470 +1.00E+06,3,2.5,3180 +3.07E+06,3,2.5,3930 +495000,3,1,990 +748000,4,3.5,2770 +888000,3,1.5,1250 +269900,3,1.75,1140 +496500,4,2.5,2250 +475000,3,2.5,1640 +312000,3,1.5,1255 +323000,3,1,1290 +331000,3,1.75,1300 +306000,3,1.5,1220 +655000,4,2.5,2630 +290000,3,1.5,1950 +1.25E+06,4,3.25,3160 +460000,3,1.75,1550 +435000,4,2.5,1700 +664000,4,2.75,2510 +865000,4,1.75,1800 +385000,3,1.75,1800 +497000,3,2.25,1870 +280000,2,1,1010 +188000,2,1.5,1120 +478500,3,1,2090 +1.15E+06,4,3.5,4370 +222000,3,2,1440 +799000,4,3,2580 +609900,4,2.5,3190 +413000,4,3.5,2380 +400000,4,1,1420 +802541,5,2.75,2990 +320000,3,2.5,2680 +507000,4,2.5,2730 +387500,3,1,1220 +396000,3,1,1500 +373000,3,1.75,1830 +1.48E+06,5,2.5,4570 +359900,4,2.25,2470 +410000,2,1,800 +690000,4,2.5,2900 +245000,3,2,1410 +700000,5,2.5,2830 +268000,4,1.75,1680 +225000,3,1.75,1760 +980000,4,2.25,2240 +795000,2,1,1380 +195000,2,1,820 +480000,4,2,2180 +485000,4,2,1400 +130000,2,1,880 +325000,2,1,1060 +440000,3,1.75,1530 +550000,4,1.75,2480 +310000,3,1.75,1490 +530000,3,2.5,3660 +390000,4,2.5,2340 +243000,3,1.75,1450 +639000,4,2.5,2210 +215000,4,1,1130 +405000,5,1.75,1550 +250000,4,1.75,1710 +405500,3,1.5,1010 +452000,6,2.25,2660 +730000,6,2.25,2660 +267000,3,2,1300 +289950,3,2.5,1670 +565000,2,1,960 +1.58E+06,4,3.25,4670 +636000,3,2.5,2140 +350000,5,3,2520 +320000,3,1.5,1650 +210000,2,1.75,1440 +245000,2,1,1050 +328000,3,1.75,1470 +985000,4,2.25,4230 +501000,3,1.75,1970 +315000,3,2.25,1540 +403000,3,2.75,2090 +550000,3,2,2380 +347500,4,2.5,2156 +365000,4,2.25,2070 +588000,3,1,1910 +605000,3,1.75,1920 +1.30E+06,3,3.25,3400 +233000,3,2,1400 +360000,4,2.5,2210 +459000,2,1.75,1170 +740000,3,2,2100 +305000,3,1,1160 +395000,3,1,1500 +560000,4,2.5,2940 +650000,4,1.75,2010 +449950,3,2.5,2170 +517500,3,1.5,1430 +435000,4,1.5,1510 +329999,3,1,1150 +950000,3,1.75,2150 +447000,3,1,1370 +699800,2,2.5,2380 +850000,3,1.75,1370 +316500,3,1.75,1600 +942500,5,3.5,3750 +1.31E+06,2,2.25,3950 +856600,4,2.25,2400 +405600,5,1.5,2830 +565000,4,2.5,2440 +400000,3,2.25,1190 +330000,3,2,1400 +374950,4,2.75,2730 +405300,3,2.75,2390 +560000,3,2.25,2060 +824000,4,2.25,2490 +260000,3,1.75,1100 +760000,4,2.5,2430 +405000,3,2.5,3170 +429900,4,2.5,2640 +341500,3,1.5,1130 +465250,5,2,1940 +450000,2,2,1100 +390000,3,1,1200 +420000,3,2.25,2000 +269950,3,2.5,1890 +493000,4,2,1910 +370000,4,2.5,2710 +2.25E+06,5,4.25,4860 +305000,3,1,1250 +400000,3,1.75,1590 +320000,3,1.5,1240 +715000,4,1,2000 +650000,6,2.75,3610 +218000,5,1.75,1930 +500000,2,1,1280 +460000,4,2,2090 +232500,3,1.5,1940 +408200,3,2.5,1800 +522000,3,1.75,1730 +675000,4,2.5,2810 +1.36E+06,4,3.5,3550 +249950,4,1,1330 +210000,2,1,750 +429950,4,1,1760 +737500,4,2.5,3200 +710000,4,2,1740 +470000,3,2.5,2100 +1.10E+06,4,3.5,4270 +650000,3,2,1340 +1.22E+06,4,2.5,3190 +422120,3,2.5,1630 +625000,5,2.5,2990 +385200,4,1,1550 +500000,3,2.25,1690 +308000,4,2.25,1960 +565000,3,2.75,2390 +581000,3,2.5,2600 +361000,3,2,1950 +345000,3,1,1250 +419000,2,2.25,1180 +347000,3,2.5,1680 +625000,4,2.25,2220 +2.40E+06,4,4.25,4890 +379000,3,3.25,2660 +310000,3,1.5,1150 +250000,2,2,1130 +682000,5,2.75,2760 +246500,3,2,1430 +325000,3,1,1490 +310950,4,2.5,2030 +1.10E+06,3,2,3010 +287500,3,1,1810 +431000,3,1,1810 +226000,3,1,970 +825000,3,1.75,2010 +175000,4,1,1300 +465750,3,1.5,1260 +659000,4,2.25,2610 +595000,3,1.75,1910 +350000,3,2.25,1780 +270000,4,2.25,1900 +662500,6,2.25,2450 +249900,3,1.75,1380 +324500,3,1.75,1920 +430000,2,1.75,1350 +419950,2,1.75,1350 +285000,4,1.75,2510 +332000,4,2.5,2470 +282000,4,1.75,1660 +320000,3,1,1340 +428750,3,1,1620 +330000,3,2.25,2300 +456500,4,3.5,2000 +352000,3,2.25,1640 +664000,4,2,1530 +628000,3,1.75,4000 +512000,3,1.75,1610 +254000,3,2,2070 +535800,4,2.5,1900 +287653,3,1,1050 +438000,3,2.5,1520 +450000,4,1.75,2390 +327000,5,2.75,2400 +370500,4,2.5,1790 +265000,3,2.5,1720 +450000,4,2.75,2980 +425000,3,1,1520 +166600,3,1.75,1150 +245000,1,0.75,380 +565000,3,1,910 +539900,3,1.75,1650 +910000,3,3.5,2480 +280000,4,2.5,2050 +275000,3,2.25,1420 +467000,3,2.5,3460 +457500,3,2.5,1500 +381156,2,1,1320 +289999,5,2.5,2180 +642450,3,1.75,1830 +469950,3,2.25,1620 +795000,3,2,2920 +785000,4,2.5,3300 +860000,3,2.25,3060 +1.10E+06,0,0,3064 +147500,3,1,1530 +390000,3,2,1910 +229000,3,1,1020 +185000,3,1,1150 +414900,3,1.5,1260 +200000,4,2,1920 +225000,4,2.25,1800 +720000,3,1.75,2040 +930000,4,2.5,2200 +1.27E+06,5,2.5,3200 +700000,5,3.25,2400 +466000,2,1.5,1140 +374000,3,1.5,1330 +480000,3,2.5,1940 +740000,3,2.5,3000 +1.01E+06,4,1,1820 +395000,4,2.5,2910 +340000,2,1,1090 +209000,3,2,1230 +431650,5,2.5,1710 +980000,5,2.5,3160 +660000,3,2.5,2680 +730000,4,2.25,2190 +291500,3,1.75,1260 +905000,4,3.5,2970 +800000,4,2.5,2570 +839900,4,3.5,3810 +200000,1,1.5,1010 +300000,3,2,1480 +530000,3,1.75,1250 +314950,3,2.25,1654 +255000,3,1.75,1410 +550000,5,2.75,2160 +435000,3,1,1400 +234000,3,1.75,1420 +615000,4,2.25,2500 +205000,3,2,1410 +384000,4,1.75,2100 +324000,3,2.5,1750 +645000,3,1.75,2070 +570000,3,3.25,1570 +324000,3,2.5,1920 +270000,2,1,1000 +290000,5,1.5,2120 +250000,3,2,1440 +342000,3,1.75,1660 +255000,3,1.5,1340 +800000,3,2.25,2380 +451000,3,1.75,1560 +990000,4,2.5,2780 +288400,4,2.5,1860 +420000,3,1.5,2390 +359000,2,2.75,1370 +390000,4,3,2570 +300000,3,2.5,1320 +545000,5,2.5,2520 +288349,3,1,1250 +299900,3,2.25,1560 +891000,4,2,2330 +1.20E+06,3,2,3660 +378000,4,2.5,2790 +299995,2,1,1060 +253000,3,2.5,2020 +350000,3,2.25,1580 +565000,4,3,2020 +315000,2,1,970 +570000,4,3,1490 +971000,5,3.5,4390 +915000,5,2.5,2750 +419000,4,1.5,2150 +260000,4,1.75,1810 +1.32E+06,3,3,2230 +369950,3,1,2430 +1.03E+06,3,2.5,3680 +435000,5,1,1410 +601000,3,1.75,1330 +460500,3,1,1490 +720000,3,2.5,2020 +851000,4,2.5,3130 +550000,4,3,2670 +700000,4,1,1980 +323000,3,1.75,2100 +345500,3,1,1350 +378000,4,1.5,2140 +650000,4,2,2208 +385000,3,2,1010 +425000,2,1,970 +210000,4,2,1520 +630000,4,2.5,2740 +335000,3,1.75,1570 +196500,3,1,1320 +582800,4,2.75,2550 +440000,3,1.75,1560 +752500,4,2.25,2360 +532500,3,1.75,1330 +265000,3,1,1070 +397500,3,1.25,1510 +524250,3,2.5,1710 +765000,4,2.75,2790 +648000,4,2.5,2620 +469500,5,2.5,2970 +237500,3,1.75,1050 +216000,3,1,1280 +427200,3,1,1030 +280000,3,2.25,1900 +718000,5,3,3070 +420000,2,2.75,1760 +379000,2,1,930 +326100,2,1,880 +535000,3,2.5,1360 +283000,4,2.75,2130 +260000,3,1,1480 +399000,4,1,1500 +484950,3,2.25,1670 +640000,4,1.75,2060 +585000,4,2.5,2160 +645000,4,2,2780 +253000,3,2,1490 +178500,2,1,740 +291000,4,2.5,1860 +199950,2,2.75,1590 +553500,2,1,850 +189950,2,1,1030 +289000,3,2,1850 +700000,4,2,1830 +270000,3,2,1560 +258000,4,1.75,1730 +530000,3,2.5,1930 +245000,3,2.25,1422 +563000,3,2,1380 +515000,3,2.5,2430 +325000,4,2.5,2610 +540000,3,2.25,2000 +280300,2,1,920 +460000,4,1.75,1750 +475000,3,1.75,2020 +900000,4,2.25,2460 +538200,4,3,1780 +429000,2,1,1080 +164808,3,1,1250 +520000,4,2.25,1870 +475000,3,1.75,1700 +283000,4,1.5,1480 +321500,4,2.5,1930 +840000,4,2.75,3130 +287000,3,2.25,1370 +375000,3,1.75,960 +349500,3,1.75,1260 +446450,3,1.5,1480 +315000,4,2.5,1930 +271310,2,1,870 +315000,4,1,1300 +245000,3,1.75,1490 +543115,2,1,1380 +900000,4,2,1190 +2.45E+06,4,4.25,4250 +554000,2,2,1920 +249900,3,1.75,2080 +768000,3,2.5,3220 +980000,4,3,3680 +395000,5,2.5,2070 +415000,3,1.75,1480 +380000,4,2.5,2000 +566000,3,2.5,1560 +218500,2,1,1600 +550000,4,2.5,1940 +512031,3,1.75,1540 +197500,2,1,820 +470000,3,2.25,1780 +590000,3,1.75,1560 +465000,4,2.25,2210 +499000,2,1.75,2040 +515000,3,2.25,1920 +716500,3,1.75,1930 +410000,3,2,1700 +850000,4,3.25,3450 +1.05E+06,4,3.25,3440 +648000,4,2.5,2380 +620000,4,2.25,2400 +935000,4,4.5,5670 +379000,3,1,1140 +699000,3,1.75,1670 +528000,4,2.25,1910 +425000,3,1.75,1560 +249500,2,1.75,1500 +1.04E+06,5,3.25,4475 +790000,4,2.75,2840 +399950,3,1,1020 +275000,3,1.5,1410 +550000,3,1,1520 +140000,1,1,730 +250000,3,1,1190 +318000,3,2.25,1410 +505000,2,1,1240 +470500,5,2.5,2500 +360000,3,1,1050 +1.24E+06,4,2.75,2680 +986000,3,2.5,2380 +515000,2,1,1060 +320000,3,1.75,2300 +310000,4,3,2010 +356700,2,1,1090 +775000,4,1.75,2320 +325000,3,1,1040 +208000,4,2.75,1810 +825000,2,1,1150 +515000,3,2.5,2360 +490000,3,1.5,1970 +675000,4,3,2690 +360000,4,2.5,2080 +550000,4,2.5,2080 +225000,3,1.5,1370 +500000,3,2.75,3410 +385000,4,2,1850 +837700,5,2.75,3010 +448000,3,2.25,1530 +730000,5,1.75,2690 +575000,4,1.5,2810 +430000,3,1.75,1810 +435000,3,2.5,1560 +241000,3,1,1010 +453500,2,1.75,1000 +285000,2,1.5,990 +151000,2,1,720 +1.57E+06,5,4.5,6070 +631000,5,2,2270 +285000,2,2.5,1380 +195000,3,1,1260 +817500,4,2.5,2910 +550000,3,2,1810 +1.13E+06,4,2.5,3160 +609850,2,2.75,1910 +200000,3,1,1230 +367000,4,2.5,2960 +285167,3,2.25,2200 +275000,2,1.5,1270 +350900,4,2.5,2540 +660000,4,3.25,3030 +525000,3,1.75,1520 +262000,4,2.5,1560 +690000,2,1,970 +624000,5,3.75,3570 +353000,3,1,1350 +552500,4,3.5,3710 +224500,4,1,1430 +239000,3,1,940 +975000,5,4.5,4300 +1.20E+06,4,1.75,3990 +505000,3,1,1380 +302000,4,1.75,2020 +170000,3,1,1480 +195000,2,1,1190 +272000,5,1.5,2550 +369000,5,1.5,2550 +332500,3,1.5,1500 +515000,3,2.5,3000 +269000,3,1,1690 +1.28E+06,4,4,4390 +303000,3,2.5,1560 +420000,7,3,2940 +400000,3,1,1130 +225000,3,1,1020 +219000,2,2,1310 +605000,3,2.5,2570 +625000,4,2,2020 +380000,5,2,1680 +620000,4,2,1770 +687500,4,2.75,3190 +225500,4,2,1440 +252500,3,2,1150 +510000,3,2.5,1860 +510000,4,2.5,2430 +725000,3,2.5,1940 +75000,1,0,670 +492000,2,1,880 +425000,4,2.5,1930 +1.96E+06,4,2.75,3120 +298900,3,2.5,1830 +699000,4,2.5,3230 +310000,2,1,700 +350000,3,1.75,1010 +790000,4,1.75,2460 +305000,4,2.5,2230 +315000,3,2.5,1570 +267500,5,3.5,2390 +1.75E+06,4,3.25,3460 +435000,6,3.5,2400 +482500,6,4.5,2940 +5.11E+06,5,5.25,8010 +439995,3,1.75,1570 +460000,3,3,1520 +194000,3,1,1070 +290000,2,0.75,440 +274700,4,2,2440 +900000,4,2.5,2660 +1.15E+06,4,4,4460 +605000,3,2.5,2010 +359000,3,2.5,1450 +850000,3,1.75,1400 +505000,3,2,1500 +565000,3,2.5,2500 +585000,2,1.75,1280 +328000,4,3.25,3380 +749950,4,2.75,2910 +826000,4,2.5,3060 +535000,3,1,1330 +925000,4,2.5,3300 +875000,3,3.5,3250 +902000,4,2.25,2530 +423000,3,1,1830 +235000,3,1,1170 +545000,2,2,2930 +343000,2,1,1230 +334950,3,2.5,1620 +405000,3,1.75,1760 +220000,4,1,1440 +173000,2,1,1740 +655000,3,1,1270 +406000,2,1,880 +632000,6,2.5,2560 +357000,5,2.75,1540 +361000,3,1.75,1150 +277000,2,1,770 +630000,4,3.75,4610 +254000,3,2.5,1850 +472800,3,2.25,1840 +263000,3,1.75,1490 +510000,3,1.75,1490 +179950,3,1,960 +525000,4,2.25,1580 +479000,3,2.5,1260 +651000,3,2,1940 +949000,4,1.75,2490 +392400,5,2.5,2520 +585000,4,1.75,1760 +460000,4,2.5,4190 +470000,3,1,1170 +245000,3,2.5,1600 +500000,4,2,2760 +455000,3,2.5,2090 +485500,4,2.5,2320 +1.88E+06,5,3.25,4110 +100000,2,1,770 +307000,3,1.75,1410 +475000,4,3.5,3660 +330000,4,2.5,2180 +130000,3,1,1110 +320000,3,2.5,2280 +735000,4,2.5,2820 +365000,4,2.5,1570 +234000,3,1.5,1200 +211000,4,2,1710 +680000,6,3.5,3000 +457000,4,3,2800 +349000,3,2.25,1640 +360000,3,2.75,2030 +350000,4,2.5,2530 +208000,3,1,990 +250275,2,1,790 +435000,2,1,790 +270000,3,1.75,1800 +438000,3,1.75,1650 +659000,4,2,1980 +645000,4,2.75,2340 +685100,4,2.5,2790 +350000,7,3,2800 +375000,2,1,1840 +170000,3,1.5,1350 +880000,4,2.5,3030 +410500,4,2.5,1980 +780000,4,2.5,3690 +1.23E+06,5,4.5,3732 +449000,2,1.75,1510 +546000,3,1.75,2000 +317000,3,2,1760 +276900,3,1,1270 +399000,5,2,2620 +495000,5,2.75,2630 +258000,3,1.75,2270 +600000,2,2.5,2410 +265000,3,2.75,1120 +321000,5,2.75,3030 +682000,5,2.25,2120 +295700,4,2.5,1720 +609000,4,2.5,2150 +995000,3,4.5,4380 +530000,3,2.25,2010 +614000,5,2.5,3150 +390000,3,2.5,2500 +467000,3,2.5,1690 +484000,6,2.5,3300 +340000,3,2.5,1240 +302495,3,2.5,2200 +532500,3,1.75,1620 +441500,3,2.5,2420 +470000,4,2.5,2680 +2.30E+06,4,3.25,4250 +590000,3,2.5,2400 +320000,3,1.75,2300 +363000,2,2,920 +747500,4,2.25,2350 +750000,2,2.5,2630 +831000,4,3,2170 +403000,3,2.5,1700 +445000,3,2.5,2470 +345000,3,1,1250 +2.26E+06,3,3.5,3110 +371025,3,2,1530 +355000,2,1,960 +270000,3,1,1240 +425000,4,2.75,2440 +364808,3,1.75,2320 +320000,3,2.25,1580 +325000,4,2.5,2963 +350000,3,2.25,2470 +170000,3,1.5,1370 +255000,2,1,960 +550000,3,1,1130 +835000,4,4.25,4930 +420000,3,1,1150 +925000,4,2.5,2190 +389250,2,1.5,1490 +748000,3,2.5,2600 +284000,3,1.75,1530 +588000,4,2,1680 +372500,3,1.75,1680 +285000,4,3,1900 +360000,3,1,1570 +275000,3,1,1370 +428000,2,2,1350 +847000,6,2.5,3010 +316000,3,1,1010 +375000,3,2.5,2050 +533000,3,1,1670 +556000,5,2.5,3840 +225000,4,2,2220 +537250,4,2.5,2590 +255000,3,1,1180 +530000,4,2.5,2950 +5.30E+06,6,6,7390 +595000,3,2.75,2150 +548000,4,2,2100 +234975,3,1.75,1650 +600000,3,1.75,1620 +432000,4,1,1750 +455000,3,1.5,1380 +279950,3,1.75,1510 +267500,3,1.5,1600 +620000,4,2.5,1840 +110000,2,1,830 +625000,3,3.5,1810 +389000,2,1,910 +1.20E+06,4,2,2120 +788500,4,2.25,2510 +567000,5,2.25,2100 +515000,2,2.25,2690 +605000,4,2.5,2430 +430000,4,3.75,2452 +805000,2,1.75,1550 +567500,3,2.5,2080 +647500,3,1.75,1290 +495000,2,1.75,1850 +825000,4,2.5,3370 +435000,4,2.25,2730 +445950,3,1.75,1300 +960000,5,2.75,3040 +780000,4,3,2440 +274500,3,2.25,1720 +729953,5,3,3230 +464950,3,1.5,1200 +620000,4,1.75,2350 +735000,4,3.5,3100 +450000,4,2.25,2040 +450000,4,1,2000 +842500,4,2.5,2160 +360000,3,2,1970 +585000,3,2.5,2270 +461000,3,2.25,1850 +345000,2,1,1350 +1.08E+06,3,2.5,3280 +643000,4,2.5,2270 +690000,4,2.5,2820 +282000,4,1,1200 +549000,3,1.75,2000 +815000,3,2,2310 +2.20E+06,5,4.25,4640 +700000,3,2.25,2330 +933399,3,2.5,3940 +290000,3,1,1440 +372000,4,1.75,1960 +450000,2,1.75,1250 +303700,3,2.5,1981 +672000,4,2.5,2440 +334000,4,1.5,1150 +260000,2,1,1120 +749950,3,1.75,1800 +330000,4,2.25,2380 +830000,5,3,2920 +1.13E+06,3,2.25,2790 +320000,3,1,1560 +260000,2,1,1550 +225000,3,2,1700 +279200,1,1,640 +520000,4,3.5,2680 +505000,3,2.5,1860 +234000,3,1.75,1490 +503000,4,2.5,2470 +606000,4,2.25,2390 +433500,3,1,1230 +250000,3,1.5,2840 +719000,3,2.5,2120 +381000,3,2,1770 +267000,3,2.5,2495 +275000,1,0.75,1170 +651000,4,2.5,2740 +439000,2,1,1050 +325000,2,1,1130 +490000,2,1,880 +519900,4,2.5,2403 +545000,4,2.75,3410 +1.06E+06,4,4,5320 +542000,4,1.75,1900 +465000,4,1.75,1810 +408000,2,2,1200 +292000,4,2.5,2060 +253000,3,1.75,1250 +280000,2,1,910 +658588,3,2.25,2560 +635000,4,2.25,1920 +439000,4,2.25,2240 +300000,3,2.5,1260 +345000,3,1.5,1360 +283500,4,2.25,2100 +425000,2,1,2110 +685000,3,1.75,2210 +750000,3,2.5,2360 +245000,4,1.5,1280 +585444,6,3.75,2740 +706000,4,2.5,2740 +445000,4,2,2630 +241000,3,2,1650 +1.18E+06,2,2.5,1770 +530000,3,1,1500 +350000,3,1.5,1430 +1.70E+06,4,3.75,3190 +389000,3,1,1280 +799000,4,2.75,2390 +1.40E+06,4,2.5,4040 +340895,2,1,920 +780000,4,2.5,2730 +350000,2,1.5,1320 +470000,3,2.5,2620 +914600,4,3,3180 +354000,4,2.5,2900 +470000,5,2,1900 +715000,3,2,1760 +265000,2,1,760 +2.54E+06,4,3,3710 +640000,3,1,1530 +290000,4,1.75,1990 +480000,5,4.75,3830 +535000,3,2,2040 +907000,3,1.75,2170 +459000,3,1.75,1620 +1.36E+06,3,2.5,3600 +264950,3,1.5,1470 +352950,3,1,1760 +491500,3,2.25,2230 +1.23E+06,4,3.5,3770 +369500,3,1,1200 +566000,3,2.5,2090 +290000,3,2.25,1500 +5.35E+06,5,5,8000 +180000,3,1,870 +215000,2,1,1010 +302000,2,1,1010 +352500,3,1.75,1860 +235867,4,2,1330 +500000,3,2.25,1760 +382000,3,2.25,1800 +515000,5,2.5,1690 +250000,1,1,660 +672500,3,2.25,2400 +755000,3,2.25,3020 +707500,3,1,1500 +459000,4,2,1560 +140000,3,1,1090 +495000,2,1,970 +757000,3,3.25,3190 +765000,3,3.25,3190 +359000,4,1.5,1890 +440000,3,1,1050 +400000,4,1.5,1390 +652000,3,2,1700 +260000,3,1.75,1050 +1.33E+06,5,3,3340 +519500,4,2,1540 +650000,3,1,1710 +280000,4,2.25,2100 +515000,4,1.75,1730 +400000,3,2.25,1500 +652100,3,2.5,2380 +235000,6,3,2180 +701000,4,1.5,1840 +640000,4,2.5,2341 +455800,3,2.5,1690 +504750,3,2.5,2490 +483000,3,3,2440 +530000,3,0.75,920 +250000,2,1,1030 +229950,5,2.75,2000 +884744,4,3.5,4210 +514000,3,1.5,1610 +532000,3,2.25,1910 +423000,4,2.5,2660 +420000,2,1,820 +521000,3,1.75,1730 +577000,4,2.25,2360 +425000,3,1,970 +495000,4,2.5,2460 +340000,3,2.5,2690 +499950,3,3.5,1820 +1.22E+06,4,3,3470 +720000,4,2.75,3370 +249000,3,1.5,1700 +206135,3,1,1340 +300000,5,2.75,2000 +612000,6,3,3840 +1.10E+06,5,2.5,3890 +230000,4,2,1220 +850000,3,1,2280 +355000,4,2.5,2770 +442000,4,2.5,2520 +399000,4,3,3060 +360000,4,2.5,2390 +390000,3,1.75,1320 +413000,5,2.5,2900 +190000,2,1,700 +432900,3,2.5,2210 +621138,3,2.25,2180 +270000,3,2.25,2080 +610000,4,2.25,2090 +500000,3,2,1720 +715000,4,2.25,2460 +264000,3,1.5,1470 +550000,3,1.75,1650 +337000,3,2,1690 +170000,3,1,970 +405000,4,2.5,2030 +775000,4,2.5,2540 +425000,3,2.25,1570 +713000,5,2.75,2580 +555000,5,2.5,2090 +810000,4,2.5,3260 +1.25E+06,4,3.75,3830 +819000,3,3.5,2130 +409900,3,2.5,1690 +935000,2,2.5,1780 +657500,4,1.75,1620 +900000,6,3.75,4210 +932800,5,3.25,2980 +391000,3,2,1490 +420000,4,2.5,2110 +1.30E+06,6,3.5,6563 +415000,3,1.5,1510 +350000,3,1.75,1830 +375000,2,1,1230 +860000,3,1.75,2180 +495000,4,2.25,2220 +250000,4,2.25,1730 +365000,4,2.25,1990 +503000,3,2.75,1540 +150000,2,1,1100 +450000,4,1.75,1640 +355000,4,3,2590 +245000,3,2,1450 +265900,3,2,1180 +299000,4,2.5,1820 +957500,4,2.25,2360 +343000,3,1,1120 +307500,3,2.25,1646 +937500,5,3.75,4210 +610000,3,3,2480 +720000,3,1.5,1590 +610000,4,2,2130 +434500,3,1.75,1650 +602500,2,2.5,3090 +607010,4,2.5,2180 +610000,3,1,1800 +828500,4,2.5,3720 +199990,3,1,1100 +294000,3,1.75,1530 +789500,4,2.5,3010 +797000,3,3.5,3500 +539950,5,3,3100 +284950,4,1.5,2000 +776500,4,1.5,2290 +525000,4,2.5,2400 +303000,3,2.5,1850 +722080,3,3.25,3680 +140000,3,1,1060 +235000,3,1,1060 +440000,3,1,1610 +605000,3,1.75,2330 +380000,2,1,1210 +352000,4,1,1530 +420000,4,2.25,2270 +1.18E+06,4,2,2590 +1.38E+06,3,1.5,1850 +300000,3,1.5,1500 +1.15E+06,4,3.25,4740 +453500,2,1.5,1710 +443500,3,2,1920 +332000,2,1,1150 +655000,3,2.5,2320 +475000,4,1,1420 +372500,3,1.75,1550 +1.05E+06,4,2.5,2920 +500000,3,1.75,1620 +900000,6,2.75,2300 +327500,3,1,1070 +390000,3,1.75,1790 +451101,2,1.5,1510 +455000,4,1,1340 +650000,4,2.5,3350 +895000,3,2.5,2500 +800000,4,2.25,2350 +703770,4,2.25,2550 +249950,3,1.75,1320 +512000,2,2,1270 +780000,5,2.5,3480 +336000,3,2.25,2820 +285000,3,2,2110 +229900,3,1.75,1100 +667500,4,3,1920 +378000,4,2.5,1890 +454000,3,2.5,2530 +537500,4,2.5,2550 +425000,3,1,1550 +290000,3,2,1760 +349500,3,2,1270 +370000,3,2.75,1250 +549500,3,1.75,1620 +245000,2,1,710 +208000,3,1.75,1070 +248000,4,2.25,2320 +610000,4,3.25,5450 +550000,4,2.5,1670 +750000,3,2.75,3010 +192000,2,1.75,1340 +169317,2,1,790 +1.20E+06,4,3.5,3400 +880000,2,1,1530 +210000,1,1,930 +180500,3,1.5,1540 +540000,4,2,1990 +520000,3,1.75,2300 +177500,3,1.5,1220 +415000,3,1.75,2380 +495000,4,2.5,2020 +325000,3,2.25,1890 +440000,2,1.75,1330 +411000,3,1.75,1490 +810000,5,3.5,3550 +561750,5,1.75,2040 +835100,4,2.5,2380 +450000,3,2.25,1780 +238000,3,2.5,1650 +299000,3,1,1510 +570000,2,1,1100 +340000,3,1.75,2190 +450000,2,1.75,1760 +272750,4,1.5,1800 +520000,4,2,2000 +284950,3,1,990 +255000,2,1.5,1480 +231500,2,1,1200 +415000,1,2,3000 +330000,4,2.5,3504 +365000,3,1.5,1300 +425000,4,2,1330 +400000,4,1.75,1850 +335000,4,2.5,2240 +342000,3,3,1260 +490000,8,5,2800 +331500,4,1.75,1820 +960000,3,2.5,1730 +720500,4,2.5,3350 +830000,3,2.5,3370 +662990,3,1.75,1240 +220000,4,2,2340 +349950,5,2,1880 +550000,3,2,1810 +396000,3,1.75,2340 +635000,4,1.5,2820 +293000,3,1,1020 +339000,3,2.25,2090 +285000,4,2.25,1830 +775000,6,2.75,2980 +224000,4,1.5,1600 +2.25E+06,4,3.5,4440 +165050,3,1,1200 +275000,3,1.25,1230 +445000,5,3,2930 +510000,3,2.25,2370 +1.23E+06,4,2.5,3040 +390000,3,1.5,1610 +460000,3,2.25,2350 +700000,3,1.75,2000 +874150,4,3.5,3530 +470000,3,2.25,2220 +374000,3,1.75,2000 +510000,2,1.75,1210 +467000,2,2.5,1140 +576000,4,2.5,2440 +196440,3,2,1560 +825000,4,2.5,3210 +281000,2,1,930 +326000,3,2.5,1782 +340000,3,1.75,1740 +440000,5,1.75,3690 +749000,4,2.5,2930 +340000,4,1,1230 +561000,3,2,2000 +270000,3,2.25,1520 +600000,2,1,1040 +219900,4,1.5,1120 +617000,3,1.75,3020 +469000,3,2.25,1820 +229000,3,1,1370 +1.27E+06,4,3,3130 +365000,3,1.5,1640 +429000,4,2.5,2650 +550000,4,2.5,2850 +453000,3,2.5,1820 +187500,3,1.5,1180 +520500,6,2.5,1880 +300000,3,1.75,1280 +799000,4,3.25,3120 +338000,3,2.5,2470 +800000,3,1,1700 +360000,2,2,1180 +442500,6,2.5,2800 +700000,4,1,1300 +830000,5,3,3040 +360400,3,2.5,1630 +345000,3,1,1340 +300000,3,1.75,1830 +350000,3,1,1240 +368000,4,2,2500 +264000,3,1.75,1760 +435000,3,2,2660 +200000,3,1.5,2060 +620000,5,2.5,2540 +1.68E+06,5,4.25,4830 +337000,3,1.75,1400 +1.93E+06,4,3.25,4280 +544500,4,2.5,2230 +252000,1,1,680 +445000,4,2.5,2340 +379500,3,2.25,2070 +189950,4,2,1910 +469000,3,1,950 +600000,5,2.75,2910 +785000,3,2.5,2930 +372000,4,2.75,2610 +445000,5,3,3880 +508000,4,2.25,3320 +780000,5,1.5,1940 +541100,4,2.25,2510 +729000,4,2.5,2660 +397000,3,2,1710 +451555,2,1,1320 +300000,2,1,960 +416000,3,2.5,1790 +490000,2,1,950 +480000,6,3.75,2940 +368000,2,2,930 +1.04E+06,3,2.5,4570 +545000,3,2.5,2370 +850000,5,2.75,3430 +550000,4,3.5,3540 +600000,3,2.25,2240 +535000,4,2.5,2710 +599950,3,2.5,2660 +531000,5,2.75,2540 +530000,4,2.25,2210 +597326,4,4,3570 +805000,4,2.5,3450 +390000,4,1.75,2330 +487250,4,2,1690 +301000,3,1.5,1030 +1.18E+06,5,2.75,2560 +299000,4,2.5,1950 +2.35E+06,4,2.25,4370 +400000,4,2.5,2350 +467500,4,2.5,3160 +305000,4,2.5,2430 +210000,3,1,1340 +300000,3,1,1010 +327500,3,2.25,1770 +269000,3,2,1210 +975000,4,3.25,3330 +355000,3,1,1240 +712000,3,1,1250 +883000,4,2.5,2960 +190000,2,1,840 +443000,3,1.75,1530 +920000,4,3,3750 +285000,4,2.25,2150 +901000,4,3.25,1560 +552500,3,1.75,2040 +256000,2,1,860 +341000,3,1.5,1720 +279000,4,2.25,2090 +686000,4,2.25,2130 +225000,2,1,1300 +215500,2,1.75,1220 +950000,4,3,2420 +503000,4,2.5,2940 +780000,3,2.5,2610 +212000,4,2,1880 +580000,4,2.75,2330 +465000,4,2.5,2200 +206000,4,2,1720 +615000,3,2.5,2250 +519000,4,1,1640 +1.14E+06,4,3.25,4130 +330000,5,2.5,2600 +240000,4,1.5,1920 +574000,3,2,2060 +930000,4,4.25,5710 +850000,4,3,2720 +415000,3,1.5,1490 +480000,3,2.5,2360 +300000,5,1,1940 +439000,4,2.25,2570 +450000,3,1,1160 +589000,3,2.5,2660 +477000,3,2.25,1260 +587500,4,2.25,1780 +1.32E+06,4,2.25,3180 +1.43E+06,4,2.5,3380 +700000,4,2.25,2690 +275000,2,1,1180 +367500,3,1,1660 +453250,4,2.5,2260 +607000,5,1.75,1910 +255000,4,2,2430 +501000,2,2,1300 +450000,3,1,1060 +360000,3,2.25,2200 +460000,4,1.75,1720 +753000,3,1.75,2360 +389950,2,1,820 +469000,2,1,1030 +550000,4,1.75,2030 +565000,5,3.5,2700 +189650,2,1.75,1100 +1.53E+06,4,3.25,3620 +260000,3,1.75,1340 +243000,3,1.75,1790 +1.10E+06,4,2.5,3830 +249000,3,1.5,1580 +720000,2,1,2020 +905000,4,2.5,3330 +824500,4,2.5,2610 +762500,4,2.75,2610 +580000,3,2.5,1740 +380000,3,2,1840 +805000,3,1.75,1080 +520000,4,1.75,1240 +1.57E+06,5,4.5,5620 +175000,2,1,1170 +353500,4,2.25,1760 +500000,4,2.5,2230 +386500,3,1.75,1520 +210000,2,1,1450 +439500,3,2.5,1600 +315000,5,2.5,3220 +339000,4,2.5,1830 +655000,4,2.25,2200 +740000,2,2.5,2170 +685000,5,2.5,1900 +550000,5,2.5,2960 +405000,2,1.75,1710 +765000,4,2.25,2620 +625000,3,2,2140 +207000,4,2.5,2100 +370000,4,2.5,2100 +475000,3,2.5,1460 +365000,2,1,990 +411800,4,2.25,2190 +668000,5,3.5,3990 +618000,3,2.5,2340 +247500,4,2,2460 +345000,5,3,2080 +616300,3,2,1700 +348000,3,1.5,1330 +425000,3,2.5,1630 +850000,5,2.75,2920 +820000,5,2.75,2830 +832000,4,2.25,3190 +835000,3,1.75,1490 +350000,3,2.5,1630 +349000,4,2.5,2280 +1.13E+06,6,3.75,3010 +320000,3,2.5,1590 +150000,3,1,1250 +340000,3,1,1710 +785500,4,4,3280 +410500,4,2.5,3362 +580000,3,2.5,2200 +345000,2,1.5,830 +550000,3,2.25,2160 +449500,4,3,2580 +300000,3,1,2150 +915000,4,2.5,3510 +1.58E+06,4,3.75,3810 +599000,4,2.75,2020 +755000,4,2.5,2120 +400000,3,1,1250 +133000,3,1,980 +330000,4,1.5,1250 +330000,4,1,1100 +375000,3,1.75,1330 +485000,4,2.75,2560 +470000,4,2.5,1850 +1.05E+06,4,3,2790 +548800,4,1,1660 +315000,2,1,1080 +590000,3,2,3030 +439950,4,2.5,2380 +325000,3,1.75,2250 +400000,2,1,880 +685000,4,2.5,2770 +339950,3,2,1340 +315000,3,1.75,1660 +411753,3,2.5,1710 +577000,2,1.75,1620 +500000,3,1.75,1530 +210000,3,2,1440 +640000,4,1.75,2020 +460000,4,1.75,1870 +265000,2,1,620 +740000,5,5,5774 +230000,3,1,1240 +315000,3,1.75,1890 +432000,3,1.75,2410 +467000,3,2.5,1530 +255000,5,3.75,2800 +316500,3,1.75,1460 +190000,4,2,1580 +490000,3,2,1450 +378000,4,1.75,1990 +598800,6,4,4470 +333800,5,3,1980 +690000,4,2.5,2920 +320000,4,1.75,1660 +1.25E+06,4,3.5,3190 +335000,3,1.5,1560 +840000,3,2.5,3050 +608250,4,2.75,3030 +550000,3,2.5,2260 +240000,3,1,1260 +998000,3,2.25,3370 +275000,3,1.75,1490 +284200,3,2.5,1570 +1.72E+06,4,3.75,4490 +2.40E+06,4,3.75,4090 +930800,5,2.5,4150 +930000,4,3,2900 +215000,4,1.5,1430 +480000,2,1.5,1008 +483945,2,1.75,1480 +347000,3,1.75,1240 +232500,3,2,1370 +390000,4,2.25,1770 +550000,3,2.25,2160 +590000,4,2.5,2340 +420850,1,1,960 +345000,4,2.5,2280 +429800,3,2,1970 +302000,4,1.75,1530 +800000,4,1.5,1790 +250000,3,2.5,1700 +605000,3,2,2660 +412000,3,1.75,1950 +252000,3,2,1340 +375000,3,1,1130 +725000,2,1.75,1950 +471750,5,3.5,3790 +490000,4,2.25,2020 +439000,2,1,800 +355000,4,2,1770 +250000,1,0.75,940 +780000,4,2.25,2260 +409000,2,1,890 +420000,2,1,860 +200000,1,0.75,680 +830000,2,1.5,2130 +695000,3,2.5,2390 +815000,4,2.75,3488 +210000,3,1.75,1260 +635000,3,1.75,2940 +562500,4,2.5,2440 +402500,4,2.5,2600 +555000,3,2,2080 +310000,3,1,1990 +500000,4,2.5,2840 +430000,6,3,2630 +1.60E+06,3,4.25,2820 +627500,4,1,1560 +335000,4,2.5,2330 +962000,4,2.25,3320 +299000,3,1.75,1730 +399950,4,2.5,3110 +322000,3,1,1230 +430000,2,1.5,950 +307000,3,1.75,1890 +194000,3,1.5,1010 +180000,3,1,1010 +465000,4,2.25,2340 +722500,4,2.5,2460 +470450,2,1,1010 +280000,3,2.5,1650 +176250,4,2,1440 +560000,5,1,1710 +830000,3,2.5,2760 +276900,2,1,1350 +625000,3,1.75,1660 +1.02E+06,4,2.5,2960 +463500,1,1,1090 +485000,3,2.5,3110 +272000,3,2,1380 +305000,2,1,1290 +760000,3,2.5,1980 +387500,2,1,870 +352000,4,2.5,2470 +507000,3,1.75,2140 +156000,3,1,770 +580000,3,3.25,1490 +630000,4,2.5,2510 +275000,5,1.5,1950 +835000,5,4,3600 +340000,4,2.5,2380 +329350,2,1,720 +1.48E+06,3,3.5,4070 +475000,3,1,1250 +719950,3,2.25,2190 +235000,1,1,810 +875000,3,1.5,2440 +380000,4,1.75,1740 +325000,3,2.25,1480 +475000,4,2.5,2120 +152900,1,1,900 +210000,2,2,1190 +350000,4,1,1010 +505000,3,2.5,2100 +464900,4,2.25,2020 +650000,3,2,2520 +369950,2,2.75,1370 +250000,3,2.5,1530 +320000,3,2.5,1530 +2.53E+06,4,4.25,5040 +340000,4,2.25,2530 +440000,2,1.5,1010 +219950,3,1,1200 +940000,4,3,2720 +399950,4,1.5,1850 +1.57E+06,3,2.75,2340 +528000,4,1.75,1860 +545000,4,1.75,1940 +575000,2,2,1680 +235000,4,2.75,1770 +272000,3,2.5,1790 +380000,4,1.75,1720 +195000,3,1,1280 +297000,3,2.5,1690 +349000,4,2.5,2190 +320000,2,1,710 +319990,4,1.5,1890 +439900,2,2,1410 +429000,3,3.25,2210 +272500,3,2,1540 +400000,4,2,1350 +462000,5,2,1380 +510000,2,1,890 +550000,3,2.5,1900 +150000,3,1,1240 +460000,3,2.5,1730 +632500,4,2.5,2090 +361000,3,1.75,1650 +437000,3,2.25,1130 +370000,6,2.75,3240 +884250,4,2.5,3840 +225000,3,1,1200 +235000,2,1,870 +767500,6,3.5,2410 +1.20E+06,3,1.75,1560 +715000,3,2.5,2410 +417000,4,2.25,2300 +199000,3,1,1390 +875000,5,2.5,2920 +545000,4,1.5,1370 +192500,2,1,950 +822500,3,2.5,3090 +800000,4,2.5,2390 +1.25E+06,3,2.5,2070 +3.85E+06,4,4.25,5770 +295000,3,2.5,1460 +419000,2,1.75,1510 +1.20E+06,5,3.25,5180 +750000,4,2.75,3430 +502000,4,1.5,1700 +1.03E+06,3,1.75,2640 +398500,3,1,1200 +700000,2,1.5,1850 +248000,5,1.5,1510 +800000,4,2,2130 +383000,4,2.5,2640 +688000,4,3,3000 +521000,3,2,1870 +365000,2,1,990 +491000,3,2,2005 +643000,3,2.75,2030 +279000,3,2.5,1500 +583500,4,1,1530 +310000,3,2.5,1990 +310000,3,1.75,1420 +280000,3,1,1400 +272000,4,2.5,1870 +870000,4,3,3040 +307000,3,2,1790 +490000,2,1.5,1590 +399950,3,2,2050 +1.64E+06,5,3.5,4220 +989000,5,4.5,4030 +264950,4,1.75,1770 +491500,4,2.75,2100 +345000,3,2.25,2120 +339900,4,1.75,2600 +852000,3,3,2400 +585000,5,3.5,3180 +723000,4,2,2790 +594000,3,2.25,2080 +405000,2,1.5,1370 +725500,4,2.5,2790 +800000,2,1,1740 +1.33E+06,3,3.75,6400 +180500,3,2.5,1800 +325000,3,2.5,1800 +235000,3,1.75,1190 +330000,2,1,860 +678500,3,2,2460 +463000,4,2.5,1980 +250000,2,1,670 +655000,3,2,1410 +239900,4,2.25,1860 +185000,3,1,980 +1.74E+06,4,2.25,3040 +251700,3,2.25,1810 +400000,4,2,1560 +735000,4,1.75,2100 +1.70E+06,5,2,2500 +82500,2,1,520 +765000,4,4,3010 +292500,4,1.75,2140 +270000,3,2.25,2390 +415000,2,1,1510 +950000,4,1.75,2210 +353000,3,2.75,2170 +670950,3,2.5,1790 +280950,3,1.75,1390 +585000,3,1.75,1850 +525000,2,1.5,1480 +605000,3,1.75,1850 +1.01E+06,4,3.5,3350 +245990,3,1,1040 +535000,4,2.25,2810 +410000,1,1.5,1010 +550000,3,2.5,2250 +665000,3,1.75,1800 +455000,3,1,2400 +440000,4,1,1780 +332000,3,2.25,2120 +280000,3,2.5,1860 +570000,3,3.5,1460 +250000,3,1,1230 +238000,2,1,1088 +265000,3,1,800 +306000,3,1,1190 +345000,5,2.75,1940 +765000,4,2.5,3300 +346300,4,2.5,2590 +342500,3,2,2080 +501000,4,2.25,2680 +270000,3,2.5,1670 +638000,3,1,1830 +460000,3,1.75,1400 +760000,4,1.75,2770 +1.09E+06,3,2.5,3630 +234000,3,1,1040 +1.65E+06,3,2.75,2690 +488000,5,2,2020 +1.55E+06,5,2.5,2450 +499000,4,3,2030 +150000,3,1,1450 +333000,4,2.5,2400 +700000,4,2.75,2870 +275000,4,1,1340 +330000,3,2.5,1680 +360000,4,2,1850 +467000,3,1,1220 +568000,3,2.5,2320 +605000,5,2.25,3220 +750000,4,2.75,3190 +760000,3,2.75,3530 +265000,3,1.75,2050 +490000,3,1.75,1720 +360000,4,2.5,2850 +311750,4,2.25,2270 +399000,3,2.25,1880 +347000,4,2.5,2770 +1.68E+06,4,3.75,4490 +585000,4,2.5,3110 +340000,4,2.5,2360 +612000,3,2.5,2180 +230000,2,1.75,1910 +604000,4,2.5,2260 +250000,3,1.75,1770 +258500,3,2,1460 +783000,4,2.75,2080 +1.05E+06,5,2.25,2960 +760000,4,2.5,3220 +276000,3,1,1140 +550000,4,2,1660 +398000,4,1,1430 +775000,3,3,1820 +1.03E+06,4,3,3540 +327000,4,1,1620 +564500,4,2.75,3100 +782000,4,1.75,1500 +398000,4,2.5,2820 +257000,3,1.75,1850 +235000,4,2,1570 +453000,4,2.75,2300 +535000,2,1,920 +275000,3,2.5,1600 +665000,3,2.5,2630 +670000,4,2.75,3020 +465000,3,1.75,1490 +210000,3,1.5,1160 +265000,4,2.5,2040 +426000,2,2.5,1550 +529219,4,2.25,1990 +600000,3,2.25,1900 +875000,5,3.5,3840 +608000,4,3,2400 +220000,3,1,1660 +1.76E+06,4,5,6055 +295450,3,2,2030 +315000,2,1,840 +205000,4,2,1450 +310000,3,1.5,1460 +1.00E+06,5,1,2010 +525000,4,2.5,2910 +284000,4,1.75,1880 +510000,3,1.75,2170 +405000,2,1,1260 +509950,3,2.5,1970 +600000,4,2.25,2090 +990000,4,3.75,3450 +280005,3,1.5,1130 +700000,3,1.75,2600 +330000,3,1,1030 +340000,2,1,1700 +468000,2,2.5,1480 +1.34E+06,4,2.5,4250 +515000,3,1.75,1600 +245000,4,2,1870 +265000,3,2.5,1440 +372400,3,2.5,2720 +390000,3,1.5,1240 +208000,3,1,1020 +273000,2,0.5,1180 +455000,5,3.5,3080 +270000,4,2.5,1750 +618000,4,2.25,2530 +213550,3,2.5,1580 +210000,5,1.75,2340 +2.75E+06,5,4,6300 +403500,4,2.75,2400 +235000,3,1.5,1300 +287500,3,2,1760 +546800,4,1.5,1520 +183000,3,1.75,1070 +560000,3,2,2560 +299500,3,1,1280 +610000,4,2.25,1660 +288350,3,1.5,1860 +500000,2,1,950 +625000,4,2.75,2140 +418000,2,1.5,1480 +660000,3,3,2260 +775000,4,2.5,2300 +429500,3,2.75,1650 +569000,3,2,1990 +250000,4,2,1960 +225000,3,1.5,1310 +530000,4,2.75,2450 +306000,3,1,910 +517100,3,1.75,1580 +354950,3,1.75,1780 +348000,3,1.5,1040 +522250,4,2.5,2340 +275000,3,2.5,1720 +390000,3,1.5,1600 +260000,3,1.5,1320 +585000,5,2.75,2350 +605000,5,2.75,2740 +342000,4,2.5,2300 +900000,5,3,4350 +252000,3,1.75,1430 +357000,3,1.75,2400 +370000,3,1,940 +322500,3,1,1020 +210000,2,2,1680 +290000,2,1,1340 +860000,4,3.25,3960 +302000,6,2,2650 +369160,4,2.25,2120 +1.19E+06,4,2.75,2850 +993000,4,2,2850 +380000,6,2,1870 +635000,4,2,2660 +260000,3,1,1190 +243000,2,1,1770 +1.40E+06,4,2.5,2770 +665000,4,2.5,2080 +898000,5,2.25,2700 +583000,4,2.75,2200 +429000,4,1.75,2160 +471000,3,2.5,2010 +1.81E+06,3,3.5,3780 +739500,3,3.25,4460 +450000,3,1.5,1770 +552500,3,1,1430 +437000,4,1.75,1700 +270000,4,2,1830 +226740,3,1.5,1410 +446500,4,2.5,3060 +283000,3,2,1820 +445000,4,1.75,2430 +250000,2,1,740 +307000,3,1,770 +315000,4,2.75,2200 +555000,3,3,2920 +264900,4,2.5,2040 +510000,3,2,1600 +328000,4,2.5,1990 +358000,4,2.5,1830 +325000,3,2.5,2540 +1.37E+06,2,3.25,2700 +230000,4,2,1440 +545000,3,2,1550 +705380,3,2.5,2490 +459000,5,2.5,2650 +815000,4,2.25,2000 +495000,6,5,3440 +520000,3,2.5,2280 +430000,2,1.5,1320 +255000,4,2.5,2070 +588000,3,2,1860 +350000,3,1,940 +625000,4,2.75,2290 +172500,2,2,1510 +554000,3,2,1830 +775000,4,2.5,3090 +1.19E+06,4,3.5,4340 +618000,3,2.75,3200 +305000,4,1,1560 +232000,3,2,1280 +262000,4,2.5,2020 +234000,3,1,1040 +500000,4,2.75,2260 +278000,3,1,860 +230000,5,1,1920 +500000,4,1.75,2290 +366500,4,2.75,2070 +665000,6,3,4250 +1.10E+06,3,1.5,2220 +575000,2,1.75,1840 +674750,4,2.5,2590 +719000,5,2,3110 +482000,3,1.75,2600 +254000,2,1,1060 +443725,3,1.75,1250 +575000,4,2.5,2520 +469000,3,2.25,2070 +175000,2,1,1300 +437000,5,2,2190 +550000,4,3,2760 +172040,3,2.25,1710 +363000,3,2,1750 +282000,3,2.25,1552 +400000,6,2,2350 +650000,5,3.5,5110 +365000,3,2.5,1720 +269950,4,2.5,1960 +260000,2,1,1270 +193000,3,1.5,1180 +340000,4,2.25,2230 +900000,4,3.25,4700 +371000,3,2.5,2150 +592000,3,2.5,2400 +300000,3,2.5,1830 +449950,4,3,2800 +299500,3,2.5,2090 +995000,4,2.25,2340 +335000,4,1.75,1670 +280000,4,2.25,1990 +446000,4,2.25,2270 +1.54E+06,4,2.75,4910 +325000,3,1,950 +450000,3,1.75,1610 +322500,4,2.5,1940 +453000,3,1,1210 +655000,4,2.5,2570 +603000,3,2.25,1700 +235000,4,1,1610 +968933,4,3.5,4120 +1.02E+06,3,3.5,2880 +435000,4,2.25,1990 +242000,3,2,1260 +487000,6,3.25,4750 +810000,4,2.75,3010 +625000,3,2.5,2410 +165000,3,1.5,1280 +335000,3,1,2320 +286700,3,1,1220 +699000,2,1.5,1400 +280000,3,1.75,1590 +580000,4,2.5,2220 +754800,2,2.5,2770 +525000,4,2.5,2303 +562000,3,1.75,1600 +575000,4,1.75,1280 +808900,5,2.5,2900 +992000,3,2.25,2950 +335000,3,2.5,1700 +473000,3,2.75,1050 +350000,4,2.75,2990 +1.60E+06,5,2.5,3100 +305500,3,1,1240 +306000,2,1,780 +233000,2,2.25,850 +490000,3,1.75,1540 +445000,4,2.5,2280 +355000,3,2.25,2550 +360000,2,2,1770 +737500,3,1.75,2320 +985000,3,3.5,2600 +349950,2,3.25,1570 +520000,4,2.5,3060 +355950,4,2.5,1960 +485000,5,2.5,3270 +143000,3,1,1090 +3.28E+06,2,1.75,6840 +355000,3,1,940 +1.13E+06,5,3.5,3880 +200000,5,1.75,1770 +913000,4,2.5,3640 +1.60E+06,3,2.5,3160 +409900,2,2.5,1590 +265000,4,1,1290 +740000,5,3,3655 +306000,4,2.5,2490 +381000,3,2.5,1470 +1.22E+06,3,3.25,3960 +1.05E+06,3,3.5,3190 +408000,2,1,810 +739900,5,2.5,2980 +674250,4,2.5,2780 +438400,2,1,1340 +1.70E+06,5,5,4930 +703000,3,2,1360 +262000,3,1.75,1320 +353000,3,2,1210 +500000,4,2.5,1940 +1.28E+06,4,2.5,3160 +332000,4,2.5,1980 +824000,4,2.5,2320 +290000,4,2,1660 +700000,3,2.5,1660 +550000,2,1,1080 +549000,2,1,1510 +1.87E+06,4,2.5,2950 +858000,4,2.25,3070 +345000,2,1,970 +340000,4,1.75,2140 +1.22E+06,4,2.25,2570 +275000,3,2.25,1260 +405000,3,1,1220 +432500,3,2,1720 +236500,4,1,2140 +679000,4,1.5,1420 +543000,4,2.5,2060 +294000,3,1,1320 +340500,3,1.75,1810 +1.01E+06,4,2.5,2980 +335000,2,2,1350 +425000,3,2,1540 +353000,3,2.5,2510 +540000,3,2.5,1670 +640000,5,3.5,3690 +339950,3,1,1320 +195000,3,1.75,1510 +322000,3,1.75,1510 +660000,4,1.75,1870 +280000,6,3,2400 +300000,6,3,2400 +207500,3,1,1170 +195000,3,1.5,1190 +700000,3,2,2080 +560000,4,1.75,2150 +260000,3,1.75,1580 +575000,3,1.75,1580 +475000,3,2.5,2370 +285000,3,1.75,1840 +753888,4,2.5,2660 +650000,3,2.5,2190 +620000,3,2.25,1660 +526000,3,1.75,1780 +155000,2,1,700 +342000,4,2,1570 +390000,3,1.75,1220 +685000,3,2.75,3150 +608000,4,2.5,2690 +179900,2,1,680 +1.25E+06,6,3.25,3750 +166000,3,1,1010 +462000,3,1.5,1710 +545000,4,2.5,2090 +415000,3,1,1560 +269000,3,2.5,1560 +356500,4,2.5,2570 +225000,3,1,1010 +175000,2,1,1020 +549000,5,2.5,1710 +535000,3,2.75,2300 +627000,4,2.25,1990 +565000,3,2,2730 +392450,4,2,2195 +509000,2,2,1560 +340000,3,2.5,1400 +537000,3,2.5,1400 +865000,4,3,3690 +358000,2,1,1140 +595000,4,2.25,1920 +661000,4,2.5,2496 +419950,3,2.25,2280 +490000,4,3.5,3200 +525000,2,1,880 +350000,3,2,1320 +552500,3,2.5,2450 +210000,3,1,1040 +390000,3,2.5,2480 +336800,5,1.75,1830 +465000,3,2.5,1440 +299900,4,2.5,1580 +715000,3,3.25,3230 +235000,4,2.5,1810 +276000,3,2.5,2495 +265000,4,1.5,1740 +425000,3,1.75,1680 +313000,4,2.5,2460 +715000,3,2.5,3050 +265000,3,2.25,1630 +646000,3,2.75,2460 +175000,3,1,1030 +649000,3,2.5,3410 +785000,3,2.75,2310 +890000,4,2.75,2610 +612000,3,3,2330 +330000,4,2.5,2980 +493000,3,2.25,1790 +1.60E+06,4,2.25,2940 +1.62E+06,4,3,3900 +1.65E+06,4,3,3900 +499000,3,2.5,1750 +603500,6,2.75,2660 +530000,2,1.5,1580 +895000,5,2.5,2350 +267345,4,2.25,2510 +275000,3,2.5,1480 +439950,3,1.75,1720 +455000,3,2.25,1470 +630000,3,1.75,1540 +690000,3,2.5,2820 +212000,4,1.75,1250 +231500,4,2.25,2080 +1.24E+06,4,3.25,5180 +378500,3,2.5,2860 +482000,4,2.5,2710 +695000,2,1,1140 +965000,4,2.5,4070 +675000,3,1.75,1710 +387000,3,1.5,1340 +347500,4,2.75,2290 +385000,3,2,1860 +265000,3,1,1080 +406000,3,1,960 +134000,2,1.5,980 +415000,3,1,1500 +375000,3,1.75,1440 +620000,4,2.5,2580 +337500,5,2.5,2070 +565000,3,2.5,1880 +399500,3,1.75,2420 +1.07E+06,2,1.75,1890 +352500,3,2,1920 +259000,3,2,1870 +320000,2,1,900 +733000,3,2.5,2160 +381500,2,1,900 +343000,2,1,1180 +205500,2,1,900 +525000,3,2,1600 +300000,3,1.75,1500 +299000,2,1,1070 +561000,4,2.5,2570 +450000,3,1,1210 +540000,4,2.5,1850 +379000,3,2.5,1740 +230000,3,1,1300 +399950,3,2.5,2000 +355000,5,2.5,3220 +580000,4,2.25,2160 +700000,3,2,2130 +279900,3,1.75,1580 +210000,3,1,1200 +1.17E+06,3,3,3790 +290300,2,1,860 +1.60E+06,5,4.5,5130 +490000,3,1,1600 +606000,4,2.5,2110 +359950,3,1,1400 +677100,3,2,2110 +465000,3,2,1430 +4.50E+06,5,5.5,6640 +500000,3,2,3040 +455000,2,1,980 +705000,6,2,2570 +420000,3,2.5,2060 +169575,3,1,1300 +250000,3,1,1300 +530000,3,2.25,1680 +590000,5,3.25,4020 +257500,3,1.75,1530 +415000,3,1,1170 +536000,3,1.75,1580 +246500,3,1.5,1270 +395000,3,1.75,1480 +739000,3,2.25,2220 +1.27E+06,4,2.75,3200 +190000,3,1,910 +305000,3,1.5,1480 +925000,4,4.25,3770 +895000,4,3,3500 +656000,3,1.75,1480 +560000,4,1,1660 +610000,5,2.25,2520 +645000,4,2.5,2850 +259000,3,2.5,2153 +980000,4,2.5,3780 +872000,4,4,3770 +1.00E+06,6,2.75,3600 +900000,3,2.75,2980 +475000,4,1.5,2320 +350000,5,2.75,2980 +840000,4,1.75,2930 +500000,4,2.5,2040 +202500,3,1.5,1510 +523000,4,2.5,2660 +225000,3,2.5,1740 +418200,3,2.25,2240 +356500,4,1.75,1570 +670000,4,3,2500 +456150,3,2.25,1750 +471000,4,2.5,3030 +558000,3,2.5,1680 +1.38E+06,6,4.5,5740 +161500,3,1,1220 +311000,3,1,1310 +470000,6,1.75,2490 +569000,3,3.25,2220 +689000,4,2.5,2240 +271900,3,1.75,1890 +278000,4,2.5,1850 +820000,2,2.5,2210 +399500,3,1.75,1410 +462000,3,2.75,1890 +347500,3,1,1830 +562100,2,0.75,1440 +230000,2,1,950 +687000,4,2.5,2370 +725786,4,2.5,3070 +315500,3,1,1300 +312000,4,2,1300 +343000,3,3.25,1210 +385195,1,1,710 +415000,4,2.25,2240 +461000,3,1.75,3600 +369990,4,2.5,1960 +349950,4,2.5,1820 +285750,3,2.25,1960 +542500,4,2.25,1750 +830000,5,3.5,3700 +705000,4,2.5,2910 +615000,2,1,1270 +184500,2,1,720 +412000,2,1,1040 +250000,3,1.5,2210 +580000,5,2,2060 +220000,2,1,780 +675000,4,2.75,2240 +373500,2,1,800 +662700,2,1.5,2440 +239950,5,1,1460 +383000,3,1,1150 +485000,3,2.75,2650 +610000,4,2.75,2600 +545000,6,1.75,1820 +780000,2,2.5,2560 +305000,3,2.5,1714 +405000,3,1,1330 +1.11E+06,5,3.5,7350 +273000,3,1.75,2050 +326500,3,1,1810 +365000,3,1.75,1380 +1.00E+06,3,2.75,3070 +422500,2,1,800 +354450,4,2.75,2140 +320000,3,1,1330 +223000,3,1,1030 +410000,3,2.5,1740 +438000,3,1,1200 +390000,3,3,1490 +298500,4,2.5,1890 +749999,5,2.25,3060 +779000,6,2.5,3250 +570000,3,2.75,2730 +385000,3,1,810 +649000,4,2,2240 +283000,3,1,1740 +699900,4,2.25,2380 +278500,4,1,1540 +700000,4,1.75,2340 +535000,4,2.75,2710 +234500,3,1.75,1310 +374150,3,1.75,1390 +397000,4,2.5,2201 +613000,3,2.25,1960 +1.15E+06,3,2.5,2850 +595000,4,1.75,1880 +340000,5,2.75,2440 +388000,4,2.5,2560 +404000,3,1.75,1410 +810000,3,2,2870 +405000,4,2.5,2620 +726000,5,3,2970 +266000,3,2.5,1780 +722500,5,2.25,3700 +352000,4,2.5,1252 +265000,4,1.5,1240 +856000,3,2.5,2160 +346950,3,2.5,2040 +866059,5,3.5,3130 +410000,3,2.5,2350 +370000,3,1.75,1570 +230000,3,1,1530 +400000,2,2,1520 +172000,3,1,1350 +615000,3,1.75,1950 +860000,4,3.5,3950 +555000,3,1.75,2040 +579000,3,2.5,1990 +385000,3,1.75,1300 +420000,4,2.25,2030 +645000,3,1.75,2340 +549950,3,2.5,2160 +678000,3,2.75,2770 +199000,4,2,2030 +604000,3,1,1440 +268000,5,1.75,1730 +960000,5,3.5,4510 +509250,3,2.5,2100 +416000,3,2.5,1800 +190000,3,1,1090 +212000,3,1.5,1010 +325900,3,2.5,2040 +560000,3,3.5,2270 +275000,3,2.5,1730 +665000,4,2.5,2480 +1.51E+06,4,3.5,3480 +375000,4,2,1720 +359950,3,1.75,1570 +340000,4,2.75,3527 +401000,2,1,840 +669000,2,1.75,1950 +638500,4,2.5,1980 +545000,2,1.5,1620 +524000,4,1,1980 +1.61E+06,5,3.75,3530 +280000,2,1,1260 +828000,4,2.5,2120 +223000,3,1.75,1360 +1.29E+06,4,3.5,3100 +750000,2,2,2370 +430000,2,1,1460 +711000,4,1.75,1980 +310000,4,2.5,1930 +415000,5,1.75,3700 +274900,4,2.5,1970 +525000,3,3,2470 +179500,3,1,1180 +478000,3,1,1280 +195000,3,1.75,1380 +385000,4,3,2740 +401000,3,2.75,2020 +522000,4,2.5,2835 +330000,4,1.75,1520 +503000,3,2.5,2190 +175000,5,1.75,1680 +963990,4,3.5,3915 +845000,5,2,1720 +157500,2,1,670 +450000,2,3,1790 +925000,4,1.75,2440 +600000,2,1,920 +709000,4,1,1680 +1.39E+06,5,3.75,3290 +248000,3,2.5,2120 +245000,3,1,910 +332000,2,1,1000 +459950,3,2.5,2340 +425000,3,2,1180 +460000,3,2.25,2080 +838300,6,2.5,3760 +256000,3,2.5,1480 +864000,3,2.75,3060 +900000,4,3.5,3070 +145600,3,1,1170 +865000,5,3,2900 +250250,3,2.25,2210 +162000,4,2,1440 +450000,4,1.75,1980 +675500,4,2.75,2060 +697000,3,2.25,2420 +1.32E+06,3,3.25,3440 +490000,3,1.75,1600 +590000,3,2.25,2210 +280000,4,1.75,2250 +515000,2,1,1680 +576000,3,1,1140 +375000,3,1.75,1430 +478000,3,1,1440 +282000,3,1,1670 +1.40E+06,4,4.5,3080 +593500,5,3.25,4300 +724950,4,3.5,3010 +306000,3,1.75,1560 +341000,4,1.75,1920 +399950,3,2.5,1400 +534000,5,2,2280 +635000,6,2.5,3880 +350000,2,1,1350 +856000,3,1.5,1480 +582000,4,3,1670 +799000,4,2.5,3400 +423700,3,2.5,2070 +1.84E+06,4,3.5,4870 +322000,3,2,1760 +929000,4,3.25,4030 +443000,2,1,1130 +441500,3,1.75,1510 +875000,4,3.5,3110 +3.60E+06,3,3.25,5020 +450000,2,1,740 +425000,3,2.25,1630 +660000,4,1.75,2780 +763101,3,1.75,1990 +499000,4,2.75,2250 +521000,3,1.75,1720 +302000,2,1,900 +293000,4,2.25,2360 +335000,3,2.25,1530 +499000,2,1,1450 +600000,3,1.75,2040 +720000,4,1.75,2620 +195000,2,2,1180 +249000,3,1,1110 +334000,3,2.25,1840 +599950,4,1.75,2720 +149900,2,1.75,1090 +700000,4,1.75,1730 +525000,4,1.5,1170 +1.05E+06,4,3.75,4740 +402000,3,2.5,1960 +450000,3,2,1430 +520000,3,2.25,2510 +205000,3,1.75,1420 +635000,3,2.25,2680 +210500,3,1,1220 +406650,2,1,1070 +350000,3,1.75,1580 +425000,4,1.75,1820 +798000,3,3.5,3590 +180000,3,1,1960 +1.25E+06,5,3.25,3160 +435000,4,2,2030 +355000,3,1.5,1240 +3.00E+06,5,3.25,5370 +685000,5,2.5,2670 +311000,3,1,1640 +305000,4,2.25,2130 +675000,3,2.5,2550 +769000,4,2.75,3630 +430000,3,1.5,1690 +516250,6,2,2390 +760000,3,3.5,2350 +579950,3,3.5,1420 +476000,3,2.25,1570 +510000,3,1.75,1600 +205000,2,1,720 +240000,3,1,1470 +738000,5,3.5,2790 +420000,3,1.75,1720 +455000,3,1.75,1300 +765000,4,1,2520 +372000,4,1.5,1780 +160000,3,1,1200 +772000,4,2.5,2990 +1.13E+06,5,1.75,1910 +479000,3,1,1370 +570000,3,2.5,1910 +350000,4,1,1170 +353000,3,2.5,1250 +699000,5,2.5,3340 +265000,3,2,1380 +167000,1,1,780 +500000,4,2.25,2080 +700000,3,1,1410 +295000,1,1,520 +1.01E+06,4,3.5,3500 +209000,2,1,840 +276000,3,1.75,2240 +380000,4,2.5,2100 +315000,3,1.5,1750 +685530,4,2.5,3130 +254600,3,2,1470 +230000,3,2,1440 +335000,3,3,1430 +550000,4,2.5,2170 +123300,3,1,1150 +275436,4,2.75,2170 +325000,4,3.5,2630 +635000,4,2.5,2490 +513000,3,1.75,1710 +580000,4,2.5,2130 +225000,3,1,940 +265000,3,1,1400 +313000,4,1.75,1630 +296000,2,1,1370 +655500,4,2.75,2380 +250750,5,1.75,2140 +438000,4,2.5,1970 +590000,3,2.75,2550 +329500,3,1,1080 +1.20E+06,3,2.25,3070 +415000,2,1,1470 +900000,4,2.5,3620 +378000,3,1.5,1050 +474000,2,1,1050 +464000,3,1,1320 +310000,3,1,1210 +580000,3,1.5,1860 +999000,3,2.75,2830 +510000,2,1,810 +650000,3,1.5,1630 +196000,3,1,880 +220000,4,1.75,1660 +855000,3,2.25,3440 +483000,3,1.75,2110 +400000,3,1,1060 +435000,3,2.5,1900 +219500,1,1,820 +2.95E+06,4,3.5,4860 +427000,3,2.5,2050 +430000,2,1.5,1090 +685000,2,1.5,1090 +495000,2,1.5,1920 +299950,3,2.5,1870 +390000,4,1.75,2690 +385000,3,1.75,2160 +740000,4,2.5,3000 +991700,4,3,2290 +765000,3,2.75,2250 +802000,4,2.25,2130 +950000,4,2.75,2500 +392000,4,2.5,2300 +590000,3,2.5,3360 +425000,4,2.5,1920 +765000,5,1.75,2440 +313500,3,2.25,1440 +320000,3,1,1780 +604000,4,1.75,1490 +570000,3,2,1400 +639000,4,2.5,2150 +335000,4,2,1910 +896000,4,1.75,2660 +259500,3,1.75,1650 +637000,3,2,1980 +307450,4,2.75,2690 +535000,3,1.75,1380 +669500,4,2.25,2500 +259000,3,1.75,1590 +441000,4,1.5,1100 +228800,4,2.5,1470 +530000,2,2,1680 +524000,2,2,1450 +430000,4,2.25,2020 +1.33E+06,4,3.25,2470 +210000,3,1,1230 +449000,4,2.5,1850 +945000,2,2.5,2540 +200450,3,1,970 +219950,3,1.5,1070 +659500,4,3,2620 +746000,4,2.75,2110 +540000,3,1.75,2110 +485000,5,2,1910 +202000,2,1,670 +2.53E+06,4,5.5,6930 +502000,3,2.75,2010 +279000,2,2.75,1770 +409500,3,1,1340 +453000,3,2,1660 +367000,4,1,1820 +550000,3,2.5,2510 +273500,3,1.5,1560 +505000,4,3,2280 +770000,3,2.5,2650 +565000,4,2.25,2470 +316000,3,0.75,1270 +160000,4,1,1520 +170000,3,1,1310 +235000,3,1,1310 +1.80E+06,4,3.5,3930 +310000,3,1,990 +285000,4,1.75,2080 +280000,2,1,960 +2.30E+06,4,4.25,4070 +763776,4,2.5,2750 +530000,5,2.75,3230 +362000,1,1,890 +430000,2,1,990 +456500,3,1,1290 +445000,4,2.5,2170 +386900,3,1,1330 +479000,3,1,1340 +525000,3,2.5,2200 +272000,4,1.75,2520 +517000,4,1,1180 +615000,3,1.75,2660 +439000,3,1.75,1250 +716000,3,2.5,2270 +308000,2,1,1080 +800000,3,2.25,1620 +575000,3,2,940 +219950,3,1.5,1620 +770000,4,2.5,2350 +424950,3,1.75,2090 +387000,3,2.25,1760 +790000,4,1.75,2050 +156000,2,1,600 +580000,2,1,2540 +490000,4,2.25,2090 +950000,5,3.25,2700 +400000,2,2.5,1410 +325000,2,2.5,1170 +365000,4,2.5,2540 +255000,3,1.75,2190 +985000,5,3.5,3890 +595000,4,2.5,2030 +427500,3,1,1350 +728000,3,1.5,1940 +549950,2,1,1260 +650000,3,2,2800 +1.13E+06,5,3.25,3080 +203000,3,1,840 +311000,2,1,860 +387500,6,2,2400 +370000,4,2,1640 +228000,2,1,1060 +740000,2,1.75,2080 +200000,4,2,2090 +660000,3,1,1240 +275000,4,2,2030 +708000,2,1,1120 +280000,3,2.5,1270 +325000,4,2.5,2260 +495000,3,2.5,1780 +691000,2,2,1780 +2.29E+06,4,2.5,4080 +329500,3,2.5,2120 +348000,3,2.5,2060 +425000,2,1,1670 +210000,3,1,1080 +285000,2,1,1210 +222000,3,1,990 +200000,4,2.5,1720 +247500,3,2,1530 +1.50E+06,4,5.5,6550 +190000,3,1.75,1100 +975000,4,2.5,3020 +1.13E+06,4,3,3180 +283200,4,1.75,1830 +650000,3,2.5,2540 +449500,3,2,1770 +400000,3,1.75,1470 +89950,1,1,570 +158800,3,1,960 +870000,4,3,2940 +196000,3,1.5,1000 +850000,3,1.75,2450 +775000,4,2.5,3310 +483500,3,2.5,1670 +387000,3,1.5,1620 +900000,3,3,2990 +336000,3,1.5,1240 +415000,2,1,670 +380000,0,0,1470 +350000,3,1.5,1320 +1.32E+06,4,5.25,6110 +765000,3,1.75,2440 +527000,4,2.5,2900 +524000,4,2.75,2310 +448000,2,1,1110 +775000,4,3.25,4100 +176500,3,1,930 +750000,4,2.25,2420 +1.27E+06,4,2.25,2870 +250000,3,1,1480 +759000,3,2.75,1960 +640000,3,2,1470 +990000,3,3.25,2460 +395000,4,1.75,1960 +275000,2,1.5,1160 +390000,3,2.5,1910 +752500,5,2.75,2720 +450000,2,1,1020 +473000,2,1,900 +178500,3,1.75,1120 +485000,3,2.5,2340 +215000,3,1.5,1410 +589000,4,1.75,1920 +325000,4,1.75,1370 +580000,3,2.5,1590 +181100,4,1.75,1850 +345000,3,2,1430 +781000,3,1.75,1940 +402500,4,1,1270 +426000,3,1.5,1380 +389000,3,2.5,1720 +670000,6,3,4050 +1.51E+06,4,3.25,3660 +288400,3,2.25,1870 +700000,4,2,2230 +830000,4,3,2020 +1.90E+06,2,2.75,3690 +350500,2,1,1450 +431000,3,1.75,1630 +485000,3,2.5,1840 +780000,3,1.5,1620 +720000,2,1.5,1840 +415000,3,1,1360 +480000,4,1,2080 +452250,4,2.25,2550 +316000,3,2.5,2550 +700000,2,1,1160 +285000,4,2,1760 +575000,3,1.75,1720 +590000,3,2.25,2300 +587500,4,1.75,2500 +364000,4,2.25,1750 +490000,3,2.5,1890 +410000,3,2.25,1800 +520000,3,2.5,2160 +389000,3,1,1380 +450000,2,1,1180 +325000,3,2.5,2550 +660000,2,1,1070 +850000,3,2.25,2870 +285000,3,2.5,1940 +395000,2,1,870 +440000,3,2,1550 +249000,3,1.75,1400 +635000,3,1.75,1210 +515000,3,2.5,3430 +1.40E+06,3,3.25,3020 +200000,2,1,950 +1.14E+06,4,2.75,3370 +445000,4,1,1460 +555000,3,1.5,1740 +537000,4,2,1720 +315000,3,1.75,1480 +805000,5,2.5,3320 +414000,4,2.5,3490 +375000,2,1.5,1160 +401000,4,1.75,3010 +210000,3,1,1030 +365000,2,1,980 +178000,5,1.5,1990 +710000,2,1,1790 +255000,2,1,810 +528000,5,2.25,2940 +537000,4,4.25,4883 +442000,4,1.5,1360 +375000,3,1.75,1370 +637250,4,2.5,2120 +427500,3,1.75,1240 +700000,4,2.5,2770 +680000,3,1.75,1660 +393820,2,2,1170 +525000,4,2.75,2470 +505000,2,1.75,1310 +555565,3,2,1670 +650000,3,1.75,1660 +632500,5,3.25,3500 +269000,3,2.5,1440 +405000,4,2.75,2360 +845000,3,3.5,3460 +234000,3,1,1750 +638000,4,1.75,1470 +290000,3,1.75,1710 +262000,1,0.75,520 +270000,4,2.5,2350 +875000,4,2.25,2380 +299000,3,2.25,1920 +551000,3,1,1580 +350000,3,2.75,3070 +1.90E+06,3,2.5,2660 +511718,2,1.75,1700 +965000,4,3.25,5010 +475000,4,2.25,2680 +1.06E+06,4,2.75,2720 +252000,2,1,940 +580000,6,2.5,3596 +374950,2,2.25,1240 +739000,5,4,4660 +271000,4,1.75,1710 +230000,2,1,930 +210000,3,2.25,1430 +350000,3,2.75,1650 +491500,3,2.25,1560 +325000,3,2.5,1870 +190000,3,2,1320 +658600,4,2,1400 +299950,3,1.5,1940 +464000,5,2,2000 +308000,3,1,1640 +625000,3,1,1020 +240000,3,1.75,1630 +530000,4,2.5,2940 +1.00E+06,5,4.5,2120 +439000,1,1,790 +575000,4,1.75,2020 +418000,3,1.75,1530 +1.21E+06,4,3.75,3250 +1.10E+06,4,3.75,2930 +1.90E+06,3,3.75,3150 +580000,3,2.5,2180 +380000,2,1,1040 +256000,3,1,880 +349950,3,1,1400 +691500,4,2.5,2600 +556000,3,1.75,1590 +218000,3,2.25,1610 +425000,4,2,1390 +935000,3,3.25,3710 +732000,4,1.75,2360 +805500,3,1,1440 +507250,3,1.75,1400 +800000,4,2.5,4600 +600000,3,2.25,2100 +627800,4,1.75,2010 +660000,2,2.25,2550 +153503,2,2.5,1240 +456500,3,2.25,2090 +1.31E+06,5,2.5,2770 +843500,3,2.5,3560 +625000,3,1,1240 +527000,2,1.75,1640 +1.97E+06,5,3.75,3940 +1.00E+06,5,2.5,3150 +855000,4,3,2550 +725000,4,3.25,3940 +315000,1,1,580 +180000,3,1.75,1330 +700000,2,1,930 +476500,3,1,1060 +193000,3,1.5,1180 +295000,4,2.5,1850 +363000,2,1,820 +875000,4,2.5,3600 +257200,3,2,1850 +555000,3,2,2240 +380000,3,2.25,1860 +282000,4,2.75,2390 +545000,4,2.5,2040 +550000,3,1.5,1900 +921500,3,1.5,1900 +885000,3,1.5,2200 +820000,4,2.25,2280 +289000,3,1,1090 +334000,1,1,670 +206000,3,1,1050 +491950,3,2.25,2090 +430000,3,2.5,2030 +208000,3,2,1250 +245000,4,2.25,2600 +426000,2,1,640 +400000,3,2.5,2120 +553000,3,1,1330 +296000,2,1,750 +428000,3,2.5,2230 +325000,4,2.5,1890 +294000,2,1,820 +410000,3,1.75,1880 +590000,4,4.25,2360 +445000,3,2.25,1850 +921000,4,2.5,2310 +496000,3,1.5,2520 +95000,2,1,800 +359000,4,1.75,1580 +452500,3,2.5,2430 +555000,4,1.75,2350 +549900,5,3,3800 +569000,5,3,3670 +318500,4,2,1780 +487028,2,1.5,1295 +240000,3,1,1350 +253000,3,2.25,1440 +380000,5,1.75,1320 +250000,2,0.75,700 +368500,2,1.75,2510 +340000,3,1,3180 +400000,2,1,910 +835000,3,2,1570 +299000,3,2.5,2450 +1.68E+06,6,2.25,4910 +265000,3,2,1570 +437500,4,2.5,2680 +865000,3,1.75,2090 +626000,3,2,2150 +247300,2,2,1140 +2.08E+06,4,3.5,4230 +425000,3,1,1790 +905000,5,3.5,3100 +641250,3,2.5,2220 +675000,4,2.5,2370 +845000,4,2.75,4070 +401500,4,1,1790 +395000,3,2.5,1610 +1.10E+06,5,2.75,2830 +145000,3,1,1010 +900000,3,1,1560 +374500,3,1.5,1330 +850000,4,2.25,2330 +490000,3,1,960 +304000,3,2.5,1710 +400000,4,2.25,2230 +454000,3,2,1700 +160000,2,2,1040 +542000,3,1.75,1070 +403500,5,2.5,3600 +418000,4,2.5,2750 +406000,4,1.5,1920 +242500,3,2.25,1770 +425000,4,2.5,2460 +613000,4,2,1550 +189000,3,2,1460 +700000,4,2.25,2440 +750000,3,1,1640 +494000,2,1,1290 +700000,4,3,3150 +705000,2,2.5,2305 +356000,2,1.75,1060 +625000,3,1.75,2060 +144975,2,1,900 +970000,4,4.5,3890 +415000,3,1.75,1910 +485000,4,3,2340 +799950,3,3,2900 +783350,4,2.5,3290 +430000,1,1,630 +2.54E+06,5,4.75,5410 +975000,4,2.5,4270 +950000,3,1.5,1700 +350000,2,1,1430 +637000,4,2.75,2850 +895000,3,2,2160 +579000,2,2,1760 +314900,4,1.75,2700 +122000,2,1,860 +405000,2,1,880 +553650,2,2.5,1360 +369900,2,2.5,1770 +225000,3,2,2030 +160000,2,1,1180 +449500,4,2,2430 +650000,3,1,1300 +542126,4,2.5,2360 +309950,3,1.5,1200 +115000,2,1,1000 +221700,2,1.5,1556 +726000,3,2.5,1890 +515000,3,1.75,1810 +756000,4,2.5,2730 +1.57E+06,4,3.75,3070 +442000,4,2.25,2080 +260000,4,2,1620 +390000,2,1.75,1150 +459500,2,1,1250 +330000,3,1.5,1430 +189000,2,1,790 +280000,3,1,1200 +400000,2,1.75,2110 +368000,4,2,3160 +390000,4,1.75,2700 +245000,2,1,820 +375000,4,2.5,1800 +465000,5,1.5,1750 +445000,3,2,1540 +250000,3,1,1130 +475500,3,1,1500 +672324,2,1.75,1600 +420000,3,2,1200 +515000,3,2,1690 +732350,4,2.5,2270 +297500,4,2.5,1910 +475000,3,1.5,1640 +414000,4,2.5,2120 +357250,3,1.5,1400 +289950,2,1,760 +550000,3,1,1070 +446000,3,1.75,1460 +279000,3,1.5,1280 +370000,3,2.25,1650 +216000,3,2,1260 +1.10E+06,3,2.5,2200 +1.28E+06,4,2.5,3560 +355000,2,1.5,1140 +699000,4,2.5,2550 +412000,3,2.5,1553 +276000,2,1,1140 +100000,2,1,790 +955500,4,1.75,2130 +199000,3,1,1390 +762000,4,3.5,4000 +425000,4,2,1520 +546000,2,1,1657 +419600,3,1.75,1680 +735000,4,2.25,2270 +1.23E+06,2,2.5,2470 +445000,2,2,1240 +665000,3,2,1740 +1.29E+06,5,3.5,4090 +508500,4,2.75,2520 +345950,5,1,1340 +207500,3,1,1640 +1.08E+06,4,2.5,3000 +640000,3,1,1210 +329500,3,1,1810 +460000,4,2.75,2200 +1.23E+06,3,1.75,2200 +805000,5,3,2350 +200000,3,1.5,1090 +749700,3,1.75,2280 +288000,0,1.5,1430 +535000,2,1,1520 +330000,3,2.25,1620 +479200,3,2,1510 +373000,5,2.5,3001 +355000,4,1.5,2020 +275000,3,2,1380 +380000,3,1.5,1520 +417000,2,1.75,1090 +1.17E+06,5,3.75,4220 +598500,3,2.25,2520 +629000,3,2,1760 +226950,2,1,930 +1.23E+06,4,2.5,2600 +415000,3,2.25,2180 +595000,3,2.5,1910 +209950,3,1.75,1100 +568000,3,1.75,1760 +119900,2,1,700 +207000,3,1,1080 +195000,3,1,1070 +324950,3,1.5,1460 +210000,1,1,1050 +1.08E+06,4,2.75,3160 +325088,4,1,1400 +790000,4,3,3120 +150000,2,1,720 +790000,3,3,2840 +255000,2,1,1220 +697000,4,3,2820 +457500,2,1,840 +690000,3,2,1610 +967000,4,3.25,1860 +980000,4,1.75,2260 +619420,4,2.75,2450 +389000,2,1,850 +500000,3,1,1800 +569000,4,1.75,1230 +425000,4,2.25,2060 +635000,4,2.25,2750 +256500,2,1,1120 +695000,4,2.5,3010 +535000,4,1.5,1580 +454200,4,2.5,2630 +418500,2,1,790 +749950,4,2.75,3110 +338500,3,1.75,2130 +1.25E+06,4,3.75,4520 +299950,3,2.5,1600 +325000,4,1.75,1950 +434000,4,3,2010 +328950,4,1.75,2550 +2.10E+06,5,3.75,5340 +570000,4,2,2000 +802000,3,2.25,2170 +525000,3,1,1550 +700000,6,3,2790 +350000,3,1.75,1980 +277500,2,1.5,1190 +1.58E+06,5,2.75,3650 +195000,3,1,1510 +222000,3,2,1200 +865000,5,3,2830 +445000,4,2,1650 +495800,4,1.5,1710 +548500,3,1,1740 +310000,3,1.75,1840 +205000,3,1.5,1820 +470000,5,3.75,3860 +430000,3,1.5,1810 +310000,2,2,1030 +355000,4,1,1410 +621500,5,2.5,2140 +175000,6,1.5,1930 +326000,6,1.5,1930 +690000,4,3.5,1930 +335000,4,2.5,2210 +197000,4,1,1360 +312500,3,1.75,1830 +436000,3,2.25,2120 +1.02E+06,4,2.5,2700 +805000,4,2.5,3160 +652427,4,2.25,2770 +1.01E+06,3,2.5,2240 +355000,4,2.5,2570 +334550,2,1,880 +557500,3,2.25,1820 +277500,4,2.25,1660 +300000,4,3,2200 +325000,4,1,1640 +402500,4,2,1650 +461000,3,1.75,1420 +540000,3,1,1270 +385000,3,1,1070 +480000,2,1,1060 +539950,3,2.25,2190 +529000,3,2.25,1940 +417000,3,2.5,1300 +405000,3,1.5,1330 +299000,3,2.25,1940 +299000,3,1.75,2100 +372220,3,1,1290 +494400,2,1.75,1560 +280000,3,1.75,2630 +277950,3,2.5,2100 +770000,3,2.75,2070 +760000,4,2.5,2960 +230000,2,2,1300 +525000,4,2.5,2520 +307000,3,1,1150 +253779,4,2,2030 +405000,3,1.5,1880 +360000,2,1,2320 +521000,2,1,1050 +680000,4,2.5,3030 +355000,1,0.75,530 +200000,3,1.5,1090 +330000,3,2.25,2220 +221000,3,2.25,1430 +1.60E+06,4,4.5,3780 +310000,2,1,1560 +862000,4,2.25,2220 +200000,3,1.5,1140 +630000,4,2.5,2540 +432250,3,2.25,1440 +478000,3,2.25,1570 +249000,4,2.25,1860 +495000,5,3,2440 +630000,4,2.5,2100 +550000,4,2.5,2150 +350000,3,2.5,2440 +270000,5,1.5,1930 +488250,4,2,1830 +248000,4,3.5,1850 +889000,4,3.5,3210 +375000,1,1,1090 +933000,3,1.5,1870 +625000,3,2.25,1920 +328000,2,1,700 +470000,4,2.25,3380 +502500,5,2.5,2430 +484000,3,1.75,1950 +252500,2,1,900 +610000,3,2.5,2060 +419000,4,2,2180 +322500,4,2.25,2140 +563000,6,1,1730 +464000,4,2.5,3140 +870000,4,4.25,3010 +280000,2,1.5,800 +850000,3,2.5,3300 +458950,2,1,1530 +122000,2,1,760 +525000,5,3,2450 +286300,2,1,1000 +218450,2,1,840 +525000,3,1.5,1380 +650000,3,1.5,1380 +356000,4,2,2020 +436500,2,1,1260 +410000,3,1.75,1440 +512500,4,1.75,1540 +510000,4,1,1060 +566000,4,1.75,1900 +525000,3,1.75,2870 +435000,3,1,1050 +406500,3,2.75,1840 +550000,5,2.75,3000 +251000,3,2,1200 +830000,3,1.5,1840 +803000,4,2.5,2790 +206000,3,1,970 +200000,4,1,1070 +219000,2,1,900 +777000,4,4,2680 +593700,3,2.5,2000 +712500,3,1.5,1660 +600000,4,1.5,1770 +554663,3,2,1230 +267000,3,1,1740 +390000,3,2,1710 +335000,6,2,2020 +938000,4,2.5,2410 +370000,4,2.75,2310 +335000,5,2.5,2400 +695000,5,2,3160 +387500,3,1,1560 +245000,3,2.5,1770 +308550,3,2,1600 +225000,3,1.75,1330 +715000,4,2.5,2970 +335000,3,1,1020 +634000,3,2.5,2490 +337500,5,2,1700 +440000,1,1,850 +350000,3,1.75,1250 +400000,2,1,610 +1.29E+06,4,3.5,3700 +435000,3,1,950 +681000,4,2.5,3860 +397000,3,3.5,1360 +775000,4,2.5,3890 +480000,3,2.25,1680 +158000,3,2.5,1520 +590000,3,2,2420 +772500,5,2.75,3890 +464500,5,1.5,2940 +281000,3,1.75,1350 +620000,3,2.25,2190 +475000,3,2.25,2280 +245000,2,2,1070 +660000,5,2.25,2540 +527500,4,2.25,2270 +135000,2,1,1220 +275000,3,1.75,1890 +430000,4,2,1990 +213500,3,1,1220 +535000,3,3,2640 +641000,3,1.75,1480 +436300,3,2,2320 +1.44E+06,4,1.75,2410 +830000,4,2.75,2090 +380000,3,1,920 +132500,3,0.75,850 +179950,3,1,1130 +188200,3,1,1260 +659000,4,2,2090 +317000,3,2,2020 +625000,3,2.25,1970 +350000,3,1.75,1820 +750000,3,1.5,1840 +457000,4,1.75,2100 +632500,4,2,1770 +223000,3,2,1110 +610000,4,2.75,2090 +385000,4,1.75,2080 +367500,3,3.25,1400 +385100,3,1,1060 +230000,2,1,720 +286000,3,2.75,1100 +201700,3,1,1010 +1.35E+06,4,4.75,5230 +525000,4,1.75,2420 +361000,3,1.5,1200 +530000,3,1.5,1950 +455000,3,2.25,1870 +421000,4,2.25,1310 +640000,4,2,1520 +240000,3,1,1270 +360000,2,1,840 +157340,2,1,900 +1.24E+06,4,3,3010 +250000,3,1,1050 +735000,6,2.75,3360 +884900,7,4.75,5370 +775000,3,3.5,2690 +463000,3,1.75,1710 +579000,3,2.5,1640 +570000,6,3.75,4000 +1.06E+06,5,4.5,4140 +375000,4,2.75,3140 +422000,2,1.75,1320 +866500,4,3.5,3080 +705000,3,2.5,2500 +470000,4,2.5,2520 +360000,3,1.25,2350 +795000,4,2.5,2570 +800000,4,2.5,3100 +2.45E+06,4,3.5,4730 +277284,3,1.75,1030 +460000,2,1,1020 +898888,3,2.5,2080 +211000,3,1,1410 +222000,2,2,1360 +672000,3,2.5,2620 +778000,3,2.25,2260 +312500,3,1.75,1490 +650000,4,2.5,2530 +740000,6,2.25,3140 +320000,3,2,1820 +455000,4,2.5,1770 +2.45E+06,5,4,4430 +500000,3,3.25,1490 +325000,3,1.75,1790 +416000,3,2.5,1710 +495000,4,2.25,2070 +549000,2,1,1140 +589000,5,2,3930 +194820,3,1.5,1100 +405000,3,2.5,2260 +625000,3,2.5,2260 +205000,3,1,1130 +345100,3,3.75,1950 +200000,3,1,960 +1.91E+06,4,3.5,4210 +524500,3,1.5,3430 +598600,4,2.75,3470 +367777,5,3,2140 +750000,3,2.75,2520 +575000,5,2.25,3550 +84000,2,1,700 +255000,2,1,740 +1.74E+06,4,3.75,3300 +415000,3,2.25,1640 +449900,3,2.5,2780 +220000,5,1.5,1830 +899000,4,2.5,3540 +430000,3,2.5,1440 +472500,4,2.5,2960 +680000,6,2.5,3180 +1.65E+06,5,4,3310 +810000,3,2,2390 +605000,3,2.5,2460 +522000,3,1.75,1630 +759000,5,2.75,3490 +411000,4,2.75,2500 +286950,4,2.5,2080 +440000,3,1.5,1290 +149000,3,1,1700 +284700,3,1,1700 +374950,3,2.5,2540 +816000,3,1.5,1180 +533250,4,1.75,1520 +689800,3,2.75,2390 +775000,4,2.75,2740 +702000,3,2.5,2190 +160000,3,1,1350 +255500,3,1,1350 +949000,4,2.75,2980 +169500,2,1,790 +586000,4,2.25,2130 +680000,4,2.5,2700 +851500,3,2,3200 +582500,2,1.5,1159 +637000,4,3.5,3080 +225000,3,1,1000 +795000,3,3.25,2260 +304999,4,2.25,2270 +95000,1,0.75,760 +240000,4,1.75,1420 +772000,4,2.5,2500 +245000,2,1.5,1450 +430000,5,3,2500 +799000,3,1.5,2210 +880000,5,2.75,3020 +750000,4,2.5,3290 +2.89E+06,4,4,5780 +532000,3,2.5,1820 +525000,4,2.75,2500 +239000,2,1,1210 +460000,2,1.5,1090 +540000,4,2.25,1330 +475000,2,1,890 +445000,3,1.75,1360 +1.58E+06,5,3.75,4220 +549950,4,2.5,3780 +294950,4,2,2610 +736000,3,2.5,1980 +214946,3,1.75,1290 +856000,5,3.25,3620 +775000,2,2.5,2680 +205000,3,1.75,1200 +429592,2,2.75,1992 +414250,4,1.75,1640 +399950,4,2.75,1920 +319990,3,2.25,1840 +524000,3,1.5,1310 +349950,2,1,1050 +889000,4,2.5,2570 +300000,3,1,930 +395000,1,1,730 +348000,2,2.5,1270 +830000,2,1,1150 +173000,2,1,820 +585000,4,1.75,3000 +576750,3,2,2220 +495000,5,3.25,2500 +216650,3,3.5,1540 +615000,4,2.75,2750 +675000,4,2.5,3130 +510000,3,2,1430 +630000,3,2.5,2680 +359950,4,2.5,3010 +265000,3,1.5,1530 +210000,3,1,1240 +367000,3,2.5,2260 +1.08E+06,4,2.25,2820 +756000,3,2.5,3560 +203000,3,2.25,1630 +535000,4,2.5,2880 +525000,3,3.25,2200 +347500,3,1.75,1620 +620000,3,1.75,1480 +645000,4,2.5,2250 +2.20E+06,4,3,3540 +280000,3,2,1790 +432000,3,2,1400 +790000,3,1.5,2390 +635000,4,1.75,2400 +442000,3,1.5,2050 +490000,4,3,2640 +250000,5,1.75,2320 +1.33E+06,4,2.5,2440 +120000,3,1,1260 +2.95E+06,5,4.75,6240 +325000,4,2.5,1930 +210000,4,1.75,1200 +215000,1,1,970 +387000,3,1.75,1810 +408000,3,1,1380 +410000,3,1,1470 +216000,3,1,1010 +390000,3,1,1010 +357000,3,1.5,1340 +215000,3,1,970 +265000,3,1,1122 +589950,3,2.75,1670 +440000,3,1.75,2840 +248000,2,1,770 +730000,3,2.25,2040 +425000,4,2.5,3052 +680000,3,2.5,2620 +341500,5,2.25,3120 +395000,2,1,1100 +1.23E+06,4,2.75,3410 +695500,5,2.75,2510 +308000,3,1.75,1680 +422500,3,2,1960 +418000,2,1,1040 +385000,5,1.5,1750 +876650,3,3.25,2170 +450000,3,2.5,1639 +418800,4,2.25,2100 +330000,2,1,880 +550000,3,1.75,1940 +270000,4,2.5,2490 +978500,3,2.25,2060 +975000,4,2.5,2720 +455000,3,2.25,2180 +1.42E+06,4,3.25,3600 +220000,2,1,840 +490000,3,2,2370 +420000,4,2.25,2270 +408500,4,2.5,2720 +716000,3,1.5,1140 +965000,4,2.5,2460 +357823,3,1.5,1240 +7.06E+06,5,4.5,10040 +425000,3,2.25,1670 +711777,4,1.75,2220 +335000,3,1,980 +825000,4,1.5,1890 +210000,2,1,1100 +575000,2,1.75,2770 +1.21E+06,4,2.75,4250 +431500,2,2,1370 +475000,3,1.5,1480 +1.50E+06,4,3.75,3770 +540000,6,3,2870 +775000,3,2.5,3820 +635000,3,2.5,1530 +1.30E+06,3,2.75,4120 +405000,3,2.25,1590 +210000,3,1,1520 +880000,4,2.5,2350 +239000,4,2,1370 +515000,3,2.5,1540 +1.38E+06,3,3.25,3786 +215000,4,2.25,1500 +315000,6,2,1750 +442500,3,1.5,1800 +311000,2,1.75,1180 +425000,2,1,830 +433500,3,1.75,1540 +450000,3,2.25,1610 +675000,3,2.25,1990 +535000,3,2.5,2070 +577000,3,1.75,1760 +480000,3,1.75,1740 +400000,3,1.5,1950 +304000,3,1,1280 +355000,3,1.75,1460 +998000,4,3.25,3770 +550000,4,1.75,2410 +550000,4,1.75,2410 +210000,3,1.75,1400 +317000,3,2.5,2100 +700000,4,3.5,5360 +265000,3,1,1000 +700000,4,3.5,3150 +1.02E+06,5,3.5,4180 +1.15E+06,4,2.25,2840 +460000,4,2.5,2110 +410000,2,1.5,1660 +665000,4,3,2160 +600000,4,2.5,2420 +502000,4,1.75,1920 +364950,4,2.5,2310 +680000,3,2.25,2330 +235500,5,2.5,2340 +576000,4,2.5,2590 +405000,2,3,1410 +335000,3,2.75,2850 +122000,2,1,730 +432000,3,1.75,1470 +375000,4,2.25,2330 +276000,4,2.25,2460 +450000,3,2.25,2080 +210000,2,1,990 +279000,3,2.5,1450 +635000,3,1.75,1340 +350000,3,2.5,2730 +218000,3,1,1140 +750000,4,1.5,1950 +310597,4,1.75,2000 +355000,3,1,900 +735000,5,2.75,3390 +155000,1,1,720 +354000,3,1,940 +415000,3,1.75,1770 +202000,1,1,590 +580000,3,2.5,1980 +1.50E+06,4,3.25,3070 +790000,4,2.5,3500 +499900,3,2.5,2100 +525000,4,2.25,2620 +810000,4,2.5,2810 +425000,4,1.5,2290 +241250,3,1.75,1350 +318700,4,2.5,2770 +720000,4,1.75,2530 +291000,3,1,1280 +420000,3,1.75,1060 +210000,2,1.75,1000 +645000,3,3.25,3870 +762000,5,2,3370 +247500,4,1.75,2290 +282500,3,2.25,1670 +395000,3,1.75,1460 +295000,3,1.75,1770 +235000,2,1,820 +770000,3,1.75,1900 +559950,2,2,1870 +639000,4,2,1840 +314950,3,1,1590 +525000,3,1,1640 +2.40E+06,3,2.25,3000 +820000,3,1.75,2160 +1.39E+06,3,3,2490 +521450,3,2,1290 +760750,3,2.5,3190 +759600,4,1,1540 +346150,3,2,2140 +390000,2,1,980 +359950,5,2.25,2450 +430000,3,2,1360 +960000,4,3.5,4610 +800000,7,6.75,7480 +1.01E+06,3,2.5,2860 +290000,3,2,1810 +1.35E+06,4,2,2240 +777000,3,3.25,3610 +526000,2,1,1450 +550000,3,3.5,1450 +276000,3,1.5,1820 +2.50E+06,5,3.25,5620 +325000,3,1.75,2080 +365000,3,2.5,1780 +2.15E+06,8,6,4340 +825050,4,3.25,2860 +690000,3,1.5,2540 +390000,4,1,1140 +385000,3,2,1320 +619000,3,2.5,2040 +494000,4,2.25,1790 +412450,3,2,1910 +580000,3,1.75,1460 +269900,3,1.5,1420 +704300,4,1.5,1790 +267000,3,2,1390 +310000,4,1.75,1880 +227064,3,1.5,1570 +925000,3,2.5,2690 +245000,3,1.75,1670 +339888,3,1,1040 +439000,4,2,1560 +400000,2,1,1470 +560000,3,2.25,2070 +703011,2,1,1370 +363000,2,1,1120 +650000,4,2.75,2640 +299950,3,1,1030 +228950,3,1,1120 +465000,4,1.75,1730 +725000,3,2.5,2090 +212500,3,1,920 +526000,4,2.25,2970 +383000,3,2.5,1720 +244000,3,1.75,1460 +565000,3,1.5,1540 +373000,8,3,2850 +300000,3,2,1310 +405000,5,2.5,2430 +979000,3,1.5,1700 +324888,4,1.75,2160 +445000,3,1.5,860 +761000,3,3.5,2050 +435000,4,2,1650 +252000,3,2.25,1570 +350000,3,1.75,1660 +875000,3,1,1220 +940000,3,1,1220 +280000,3,2,1780 +450000,3,2.5,2180 +905000,3,2.5,3520 +382450,3,2.5,2220 +246700,3,2,1610 +220000,3,1.5,1070 +555750,3,1,1060 +262500,3,1.5,1160 +515000,2,1,910 +499500,3,2.5,2970 +135000,1,1,790 +462500,2,2,1540 +937500,4,2.5,3130 +458000,3,1.5,1470 +845000,4,2.75,3160 +660000,3,2.25,2675 +265000,3,2,1340 +599999,9,4.5,3830 +280000,3,2.5,1800 +1.06E+06,3,3.25,2990 +875000,4,3,3720 +125000,3,1,920 +634800,4,3,3280 +269950,4,1,1440 +359950,3,2.25,1940 +417000,3,1.75,1590 +389000,2,2,1340 +1.04E+06,4,2.5,3770 +698000,6,2.5,2680 +685000,4,2.5,2820 +198500,3,1.75,1520 +350000,4,2.5,2560 +649950,3,2.5,3310 +441000,3,1.5,1540 +462600,3,1.75,1430 +365070,4,2.5,2506 +550000,4,2,2250 +470000,5,1.75,2740 +340000,3,1.75,1540 +910000,4,2.75,4190 +405000,4,1.75,1690 +661000,4,2.25,1990 +635000,4,2.5,2410 +282000,2,1,1150 +235000,4,1.75,1720 +277500,3,2,1260 +346500,5,2.5,2020 +480000,5,2.25,2240 +360000,4,2.25,1930 +245000,3,2.5,1820 +625000,3,3.5,1560 +750500,5,3,2170 +525000,3,1.75,1600 +740000,4,3.5,3760 +523000,3,1.5,1240 +292000,3,1.75,1090 +625000,4,2.5,2740 +700000,3,2.5,3110 +399950,3,2.5,1610 +545000,4,3.5,1880 +339999,4,2,1740 +1.21E+06,4,2.25,3270 +545000,3,2.5,1990 +260000,4,1.75,1960 +526000,3,1.75,1680 +701000,4,3,2910 +290000,3,2.25,1500 +330600,1,1,580 +550500,3,1.75,2540 +430000,2,1,950 +4.00E+06,4,5.5,7080 +260600,2,1,810 +825000,5,3,4080 +378950,4,2,1820 +435000,4,2.5,2650 +631000,3,2.25,1670 +415000,3,2.5,2480 +222000,3,1.75,1240 +245000,3,2,1390 +720000,3,2.5,2880 +215000,3,1,1060 +579100,2,1,1070 +522500,4,1.75,1640 +489000,3,2,1510 +240000,3,1,1230 +420250,3,2,1510 +523000,4,2.5,3180 +628000,4,2,2260 +320000,4,2.5,1920 +359950,3,2.5,1980 +232000,2,1,1200 +810000,4,2.25,2020 +245000,4,1.5,2010 +273000,3,2.25,1930 +1.19E+06,5,2.5,2710 +438000,5,1,1950 +400000,3,1.75,2110 +340000,3,1,1250 +552000,2,2.5,1380 +790000,3,1.75,2050 +360000,3,1.5,1800 +235000,3,1,1310 +775000,2,1,1010 +489200,3,2.75,1850 +341000,3,2.25,1750 +335000,4,2.5,2154 +393500,3,1.75,1230 +360000,3,2,1960 +400800,4,1,1070 +585000,3,1,1450 +1.60E+06,4,2.75,3680 +2.88E+06,4,2.5,5760 +300000,3,1,1220 +1.05E+06,4,2.75,2950 +360000,3,1.5,1340 +665900,4,2.25,2870 +470000,4,1,2590 +581000,4,1.75,2090 +527000,6,3.5,3000 +423000,4,1.75,1730 +875000,4,3.5,2850 +410000,3,1,1020 +606000,3,2.5,2200 +654000,3,2.5,3240 +150000,3,0.75,490 +373000,3,2.5,2990 +550000,5,2,2450 +512500,3,2.5,1900 +360000,4,2.5,2640 +369000,3,2,1340 +825000,4,2.5,3220 +255000,3,2,930 +1.29E+06,4,2.5,3240 +270000,5,2.5,2630 +480680,3,2.5,1730 +525000,4,1.75,2120 +291500,3,1,880 +305000,4,2,1800 +285000,3,1.75,1600 +1.88E+06,3,2.5,3280 +329500,5,1.75,3290 +1.57E+06,4,2.25,2890 +379260,3,2.5,1730 +356000,3,2.5,1590 +571900,4,1.75,1710 +271500,3,1.75,1995 +390000,3,1.75,1300 +550000,3,2.5,2720 +755000,2,2.5,1360 +509500,2,2.5,1590 +486700,2,1,1200 +527500,2,1,1170 +475000,5,2.5,2010 +268000,3,2.75,1880 +562000,3,2,3250 +780000,4,2.5,2270 +700000,9,3,3680 +710000,3,2,1880 +445000,3,1,1050 +729000,3,3.25,2250 +384400,3,3.25,1689 +815000,6,3,2860 +865000,4,2.5,2710 +514000,3,2,1770 +615000,4,2.75,2820 +865000,4,3.25,3400 +755000,4,2.5,3110 +425000,4,1,1480 +375000,2,1,940 +750000,4,2.5,2680 +722000,4,2.75,3190 +1.01E+06,3,2.5,1920 +725000,3,2.5,2610 +170000,3,0.75,1040 +845000,4,3.25,2880 +271900,3,2,1450 +1.30E+06,6,4.5,3902 +261500,4,2.5,2460 +619500,3,2.5,2170 +435000,5,2.25,1970 +210000,3,1,1000 +489950,3,2,1580 +260000,4,1.5,2130 +300000,4,1,1370 +530000,4,2,2150 +235000,3,1.75,1370 +593500,3,1,1370 +562000,3,3,3290 +585000,3,2,3190 +2.40E+06,4,3.25,4140 +199500,3,1.75,1690 +544500,5,1,1690 +394900,3,1,1430 +912000,4,3.75,1980 +260000,3,2.5,1490 +858000,5,3,3620 +1.28E+06,4,2.5,2720 +242150,4,1.75,1490 +220000,3,1.75,1230 +235000,3,2,1900 +370000,3,1.75,1530 +450000,3,1.75,2290 +534950,5,1.5,2240 +730000,4,2.5,3470 +465000,4,2.5,3050 +178000,3,1,1100 +215000,3,1,1610 +300000,3,2.75,1910 +430000,3,2,1510 +183000,3,1.5,1280 +585000,3,2.5,1910 +192950,3,1,1170 +599000,2,1,1550 +326500,3,1,1060 +358803,2,1,1040 +537000,3,2.5,1550 +1.16E+06,3,2.5,2490 +156000,2,1,920 +219000,3,1,1250 +1.19E+06,3,1.5,2540 +248000,5,1.75,2190 +340000,3,1.75,1340 +899100,5,2.5,2410 +346950,3,1.75,1830 +330000,3,1,1850 +325000,3,1,1410 +315000,3,1.75,1460 +649950,3,2.5,1500 +316000,3,1,1130 +386000,2,2.5,1620 +535000,2,1.75,2330 +600000,3,3,1520 +339000,4,2.5,2840 +167000,3,2,1520 +430000,3,1,1740 +688000,4,4,4000 +834500,3,2.25,2780 +1.08E+06,4,4.25,3500 +250000,3,1,1060 +402500,3,1,1290 +432500,3,2.5,2390 +485000,5,1.75,2460 +560000,4,2.75,2930 +410000,4,2.25,2200 +455000,3,2.5,1870 +459500,4,2.5,2060 +371000,4,1.75,1610 +289500,3,2.25,2120 +395000,3,3.5,1450 +496752,2,1,1980 +227000,2,1,860 +330000,3,1.75,1460 +480000,5,2,2590 +290000,2,1,1120 +281000,3,1,1340 +705000,4,1.5,1780 +1.40E+06,4,2.5,2920 +485000,4,3.25,2820 +622000,3,2.25,1550 +380000,3,2.25,1600 +2.13E+06,4,2.75,3190 +561500,3,1.75,1960 +242000,3,1,970 +348500,3,1.5,1360 +370000,3,1.5,1360 +752000,6,3.75,3810 +230000,3,1.75,1340 +715000,3,2.25,1990 +240415,3,1.75,1120 +562000,4,1.75,2060 +360000,3,1.5,1170 +659950,3,2.5,1610 +458500,3,2,1890 +259950,2,2,1070 +366000,3,1.75,1680 +978000,4,2.75,2890 +525000,2,1,1360 +926300,3,1.5,1660 +750000,2,1,1620 +660000,2,1,960 +305000,4,1.75,1000 +800000,2,2.5,2395 +600000,4,1.75,3050 +435000,2,1,1120 +1.14E+06,4,3.25,2960 +318000,3,2.25,1250 +639000,4,2,1940 +453000,3,2.5,1750 +800000,4,1.75,2150 +437000,2,1.75,1500 +1.15E+06,3,2.75,3230 +490000,4,2.5,3000 +499950,4,1.75,1520 +160134,3,1.5,1190 +191000,3,1,990 +221000,3,1,1250 +352800,4,2,2080 +350000,3,2.5,1640 +458000,4,1.5,1550 +359950,3,1,1290 +1.05E+06,3,3,3250 +353000,3,1.75,1260 +717550,3,3.5,2840 +450000,3,2.25,1960 +167500,3,1,760 +550000,3,1.75,2240 +939000,4,2.25,2240 +700000,3,1.75,1820 +480000,4,3.5,3370 +501000,3,1,1160 +580000,3,2.25,1640 +527550,1,0.75,820 +399000,4,2.5,2800 +240000,3,1.75,1780 +353000,4,2.75,2200 +335000,4,2,1480 +475000,3,3,2010 +660000,3,2,2880 +551000,3,1,940 +249950,4,1.75,1620 +1.15E+06,4,3.25,4400 +575000,3,1.75,1530 +1.09E+06,4,2.75,3460 +515000,4,2.5,2890 +235000,3,1.5,1980 +796000,3,1,1980 +450000,2,1.5,1450 +2.05E+06,4,3,4280 +270000,4,2.5,1810 +1.71E+06,3,3,2490 +565000,3,1,1610 +680000,1,2.5,1820 +5.57E+06,5,5.75,9200 +864500,4,2.5,3520 +1.15E+06,4,2.25,3740 +335000,3,2.25,2150 +911000,4,3.25,3526 +425000,2,1,1070 +299950,3,1,1410 +864000,4,2.5,3190 +425000,2,1,1270 +374950,4,1.5,1970 +247000,3,2.25,1640 +475000,3,1,1600 +275000,3,2.5,3020 +355000,2,1,1350 +285000,4,1.75,1870 +1.34E+06,3,2.75,2730 +325000,2,1,1100 +1.67E+06,5,3.5,4320 +402000,3,2.5,2700 +1.10E+06,3,3,3700 +375000,4,1.75,2190 +396000,5,2.75,2840 +320000,4,2.75,2610 +610000,3,2.5,2630 +249950,3,1.5,1090 +675000,4,3.5,3090 +448000,2,2,1670 +819000,3,1,1300 +1.25E+06,3,2.5,3670 +225000,4,2.5,1700 +790000,2,3,2560 +685000,4,2.5,2770 +812000,3,3.25,3240 +705000,2,2.5,2300 +360000,4,3,2483 +344000,1,1.5,760 +825000,4,1.5,2040 +476500,3,1,1200 +379500,2,1,960 +620000,3,1.75,2410 +477590,3,3.25,2260 +490000,3,1,1910 +470000,3,1.5,1500 +500000,3,2.25,1360 +370000,3,1,1320 +790000,2,1.5,1940 +725000,4,2.5,2650 +840000,4,2.75,3040 +390000,3,1,1240 +507000,3,2.25,2210 +263500,3,1.75,1540 +369000,3,2.5,1320 +500000,3,2.5,3040 +570000,2,1,910 +284000,4,3,2040 +415000,2,1,980 +197500,3,1,980 +925000,4,3.75,4420 +468000,3,2,1570 +355000,3,1,1600 +639000,4,1.75,1830 +720000,3,2.5,2820 +381000,3,1.75,1800 +1.05E+06,3,4,4380 +670000,3,3,2980 +400000,3,1,1690 +910000,4,3.5,4040 +294000,3,1,1250 +315001,3,1.75,1500 +360000,3,2,1630 +520000,3,2,1410 +474000,3,1,1140 +702000,4,2.5,3280 +728000,4,3.5,3490 +308000,4,2.5,2020 +2.00E+06,5,4,4580 +340000,3,2.5,2270 +306500,2,1.75,1310 +716000,3,2,1420 +950000,4,3,2980 +673200,5,3,4180 +564500,4,2.25,1950 +393000,4,1.75,1790 +425000,5,1.75,1400 +150000,3,1,1320 +327000,4,2.25,1620 +444900,4,2.5,3120 +305000,4,2.5,2100 +469000,3,3.25,1370 +525000,3,1.75,1520 +330000,3,2.5,2410 +618000,4,1,1260 +295500,4,2.5,2830 +567035,3,2,2064 +518000,4,2.25,2640 +303000,2,1,1020 +300000,4,2.5,2200 +413107,3,1.5,1420 +400000,3,1,1350 +535000,3,1,1290 +555000,4,2,1680 +312000,3,2.5,2280 +785200,3,2.25,1840 +749000,4,2,2040 +285000,3,1.5,1490 +425000,4,2.5,2440 +360000,3,2,1930 +260000,3,1,1200 +369000,3,2,1550 +275000,4,2.5,2180 +407000,3,2.25,1430 +575000,2,1.75,1230 +1.24E+06,3,1.5,1670 +875000,2,2.5,2720 +320000,4,1.5,2220 +810000,3,1.5,1520 +274000,3,1.75,1590 +239900,4,1.75,1480 +450000,4,1.5,1860 +263400,4,2,1360 +265000,3,1,1360 +418000,4,3,2360 +390000,3,2,2360 +430000,3,2,1860 +1.44E+06,3,2.25,2630 +297000,2,1.75,1280 +650000,4,2.25,2330 +195000,2,1,720 +554000,3,3.5,3380 +550000,3,2,3650 +700000,3,1.75,1640 +300000,4,1,1730 +315000,2,1,1030 +603000,3,1,1790 +530000,2,1,840 +397500,3,1.75,1300 +221000,3,1,1240 +466000,4,2.25,2170 +197500,3,1,1330 +280000,3,3,1390 +412000,2,1.5,1240 +454000,2,1,880 +540000,4,2.25,2540 +250000,5,1.5,2520 +900000,5,2.25,2510 +245000,5,1.75,2020 +290000,3,1.75,2060 +160000,2,1,930 +1.26E+06,2,1.5,2700 +325000,2,1,1060 +185000,2,1,670 +477000,3,2,1750 +100000,2,1,930 +345000,4,2.5,2420 +530000,4,2.25,2410 +203000,3,1,1150 +599000,4,2.5,2480 +370000,4,1,1310 +140000,3,1,1240 +500000,3,1,1150 +527200,3,1.75,1460 +549900,5,2.75,3060 +760000,4,2.5,3520 +319000,2,1,960 +362300,3,2.5,2430 +421000,3,2.5,1930 +690000,3,1,1090 +640000,3,2.5,2790 +238000,4,1.75,1650 +789000,3,3,3740 +1.05E+06,6,4,5310 +302500,3,2.5,1690 +259950,4,1.75,1400 +456000,3,1.5,1440 +369950,3,2.5,1360 +363750,3,1.75,1726 +585000,3,1.75,2220 +268000,3,2.5,1850 +1.20E+06,5,2.5,2860 +345000,3,1,1120 +539000,4,2.5,2340 +851000,5,3.25,3760 +900000,3,2.5,1920 +850000,3,2.5,3230 +390000,3,1.75,1260 +345000,3,1.75,1540 +534500,3,2.5,1700 +643500,6,5.25,3600 +1.21E+06,3,2.75,3150 +495000,2,1.75,1280 +535000,2,1,980 +435000,4,2.5,2190 +305000,4,2,2470 +799000,4,2.5,2590 +700000,4,2.5,2580 +467000,3,2.25,1270 +263000,3,1,1250 +760000,4,2.5,4660 +293000,4,2.5,2019 +245000,3,2,1490 +181000,2,1.5,1560 +240000,3,1,1030 +880000,4,2.75,2560 +285000,3,2,1460 +407500,2,1,770 +325000,4,2.5,1960 +405000,3,1.75,1900 +291700,3,2.5,1970 +370000,3,2.5,2490 +270000,3,1.5,1430 +800000,4,2.5,2680 +626500,3,1.75,1610 +1.13E+06,4,3.5,4300 +399950,4,2.5,3200 +419000,3,1.75,2140 +1.16E+06,4,2.5,4240 +1.41E+06,4,3.5,3410 +710000,4,2.75,2090 +650000,3,1,1410 +369900,4,2.5,2820 +641000,4,2.5,2770 +403000,3,1,1400 +1.02E+06,3,3.25,3620 +865000,4,2.5,2260 +2.49E+06,4,2.5,3440 +810000,4,1,2150 +316750,3,2.5,1256 +652500,4,2.25,2220 +360000,6,2.75,2850 +208000,2,1,700 +898000,4,2.5,3700 +295000,4,1.75,1400 +652500,4,1.75,3130 +560000,4,3,2170 +280000,3,1,1020 +289950,3,2.5,1760 +397500,3,2.5,1860 +380000,2,1,1140 +415900,3,2.5,1670 +475000,2,1.75,1710 +125000,1,1,500 +238000,3,1,1470 +296000,4,1.5,1370 +475000,6,3,3470 +390000,3,2.25,1650 +425000,3,1,1180 +725000,6,3,3110 +605000,3,2.25,2080 +302000,3,1,1600 +886000,3,2.25,2380 +540000,4,1.75,1630 +435000,4,2.25,1910 +409000,4,3.25,3140 +405000,3,1,1250 +560200,3,2.5,1990 +324000,4,1.75,2110 +390000,4,2.5,2490 +414000,2,1,800 +441500,3,2.5,2360 +375000,3,2.5,1770 +668500,4,2.5,2710 +540000,5,1.5,1940 +1.04E+06,4,3.25,3450 +1.35E+06,4,3.25,3440 +758000,4,2.75,2410 +949880,4,2.25,2290 +570000,3,1,1030 +736000,4,2.5,2290 +670000,3,1.5,1490 +1.13E+06,4,1.75,2370 +650000,4,2,1930 +690000,2,1.75,1600 +610000,4,2.25,2240 +413500,2,1,770 +765000,3,2.5,2300 +828200,4,2.75,3400 +205000,2,1,900 +465000,3,2.5,1450 +556000,4,2.5,2240 +540000,4,2.5,1780 +423000,4,2.5,2320 +375000,3,1.75,1590 +173250,3,1,990 +599900,3,1.5,2605 +646000,5,2.75,2870 +1.08E+06,5,4.75,5180 +558000,4,2,2180 +354000,2,1,850 +1.20E+06,4,4,4050 +670000,4,2,2250 +1.13E+06,6,4.25,3100 +267500,2,1,1747 +299800,4,2.5,2410 +430000,4,1.75,2070 +775000,5,1,1860 +333000,3,1,950 +336000,3,2,1060 +323000,2,1,880 +575000,4,2.5,2550 +328000,2,2.25,1550 +572500,3,1,1590 +600000,3,1.75,1650 +412000,4,3,2430 +827500,3,2.5,1810 +300000,4,2.5,2890 +415000,3,2.5,1280 +750000,7,2.75,3410 +800000,3,2.75,2220 +420000,3,1,1060 +266000,3,1.5,1120 +499000,4,2.5,2680 +440000,4,1.5,1770 +495000,3,2,2950 +630000,2,1.75,1260 +424000,3,1.75,1430 +760000,4,2.5,2730 +650000,4,3.5,3270 +248500,4,1.75,1720 +379600,3,1.75,1270 +538000,4,2.5,3260 +530000,4,2.5,2050 +545000,4,2.25,2050 +925000,4,3,3580 +565000,4,2.75,1960 +405100,2,1,840 +502000,3,1.75,1300 +425000,3,2.25,1260 +233500,3,2.25,1650 +287000,3,2.5,1710 +190000,3,1,1180 +666000,3,2.25,2780 +330000,2,1,950 +1.49E+06,5,3.5,3620 +393000,3,2.25,2140 +353000,4,2.75,1920 +260000,2,1,750 +680000,3,2.5,2060 +921000,3,2.25,2380 +319000,2,1,750 +280000,3,1,1160 +220000,3,1,1050 +219000,3,1.5,1740 +528000,4,2.75,2050 +405000,3,1.75,1980 +372977,3,2.5,1690 +934550,4,3.25,2320 +1.47E+06,3,1.5,2480 +975000,4,2.25,2290 +800866,5,2.5,3180 +950000,7,3.5,3470 +624000,4,3,1540 +1.85E+06,5,2.25,2800 +310000,3,1,1050 +315000,3,1.75,1480 +675000,3,2,1010 +490000,3,1.75,1660 +600000,5,2.25,2760 +154000,2,1,1040 +480000,4,1.75,2220 +196900,3,1,1270 +735000,3,3.25,2960 +205500,3,2,1330 +357186,2,1.75,1210 +275000,4,2.5,2120 +248500,3,1.75,2090 +350000,3,2.5,2680 +390000,4,2.75,1790 +390000,3,2.75,1950 +660000,5,2.25,3740 +310000,3,1.75,1140 +717000,3,2.5,2480 +260000,5,2.5,2580 +745000,3,2,2290 +470000,4,2.5,2320 +429000,3,2.5,2530 +220000,4,2,1400 +497000,3,3,2060 +716100,3,1,1640 +371000,4,1,1960 +379000,5,2.75,3000 +937500,3,1,1320 +720000,4,2,1760 +616000,3,3.25,2130 +259000,3,2,1390 +538000,3,1.75,1400 +605000,3,2.75,3230 +369950,3,1,1110 +310000,3,2.5,1670 +227500,3,1,1540 +274000,4,2.25,2090 +410000,3,2,1410 +354800,3,2,1370 +650000,4,2.25,1910 +353000,3,2,1678 +224975,3,1,960 +600000,2,1.75,2080 +437500,3,2.25,1790 +567000,3,2.5,2540 +225000,5,1.5,1790 +255000,2,1,940 +2.48E+06,5,3.75,6810 +370000,2,1,900 +675000,4,1.75,1900 +285000,3,1,1440 +310000,3,1.75,2070 +475000,4,2.5,2240 +410000,4,2.5,3320 +895000,4,2.25,1950 +375000,3,1.5,1240 +349000,4,2.5,1830 +650500,3,1.75,1740 +760000,3,1.75,1410 +480000,4,2.75,2050 +689000,4,2.75,3220 +415000,3,1.75,1960 +195000,3,1.75,1070 +318000,5,2.5,2820 +404000,4,3,4060 +339950,2,1,800 +215000,3,1,1260 +339900,3,2.5,2420 +285000,1,1.5,810 +550000,3,1,1600 +430000,4,1,1350 +219000,3,1,970 +555000,2,1.5,1780 +233000,3,2,1350 +248000,3,1.75,1840 +454000,5,2.25,2550 +950000,4,2.5,1700 +359000,3,2.5,2430 +407500,5,2,2740 +224000,3,1.5,1560 +210000,2,1,1040 +261000,4,1.75,1820 +719000,3,3,1833 +440000,3,2.5,2160 +525000,3,2.75,2100 +375000,3,1.5,1370 +428000,2,2.5,1414 +988830,5,3.25,4115 +199950,3,1.75,1550 +840000,4,2.25,2100 +285000,3,1.75,1160 +330000,5,2.5,3597 +147500,3,1.5,1230 +320000,4,2.5,2190 +382500,3,1.75,1040 +2.05E+06,5,4,4690 +596000,4,2.25,2270 +220000,4,2.25,1950 +325000,3,2.5,1880 +679950,4,2.5,2850 +175000,2,1,1160 +268000,3,1.75,1370 +715000,4,3.5,3260 +600000,7,2.25,3170 +228000,0,1,390 +950000,5,2.5,3450 +475000,2,1.75,1490 +700000,3,1.5,1460 +275000,3,1.75,1300 +369500,3,1.75,1300 +215000,4,2,1540 +593450,4,2.25,2130 +498800,2,1.75,1350 +849000,5,3.25,2450 +1.15E+06,4,2.5,1940 +825000,5,2.5,2890 +265000,3,1.75,1680 +285000,4,2.25,1960 +240000,3,1.75,1590 +261000,4,1,1390 +330000,4,1.75,2440 +250000,4,2,1850 +350000,4,2.5,2800 +930000,3,2.5,3780 +275000,3,2,1910 +325000,4,2.25,2460 +255000,1,1,810 +562200,3,1.5,1900 +952000,2,1.75,3490 +365000,3,2.5,2200 +332900,3,1.5,1190 +721000,3,2.25,2040 +487275,4,2.5,2400 +310000,3,2.5,1670 +245000,2,1,990 +325000,3,1.75,2920 +550000,3,1.75,1840 +350000,2,1,910 +599000,5,2.5,2950 +259950,3,1.5,1240 +240000,4,2.5,1980 +186000,3,1,1200 +395000,3,1.5,1280 +475000,4,2.5,3150 +815000,5,3.5,3500 +572000,3,1.5,1680 +419500,3,2.5,1360 +298700,3,2.25,2110 +549000,2,1,2034 +278000,3,1.5,1900 +455000,4,2,2380 +925000,5,3.5,4050 +465000,2,1.5,1120 +620000,4,4,2850 +499900,4,2.25,2360 +620000,5,3,2540 +450000,3,1.75,1160 +690000,4,3.5,2710 +1.90E+06,5,2.25,3120 +1.94E+06,5,2.25,3120 +832500,3,2,1870 +245000,3,1,1010 +820000,3,2.5,2980 +369000,4,2.75,2420 +1.05E+06,4,3.25,3830 +653000,3,3,3040 +220650,2,1.75,1460 +300000,5,3,1940 +970000,4,3.5,3780 +360000,4,2.5,1950 +672500,3,2.5,2450 +268000,4,1.5,1730 +440000,4,1.5,1690 +1.40E+06,3,2.5,2550 +590000,4,2.5,2290 +359000,4,2.25,2710 +266500,4,1.75,1880 +635000,4,2.5,2930 +559000,3,2.5,3110 +895000,4,2.5,3480 +625000,2,1.5,1110 +650000,4,2.25,2440 +312500,4,1.75,2280 +225000,3,1,900 +425000,4,1.75,1980 +329999,3,2.75,3360 +572000,5,2.25,2340 +386500,4,2.5,3110 +452000,2,1,980 +278000,4,2,1480 +474900,3,2.25,1800 +450000,2,1.75,2130 +611000,2,1,1270 +214100,2,2.5,1150 +317000,3,2.5,1840 +1.00E+06,4,3.5,3180 +1.00E+06,5,2.75,1510 +525000,4,2.5,3070 +436000,3,2.25,1800 +450000,3,1.75,1540 +588500,3,1.75,2330 +340000,4,1.75,1400 +482000,4,2.5,2846 +1.58E+06,4,3.5,5830 +749000,3,2.5,3380 +330000,3,1.5,1440 +568000,3,2.5,1740 +239000,3,1.75,1470 +528000,3,2.5,2810 +385000,4,3,2090 +825000,4,3.25,4110 +815000,5,3.25,3230 +625000,4,2.5,2601 +690000,3,1.75,2070 +210000,3,1,1660 +599000,4,1,1590 +860000,3,1.75,1860 +147200,3,1,1420 +476900,3,1,1240 +450000,4,2.5,2500 +570000,4,2.5,2640 +567500,3,1,1440 +790000,5,3.25,3030 +875000,3,1.5,1820 +490000,3,2,2220 +335000,3,1.75,2430 +550000,3,1.75,1670 +385000,3,1.75,1180 +395000,3,1.75,1620 +650000,2,1,1030 +637000,4,2.75,2900 +692500,3,2.25,3420 +322400,3,1.75,1710 +233500,3,1.5,1580 +400000,3,2,1230 +547000,5,2.5,2200 +519000,5,2.25,2570 +1.03E+06,4,3.5,3320 +365000,3,1,1090 +699000,5,2.75,2970 +525000,3,1.75,1970 +430000,4,3,3220 +325000,3,1,1600 +279000,2,1,670 +805000,4,1.75,2360 +419950,3,3,2150 +425000,2,1,620 +446000,4,1.75,1730 +455000,5,2,2500 +226550,3,1,990 +764000,3,2,1420 +439950,3,2.25,2170 +453000,4,2,1880 +219950,3,1,1300 +702500,3,1.5,2360 +285000,3,1.5,1780 +798750,2,2.25,2160 +320000,2,1,950 +425000,3,1.75,1680 +540000,4,2.5,2290 +1.06E+06,4,5.25,4140 +1.17E+06,4,3.75,3920 +576000,3,1.75,1500 +525000,3,1.75,1720 +324950,4,2.5,2641 +600000,3,2.5,4930 +464000,3,2.5,2460 +266000,4,2.25,1995 +775000,3,2.5,3010 +415000,3,1.75,1270 +550000,4,2.75,3080 +235000,3,2.25,1670 +280000,3,2,1470 +459000,3,1.75,1730 +195000,3,1,1070 +235000,3,1.5,1660 +711800,4,2.25,2410 +440000,3,2.5,1040 +515000,2,1,970 +1.20E+06,5,2.75,2910 +560000,3,1.75,2340 +340000,3,1.75,1880 +600000,2,1,1110 +764000,4,2.5,2790 +337000,4,2,1590 +1.39E+06,6,2.75,5700 +249000,4,1,1200 +350000,3,3,3200 +269950,3,2.25,1510 +735000,3,1.75,1880 +1.30E+06,4,2.5,3070 +475000,4,2.25,2110 +339000,3,2,2350 +600000,4,3.5,3270 +397500,4,1.75,2220 +1.53E+06,4,3.5,5990 +460000,3,2,1760 +370000,4,2.75,2200 +250000,4,1,1550 +1.10E+06,4,3.75,5070 +430000,2,2.25,1040 +1.09E+06,3,1.5,2560 +670000,3,1.75,1850 +461550,3,1.5,2090 +479990,3,2.5,2010 +643000,4,2.5,2518 +607000,3,2.75,2810 +625000,3,2.5,2600 +731100,3,2.5,2060 +859000,3,2.5,2920 +435000,4,2.5,2130 +465000,3,3,2290 +740000,3,1,1230 +740000,3,1.75,2020 +250000,3,2,1430 +656000,2,2.5,2270 +300000,4,2.5,1910 +643000,3,1.5,1780 +311000,4,2.5,2690 +360000,3,1.75,1330 +475000,4,2.5,3060 +469950,3,3.25,1760 +240000,3,1.75,1570 +232000,2,1,960 +350000,3,2,1680 +803000,2,1,1440 +355000,3,2.25,1960 +475000,4,2,1790 +823000,3,2.5,2560 +395000,2,1.5,1010 +499000,4,3.75,2560 +420000,2,1.75,1200 +961500,3,2.5,3910 +833000,4,1.75,2260 +479000,3,2.25,2110 +1.15E+06,4,2.5,3340 +267000,3,1,1400 +555000,4,1.75,1760 +490000,3,2.5,2010 +619000,4,2,2300 +569950,5,2.75,2510 +549000,3,2,1340 +422500,3,1.75,1560 +400000,4,3.5,3350 +692500,4,2.75,3710 +310000,4,2.5,2430 +499900,3,1.75,2430 +492000,3,2.25,2100 +460000,2,2.5,1880 +800000,3,2.5,1630 +832600,4,1,1640 +470000,4,2.75,2310 +542000,2,2,1930 +1.31E+06,4,4.5,4750 +308130,4,2.5,2300 +310000,2,1,1050 +235000,2,1,1500 +215000,3,1,1150 +210000,4,1.5,1920 +730000,4,2.75,3660 +245000,3,1.75,1720 +540000,3,2.25,2100 +299000,4,2.5,2400 +510000,3,2.5,2540 +198000,4,1.75,2080 +950000,5,3.25,3400 +300000,4,1.75,2200 +528000,5,1.75,2140 +507000,5,3.25,3850 +770000,4,3.25,4270 +255000,3,1.75,1340 +220000,1,1.5,1100 +690700,5,2.75,2870 +447000,2,1,1320 +755000,6,2,2150 +700000,4,1.5,2470 +250000,4,2.75,1910 +320000,3,2.5,2130 +565000,4,2.5,2240 +754300,5,2.75,1800 +650000,3,1.5,2160 +529888,4,2.5,3140 +432000,3,2.5,1920 +235000,3,1,1050 +994900,4,3.5,3695 +489000,4,2.5,3910 +800000,4,2.75,3010 +370000,4,1.5,1370 +436000,4,2.75,2080 +395000,3,2.5,2250 +377691,5,1.75,2120 +370000,5,3,2220 +515000,3,2.5,1440 +169000,3,1,910 +475000,3,1,1270 +420000,3,2.5,2480 +1.30E+06,6,2.75,2630 +822000,3,2,2410 +1.50E+06,4,2.75,2930 +485000,3,2.25,1570 +270000,4,1,1900 +300000,6,2.5,2590 +878000,4,2.5,3810 +590000,3,2.5,2290 +611900,1,2.25,1220 +240000,3,1.75,1100 +395000,4,2.5,2810 +169000,3,1,890 +200500,3,2,1280 +308000,3,2.5,2320 +290256,3,2.25,1720 +279950,3,1.75,1530 +195000,3,1.75,1580 +630000,3,1,1360 +1.16E+06,4,3,2680 +478000,3,2.25,1640 +835000,3,2.25,2520 +639000,3,2.25,1400 +623000,4,2.75,2300 +220000,3,1.75,1900 +526000,3,2.25,2000 +243500,2,1,900 +750000,4,2.5,2980 +329000,4,2,1850 +525000,4,1,1570 +190000,2,1,670 +772650,4,2.5,2660 +355000,3,2.5,2110 +650000,3,1.75,1970 +678500,3,2.75,1210 +669950,4,2.5,2670 +850000,3,2.25,3000 +572000,3,2.75,2200 +492450,3,1.75,1540 +813000,3,1.75,2080 +710000,3,2,1780 +792500,3,1.5,1960 +285900,5,1.5,1690 +389000,3,2,2080 +675000,3,2.25,2070 +352000,2,0.75,760 +1.05E+06,4,3.25,4020 +768500,4,1.75,3620 +500000,4,2,2330 +685000,3,2.5,1460 +648475,4,2.75,2250 +655000,6,5,2850 +895000,4,2.75,2640 +195000,3,1,1310 +368000,4,2.5,2720 +997000,4,3.5,3430 +335000,3,2.75,1990 +250000,3,2,1170 +278500,3,1.75,1390 +260000,4,1.5,1540 +162500,2,1,760 +239000,4,1,1280 +600000,4,2.5,2990 +350000,4,2.25,1770 +852500,5,3.75,3830 +485000,3,2.5,2870 +299000,3,1,1520 +227450,2,1,660 +383000,3,1,1800 +835000,2,3.25,3570 +760000,5,1.5,3050 +532500,2,1,820 +635000,3,2.5,3610 +438500,3,2,1490 +545500,3,2.5,1560 +675000,3,1.75,1660 +450000,3,1.75,1180 +199999,3,1,960 +375000,3,1.5,1630 +600000,4,2.25,2260 +292600,3,1.5,1520 +1.04E+06,5,2.75,3050 +610000,3,1,1000 +397450,4,2.5,2650 +382000,3,2.25,1750 +370000,3,2.25,1770 +520000,3,2.25,1770 +260000,2,1,770 +890000,4,2.5,3370 +344000,5,2,2130 +205000,3,1,1050 +379000,5,2.5,2803 +424240,3,2,2080 +589950,3,2,2080 +582000,4,1.75,2120 +349000,3,2.5,2550 +658000,3,1,1290 +294000,5,2.75,1790 +690000,5,3.5,2720 +600000,3,1,1040 +199990,3,1,840 +220000,3,1.75,1650 +440000,4,2.25,2080 +439990,4,2.5,1540 +815000,4,2.5,3880 +535000,4,2.25,1860 +215000,3,1.75,1280 +605000,3,2.5,3200 +349900,3,2.5,2200 +495000,3,1,1570 +515100,3,2.5,2074 +620000,4,2.5,2450 +657500,4,2.25,2520 +250000,5,1.75,2190 +385000,5,1.75,2190 +307000,3,1.5,2320 +288000,3,2.5,1370 +226450,3,1.75,1730 +390000,3,2.5,1640 +350000,3,1,1300 +368000,3,1.5,1560 +469000,2,1,1120 +865000,3,2.25,2670 +515000,5,2.5,3810 +410000,3,1.75,1440 +210000,4,1,1200 +460000,3,1.75,1520 +241500,4,2.5,2500 +322200,4,2.25,2010 +279000,4,1,1210 +303000,2,1,1100 +420000,3,1.5,1050 +249000,3,1.75,2120 +294950,3,1,1240 +1.32E+06,4,3.5,3460 +335000,3,1.75,1270 +1.16E+06,4,2.25,2980 +520000,2,1,1250 +560000,4,1.75,1740 +243400,4,1.5,1730 +405000,3,2,1240 +495000,2,1,1670 +350000,4,2.5,2140 +368500,5,2.75,2530 +99000,2,1,960 +1.07E+06,4,3.75,4130 +430000,4,1.75,1710 +412500,3,1.5,1490 +1.12E+06,4,3.25,4750 +915000,4,2.5,3400 +535000,3,2.5,2210 +390000,3,1.5,1650 +499000,3,1.5,1260 +375000,3,1,1960 +349000,4,2.5,1800 +635000,3,2.25,1940 +682000,4,2.75,2820 +321027,4,2.25,2820 +150000,2,1,720 +410000,3,1.75,1640 +449950,3,2,1560 +194990,6,2.5,1560 +475000,4,1.75,1910 +530000,5,1.75,1570 +319950,4,2.5,2038 +210000,3,2.25,1720 +485000,3,2.75,1670 +774000,4,2.75,2830 +478000,4,2,1690 +385000,4,2.5,1620 +595000,4,2.5,2360 +285000,3,1.5,1480 +723000,4,2.5,2700 +279000,3,1.5,1780 +195000,3,1.5,1430 +625000,2,1,2160 +270000,3,1.75,1800 +559000,2,2,1930 +474000,4,2.25,1960 +303500,4,2.5,1920 +350000,3,1.75,1470 +367500,5,3,2980 +595000,5,3,2980 +589000,3,2,2360 +585000,3,1.75,1790 +482975,3,2.25,2130 +365500,4,2.5,2030 +570000,4,2,1790 +335000,3,2.5,2260 +767500,4,2,2350 +386591,3,2.5,1690 +279000,3,1,1320 +620000,4,2.5,2690 +407000,4,2.25,2810 +364250,3,2.5,2280 +399000,4,2.5,2870 +766950,3,2.5,3030 +710000,4,2.75,2940 +320000,3,1,1190 +300000,3,2.5,1800 +263000,3,1.75,1580 +445000,3,2.5,1730 +554000,3,2,1910 +335000,2,1.75,1000 +307000,4,2.75,2520 +404000,3,1,1420 +775000,4,3.5,3080 +220000,3,1,1060 +518000,4,2.5,2160 +1.60E+06,4,3.5,4060 +315000,1,2.25,1940 +572650,4,2.5,2250 +350000,2,1,1620 +285000,2,1,920 +231000,3,2.5,1370 +179000,3,1,920 +244000,3,1.5,1360 +185850,3,1.5,1630 +610000,6,2.5,3610 +419000,4,2.5,3010 +779000,3,1.75,2320 +695000,5,3,3290 +319900,3,2.5,2040 +329000,3,2.75,1920 +475226,3,2.5,2120 +638000,3,2.5,2170 +440000,2,1.5,1330 +214000,3,2,1580 +600000,3,2.75,3580 +935000,4,2,2580 +630000,4,1.75,1930 +575000,3,2.5,2120 +345000,3,2.5,1990 +323000,4,1.75,1310 +425000,3,2.5,2670 +411000,2,2.25,1910 +299800,4,1.5,1530 +823000,6,1.75,2920 +200000,3,1,1010 +760000,4,1.75,2450 +359950,4,2.5,1820 +375000,4,2.5,2090 +295000,2,1.75,2200 +250000,4,3,2250 +497000,3,2.25,1450 +520000,4,2.5,2280 +365000,4,3.5,2720 +459900,3,2.25,2250 +158000,3,2,1090 +294700,3,2,1970 +439950,4,2.25,2780 +899000,4,2.25,2290 +535000,3,1.75,2330 +530000,4,4.5,4060 +215000,4,2,1470 +290000,2,1,1620 +798000,5,2.75,3220 +785000,4,2.5,3270 +433000,3,1.75,2160 +425000,2,1,1150 +654000,4,2.5,2240 +215000,3,1.5,1280 +232000,3,1,840 +675000,3,1.75,1680 +665000,5,2.75,2330 +835000,4,2.5,3030 +525000,6,3,2880 +780000,3,2.75,2910 +844000,4,3.25,3090 +680000,4,2.75,2720 +290000,3,1.5,1310 +560000,2,1,1790 +605500,3,2.5,2830 +762500,4,2.5,3150 +1.74E+06,5,3.25,3930 +665000,6,2.75,2840 +540000,5,1,2480 +375000,3,2.5,1930 +342000,3,1,1260 +340000,3,1,670 +1.25E+06,5,3.25,3930 +693000,4,2.5,3160 +638500,4,1.75,1770 +805000,5,3,2240 +250000,3,1,990 +325000,3,2.5,1580 +270000,4,1.75,1560 +880000,6,2.5,2640 +300000,2,1.75,2120 +290000,2,1,1200 +2.85E+06,4,4,5040 +259950,3,1,1460 +1.78E+06,4,3.25,4890 +299950,3,1,1580 +483000,3,2.25,2100 +890000,3,2.25,2060 +719000,3,2.5,1690 +785000,4,3,3370 +660000,3,2.5,2330 +264000,4,1.75,1820 +575000,3,1.75,1890 +1.22E+06,4,3.75,3820 +475000,3,2.5,2770 +845800,4,3.5,3020 +352500,3,1.75,1170 +347000,3,1,1270 +560000,4,2.75,1950 +323000,4,2.75,2230 +595000,3,1.75,2220 +257500,4,2,2060 +450000,3,1,1100 +410000,4,1,1140 +810000,3,1.75,1980 +372500,5,3,2480 +325000,3,1,1050 +280000,3,1,1260 +258000,3,2,1680 +329950,4,1,1360 +836000,4,2.5,2450 +365000,5,2.5,2260 +111300,2,1,1060 +864000,4,2.5,3720 +725000,3,1.75,1610 +550000,4,2.5,3350 +130000,2,1,790 +765000,2,1.75,1660 +255000,3,1.5,1420 +439500,3,2.5,2050 +268000,3,1.75,1250 +985000,3,1.75,1700 +751305,4,2.5,2660 +280000,3,1,1350 +304000,4,2,1810 +200000,4,2.75,2210 +325000,3,1.5,2120 +736000,3,2.25,2470 +426500,4,2.5,2700 +640000,2,1.75,1760 +230000,5,2,1930 +366350,4,1,1680 +365000,2,1,1390 +482000,4,2.25,2240 +345000,4,1,1980 +682000,3,1.75,1830 +657500,3,1.75,980 +895000,6,2.5,3550 +425000,3,1.5,1660 +532500,4,2.5,2490 +540000,4,2.5,2329 +578000,3,2.25,1790 +1.09E+06,3,3,2830 +322500,3,1,1160 +140000,3,1,1000 +485000,3,2.5,2540 +575000,2,1.5,1750 +421000,3,2.5,2890 +355000,4,2,1870 +515000,4,2.25,2200 +309000,3,1,1300 +815000,5,2.25,3410 +285000,3,1,1160 +700000,3,1.75,2100 +289000,3,2.5,1490 +458000,4,3,3280 +230000,3,1.75,1450 +432500,3,2.5,1930 +288000,3,1.75,1660 +354000,3,1.75,1260 +119500,3,1,1170 +805000,4,3,3350 +435000,3,2.5,1420 +260000,3,1.75,2170 +377000,4,1.75,1800 +602000,4,2.5,2000 +530000,3,1.75,1660 +525000,4,2,1540 +250000,2,1.5,1160 +681000,3,1,1700 +625000,3,1.75,1580 +448500,3,2.5,2080 +260000,3,2,1030 +538000,3,1.75,1770 +385500,3,2,1540 +428400,4,2.5,2650 +346290,4,2.75,2690 +587000,4,2.75,2210 +355000,4,2.5,2390 +650000,5,2.75,2580 +340000,4,2.5,2160 +565000,4,2.5,2230 +630000,4,2,2000 +227000,3,1,1280 +600000,4,2.75,2810 +540400,4,1.75,1680 +569000,3,2.5,2150 +735000,3,2.5,2820 +434000,3,2.25,1750 +578888,2,2,1060 +465425,4,2.75,2430 +280500,4,2.75,2660 +539950,2,2,1670 +406430,3,2,1380 +1.15E+06,4,3.75,4160 +250000,3,2.5,1790 +266000,3,2.5,1940 +258000,3,2,1390 +472000,3,2,2200 +530000,3,2.25,1264 +302282,2,1,1095 +370000,2,1,850 +625000,4,2,1760 +142500,1,1,690 +334000,3,1.75,1400 +362000,5,3,1810 +181000,2,1,1310 +241500,3,1,1400 +245000,3,1.75,2350 +227500,3,1,1150 +158550,5,1.5,1710 +450000,3,2.25,1660 +485000,3,1.75,1950 +353000,4,1.75,1780 +500000,4,3,2450 +360000,1,2.25,2060 +357500,3,1.5,1540 +272000,3,2.5,1650 +422000,3,1,1160 +365000,2,2,1440 +450000,3,1.75,2150 +275053,2,1,1060 +1.88E+06,3,2.75,2620 +725000,3,1.75,1630 +235000,3,1.75,1840 +510000,2,1,820 +489950,2,1,820 +463000,3,2.5,2010 +536000,4,2.25,1990 +375000,4,2.5,2990 +630000,4,2.5,2540 +362000,3,2.25,1640 +350000,4,2.75,2500 +1.69E+06,4,3.5,4020 +255000,3,2,1500 +269000,4,2.5,1594 +370000,4,3,2130 +270000,3,1,1130 +265000,3,2,1690 +487000,2,1,1440 +835000,4,3.25,3270 +850000,4,3.25,4350 +575000,4,2.75,1610 +335000,3,1,950 +318000,3,1,1010 +510000,3,2,1420 +242500,3,1.5,1200 +750000,5,2.25,2020 +439900,5,3.5,3390 +710000,2,1,1700 +2.40E+06,5,3.25,3410 +435000,3,1.75,2030 +874000,4,2.75,2860 +385000,4,1.75,1690 +110000,2,1,760 +477000,3,1.75,1780 +500000,3,2,1550 +885000,4,2.5,4090 +235000,2,1,880 +210000,3,2.75,1320 +320000,2,1,950 +406000,3,1.75,1390 +350000,3,1.75,1900 +350000,2,0.75,1392 +720000,4,2.5,3340 +604700,4,2.75,2750 +343000,3,1,1400 +558000,3,2.25,2220 +364000,4,1,1210 +420000,3,1.75,2390 +450000,5,2,1870 +392000,2,1.5,940 +100000,4,1,1120 +480000,3,2.5,1250 +212000,3,1.5,1060 +560000,5,2.5,2410 +359950,5,2.75,2844 +535000,4,2.5,2200 +980000,5,4,3460 +720000,2,1,1580 +619950,2,1,1520 +489000,3,2.5,2260 +415000,4,2,1800 +672500,4,2.5,2650 +352500,3,1,1000 +258750,4,2,2300 +350000,3,1,1080 +152000,3,1,902 +378500,2,1,730 +1.02E+06,4,1.75,2600 +419000,3,1.5,1570 +895000,5,3,2876 +668500,4,2.25,2290 +487000,2,2.5,1470 +538000,3,3.5,2620 +898000,5,1.5,2680 +315000,4,2,2020 +800000,3,2.5,2100 +516130,3,1.75,1510 +1.60E+06,3,2.5,2850 +1.20E+06,4,2.5,4280 +355425,4,2.5,3238 +1.16E+06,3,2.5,2740 +689000,4,2.5,2020 +500000,3,3.25,1520 +430000,5,2.5,3860 +299500,4,2.25,1600 +349950,4,2.5,2090 +1.42E+06,5,3.25,4020 +998000,4,2.25,2910 +329000,3,1,900 +575000,3,1.75,1720 +529900,5,2.25,3030 +1.47E+06,4,2.5,3030 +725000,4,1.75,2190 +286000,3,2.5,1680 +335000,3,2,1210 +395300,3,1.5,1120 +510000,4,2.75,3180 +203000,3,1,920 +248000,2,1,700 +265000,3,2.25,2540 +1.00E+06,4,1.5,2100 +1.00E+06,3,1,1540 +241400,3,2,1420 +309950,4,1.75,1450 +294010,3,1.75,1550 +345000,3,2.25,1920 +625000,3,2.25,1920 +660000,4,2.5,2510 +559000,2,2,1660 +866000,4,3.25,3990 +770000,3,2,2350 +259950,3,1.5,1350 +352000,5,2.75,2980 +2.47E+06,5,4.75,6390 +395000,3,2,1590 +276500,4,1.75,1400 +530000,3,2.25,1880 +798000,4,3.25,3500 +380000,2,2,1370 +350000,4,2.5,2810 +325000,3,2.5,2220 +336000,3,2.5,2110 +286900,3,2.25,1720 +472000,5,2.25,1780 +263000,3,1.75,1410 +565000,3,3,2110 +765000,3,2.5,2700 +1.52E+06,3,2.25,2610 +405000,3,2,1660 +1.10E+06,4,3.5,4570 +555000,3,3,3760 +305000,3,2.5,1610 +289950,3,2.25,1740 +487500,5,3.5,3530 +96500,3,1,840 +185000,3,1,840 +150550,4,1,1470 +339000,4,2,2470 +675000,4,1.75,2220 +615000,3,1.75,1720 +837500,4,2.5,2700 +250000,2,1,950 +583000,3,2.5,1790 +499000,3,2.5,1610 +550000,3,2.5,2290 +400000,4,2.5,2170 +990400,3,2.5,2100 +600000,3,2.5,2320 +325000,2,1,1120 +265000,3,2.5,1530 +1.62E+06,3,2.5,3490 +347500,3,1.5,1180 +629000,5,2,2050 +1.09E+06,2,2,2360 +397500,4,2.5,2570 +404500,2,1,1270 +225000,3,1.5,1250 +267000,3,2.25,2510 +800000,4,3.75,2690 +339000,4,2.5,2900 +1.85E+06,4,2.5,3830 +525000,5,1,1280 +1.15E+06,5,3.5,4350 +565000,1,1,1370 +387000,2,2.25,1230 +720000,4,2.5,2440 +1.50E+06,4,3.5,4410 +235000,2,1,910 +365000,2,1,910 +368250,3,2.5,2150 +580000,3,2.5,2150 +1.10E+06,4,3.25,3190 +215000,4,2.5,2130 +648000,4,2.5,2740 +705000,4,3,3150 +465000,3,2.25,1450 +650000,5,2,2400 +335000,4,2.25,2280 +640000,4,2,2310 +638250,4,2.5,2460 +1.46E+06,4,3.5,4200 +375000,4,2,1620 +842000,4,1.75,2170 +499950,3,2.25,2880 +810000,4,2.5,3280 +310000,5,2,2900 +730000,3,2.5,2160 +637800,4,1.75,2250 +225000,3,1,1340 +417500,4,1,1390 +265000,4,2,1600 +550000,4,2.5,2050 +625700,3,2,2570 +595000,3,2.5,2660 +270000,3,1.5,1540 +739375,5,3,2640 +357562,2,1.75,1210 +1.01E+06,4,2.5,3760 +455000,2,1.75,1350 +310000,5,2.25,2600 +415000,3,2.75,3900 +452000,2,1,1340 +810000,3,2,1760 +730001,3,2,1840 +825000,3,2.25,2980 +665000,3,2.5,1730 +327500,4,1.75,1650 +699950,3,2.5,3370 +424000,3,2.5,2200 +657000,4,2.5,2180 +445000,3,1.75,1490 +450000,3,2.5,1530 +350000,3,1,1180 +460000,4,2.5,2080 +385000,4,2.5,3200 +272000,4,2.25,1880 +535000,3,2.5,2510 +216500,2,1,1060 +325000,3,2.5,2130 +420200,3,1.75,1320 +258000,3,1.75,1040 +450000,3,2,1150 +720168,4,2.25,2120 +652000,3,2,2130 +569500,4,2.5,2340 +411000,4,1.75,2250 +524950,3,1.75,1890 +153000,2,1,1140 +775000,3,2.5,2780 +338500,4,2.5,2390 +570000,3,1.75,2390 +653000,3,2,2680 +435000,2,2.5,1560 +207000,2,1,1130 +540000,2,1,1120 +386000,4,2.25,2050 +265000,5,2.25,2600 +250000,3,2.25,1050 +1.70E+06,3,2,2600 +455000,4,2.5,2811 +1.80E+06,4,3.25,4060 +759000,3,2,2260 +970000,4,2.75,4430 +280000,1,0,600 +690000,3,2.25,2430 +789900,3,2.5,3420 +447500,2,1,1180 +440000,4,2.25,2010 +278000,3,2,1230 +980000,5,2.5,2750 +245000,3,2.75,1300 +287000,3,1.5,1150 +435000,3,1.75,2220 +585000,3,2.5,2050 +616000,4,1.75,1700 +203000,3,1.75,1610 +860000,4,2.75,2720 +833000,4,2.5,2190 +565000,4,2.75,2730 +572500,3,2.5,2490 +254000,4,2,1510 +1.53E+06,4,4.25,4720 +900000,4,3,3810 +899000,3,2.5,1950 +560000,3,2,1300 +512500,3,1.75,1610 +775000,4,2.5,2040 +200000,2,1,700 +172000,3,1,970 +219900,3,1,910 +641200,3,1,1060 +473000,5,3.25,2180 +540000,3,1.75,2050 +295000,2,1,750 +370000,3,1,800 +1.73E+06,4,2.25,3470 +275000,3,1.5,1390 +89000,3,1,900 +175000,2,1.75,1050 +490000,3,2.5,2410 +342400,3,2.25,1180 +345000,3,1,1140 +399000,2,1,700 +550000,4,2.5,2060 +652450,3,2.25,2230 +438000,2,2.25,1950 +605000,3,1.75,2100 +395000,4,2.5,2130 +449950,3,2,1880 +651100,4,2.5,2310 +241000,3,1,880 +3.42E+06,5,5,5450 +268500,2,1.5,1290 +200000,2,1,1010 +400375,4,1.75,1690 +429000,2,1.75,1350 +230000,3,1,680 +1.20E+06,4,2.25,2860 +314200,1,1,610 +513000,4,2.5,2660 +535000,2,1,1390 +420000,6,3,2290 +345950,3,2.5,2110 +483500,3,2,1200 +695000,4,2.25,2360 +295000,4,2.5,2350 +434975,3,2.25,1590 +513000,3,2.5,1810 +360000,3,1.75,1900 +234900,3,1,1250 +963000,4,3.5,3280 +595000,2,1.5,870 +942500,4,3.25,3570 +1.03E+06,4,3.25,3780 +350000,3,1,1190 +416500,4,2,2280 +209900,3,1,1030 +802000,3,1.75,2870 +230000,4,1.5,1520 +489000,3,3,3700 +497000,3,1.5,2240 +250000,3,2.25,1920 +925000,3,3,2560 +390000,4,2.5,1840 +415000,3,2.75,2080 +785000,3,2,1600 +575000,3,2,2168 +170000,2,1,860 +750000,4,1.75,2100 +230000,3,1,1140 +855000,4,3,3090 +235000,3,1,1330 +335000,2,1,1360 +1.20E+06,5,3,3420 +677000,4,2,2180 +575000,3,2,1800 +450000,2,1,1120 +817250,3,2.5,2980 +440000,4,2.25,2600 +526000,2,2,1550 +762500,3,2.25,3330 +325000,4,2.5,2200 +840000,4,3.5,3840 +377500,2,1,840 +212500,3,1.5,1270 +749400,4,2.5,3240 +663000,3,2.5,2480 +1.48E+06,3,2.25,4470 +261000,3,1,1780 +515000,4,2.5,1850 +410000,3,2.25,2200 +336000,3,2.25,2760 +440000,2,1,1090 +908950,4,2.75,3090 +554000,2,1,820 +387000,3,2.25,1445 +268643,4,2.25,1810 +514000,3,1.75,1620 +420000,2,1.75,1060 +199000,3,1.75,1050 +225000,3,1,1010 +320000,4,2.5,2050 +204995,2,1,970 +376000,3,2,1540 +705000,4,2.75,3000 +725995,4,2.5,3190 +285000,4,2.5,1870 +285000,4,2.5,2200 +731000,4,2.5,3070 +1.56E+06,4,3.75,3730 +510000,4,2.5,2440 +620000,2,1,990 +1.11E+06,3,4,4160 +796000,4,3.5,3670 +255000,3,1.5,910 +807000,3,2.5,1940 +315000,4,2.5,1780 +637000,3,2.25,2200 +2.73E+06,4,4.25,6410 +490000,3,2,2070 +253000,3,1.75,2040 +325900,4,2.5,2320 +425000,2,2,1440 +215000,4,2.5,1700 +315000,4,2.5,1700 +724800,3,2,2050 +295000,2,1,800 +509007,3,1.75,1800 +306000,5,2,1460 +205000,3,1.75,1290 +275000,3,1.5,1900 +685000,3,1.75,1480 +465000,4,2.5,2090 +560000,4,2.25,1950 +458500,3,1.75,1250 +354000,3,1,990 +441000,3,2.5,2740 +194000,3,1.75,1260 +316500,4,2.5,2150 +524950,3,1.75,1750 +1.05E+06,3,2.25,2880 +925000,4,2.25,2590 +780000,3,1.75,2430 +241000,2,2,1470 +519000,3,2.75,2020 +286000,2,1,610 +400000,3,2,3000 +255000,2,1,920 +152000,3,1.75,1070 +599000,4,2,3410 +330000,4,2.5,1820 +461000,2,1,1060 +620000,5,2.5,3070 +352500,4,2.5,2300 +435000,3,2,1610 +725000,5,2.75,2830 +300000,3,1,970 +252000,3,2.5,1680 +464625,4,2.75,2040 +340000,3,1,1450 +1.33E+06,4,2.25,2870 +455000,5,2,1870 +495000,4,3.5,2490 +925000,4,2.5,3350 +587000,4,2.75,3190 +524000,3,1.75,1560 +1.03E+06,4,2.5,2750 +176000,2,1,920 +249900,2,1,1140 +499500,3,2.5,2520 +600000,5,3.5,3150 +294000,4,2.5,2040 +272000,4,2,1780 +390000,3,2.5,2240 +700000,4,2.5,3270 +635000,5,2.75,3110 +920000,4,1.5,1850 +500000,3,1.75,1570 +263500,2,1,750 +975000,4,2.25,2240 +575000,3,2.5,1870 +822000,4,2.5,2683 +300000,3,1,1490 +487600,4,2.5,2340 +500000,4,2,1700 +680000,2,2,1450 +419000,3,2.5,3310 +450000,4,1.75,1520 +650000,5,1.75,1260 +550000,3,1.75,1840 +330000,4,2,1750 +282510,4,1,1450 +2.39E+06,4,4,6330 +230000,2,2,1260 +750000,4,1.75,2100 +321000,4,2.5,2430 +2.20E+06,4,3.25,4250 +245000,4,2,1830 +510000,2,1,1310 +751000,4,3.25,3090 +675000,4,2.5,2560 +295000,3,1.75,1930 +312000,2,1,1460 +730000,3,3,3460 +762500,5,3.5,3290 +150000,3,1,820 +270000,3,1,1480 +400000,4,2,1420 +650000,3,2.5,2790 +530000,2,1.5,1390 +248000,3,1,950 +760000,4,3.5,3000 +199000,4,1,1280 +240000,2,1,870 +415000,3,1.5,1360 +228000,3,1,1000 +525000,4,2.5,2740 +399950,3,1.75,1560 +781000,4,2.5,2590 +827000,3,2.5,1850 +525000,5,2.25,2500 +671300,4,2.5,3280 +175000,2,1,670 +1.10E+06,5,2.75,2890 +800000,5,2.5,3000 +329950,4,2.5,1920 +445000,4,3.25,1960 +237000,3,1.75,2000 +1.11E+06,6,4,3600 +438900,4,2.5,2740 +1.28E+06,9,4.5,3650 +600000,4,2.5,2310 +670000,4,2.5,2095 +519000,2,2,1560 +320000,3,2.25,1880 +270000,2,1.5,840 +1.00E+06,3,2.5,2730 +330000,1,1,860 +657500,3,2,2320 +450000,3,1.75,1540 +150000,3,1,890 +792500,4,2.5,4290 +540000,3,2.5,1950 +229900,3,1,1010 +533000,4,2.5,2830 +239000,4,1.75,1500 +713900,3,2.5,3370 +427500,4,2.5,3160 +302000,3,1,1110 +1.15E+06,3,2.5,3830 +555000,3,2.5,3160 +495000,3,2.25,2100 +495000,3,1.5,2240 +340000,2,0.75,1060 +464950,4,2.25,2350 +320000,4,2.5,1940 +440000,1,1,1160 +686000,3,1.5,1840 +555000,4,1.75,2260 +361500,2,1,840 +1.24E+06,5,3,2830 +154950,4,1,1600 +247200,3,1.75,1370 +250000,3,2.25,1960 +590300,3,1.5,1470 +541125,5,2.75,2740 +310000,2,2.5,1090 +704111,4,2.75,2460 +277500,3,2.25,1820 +325000,4,2.75,1960 +289200,3,2.25,1760 +185000,1,1,720 +1.45E+06,4,3.5,3470 +420550,4,2,1370 +603000,4,2.25,2370 +345000,3,1,1390 +650000,3,2,1840 +589950,5,3,2790 +309950,2,2.25,1460 +775000,3,2.5,2620 +590000,4,1.5,2230 +863500,4,3,3250 +517500,3,1,1190 +700000,3,3,2090 +699000,3,2.5,2580 +350000,3,2.5,2100 +795000,4,2.5,3160 +543000,3,2.5,2090 +325000,3,2.5,1570 +337500,3,1,1020 +425000,2,1,1300 +780000,3,2.5,2110 +259000,2,1,1210 +524400,4,1.75,1990 +260000,3,2,1630 +273000,2,2,1384 +639900,4,2.5,3380 +420000,4,2.5,2480 +510500,3,1,1270 +290000,4,1,1010 +226000,3,1.75,1490 +300000,2,1,820 +407450,3,2,1810 +390000,4,2.25,3060 +1.06E+06,6,2.75,2980 +610000,3,2.5,3440 +239975,3,2.5,1820 +375000,3,2.5,2320 +742500,4,2.5,2620 +450000,4,1.75,2190 +300000,3,2.25,1780 +216600,3,1.75,2200 +525000,3,1.75,1600 +455000,4,2.25,2450 +390000,4,2.25,2680 +450000,3,1.75,1850 +382000,4,1,1740 +287000,3,2.25,1490 +460000,4,2,1960 +435000,3,2.25,1380 +575000,2,1,1510 +626700,3,1.5,1410 +352000,4,1.5,1440 +650000,3,1,920 +197000,3,1,1090 +340000,8,2.75,2790 +560000,3,2,1840 +354000,3,1.75,1340 +670000,4,2.5,2570 +769000,4,3.5,3010 +650000,4,2.5,2160 +650000,3,1.75,2140 +289950,4,1.75,2090 +300000,3,1.75,1810 +471000,4,1.75,1760 +639000,4,2.5,2500 +287000,2,1,930 +740000,4,2.5,3030 +499922,3,2,1460 +675000,4,2.5,2940 +738515,5,2.75,3360 +445000,3,1.75,2110 +1.04E+06,4,2.25,2740 +346000,2,1,1070 +450000,3,2,1680 +350000,4,2.5,2260 +2.40E+06,4,3.5,5860 +594950,4,2.25,2380 +1.70E+06,5,3,3320 +219000,2,1,1050 +450000,4,2.5,2070 +402000,4,2.25,1790 +275000,2,1,840 +421500,3,1.5,990 +560000,3,3,4120 +314000,3,1.75,1620 +287000,4,2,1340 +277000,4,1,1500 +337500,2,1,1300 +792000,4,2.75,3100 +435000,3,2.5,3380 +313100,4,2.5,2660 +575000,3,2.25,1700 +510000,4,2.5,1840 +299950,2,1,890 +1.03E+06,3,3,2800 +364000,4,1.75,2010 +335000,3,1,1380 +219950,3,1,1210 +215000,3,2,1280 +640000,4,2.5,4090 +535000,3,1,1580 +253000,4,2,1910 +650000,2,2.5,1740 +672000,3,2.25,1130 +606000,3,1.75,1970 +292000,3,2.25,1780 +289950,3,2,1670 +257500,4,1.5,1360 +380000,3,2.5,1840 +360000,3,1.75,1255 +269500,3,1.75,1840 +449000,4,2.5,2960 +375000,4,1.5,1430 +2.20E+06,5,4.75,5990 +810000,4,2.5,3480 +994000,5,3.25,4260 +275000,5,2.25,1820 +300000,2,1,1290 +380000,5,2.5,2130 +200000,3,2,1170 +635000,3,3.5,1730 +280000,2,1,880 +574000,3,2.5,2380 +1.05E+06,4,1,1330 +545000,3,2.25,1780 +271950,3,1.5,1220 +630000,5,1.75,2490 +400000,2,1,1180 +334000,4,2.5,2310 +332500,4,2,1440 +525000,2,1.5,1620 +408000,3,2.5,2620 +846450,4,2.5,3710 +411100,3,1.5,1040 +409124,5,3.25,3320 +335950,2,1.5,800 +480000,5,2.5,2040 +280000,2,1.75,1960 +668000,4,2.5,2670 +750000,4,2.5,2930 +394475,2,1,830 +848000,5,1.75,2290 +675000,3,1.5,2510 +175000,3,1,1280 +560000,4,1.5,1810 +538888,5,2.75,2080 +359000,4,1.75,1680 +300000,3,2.25,1660 +273000,3,2.5,1650 +670000,3,2.5,1420 +530000,4,2.25,2240 +625000,3,1.5,1230 +248000,3,1,1260 +533000,3,2.5,2060 +549950,4,3.5,3090 +485000,4,1.75,3220 +353500,3,2.5,2020 +435000,2,1.75,1910 +241000,3,1,1150 +885000,4,2.75,2730 +799200,6,3,2890 +760000,3,2.5,2280 +270000,2,1,1040 +675000,4,1.75,2440 +499000,3,2.5,1720 +1.20E+06,3,2.5,3430 +320000,4,2.5,2570 +890000,4,3.25,4360 +275000,4,2.75,2060 +490000,4,2.5,3020 +550000,3,2.5,2340 +390000,5,2,2400 +277000,3,2.25,1610 +236000,3,1.75,1090 +265953,3,1.75,1470 +545000,3,2.25,1670 +535000,3,2.5,1850 +1.45E+06,3,2.75,3940 +490000,4,3,2330 +319950,4,2.5,2020 +625000,3,1.5,1300 +248000,3,1,1180 +475000,3,1.75,1320 +410000,6,2.75,2520 +670000,3,2.5,1680 +430000,3,2.5,2000 +313000,2,1,1180 +950000,3,3.25,3330 +751750,2,2,1880 +760000,4,2.5,2990 +310650,3,1.75,1510 +367500,4,3,3110 +580000,4,2.5,2150 +580000,3,2.25,1900 +665000,4,2.5,2720 +239950,3,2.25,1560 +470000,4,2.5,1990 +733000,3,1.75,1740 +250000,4,2,2130 +402000,4,1.75,1510 +295000,5,3.5,2100 +355000,5,2.5,2344 +289000,3,1.5,1970 +376000,3,2.25,1470 +212700,2,1,940 +325000,3,1.75,1780 +415000,4,2.5,2230 +935000,3,2.5,3570 +372000,3,2.5,1920 +240000,3,1.5,1290 +334950,3,1.75,1880 +426500,4,2.5,2960 +430000,2,1.75,1840 +400000,3,1.5,1890 +455850,3,2.25,1820 +1.97E+06,4,3.5,4370 +400000,3,1.75,1530 +397500,3,1,1030 +755000,3,2.5,2000 +287000,5,1.5,1730 +480000,4,2.5,3620 +490000,3,2.5,2040 +365000,3,2.5,2640 +260000,3,2.5,1600 +505000,4,1,1480 +260000,2,1,700 +430000,2,1,700 +905000,4,2.5,3520 +440000,3,2,1650 +439500,4,1,1360 +270000,3,2,1350 +306500,3,2.5,1970 +380000,3,2,1470 +215000,4,1.75,1610 +299900,2,1,810 +1.45E+06,4,3.5,2820 +239950,3,1,1900 +494000,4,2.5,1830 +317500,4,1.5,1730 +670000,4,2.5,2110 +650000,3,2.5,3060 +852000,4,2.5,2620 +250000,2,1.5,1088 +264950,3,1.5,1400 +582500,2,2,1540 +384000,3,2.5,1540 +817000,3,1.5,2310 +320000,4,1.75,1730 +445800,4,2.25,2070 +263300,2,1,900 +215000,3,1,860 +842500,5,4,2980 +850000,5,4,2980 +386000,5,2.5,2740 +251100,4,2.5,1790 +435000,3,1.75,1750 +870000,4,4,3610 +800000,6,1,1430 +555000,3,1.75,1570 +280000,2,1,2280 +356000,3,1,940 +675000,4,2.5,2920 +605000,4,2.25,2260 +690500,5,2,2000 +437000,2,1.75,1440 +850000,5,2,2310 +350000,4,2.25,2300 +480000,2,2.25,1490 +379500,3,2.25,1830 +600000,5,4.5,4440 +1.44E+06,4,3.5,4970 +303000,2,1.5,1000 +800000,4,2.5,4940 +549000,2,2,1980 +324950,3,2.5,1560 +170000,2,1,870 +178000,3,1,840 +144000,3,1,1250 +1.58E+06,4,2.75,3120 +258000,2,1,750 +345000,3,1.75,710 +470000,3,1.75,2290 +2.90E+06,5,2.5,3750 +350000,3,1.5,980 +225500,2,1.75,1590 +473000,2,1,940 +279000,3,1.75,1750 +470000,3,1,1460 +565000,3,1.75,1540 +695000,3,2,2560 +315000,3,1.75,1660 +529000,3,2.5,1880 +750000,5,3.75,3500 +481500,3,2.25,1840 +211000,3,2,1060 +455000,3,2.25,1790 +238950,2,1,810 +722500,4,3.5,2600 +795000,4,2.5,3230 +327500,4,2.25,2240 +585000,4,3,3400 +775000,4,2,3140 +645000,4,2.5,2780 +445000,4,2.75,2320 +257950,3,1.75,1370 +375000,5,1.75,2230 +245000,3,2.5,1610 +725000,3,2.5,3410 +702000,4,2.5,2810 +330000,3,1.75,1850 +940000,3,1.5,1790 +354500,3,1,1150 +279950,4,2.75,2420 +284000,3,2.25,1580 +480000,5,2,1760 +647500,5,2,1760 +625000,3,2.5,2750 +152000,3,1,920 +322000,3,1,960 +445000,3,1.75,1120 +595000,3,1,1560 +165000,3,1,1380 +278500,4,2.5,1940 +517500,3,1.75,1810 +343566,2,1,1100 +286285,4,2.25,1980 +474905,4,1.5,1340 +550000,3,1.75,1680 +286000,4,2.5,2060 +900000,3,3.25,2620 +449950,3,2.25,1610 +259000,4,1.5,1490 +340000,3,2.25,1900 +785000,4,2.5,3440 +490000,2,1,1840 +344950,4,2,2330 +950000,3,2,2250 +810000,4,1.75,2000 +998160,2,2.5,3010 +377000,3,1.75,1680 +595000,3,2,1530 +313300,2,1,970 +360000,5,1.75,1550 +188000,3,1.75,1660 +755000,3,2.5,3680 +1.29E+06,5,3.5,3210 +455000,3,1,1480 +817500,5,3.5,3600 +550000,3,2.25,1700 +260000,3,1.75,1680 +320000,3,2,1550 +1.15E+06,3,3.25,3780 +362000,4,2.5,2360 +503500,3,2.5,1810 +653000,3,2.5,2290 +760000,4,2.75,3370 +775000,4,1.75,2090 +1.34E+06,4,3.75,2130 +417500,5,1.75,2060 +525000,3,1.5,1560 +217000,2,1,730 +525000,4,2.75,2910 +442500,4,2.25,2490 +525000,4,1.75,1710 +425500,4,1.75,1520 +710000,3,2.75,2930 +545000,4,3,3160 +410000,5,2.75,2910 +245000,3,2.25,1700 +194900,2,1,810 +284000,4,2.5,2000 +280000,2,1.75,1894 +280000,3,1.75,2080 +360000,4,2,1730 +405000,2,1,720 +865000,4,2.5,3560 +483300,4,2,1210 +355000,4,2.5,2130 +274950,3,2.25,1570 +1.93E+06,3,4.5,3950 +755000,3,3.25,3450 +1.94E+06,4,5.75,7220 +309212,3,1.75,1150 +219950,3,2.25,1500 +690000,3,2.5,1300 +250800,3,1.75,1290 +557500,3,2,2510 +941000,4,1.75,2320 +3.65E+06,6,4.75,5480 +305000,4,2.75,2030 +815000,4,1.5,2060 +1.02E+06,3,2.5,2920 +1.24E+06,4,3,3330 +535000,3,2.5,2110 +775000,3,1,1175 +255000,3,2,1590 +327000,2,1,1070 +560000,4,2,2720 +1.34E+06,4,3.5,2980 +199500,3,1.75,1160 +760000,4,2.5,3580 +439000,3,2.25,3020 +527000,4,2.25,2380 +199950,3,2.75,2270 +254000,3,2.25,1660 +393000,2,1,830 +585000,5,2.25,2480 +450000,2,2,1900 +565000,2,1.75,1670 +330000,5,2.25,2000 +870000,3,2,2320 +585000,4,2.5,1860 +500000,3,2.5,2110 +225000,3,2,1400 +295000,3,2,1400 +775000,3,2.75,2850 +280000,3,1,1370 +539000,3,2.5,2170 +567500,3,1.75,2570 +442500,4,2.25,1970 +598200,5,3.75,2980 +610000,4,2.5,2300 +544900,3,2.5,1990 +557500,4,2.5,2390 +532500,3,2.5,2160 +1.35E+06,4,3.25,3300 +750000,3,2,1840 +530000,3,2.5,2030 +346100,3,2.5,1400 +260000,4,2.25,2320 +365000,3,1.75,1410 +615000,3,2,1860 +318400,4,2.5,1820 +498500,4,2.5,1910 +450000,3,1.75,1540 +200000,3,2,1430 +234000,3,1,1010 +121800,2,1,940 +805000,3,2.75,2600 +410000,4,2.25,2060 +475000,3,2.5,1920 +1.34E+06,4,2.5,2900 +269000,1,1,1020 +573000,4,2.25,2150 +330000,3,2.5,1660 +252750,4,1,1230 +745000,2,2.5,2170 +280000,3,2,1280 +535000,4,2.5,2240 +580000,4,1.5,1780 +301000,3,1.75,1840 +600000,4,1.75,1740 +538900,5,3,3040 +366000,3,2.5,2370 +303000,4,2.5,2100 +432000,3,2.25,1470 +300000,2,1.5,1300 +908800,3,3,3420 +500000,3,1.5,1190 +254000,5,2,2080 +470000,5,1.5,2180 +480000,3,2,1460 +536000,3,1.75,1530 +1.35E+06,4,3.5,4740 +550000,3,2.25,1980 +260000,3,1.75,1710 +284900,2,1.5,1160 +740000,3,2.5,2200 +425000,2,1,1170 +230000,3,1,1120 +675000,3,1.5,1710 +267500,3,1.75,1650 +814000,4,2.5,2840 +1.25E+06,4,3,3310 +460000,3,2,1860 +445000,3,2.5,2250 +715000,3,2.5,2890 +425000,3,1.75,2120 +370000,4,2.5,2130 +302000,2,1.75,1170 +453000,4,1.75,2120 +290000,3,1.75,1280 +1.04E+06,4,2.5,3170 +925000,4,2.25,2260 +600000,3,1.75,2930 +354000,3,1.5,1060 +204950,4,1.75,1740 +675000,4,2.5,2990 +995000,4,3.25,3530 +800000,5,2,2960 +472500,3,2.5,1650 +549950,4,2.5,2720 +575575,3,1.75,1516 +545000,4,3.25,4386 +340000,3,2.25,2580 +225000,3,1,960 +299950,2,1.75,1460 +829900,4,3.5,3840 +340000,4,2.5,2090 +515000,4,2.25,2470 +601000,4,2.5,2090 +470000,3,2.5,2070 +371500,3,1,1650 +550000,3,1.75,1880 +242550,4,2.5,2060 +367500,3,1.5,1410 +359000,4,3.5,2770 +204900,3,2,1390 +850000,4,2.75,5440 +187000,3,1.5,1280 +326000,3,2.75,1720 +340000,3,2.75,1720 +330000,6,2.25,3040 +782000,4,3.5,3780 +612000,4,2.5,2670 +400000,3,2,1350 +941500,5,3.5,3490 +313000,2,1.5,870 +735000,4,2.25,2410 +471000,3,1.75,1640 +350000,3,1,1540 +530000,4,2.5,2370 +415000,4,3,1830 +639500,4,2.25,2330 +580379,4,2.75,2240 +378000,2,2.5,1700 +265000,3,2.25,1750 +212000,3,1.75,1100 +400000,4,3,2320 +750000,4,2.5,2540 +384900,5,2.5,3090 +176000,2,1,770 +350000,3,2.75,2370 +168000,3,1,1200 +358000,4,2,2200 +580000,3,2.75,2660 +442500,3,1.75,1600 +515000,2,2.5,1330 +554000,5,2.5,3440 +659000,3,2.5,2510 +414999,4,2.5,2150 +275000,3,1.5,1180 +193000,2,1,680 +525000,4,2.5,2840 +424000,3,2.5,1820 +455000,2,1,1070 +463000,2,1,1250 +1.10E+06,4,2.5,2190 +523000,3,1.75,3000 +615000,4,1.75,2270 +1.52E+06,4,4,4500 +870000,5,4,3400 +710000,3,2.5,2830 +215000,3,1,960 +590000,2,1,1530 +323000,5,2.5,2500 +279000,4,2,1560 +535100,3,2.25,2070 +830000,5,2.25,2710 +815000,4,2.5,3150 +535900,3,2.25,1880 +230000,3,1,1250 +325500,4,1.75,2290 +359000,3,2.25,1990 +505000,3,2.5,2100 +253905,3,1,940 +369950,3,1.75,1640 +350000,3,2.25,1860 +650000,4,2.25,2100 +295000,3,1.75,1500 +620000,3,1.75,1680 +2.00E+06,2,2.5,3900 +246000,3,1,1400 +430000,3,2.75,2600 +509990,3,2,1440 +490000,4,1.75,1870 +385000,4,2.75,2960 +769000,4,2.5,2440 +185000,2,1,1122 +303500,3,1.5,1060 +468000,4,2.5,2150 +449950,4,2.5,3100 +235000,2,1.5,880 +520000,4,2.5,2490 +203000,2,1,1080 +657000,5,2.5,2530 +275000,3,1,1200 +540000,4,2.25,2850 +455000,4,2.5,2950 +458500,2,1.75,1160 +549900,4,3.5,3420 +750000,3,1.75,2240 +235000,4,1.75,1450 +286000,4,2.5,1820 +2.65E+06,4,3.5,4700 +602000,4,1.75,2430 +640000,3,1.5,1960 +267000,3,1.75,1440 +712000,4,2.5,2730 +244500,2,1,910 +301000,2,1,910 +990000,4,2.5,2430 +739999,4,2.75,3350 +480000,4,1.75,2320 +305000,3,2.5,1260 +703300,3,2,1980 +265000,4,1.5,1580 +600000,4,2.5,2710 +253000,3,1,1400 +617950,4,2.5,2410 +385000,4,3.25,1790 +319000,3,2,1640 +696000,3,2.5,1670 +345000,2,1,970 +380000,3,2.5,1610 +647500,4,1.75,2060 +725000,3,2.5,3570 +269950,3,1.75,1400 +875000,4,2.5,3470 +299950,3,1,1210 +1.88E+06,4,3.25,3930 +430000,2,1,990 +495000,5,2.5,2200 +275000,3,1.5,1510 +333000,3,1,1620 +247000,3,2.25,1580 +204555,3,1.75,1260 +432000,3,2,2190 +175000,3,1.75,1230 +556300,4,2.5,2030 +286000,2,1,780 +320000,2,1.5,1110 +815000,3,2.5,2790 +385000,4,1.75,1660 +1.04E+06,4,1,3410 +350000,4,2.25,2390 +277000,4,2.5,1850 +415000,6,2,2500 +295000,3,1,1000 +969000,4,2,2450 +339888,4,1.75,1440 +269950,3,2.25,1660 +1.19E+06,3,2.5,2510 +780000,4,2.5,3090 +198000,3,1,860 +350000,2,1,1220 +350000,3,1,1010 +319000,4,2.25,2390 +311000,4,2.25,3340 +394000,5,3.25,3620 +1.34E+06,5,2.25,4200 +2.70E+06,5,2.75,3831 +396000,3,1,1980 +809000,4,1.75,1790 +480000,3,2,1580 +535000,6,1.75,2460 +425000,5,2.75,2110 +408000,3,2.5,1470 +1.26E+06,4,2.5,3510 +310000,1,0.75,520 +292000,3,2.5,1950 +217000,2,1,770 +398500,4,2.5,2250 +2.25E+06,3,3,4040 +700000,4,1.75,2360 +585000,4,2.5,2330 +399950,3,1,1720 +235000,3,1.75,1900 +212000,3,1,1040 +310000,3,2,2070 +539000,3,2,2070 +390000,3,3,1550 +560000,3,2.5,2020 +800000,5,2.5,3320 +1.90E+06,4,3.25,4130 +472000,5,2,2030 +502550,3,1.75,1770 +830000,4,3.25,3330 +224950,4,2.5,2260 +375000,3,2.5,1950 +645000,3,2.5,2930 +599000,3,2.75,1960 +515000,4,2.5,2980 +135000,2,1,780 +485000,3,2.5,1650 +890000,3,3.25,4030 +215000,3,1,1010 +299500,3,1,1190 +800000,2,1,1050 +275000,3,2.5,1560 +256400,3,1.5,1490 +310000,2,1,770 +385000,1,1,620 +203000,3,1.5,1200 +285000,4,2,2120 +473975,3,2.5,2330 +320000,3,1.75,2000 +599000,5,2.75,2820 +580000,3,2,2040 +269500,4,2.25,1700 +274000,2,1,820 +347000,2,1.75,1315 +270000,3,1.75,1390 +1.43E+06,3,2,1890 +220000,3,1.75,1460 +243000,3,1,1480 +457500,3,1.75,1840 +340000,2,1.75,1880 +657500,4,1.5,1910 +332500,4,2.5,2220 +340000,3,2,1410 +350000,4,3,3380 +428000,4,2.5,1950 +515055,4,2.5,2400 +450000,3,1.75,1560 +190000,3,1,1040 +1.00E+06,4,2.75,3090 +299000,3,2.5,1850 +508000,2,1,1200 +294000,4,2.25,2190 +320000,2,1,1380 +641000,5,2.75,3710 +675000,3,2.5,2320 +255000,3,1.5,1110 +286651,3,2.5,1830 +607500,4,2.5,2460 +765000,3,1,1270 +334950,4,1.75,1700 +426000,3,1,1130 +775000,3,1.75,1640 +343000,2,1.5,1040 +470101,4,2.5,2320 +195000,3,1.5,1200 +772500,4,1,1720 +450000,3,1.5,2330 +1.44E+06,4,3.75,4410 +525000,4,1.75,1650 +280000,3,1.5,1370 +270000,3,2.5,1770 +406100,3,2.25,1410 +332544,2,1.75,1710 +110000,2,1,790 +685000,6,2.25,2770 +461000,4,1,1260 +615000,3,2.25,2300 +550000,2,1,1070 +1.06E+06,4,3.5,3850 +685000,3,2.5,2320 +1.56E+06,5,2.5,2870 +312000,4,2.5,1830 +507500,3,1.75,1990 +217000,3,1,1110 +439000,3,2.25,1830 +620000,6,3.5,3600 +915000,4,2.5,3210 +425000,4,2,1490 +435000,2,1,990 +305000,3,2.25,1646 +276000,2,1,720 +327500,3,2.25,2310 +810000,3,2.5,2670 +715000,3,3.25,3060 +272000,3,1.5,1380 +266000,2,1,700 +543000,3,1.5,1710 +400000,3,2.5,1450 +509500,5,2.25,2060 +495000,3,3.5,2380 +424950,4,2.5,2760 +230000,3,1,940 +235000,4,1.5,1760 +763000,3,2,1360 +350000,3,1.75,2010 +900000,3,1.5,2160 +250000,3,1,930 +225000,3,2.5,1020 +255000,2,2,1360 +161700,4,1.75,1720 +336000,3,3,1790 +410500,3,1,1150 +502700,4,3.5,2710 +505000,3,2.5,2400 +250000,3,1,1660 +570000,3,1,1660 +349900,4,2.5,2290 +465000,3,2.5,2870 +625000,4,3.25,4240 +655000,3,1.75,1800 +469000,4,1.75,2960 +355000,3,2.25,1980 +596000,3,2.5,1730 +790000,4,2.5,3020 +885000,4,2.25,4470 +1.03E+06,4,3.25,2830 +710000,4,1.75,2120 +428040,3,2.5,2150 +1.37E+06,5,2.25,3510 +546000,2,1,970 +540000,4,1,1360 +435000,3,2.5,1470 +540000,4,2.25,3040 +284000,2,1,860 +208000,2,1,820 +315000,3,1.75,1900 +417500,2,1,1330 +345000,3,1.75,1240 +375000,3,2.5,1330 +389800,3,1.75,1880 +475000,3,1.75,1890 +569000,4,2.25,2250 +985000,5,4.25,4650 +532000,3,2.5,1830 +280000,2,1,720 +435000,4,2,1960 +223000,3,1,1220 +390000,2,1,1800 +315000,3,1.75,1340 +612000,3,3,1740 +591000,3,1.75,1680 +800000,4,2.25,3220 +225000,3,2,1610 +589900,2,3,3160 +565000,4,2.5,2520 +650000,3,1.5,2120 +499000,3,2.5,2090 +280000,3,1,1330 +649950,3,2.5,2420 +420000,3,1.75,1510 +319990,4,2.5,2120 +265000,3,2,1850 +482000,3,1.75,2300 +452000,3,2.25,2600 +1.49E+06,4,4.25,5180 +375000,2,1,1810 +588000,5,3,2190 +635000,4,2.5,2500 +280500,4,2.5,1890 +210500,2,1.75,2040 +196500,3,2,1310 +1.40E+06,5,3.5,4010 +475000,3,1.75,1780 +550000,3,2.5,1980 +1.58E+06,3,3.25,3690 +240000,3,1.75,1540 +272000,3,1,1130 +408506,3,2.75,2480 +640000,3,2.5,2580 +316000,4,2.5,2010 +299000,4,2,2320 +447500,2,2.25,1180 +736500,4,2.5,3180 +665000,4,2,2970 +707000,5,2.5,3050 +215000,4,1.75,1630 +275000,3,2.25,1620 +648000,4,2.25,2170 +415000,4,2.5,2150 +690000,3,2,1770 +320000,4,2.75,2110 +750000,3,1.75,1590 +355000,3,2.25,1370 +246000,3,1.75,1390 +1.16E+06,3,1.75,1640 +744000,3,2.5,2670 +1.21E+06,3,3.75,5400 +217000,3,2,1690 +583000,3,2.5,2600 +515000,2,1.5,1400 +594000,4,1.75,2140 +303100,3,1.5,1640 +430000,3,1.75,1720 +708000,5,3.25,3060 +221000,3,1,1150 +325000,3,2.5,2000 +1.30E+06,0,0,4810 +385000,3,1.75,1560 +359500,3,2.5,2070 +433000,3,2,1920 +525000,2,1,1000 +356200,3,2,1690 +595000,4,2,3090 +560000,4,1.5,1790 +2.18E+06,4,3,4750 +513000,4,2,2090 +365000,2,1,680 +368000,4,1.75,2100 +870000,4,2.75,2840 +225000,3,2.25,1470 +1.39E+06,4,4.5,4490 +177000,3,1.75,1150 +465000,3,1.5,1460 +750000,4,2.75,3150 +149000,3,1,1090 +605000,3,2.5,2670 +725000,3,2,2110 +413900,4,2.25,1770 +199950,3,1.5,1510 +400000,1,1,530 +870000,3,1.5,2420 +292000,5,2.5,2490 +225000,3,1,990 +466750,4,2,1730 +330000,2,1.5,1440 +770000,7,2.25,3260 +802500,4,2.25,1950 +378800,5,2.5,2740 +795000,3,2.75,2940 +460000,3,2,1200 +567000,3,2.5,2070 +209950,3,1.75,1570 +415000,2,1,1050 +424500,4,1.5,1830 +261000,2,1,970 +365000,3,2.5,2200 +631000,4,2,1930 +3.80E+06,5,5.5,7050 +584000,3,2.5,1790 +310000,3,1.75,1560 +717000,4,2.5,2780 +667000,3,1.5,1720 +190000,3,1,1640 +430000,3,2,1730 +213000,2,1,740 +475000,3,2.5,2280 +649000,2,2.75,2090 +715000,3,2.5,2550 +845000,4,3.5,3350 +390000,3,2.5,2770 +390000,4,3,2860 +328000,4,1.75,1990 +239999,3,2.75,1740 +225000,3,2,1460 +920000,3,1.75,3670 +940000,4,2.75,3270 +465000,3,1,1210 +241000,3,2,1770 +307550,4,2.5,1980 +490000,4,2.5,2650 +647000,4,2.5,3040 +780000,4,2.75,3640 +517500,3,2.5,1810 +295000,3,2,1380 +560000,4,1.5,1810 +319450,5,2,2250 +1.50E+06,4,3.25,3860 +340000,4,3,2380 +249950,3,1,1370 +499950,3,1,1830 +1.04E+06,4,1.75,1440 +750000,4,2.5,2510 +875000,4,2.5,3230 +678000,3,1.75,1670 +360000,2,1,780 +354900,3,1,1720 +632000,5,2.5,2260 +350000,3,1.75,1480 +990000,3,4,2550 +1.65E+06,4,3.25,3920 +481000,4,2.5,2286 +485000,3,2.5,1500 +477000,3,2.5,1740 +560000,5,2.5,2880 +600000,6,3,2600 +622500,5,2.75,3320 +410000,2,2.25,1660 +318200,3,2.5,1990 +289000,3,2,1680 +263000,3,1.75,1570 +240000,3,1,1150 +281500,3,1,1270 +587206,3,3.5,1890 +482000,2,2.25,1350 +485000,3,1.75,1650 +309000,3,2.5,1450 +221000,3,2.25,1640 +700000,3,2.5,2030 +411500,5,3,2420 +285000,4,3.5,2770 +395000,4,3,1980 +237950,2,1.75,1460 +680000,3,2.5,1610 +199950,2,1,1010 +765000,4,3.5,2760 +515000,2,1,1060 +470000,3,1.5,1510 +330000,2,1,880 +284000,3,2.5,2150 +295000,3,2.5,1660 +555000,4,2.5,2160 +350000,3,1,1370 +240000,3,2.25,1460 +419900,3,1.5,1450 +528000,3,2,1560 +481000,4,2.5,2480 +304700,2,1,740 +715000,4,2.5,2927 +738950,4,2.75,2260 +215000,3,1.5,1240 +300000,6,2,2040 +346000,3,1.75,1270 +473000,4,3.5,4370 +500000,3,1.75,1700 +750000,2,1.5,1300 +519900,4,2,1820 +378500,2,1,880 +314500,3,1.75,1870 +499950,3,1.5,1350 +1.74E+06,5,3.5,4870 +630000,3,2.5,2460 +360000,4,1.5,1720 +460000,2,1.5,2730 +361000,3,1,1100 +713400,3,2.25,1810 +445000,2,1,930 +305000,4,1.5,1590 +1.43E+06,3,2.75,2710 +222000,3,1,1460 +510000,5,3.25,3400 +500000,5,3,2920 +605000,2,1,910 +393000,3,2,1320 +725000,4,2.5,2490 +320000,3,1.75,2220 +210000,4,1.5,1130 +419900,4,2.5,2750 +410000,4,2.5,2240 +721000,3,2.25,2680 +605000,2,2,1270 +738000,3,1.75,1520 +725000,6,3,2480 +255000,2,1,960 +303000,3,2.25,1340 +394950,3,2.5,1090 +530000,4,3,2240 +475000,4,2.5,3740 +250000,4,2.5,1800 +180000,3,1,780 +443500,2,1,1330 +390000,4,2,1900 +430000,4,1.75,1570 +460000,5,4.5,3100 +660000,3,3.5,2740 +515000,3,1.75,1570 +482500,3,2,1330 +305000,2,1.5,1140 +835000,4,2.75,1550 +237000,3,2,1290 +445000,2,1.5,1510 +710000,4,2.5,2720 +180000,3,1,840 +280017,3,2.5,1850 +436500,4,2.5,2290 +1.26E+06,4,2.5,3200 +420000,3,2.25,1800 +205000,3,1,860 +570000,3,1.5,1980 +565000,4,1.75,2140 +287000,2,2.5,2410 +260000,4,1.75,1650 +470000,4,1.75,1650 +700000,3,2.5,2410 +249000,3,1.75,1520 +568000,3,1.75,2050 +500000,4,1,1720 +358000,5,2.5,2390 +225000,3,2.5,1680 +275500,3,1,1060 +495000,3,2.5,1860 +758800,5,2.25,1750 +280000,3,1.75,1480 +380500,3,2.5,1900 +3.20E+06,7,4.5,6210 +260000,3,1.75,1440 +630000,4,2.5,1910 +875000,3,2,2010 +457500,3,1,960 +900000,2,1,1240 +235000,2,2,870 +410000,3,2,1400 +355000,3,3,1850 +1.30E+06,4,4,4270 +467500,3,1.75,2260 +500000,4,4.5,2690 +995000,4,3.5,2780 +277000,3,1,1140 +630000,4,2.25,2900 +628000,5,2.75,2830 +655000,5,2.5,2560 +170000,2,1,1240 +352500,4,2.5,2100 +615000,4,2.75,3120 +165000,3,1,970 +243500,4,2.5,2300 +304000,2,1.5,950 +369000,3,1.5,2110 +779950,4,2.75,2990 +605000,4,2.25,2940 +292500,4,2.5,1860 +500007,2,1.75,1820 +449999,4,2.5,1950 +355000,4,2.5,1890 +258000,4,3,2710 +380000,4,2.25,2150 +650000,4,3,3720 +456500,4,2.5,2580 +259950,4,2,1540 +123000,2,1,1050 +520000,3,2.25,1210 +506000,4,2.25,2040 +425000,3,1,980 +438000,5,2.5,1990 +1.49E+06,4,2.5,2420 +375000,4,2,1240 +337500,3,2.25,1530 +300000,4,2.25,2080 +627000,5,3.25,3570 +1.40E+06,5,4.25,4230 +674725,4,2.5,2700 +325000,3,2.75,2200 +230000,5,2,1210 +485000,5,1.75,2140 +315000,4,2.5,2740 +560000,3,2.75,1370 +444000,4,3,2800 +325000,3,1.5,1060 +118125,2,1,790 +212000,2,1,790 +428900,4,2.5,2820 +510000,3,2,1850 +416000,3,1.5,1110 +950000,4,3,3230 +204000,3,1.5,1460 +7.70E+06,6,8,12050 +878000,4,2.5,3480 +1.05E+06,4,3,3560 +350000,2,1,840 +659500,3,1.75,1820 +395000,3,2.5,1630 +308950,4,2.5,1920 +410000,3,2,1750 +710000,4,3,2750 +175000,1,1,620 +508800,3,2,1720 +606400,3,3,1800 +245100,3,1.75,1300 +540000,3,2.5,1970 +415000,3,1.5,1740 +469500,4,2.75,1930 +195000,3,1.75,1190 +1.62E+06,4,3.25,4250 +1.45E+06,4,3.5,4360 +1.20E+06,3,2.5,3420 +1.07E+06,4,3.75,4260 +555500,2,1,920 +440000,3,1,1040 +485000,3,1,1260 +693000,3,2.5,2460 +295000,3,1,830 +700000,3,2.5,2060 +767500,2,1.75,2210 +800000,6,4.25,5480 +440000,3,2,1860 +600000,3,2.5,1350 +1.16E+06,4,2.5,2790 +506000,2,1,1570 +474950,4,1.75,2030 +654000,3,2.5,2570 +710000,2,1,1210 +620000,4,2.25,1530 +390000,3,2,1510 +550000,3,2.25,1720 +353000,3,1.75,2190 +465000,4,2.5,3030 +279900,3,2,1410 +700000,2,1.75,1679 +395000,4,1,1980 +375000,4,2.5,1900 +547000,4,1,1720 +525000,5,3.25,2480 +285000,3,1,1210 +570000,2,1.75,1540 +409000,3,2.5,2740 +260000,4,2.5,1811 +348000,4,2.5,2720 +389000,4,1,1520 +445000,4,2.75,2160 +400000,3,1.75,1390 +302000,4,2.5,1740 +798000,3,2.5,2849 +335000,2,1,1440 +585000,4,2.5,3000 +2.50E+06,4,4,3330 +555000,4,2.25,1720 +3.10E+06,3,3,3920 +295000,3,2.5,1500 +265000,4,1.5,2050 +330000,4,2,1180 +286000,4,1.5,1600 +305000,3,2.5,1260 +970000,2,1,1290 +525000,4,2,2680 +355000,3,1.75,2370 +469950,5,2.5,2310 +435000,4,1,1450 +363500,4,2.5,2680 +595000,2,1.5,1030 +275000,3,1,1320 +295000,2,1,670 +345000,3,2.25,2670 +485000,3,2.25,2440 +1.25E+06,5,2.5,3370 +340500,2,1,940 +280000,3,1,1100 +449888,3,2.25,2520 +483000,2,1.75,1400 +445500,3,1.75,1880 +379900,5,3.5,2800 +599950,4,3.5,2500 +215000,3,1,810 +263000,3,2.5,1720 +565000,4,1,2170 +950000,5,3,4530 +395000,4,1,1440 +1.54E+06,4,3.25,2850 +922000,4,2.5,2620 +330000,3,2.5,1676 +1.53E+06,4,3.75,5850 +323000,3,1.75,1910 +554000,2,2,1670 +500000,3,2,2050 +775000,5,3.5,3730 +340000,4,1.75,1800 +560000,4,1.75,2230 +304000,3,2.5,1670 +279900,3,1,1400 +315000,5,3,2110 +849000,4,2,2160 +325000,3,1.75,2420 +786000,4,3.5,3320 +384000,5,2.75,3220 +907000,3,1.5,1340 +700000,3,2.5,2490 +269500,3,2,1640 +269000,3,2.25,1420 +749950,4,2.5,3340 +325000,3,2.75,1580 +1.15E+06,3,1.5,2170 +406000,3,1.5,1370 +650000,4,2.5,2840 +295000,3,1.75,1940 +375000,4,2,1757 +395000,2,1,980 +609000,6,3,2470 +510000,3,1.75,1610 +190000,3,2.25,1590 +250000,1,1,780 +295000,3,1.5,720 +740000,3,1.5,1630 +323000,3,1,1590 +713000,3,2.75,2310 +1.07E+06,3,1.75,2320 +460000,3,1.75,1660 +880000,3,1.75,2070 +585000,4,1.75,2500 +249950,2,1,940 +450000,3,2.5,1990 +450000,3,2.5,2620 +1.78E+06,4,3.25,3730 +350000,3,3.25,1600 +292500,3,2.5,2095 +879000,4,2.75,4230 +1.18E+06,4,2.5,3200 +584999,4,2.75,2050 +366000,4,2.75,2020 +987500,4,2.25,3270 +300000,3,1,1320 +299000,2,1.75,1270 +560000,4,1.75,1980 +695000,3,2.5,2620 +360000,4,1.75,1750 +183500,3,1,1040 +311000,3,1.75,1900 +263000,3,1.75,1660 +269000,3,1.75,1530 +1.60E+06,4,3.5,4280 +564000,4,2.5,2870 +425000,3,2.5,2540 +679000,4,2.75,2100 +410000,3,2,1740 +340000,4,2.5,2441 +360000,3,1.75,1810 +450000,3,1.5,2060 +552000,4,2.75,3160 +294000,4,2,2930 +663500,2,1,1310 +1.98E+06,6,4.5,4800 +175409,4,1.5,1450 +459000,4,3,1900 +339950,3,1,1050 +393000,5,1.75,1610 +275500,2,1,720 +485000,3,1,1020 +250000,3,1,1250 +935100,4,3.5,3200 +245000,3,1,990 +670000,4,2.5,2850 +1.39E+06,3,3.5,4240 +440000,4,1.75,2800 +1.25E+06,2,2.5,2310 +203000,3,1.75,1490 +583000,4,2.5,1840 +575000,3,1,1740 +2.58E+06,4,3.5,3280 +1.60E+06,5,3.5,4050 +312500,4,2.5,2160 +455000,3,2.75,2720 +1.31E+06,5,3,3650 +605000,4,2.25,1750 +325000,3,2.25,2450 +630000,3,1.75,1940 +928950,4,3.75,3280 +489950,3,1.75,2480 +550000,3,2.25,2120 +237000,3,2,1710 +390000,3,2.5,1690 +665000,3,2.5,2190 +277000,4,3,1960 +545000,3,1,1510 +615000,3,2.5,1490 +343000,3,1.75,2210 +597000,4,2.5,2340 +600000,3,1,940 +479000,3,1.75,1470 +292000,3,1.75,1650 +265000,3,1.5,1400 +623000,4,2.5,2710 +486000,4,2.5,2150 +520500,3,2,1900 +1.30E+06,4,3.5,4380 +825000,4,1,2290 +259900,3,1.75,1690 +1.17E+06,5,2.75,3090 +245000,2,1,1120 +830200,3,2.5,2680 +650000,4,2.5,2400 +305000,4,2,1610 +599000,5,2.5,3470 +272000,4,2.5,2070 +415000,3,2.5,2420 +319000,4,2.25,2380 +425000,4,1.75,2120 +297500,4,2.5,2190 +725000,4,2.5,2740 +325000,3,2.5,1830 +460000,3,1.75,1370 +396480,3,1,1000 +1.03E+06,3,1,2050 +370000,3,2.75,1750 +260656,3,1,1620 +431000,3,2.5,1710 +320000,3,1,1060 +296500,3,2.75,2170 +679000,4,2.5,3080 +359000,3,3,1320 +330000,4,3,1920 +350000,4,2.5,2440 +242000,3,1.5,1640 +692500,3,2.5,2420 +441000,2,1.5,1190 +765000,4,2.5,2910 +375000,2,1,1010 +365000,3,1.75,2080 +580000,2,1.5,1990 +1.61E+06,4,3.5,3920 +841000,4,2.5,3080 +515000,5,3,2670 +565000,5,2.5,4320 +365000,2,1.5,1200 +295000,3,1.5,1640 +406500,2,1,870 +614905,3,2.5,2410 +1.40E+06,5,2.25,2640 +250000,2,1,990 +549000,5,1,1500 +397000,4,2.5,1790 +184000,3,1.75,1490 +2.50E+06,4,3.25,3960 +499100,3,1.5,1620 +676101,4,1.5,2270 +290000,3,1,1150 +390000,4,1.75,2180 +465000,3,1,910 +470000,3,2.75,2770 +435000,3,1,940 +415000,3,1.75,2410 +450000,3,2,1010 +645000,3,2.5,2120 +231000,4,2,1530 +358000,3,1.5,1810 +330000,3,1,1040 +229950,2,1.5,1160 +403250,2,1.5,1430 +470000,3,2.5,2280 +239000,3,1,1200 +579000,4,1.5,2480 +380500,3,2,1270 +614285,5,2.75,2730 +376000,2,2,1340 +290000,3,1,1240 +487000,4,2.25,2400 +935000,4,2,1220 +255000,4,2.5,2163 +380000,2,2.5,1860 +450000,2,1,810 +622000,3,2.5,1950 +292500,3,2.25,1390 +1.32E+06,4,3,2120 +410000,4,2,1510 +160000,3,1.75,1010 +809000,4,1.5,1840 +183750,5,2.75,1650 +411000,5,1.75,2860 +1.05E+06,3,1.75,2650 +625000,2,1,1100 +305000,3,2.25,1646 +915000,4,4.5,5250 +317000,3,1.5,1390 +165000,2,1,780 +575000,2,1,1490 +219900,3,1,970 +1.49E+06,4,3.25,3730 +300000,3,1,1090 +520000,3,1.75,1940 +310000,4,2.25,1780 +322500,3,2,1190 +320000,4,2.25,2000 +440000,3,2.5,1390 +578000,3,1,1500 +382000,2,1.5,1070 +535000,3,2.5,1720 +679000,4,2.5,3680 +258900,3,2.25,1400 +563000,3,1.5,1730 +562000,5,3,2795 +725000,4,1.75,2000 +236775,3,2.5,1830 +860000,4,3.5,3380 +270000,3,1.5,1500 +621000,4,2.75,1950 +527900,3,2.5,2490 +395000,4,2.25,1780 +320000,3,2,1110 +300000,4,2.5,2500 +320000,3,1.75,1480 +625000,3,2.25,2570 +505000,2,1,810 +300000,4,2.5,2700 +363000,4,2.5,2180 +1.70E+06,4,3.5,4330 +1.15E+06,4,3.5,4210 +680000,4,2.5,2880 +678940,5,2.25,2610 +299000,3,1.75,2010 +379900,4,1.75,1500 +205000,3,1,1290 +387500,4,1,1320 +256000,3,1,1290 +548000,4,2.5,2440 +163000,3,1.75,1290 +367500,2,2,1030 +390000,3,2.25,1640 +415000,4,2.5,1160 +449000,4,2.25,2230 +460000,5,2,1910 +395000,4,2,1980 +300000,3,2,1470 +345000,3,1.75,1520 +825000,3,1.75,1930 +539950,3,2.5,1330 +410000,4,2,1580 +245000,3,1,1370 +482000,4,2.75,3010 +270000,3,1.75,1390 +475000,3,1.75,1330 +445800,3,2,1320 +518000,4,3,2430 +785000,2,0.75,1260 +430000,3,2.5,1690 +715000,4,1.75,3420 +560000,3,1.5,2790 +449000,3,1.75,1270 +805000,4,2.5,2910 +296000,3,2.5,1560 +275000,2,1,770 +419950,3,1.75,1770 +285000,3,1.75,1100 +775000,3,2.5,2890 +288250,3,1.75,2110 +257000,2,1.75,1220 +377000,1,1,950 +550000,2,1,1420 +339000,3,1,1100 +481500,3,1.75,2140 +224500,3,1.75,1300 +260000,3,1,1790 +865000,2,1,1470 +730000,5,3,2500 +550000,2,1,980 +645000,3,2,2130 +250000,3,1.75,1360 +507200,3,3.5,1630 +380000,4,2.5,2500 +540000,4,1.75,2260 +738500,3,2.5,2300 +206000,3,1,1060 +265000,2,1,940 +190000,1,0.75,780 +339900,3,1,1200 +250000,6,2.5,2590 +416500,3,1,1100 +575000,4,2.5,2890 +385000,3,1.75,1230 +253000,3,1,1030 +460000,3,1,1140 +1.45E+06,4,2.5,3200 +492000,2,1,950 +275000,4,2,1960 +542500,5,3.25,3010 +345000,2,1,1080 +575000,4,2.75,2730 +275000,5,2.5,2570 +510000,6,4.5,3300 +2.54E+06,4,3.5,4350 +830000,3,3.5,3820 +640000,4,2.5,2260 +702000,4,2.75,3880 +960000,3,2.5,2010 +190000,3,1,950 +500000,3,2.25,1730 +529000,3,2.5,3070 +435000,3,1.75,1500 +670000,3,1.75,2160 +365000,3,2.25,1960 +1.27E+06,5,3,3950 +465000,3,1,1100 +285000,3,1.5,1400 +219950,3,1,1020 +220000,3,1.5,1600 +1.47E+06,6,4.5,4230 +1.11E+06,5,3.5,3090 +694000,2,2.5,2320 +620000,3,2.5,2440 +415000,3,1,2020 +765000,3,3,3270 +864000,4,1.75,2260 +385000,5,2,2020 +725000,3,1,1000 +545000,4,2.25,2030 +299900,3,1.75,1730 +639500,3,1.75,2010 +345000,4,1.5,1540 +1.13E+06,6,4,5330 +345000,2,1,960 +600000,3,2,1460 +355000,4,1.75,2160 +698000,3,2.75,2640 +566000,4,2.25,2170 +449950,3,2.5,1530 +404600,3,1,1570 +258000,3,1,1490 +415000,4,2,1960 +320000,4,2.25,2190 +295000,3,2.5,1690 +389000,5,2,2330 +299900,3,1.75,1470 +394000,3,2.5,2550 +762000,4,2,2130 +697000,4,2.75,3650 +485000,3,2.5,3340 +189900,2,1,800 +2.15E+06,3,2.75,3470 +345000,3,1.5,1030 +376500,3,2,1630 +775000,3,2,2010 +450000,3,1,1360 +760000,4,2.25,2040 +569000,4,2.5,2830 +500000,3,1.5,2040 +592500,2,2,1340 +620000,4,2.5,2130 +1.00E+06,5,4.25,3920 +815000,3,2.5,2415 +775000,5,2.75,3750 +340000,3,1,1010 +458000,2,1.75,990 +250000,2,1.5,1200 +151600,2,1,1060 +515000,4,2.5,3200 +216000,2,1,1810 +245000,3,1.75,1670 +645000,3,2.75,1850 +249900,3,1,1100 +410000,3,1.75,1660 +499000,6,1.75,2400 +790000,5,3.25,2900 +458000,1,2.25,2140 +925000,4,2.5,2670 +152000,3,1,1090 +402000,3,2.5,1970 +340000,2,2,1250 +1.25E+06,4,2.5,4040 +775000,4,2.5,3220 +299800,2,1,1310 +340000,4,2.25,2060 +626000,3,2.25,1750 +324950,2,1,1150 +535500,3,2.5,2050 +817500,3,3.25,3230 +810000,4,3.5,4170 +565000,5,1.5,1940 +978000,3,1.5,2390 +530000,3,1,1440 +305000,4,2.5,2230 +345000,3,2.5,1210 +258000,2,2,750 +275000,4,1,1770 +310000,3,1,1020 +713250,3,2,2050 +500000,3,1,2000 +472000,3,1.75,2180 +250000,3,1,920 +725000,4,2.25,3440 +345000,3,2,1610 +460000,3,1.5,1870 +440150,2,1,1110 +390000,3,1.75,2200 +375000,2,1,790 +224950,3,1.5,1630 +480000,3,1.5,2100 +721000,4,2.75,2690 +174000,2,1,600 +170000,2,1,810 +658000,3,1.5,1660 +860000,3,2,1880 +407450,4,1.5,2310 +615000,4,1.5,2650 +920000,4,3,3130 +195000,2,1,860 +269950,3,1,990 +855000,4,3.5,4030 +620000,3,2.25,1780 +276000,2,2,1480 +329000,3,1,1140 +270000,3,1.5,1230 +440000,4,2.5,3080 +639000,4,2.5,1990 +403500,1,1,700 +585000,3,2.5,1700 +216000,2,1,860 +1.15E+06,3,2.5,3160 +575000,3,2,2500 +430000,4,2.5,3000 +660000,2,1,1670 +338000,2,1,690 +400000,4,2.75,1240 +210000,2,1,900 +305000,4,1.75,2200 +365000,2,1,960 +325000,5,2.75,2130 +245000,4,1.75,2020 +182000,3,1,1060 +440000,2,1,1230 +225000,3,2.25,2510 +358000,3,2.25,2510 +580000,5,2.5,2720 +240000,3,1.5,1070 +700000,4,3.25,3580 +325000,4,2.5,2230 +488000,4,2.25,2500 +875000,4,1,1670 +615000,4,2.5,2150 +321000,3,2.5,2020 +1.04E+06,3,2.5,2230 +299500,2,1,740 +459000,4,1.5,2020 +435000,3,2.5,1730 +222000,3,1.75,1370 +485000,4,1,1210 +750000,5,3.5,2160 +266000,3,2.25,1550 +455000,2,1,1170 +490000,3,1.75,2020 +280000,3,1.75,1740 +1.45E+06,4,3.25,3100 +291000,4,1,1590 +745000,5,3,2400 +685900,3,2.5,2290 +160000,3,1.75,1610 +650000,4,2.5,2240 +250000,2,1,850 +265000,2,1.5,920 +599000,5,3.25,2590 +199950,3,1,1340 +712500,4,2.75,2420 +490000,2,1,1420 +511500,4,1,1360 +299000,3,1,1510 +685000,4,2.5,2650 +597000,4,2,2120 +210000,3,1,1200 +659000,4,2.5,3190 +540000,3,1,1050 +469000,3,2,1300 +1.07E+06,3,2.5,3970 +575000,5,2.5,2990 +725000,4,2.75,2440 +299950,4,1,1170 +375000,4,2,2270 +342450,3,1.5,1280 +315000,4,2.5,1950 +328000,4,2.75,1930 +323000,4,2.75,1970 +320000,4,3,1820 +550000,2,1,950 +1.65E+06,6,3.5,4010 +1.21E+06,4,3.5,4560 +1.20E+06,4,3.5,4560 +120000,3,1,1150 +175000,3,1,1150 +169900,3,1,910 +508000,6,2.75,2890 +335000,2,1,1070 +613200,3,2.75,2050 +420000,2,1.5,1040 +1.00E+06,4,3.25,3320 +342000,2,1,740 +850000,4,2,3380 +582000,2,1.75,1210 +475000,3,2.5,2480 +570000,3,2.25,2010 +826600,4,3.25,3230 +387000,2,2.5,1170 +330000,3,1,1250 +653450,3,2.5,2070 +285000,2,1,1050 +217000,3,1,1400 +615000,3,1,1120 +580135,4,2.5,3150 +1.15E+06,4,3.5,4540 +231200,3,2,1400 +680000,4,2.75,2500 +267500,3,1.5,1390 +942000,4,2.75,3160 +435000,3,1.75,1310 +315000,2,1,1740 +354901,3,2.5,1490 +439888,2,2,1300 +360000,4,1,1460 +205000,4,1,1030 +299995,3,2.5,1970 +150000,2,1,790 +575000,3,2.25,3800 +625000,3,2,2168 +950000,4,3.5,4140 +278800,4,2.5,2440 +713500,3,2,1720 +1.90E+06,4,2.25,3020 +439000,5,2,2610 +425000,3,2,1500 +252500,4,2.5,2600 +185000,3,1.5,1370 +406550,5,2.75,2400 +243000,2,1.5,1068 +500000,3,1.5,2220 +204750,2,1,880 +222000,3,1.5,1310 +200000,4,1,1350 +367000,3,2.25,1400 +183000,3,1,1170 +300000,3,2.5,1020 +369000,3,1.75,1300 +380000,3,2,2010 +463000,3,2,1590 +475000,3,1,1470 +225000,3,1.75,1580 +371000,3,1.75,1970 +625000,3,2.5,2330 +3.20E+06,6,5,7100 +329000,3,1.75,1230 +634000,3,1.75,2570 +616000,4,2.5,3440 +1.82E+06,3,2.25,3330 +435000,4,2.25,1780 +320000,4,2.5,2110 +820000,4,3.5,2770 +310000,3,2.5,1590 +443750,3,2.25,1460 +795000,4,2.25,2070 +475000,3,2.5,2420 +585000,5,1.75,2000 +315000,2,1,1010 +635000,4,2.5,3050 +305000,3,1,1160 +785000,3,2,2180 +525000,3,1.75,1560 +537000,4,1.75,1580 +279950,3,1.75,1660 +659000,4,2,2350 +203000,2,1,1440 +782500,4,2.5,2930 +250000,3,1.75,1590 +279000,3,1,1400 +664000,6,2.5,3190 +2.90E+06,4,3.25,4580 +378500,4,2,1830 +535000,3,1.75,2720 +520000,2,1,1360 +369950,3,2,1520 +545000,3,2.25,2290 +360000,3,2.5,2150 +760000,3,1.5,1170 +450000,3,1.75,1830 +612500,4,2.5,2730 +280000,3,1,1090 +750000,3,2.5,2560 +237000,3,1,1160 +441500,2,1.75,1010 +251000,3,2,1650 +200000,3,1,2120 +332000,1,1,960 +401500,3,2.5,1509 +585000,4,1.75,2270 +340000,4,2.5,1954 +920000,3,3.5,2800 +153000,3,1,1270 +299950,4,2.25,1810 +440000,4,2.5,2410 +293000,3,2.5,1690 +203000,3,1.75,1190 +193000,2,1.75,1280 +305000,3,1.75,1460 +495000,4,1.75,1600 +420000,3,1.75,1770 +569500,4,2.5,2800 +620000,4,2.5,2680 +466000,3,1.75,1680 +355500,3,1,1120 +687500,2,1,1040 +432100,3,2.25,1790 +500000,3,2.5,2410 +690000,5,3.25,3370 +350000,2,1,800 +268000,2,1,1380 +120000,2,1,990 +285000,4,2.5,1800 +365000,4,1.5,1820 +635000,3,2.5,2620 +630000,2,2.5,2290 +450000,4,3,2200 +590000,4,2.5,2940 +895000,2,1.75,1700 +160000,3,1,860 +520000,2,1,910 +432000,4,3.25,2820 +141800,2,1,930 +980000,4,2,2190 +1.29E+06,4,2.5,3430 +740000,4,2.75,2560 +230000,2,1,770 +3.40E+06,3,4.5,5230 +954500,3,2.25,2440 +622000,3,1.5,1650 +90000,1,1,780 +342000,3,3,1260 +305000,4,2.5,2320 +259900,4,2.75,1560 +420000,3,2,2330 +250000,2,1,1400 +249950,3,1.5,1450 +199000,2,1,1140 +355200,3,1,1120 +425000,3,1.5,1970 +379500,3,1,1110 +860000,4,2.5,3070 +335000,3,2.5,1940 +865000,3,2.5,3050 +390000,3,1,1240 +569950,5,4.25,3380 +495500,3,2.5,3190 +476500,4,1.75,1670 +261000,3,1,1660 +375000,4,2,2070 +550000,4,2,2070 +230000,2,1,1430 +526750,5,2.5,2270 +606000,3,2,1980 +368500,4,2.75,2500 +275000,3,1,1230 +342000,4,1,1390 +278100,4,1.75,2120 +450000,4,2.75,1540 +349950,4,2.5,2000 +425000,4,2.5,2400 +435000,4,2.75,2110 +460000,4,2.5,2550 +323000,4,1.75,1440 +325000,2,1,810 +480000,2,1.75,1170 +1.33E+06,3,2.5,3590 +210000,4,1.75,2090 +920000,5,4.5,3820 +399000,3,1,1460 +631750,3,1.75,2360 +184000,3,1,1100 +333000,4,2.5,2100 +218000,2,2,1310 +258305,2,1.5,750 +775000,5,1.5,1720 +515000,3,2.5,3370 +455000,2,1.5,1200 +440000,3,2.5,1830 +1.44E+06,3,3.5,3870 +850000,3,2.25,2220 +480000,3,1.75,2920 +420000,5,2.75,2540 +408000,3,1.75,1970 +278000,5,1.75,2170 +1.20E+06,3,3,2350 +454000,4,2.25,2630 +1.85E+06,4,2.5,4120 +499000,4,2.25,2440 +590000,5,3,3480 +385000,3,3.5,1900 +1.25E+06,4,3.25,3160 +202200,2,1.75,1330 +450000,3,2.25,1420 +435000,3,2,2570 +550000,2,1,1270 +361000,3,2.25,2470 +760000,4,2.25,2590 +902000,4,2.5,3030 +505000,3,1.75,1240 +200000,3,1,1040 +260000,5,2.25,2320 +417000,2,1,1190 +287500,3,2.25,2030 +450000,3,1.5,1390 +825000,2,1.75,2050 +1.48E+06,4,3,3050 +319950,2,1,1240 +682000,4,2.5,3030 +560000,3,1.75,1930 +350000,3,1.75,1490 +270000,3,2,1510 +284000,3,1.75,1320 +308000,4,2.5,2330 +450000,4,2,2240 +540000,4,2.5,2050 +380000,4,1.5,1680 +522500,4,2.75,2200 +118000,1,1,670 +280400,4,1.75,1730 +710000,4,2.75,2710 +720000,3,3.25,3410 +787000,3,1.75,1330 +537000,4,2.5,1990 +650000,2,1.5,1900 +154200,4,1,1310 +238000,4,2.5,1690 +285650,3,1,1040 +485500,2,1.5,1340 +315000,2,1,1120 +4.67E+06,5,6.75,9640 +627000,3,2,2310 +525000,3,2.5,2190 +526000,3,3.25,1220 +480000,3,1.5,1200 +970000,3,3.5,3840 +640000,4,2.5,2460 +279000,3,2.5,1630 +303000,2,2,970 +315000,4,2,1780 +336500,4,1.75,1760 +163250,2,1,770 +444950,3,1,1760 +285000,2,1,990 +370000,2,1,1250 +330000,3,2.25,1440 +395000,2,2,1960 +440000,6,3,2510 +625000,4,2.75,2920 +435000,3,2.5,1730 +299950,3,2.5,1570 +560000,2,1.75,970 +380000,4,3,2800 +333000,4,2,1580 +499000,2,1,1220 +386000,3,1.5,1550 +320600,3,2,1220 +285000,2,2,1651 +450000,7,4,3150 +175000,2,1,800 +544800,5,2.75,3190 +220000,3,1.75,1720 +374000,2,2.25,1100 +200000,3,2,1010 +259950,3,2,1010 +255000,4,2.75,1760 +447000,3,1.75,1400 +287000,3,2.5,1820 +344950,3,2,1470 +212000,2,1,770 +425000,5,2.75,1340 +170000,1,1,480 +565000,3,1,1260 +234000,2,1,870 +1.51E+06,3,2.5,4010 +345000,3,2.5,2340 +415000,3,2.75,1770 +760000,5,1.75,2660 +484000,5,2.5,3600 +360000,2,1.75,1230 +875000,3,2.75,3270 +930000,3,2.5,3100 +250000,3,2,1900 +394000,2,2,1750 +865000,4,3.5,3380 +477500,2,2,2090 +1.25E+06,4,2.75,4120 +270000,3,1.75,1260 +567000,3,2.25,1800 +635000,3,2.5,1960 +1.87E+06,6,2.75,4460 +183000,3,1.75,1330 +309933,3,1.75,1820 +945800,4,2.75,3360 +503000,2,1.75,2860 +220000,3,1,1460 +335000,3,1.75,1900 +650000,3,2.25,1790 +511000,4,3.5,3100 +275000,2,1,900 +576250,2,1.75,1530 +1.45E+06,2,3.25,2070 +186000,3,2,1340 +655100,1,1,1220 +328000,4,2.5,2370 +441000,3,2.5,1890 +370000,3,1.75,1480 +630000,2,1,1050 +470500,4,2.25,2070 +285950,2,1,1170 +698000,3,1.5,1090 +268000,3,2.5,1650 +1.63E+06,4,3.75,4410 +355000,4,2.5,1780 +299000,3,1,1550 +1.00E+06,4,2.75,2290 +275000,4,2,2220 +475000,3,1.75,1150 +260000,4,2.5,2000 +416000,2,1.75,1270 +495000,5,1,1810 +357500,3,1,1450 +459500,2,1.5,1170 +258000,3,2.5,1730 +600000,3,2.25,2680 +665000,3,1,1260 +165000,3,1.5,1020 +297000,5,2.5,1970 +350000,2,1,830 +2.45E+06,4,4.5,5030 +180000,2,1,800 +339950,3,1.75,1330 +365000,3,1,1030 +955000,4,4.25,5660 +732000,3,2.5,2330 +500000,3,1.75,1540 +610000,6,2.75,2040 +525000,3,2,1540 +170000,4,1,1920 +300000,3,2.5,1870 +389500,5,3.5,2960 +330000,3,1.5,1690 +269950,3,2.25,1610 +107000,2,1,670 +249000,3,1,1752 +442500,4,2,1540 +579000,3,2.5,3160 +621500,3,1.75,2570 +203000,3,1.5,1370 +222900,2,1,860 +453000,2,1.5,1680 +190000,1,0.75,930 +320000,4,1.75,1820 +733500,3,1.5,2120 +555000,4,2.25,3330 +364950,3,2.25,2520 +490000,3,1.75,1560 +688000,5,1.75,2250 +165000,2,1,640 +506000,5,3.75,3880 +2.19E+06,3,2.25,3360 +754000,5,1.75,2350 +949950,5,2.5,2340 +443600,3,2.5,1430 +380600,3,2.5,1920 +722800,3,3.25,4330 +342888,2,1,790 +555000,4,1.75,2350 +613000,3,2.5,1350 +480000,3,2,1470 +619500,6,1.5,1680 +437000,4,2.5,1890 +621000,4,2.5,2030 +810000,4,1.75,1760 +415000,3,2.25,1950 +250000,4,1,1440 +585000,3,1.5,2230 +220000,3,1,1180 +580000,5,2.5,2500 +1.32E+06,3,2.75,2680 +675000,4,2.5,2040 +695000,4,2.75,2660 +915000,5,2.75,2580 +375000,3,1,1000 +500000,3,1.5,1330 +335000,2,2,1420 +170000,2,1,1280 +320900,5,2.5,2200 +508000,3,1.75,1800 +228950,3,1.75,1200 +433000,4,2,1840 +267500,2,1,960 +910000,4,1.5,2890 +370000,3,1.75,1290 +320000,2,1,1140 +660000,3,1.75,1750 +787888,4,2.25,2580 +329000,4,2.5,2650 +602000,2,1,1470 +375000,3,2,1640 +212000,1,1,620 +224000,3,1.5,1440 +315500,3,2,1160 +350000,2,1,1070 +389000,6,4.5,3560 +285000,3,1.75,1720 +425000,3,1.75,1530 +190000,3,1.75,1270 +374000,3,1.75,1510 +292000,2,1,880 +475000,5,1.75,2020 +546500,3,2.5,1410 +82000,3,1,860 +219900,3,1,860 +440000,3,1,1210 +400000,3,2.5,2090 +453000,3,1.75,1430 +330000,6,3.25,2120 +359950,3,2.75,2540 +616000,4,2.5,2490 +245000,2,1,670 +296000,2,2,1320 +193000,2,1,950 +456000,3,2,1870 +480000,4,1.75,1840 +382000,3,3.25,1410 +650000,2,1,1050 +431750,2,2,1400 +419900,3,2.5,1630 +315000,3,2,1900 +597500,4,3,1890 +615000,3,2.5,2980 +605000,4,3.25,2885 +220000,3,2.5,1980 +340000,4,2.5,3020 +620000,4,2.5,2980 +602000,5,1.75,3290 +575000,3,1.75,1580 +285000,3,2.5,2090 +306500,3,1.5,1100 +325000,3,2.5,1870 +623000,3,2.75,2390 +256500,3,2,1320 +473000,5,3.5,3430 +549000,3,2.5,2250 +305000,3,1,1710 +317000,4,2.5,2160 +450000,3,1.75,1400 +225000,2,2.5,1560 +500000,5,2,2300 +207000,2,1,820 +474900,3,1,1630 +515000,3,2.5,2010 +542000,4,1,1540 +725000,4,2.75,2420 +314950,3,2.5,1690 +375000,3,2,1410 +500000,3,1.75,1640 +689000,3,1.75,2200 +525000,3,2.25,1290 +360000,3,1.5,1060 +425000,3,1,1240 +239950,2,1,1280 +577500,2,2.5,2330 +615000,3,1.75,2360 +516000,4,2.75,2210 +1.22E+06,4,2.75,3670 +1.66E+06,4,3.5,3080 +315000,2,1,770 +250000,4,2,2600 +250000,4,1.5,1220 +925000,4,2.5,2910 +358000,3,1,1150 +262000,3,2.5,1700 +500000,3,1.75,1220 +1.30E+06,5,1,1670 +500000,3,1.75,2420 +675000,3,2.25,2610 +235000,3,1,960 +545000,3,1,960 +350000,3,1,1010 +320000,2,2.25,1550 +452000,5,2.5,5067 +875000,3,2,2350 +325000,3,1.5,1310 +756000,4,2.25,2160 +319000,4,2.5,2510 +455000,3,1.75,890 +330000,2,1,1129 +510000,4,3.25,1980 +532000,3,1,2360 +775000,3,2.5,2480 +410000,3,1.75,2160 +205000,2,1.75,1740 +585000,4,2.5,2430 +255000,2,1.75,1950 +415000,2,1,910 +459000,4,2,2360 +354000,3,1,1130 +587000,3,2.5,2150 +782000,4,3.5,5270 +570000,3,1.5,1300 +414500,3,1,1050 +185000,4,1,1380 +262500,3,1.5,1610 +370000,4,2.75,3150 +362500,3,1,1520 +536000,3,2.5,1990 +425000,5,2,2500 +435000,3,2.25,1890 +435000,5,2,1840 +400000,2,1,1220 +446000,2,1.5,1370 +1.25E+06,3,2.5,2710 +300000,3,2.25,1760 +404500,2,1,800 +910000,4,2.5,3530 +771000,3,2.25,1780 +335000,4,2.5,2610 +390000,3,1.75,1850 +288000,3,2.25,1560 +403000,3,1.75,1270 +510000,3,2.25,1420 +751000,6,3,2880 +408000,3,1,1420 +1.01E+06,3,1,1640 +575000,3,2,1730 +330000,3,1.75,1250 +565000,3,2.25,1520 +456000,3,2.5,1820 +652500,4,2.5,2700 +582000,3,1.75,1820 +700000,4,2.5,2770 +235000,2,1,1270 +460000,3,1.75,1400 +475000,3,2.25,1820 +579000,2,2,1870 +507000,4,2,1360 +210000,3,2.5,1040 +359500,4,2.75,2140 +248000,3,1.75,1330 +239300,3,1,1070 +315000,3,2.25,1370 +970000,4,3,3510 +510000,3,1.5,1730 +418000,4,1.5,1550 +699000,4,2.5,3280 +871000,4,2.5,2150 +515000,3,1.75,1580 +400000,3,1,1460 +445000,3,1.75,1410 +1.11E+06,4,2.75,3090 +212000,3,1.5,1690 +710000,4,2.5,2870 +225800,4,1,1100 +520000,3,1.75,2310 +1.30E+06,5,3.75,3490 +248000,4,2,2080 +556000,4,2.5,2230 +319950,5,1.75,1710 +320000,4,2.75,1640 +245000,3,2.5,1600 +700000,3,2.5,2850 +628000,5,2.75,2600 +640000,3,2,1380 +420000,4,1.75,1320 +349950,3,2.5,1420 +307999,4,2.75,2420 +749950,4,2.75,2600 +290000,2,1,840 +235000,3,1.75,1420 +225000,3,1,1790 +302100,3,1,1790 +520000,2,1,1340 +285000,2,1,1010 +525000,3,2,1640 +374900,5,2.75,2980 +377500,3,2,1370 +587450,3,2.25,2190 +245000,3,2.25,1530 +200000,3,2,1290 +2.14E+06,4,3.75,5150 +607000,3,2.5,2470 +1.25E+06,1,1.25,1810 +549950,4,2.5,2230 +250000,3,3,2300 +525000,3,2.5,2030 +440000,3,1.75,2000 +425000,3,2.75,3610 +739900,5,2.5,3290 +315000,3,2,1300 +340000,5,1,1880 +366000,4,2.75,2170 +315000,3,1.75,1680 +299000,3,1.5,1190 +350000,2,1,940 +340000,2,1.75,1010 +460000,3,1.75,1290 +224000,3,1.5,1480 +140000,2,1,900 +246000,4,2,1400 +330000,3,2.5,2040 +306000,3,1,1450 +324950,3,1,1210 +345000,2,1.5,1800 +207000,3,1,1490 +238000,3,1,1240 +695000,3,2,2632 +649950,3,2.5,2150 +515000,3,2.75,1710 +452000,3,2.5,1530 +236000,4,2.5,1630 +1.29E+06,4,3.5,4080 +563000,3,2.75,2340 +410988,3,1.75,1000 +339950,0,2.5,2290 +1.20E+06,4,2.5,3180 +340000,4,2.5,2170 +808100,4,3.25,3020 +236000,3,1.75,1330 +330000,4,1.75,1720 +799990,4,3.5,2540 +240000,0,2.5,1810 +343000,3,1,1410 +332000,3,2.5,1530 +945000,5,3.5,4380 +239950,3,1,1140 +674000,5,1.75,2110 +200000,3,1,1050 +453000,3,1.75,1600 +330000,3,1.75,1430 +285000,4,2.5,1996 +338000,4,1.75,1530 +264950,2,1,1000 +880000,4,2,2530 +209500,3,1.5,970 +380000,4,2.5,2400 +336500,3,2,1830 +360000,3,2.25,2130 +911100,4,3.25,3330 +249900,2,1,560 +175000,4,1,1210 +549950,3,2.5,2380 +225000,3,1.75,1370 +270000,3,1.75,1370 +400000,3,2.25,1740 +299800,2,1,790 +555000,3,2.5,2480 +230000,3,2.5,1920 +360000,4,2.5,2750 +415000,2,1,880 +355000,4,1.75,2160 +635000,4,2.5,2570 +353000,5,2.75,2130 +999000,7,4,3150 +265000,3,1.5,1780 +250000,4,1.75,1910 +225000,2,1,1170 +553000,2,1,900 +565000,5,2.5,2650 +312000,2,1,1170 +475000,3,2.5,2630 +320000,4,2.75,2150 +453000,3,2,1430 +320000,3,1,960 +610000,4,2.75,2640 +385000,3,1.5,1490 +215000,3,1.75,1210 +215000,4,1.5,1860 +415000,3,2.5,1980 +350000,1,1,900 +395000,1,1,900 +898000,2,1.75,1490 +480000,3,2.5,2980 +1.24E+06,3,2.5,2660 +599000,4,2.5,2790 +770000,4,3,2800 +1.21E+06,3,2.25,1590 +1.59E+06,4,2.25,3240 +880000,3,2,2130 +332000,3,2,1510 +445000,3,1.75,1750 +849000,4,2.75,4010 +752000,4,1.5,1650 +450000,9,7.5,4050 +420000,3,1,1320 +330000,4,2.5,2310 +409000,3,1.75,1440 +350000,5,1.75,2330 +570000,4,2.5,2430 +315000,3,1,1390 +224000,2,1,1150 +293550,4,1.75,2120 +350000,4,2.75,2300 +1.11E+06,4,2.5,3320 +442500,4,2.5,2400 +616500,3,2.5,3580 +506400,3,2.5,2100 +324000,3,2.25,1550 +169000,3,1.5,1570 +595000,3,2,1480 +299900,3,2.5,2720 +332000,3,2.25,2270 +432000,4,1.75,2410 +510000,4,2.75,2730 +270000,3,2.5,1540 +750000,5,2.5,3120 +509250,2,1.5,1480 +189000,3,1,860 +726500,4,2.5,2180 +287000,3,2,1300 +679000,4,3.5,3420 +316000,3,2.25,2130 +498000,4,2.5,2300 +448000,4,1.75,2560 +535000,2,1,1040 +560000,4,3,3080 +437850,4,2.25,2670 +435000,4,2.75,3270 +510000,4,2.5,2610 +520000,3,2.5,2460 +509000,2,1.5,1930 +575000,3,1,1220 +365000,4,2.5,2030 +795000,3,2,2420 +285000,3,2.5,1870 +955000,3,2.25,3020 +775000,4,2.5,2880 +400000,4,3,1810 +570000,4,2.5,2590 +955990,5,3.25,3830 +1.15E+06,3,2.25,3250 +459950,4,2,2760 +245000,2,1.75,1220 +281000,3,1.5,1280 +205000,3,0.75,770 +290000,3,1.75,1520 +635000,4,2.5,2080 +310000,1,1,570 +470000,4,2,1500 +600000,2,2.5,2510 +279000,4,2,1980 +538500,3,3.5,2500 +594950,4,2.5,2720 +533050,2,1,910 +510000,3,1.75,1480 +360000,4,2.25,2470 +435000,2,1,1650 +559000,3,1.75,1700 +645000,2,1.5,1995 +340000,2,1,1280 +565000,4,2.5,2980 +575700,3,1.75,1730 +1.01E+06,3,3.25,2420 +540500,3,2,2800 +265000,5,4,1400 +699950,4,2,2070 +355000,1,1.75,750 +381000,3,1.5,1460 +564000,5,2.25,2140 +114975,2,1,740 +325000,1,0.75,410 +299990,2,1,1570 +751000,5,2.75,2860 +425000,3,2.25,1400 +665000,3,1.75,2700 +833450,5,4,4460 +575000,7,1.5,2670 +190000,3,1.75,1520 +314950,3,1.75,1520 +601150,2,2,1660 +315000,2,1,860 +545000,2,1.5,2340 +565000,4,2.25,2110 +175000,3,1,1010 +530000,3,2,2330 +4.49E+06,4,3,6430 +430000,3,1.75,1610 +225000,3,1.75,1460 +312000,5,4,2900 +380000,3,1,1260 +222200,2,1,1210 +1.44E+06,5,3.5,3420 +329950,4,2.5,2120 +995000,3,2.5,2460 +929950,3,3.5,3790 +692000,4,2.5,2350 +402000,2,1,620 +510000,3,1.75,1920 +249000,3,1,1050 +244900,3,1.5,1360 +289900,3,1,1180 +552500,4,1,1560 +760000,4,2.5,3300 +440000,2,2.75,1100 +286000,3,1.75,1770 +260000,3,1,1200 +355000,2,2.25,1330 +318000,3,1.75,1570 +255000,2,1,1610 +139000,3,1,1100 +485000,4,2.25,1810 +549950,3,1.75,2930 +588000,3,1.5,1780 +975000,3,2.5,3050 +402000,3,2,1540 +245000,3,1,1380 +445000,3,1.75,1890 +195000,3,1.75,1570 +385000,5,2,2540 +450000,3,1.5,1520 +1.09E+06,4,2.5,2780 +396675,2,1,1730 +242000,5,2.25,2340 +380000,3,1.75,1300 +496000,2,1,1420 +399950,3,2.5,1470 +895000,4,2.5,2850 +690000,3,2,2360 +270000,3,1.5,1610 +349900,3,2,2420 +454280,3,2.5,1470 +390000,3,2.5,1410 +275000,3,1.75,1840 +300000,4,2.5,2450 +700000,3,1.75,1500 +520000,3,1.75,2080 +715000,3,2.5,2770 +404000,3,2.5,2370 +490500,3,2,3000 +1.49E+06,6,2.75,4430 +557800,4,1.75,1550 +571000,4,2.25,2290 +410000,4,2.5,2560 +225000,3,1.5,1240 +700000,4,2.5,2590 +500000,3,1,1370 +536500,2,2,1360 +330000,3,2.5,2060 +249950,3,1.75,1120 +249000,4,1.75,1630 +249000,3,1.75,1590 +780000,4,1.75,2480 +1.20E+06,4,2.5,2700 +434500,3,1.75,1930 +590000,4,2,2490 +417200,2,1,1000 +649990,4,2.25,2130 +506000,2,1,1060 +348000,3,2.5,1730 +301000,4,2.5,2810 +427550,2,1,880 +361000,3,1,1040 +460000,2,2.5,1830 +958000,4,3.5,1800 +445000,5,1.75,2460 +373000,3,2.5,1670 +525000,4,2.25,2660 +364988,3,2.5,2850 +324000,2,1,820 +625000,4,3,2350 +237500,3,1.75,1480 +429300,6,2.25,2930 +155000,3,1,1250 +614000,4,2.75,2760 +650000,3,2.5,2380 +625000,3,2,1730 +587100,3,2.25,1670 +380000,4,2.5,2150 +479500,2,1,930 +382888,1,1,620 +540000,4,4.25,1960 +691000,4,2.75,2550 +760500,3,2,1990 +685000,4,2.5,3550 +199129,3,1,860 +335000,3,3,2031 +305100,3,2,1590 +830000,4,2.25,3010 +810000,3,2.5,2610 +500000,3,2.25,1440 +490000,3,1.75,1920 +490000,2,1.75,1670 +272000,4,1.75,1390 +280000,3,2.25,2140 +233000,3,1,1250 +275000,3,1,1080 +375000,3,3.25,2760 +445000,3,2.75,2180 +437500,3,2.5,1260 +426250,4,1,1610 +358000,3,1.5,2450 +1.18E+06,4,3.5,4150 +305000,2,1,960 +415000,2,1.75,1340 +520000,11,3,3000 +733000,4,3.5,3080 +411500,3,1,1130 +540000,3,1.75,2280 +270500,3,1.5,1952 +422250,2,1.5,1280 +655000,5,3.25,3690 +1.20E+06,5,3.25,4610 +550000,3,2.5,2920 +460000,2,2.25,1230 +159075,4,1.5,1580 +470000,2,1,1220 +235000,2,1,1020 +309950,2,1.5,1510 +433000,4,1.75,1830 +895000,3,2.5,2750 +291000,3,1.5,1860 +835000,3,2.5,2720 +640000,2,1,1360 +438000,3,2.25,2340 +540000,4,2.5,2600 +325000,4,2.5,2090 +380000,4,1.75,2260 +510000,2,1,1390 +380000,4,2.5,2300 +825000,4,2.5,2810 +880000,4,3.25,4060 +1.80E+06,3,3,2790 +790000,3,1,1290 +287000,2,1.5,720 +509000,3,3,2130 +270000,3,2.25,1750 +210000,3,2,960 +415000,3,1,1570 +550000,3,2.5,3070 +1.25E+06,4,2.5,2920 +499950,3,1,1870 +659000,3,1.5,1540 +265000,2,1.5,1440 +492000,4,3.75,2810 +715000,4,2.5,2450 +175000,2,1,1330 +975000,4,3.5,3130 +306950,1,1,730 +630000,4,2,2480 +367500,3,1,1270 +699950,3,3.25,2230 +1.00E+06,3,3,2880 +285000,4,2.5,2434 +215000,2,1.5,1120 +1.05E+06,4,2.5,4080 +1.37E+06,4,2.75,3720 +235000,3,1,1430 +604000,3,2,1560 +750000,3,1.75,1700 +800000,4,2.25,2510 +580000,5,2,2600 +350000,1,1,790 +353750,4,2,1710 +1.10E+06,5,2.75,2660 +465000,4,2,1470 +568000,3,2,2350 +1.01E+06,5,2,2440 +213500,3,1.5,1150 +250000,3,2.5,1510 +357000,2,1,870 +425000,2,2,1280 +571000,3,2.5,2600 +588000,3,2.25,2030 +275000,4,1.5,1930 +565000,3,2.75,3210 +460000,3,1.75,1970 +603500,4,2.5,4060 +490600,3,2.5,3316 +1.01E+06,2,2,1460 +500000,4,2,2100 +249000,4,2.25,1830 +235000,3,2,1530 +410000,4,2,1490 +370000,2,1,860 +360000,5,2.5,2130 +1.41E+06,5,2.25,3580 +298000,4,2.5,2420 +485000,4,2.25,1900 +400000,3,1.75,1330 +580000,3,2.5,2150 +355000,2,2.5,1370 +650000,3,2.5,2430 +261490,4,1,1640 +347000,3,1,1010 +485000,3,1,1500 +601000,3,2.5,1740 +380000,3,3.25,2090 +565000,3,3,1850 +750000,3,2.5,2790 +291000,3,2.25,1480 +560000,3,2.5,2280 +725000,4,2.25,3180 +539000,3,2,2350 +470000,5,3.25,3910 +264950,2,1,770 +200000,4,1.5,1780 +453500,5,2.5,2300 +811000,2,2.5,2510 +425000,3,3.25,1410 +1.53E+06,4,2.25,4250 +562000,4,2.75,2560 +281000,3,2.5,1760 +270000,3,2.25,2100 +205950,3,1,1490 +310000,2,1,870 +350000,3,1.75,1260 +843500,4,2,2630 +370000,4,2,1950 +279000,4,2,2200 +408000,3,1.75,1600 +392000,3,1,1230 +455000,2,1,1030 +310000,2,1.5,1040 +323500,3,3,2240 +364500,3,1,1600 +280000,4,2,2190 +289900,3,1.75,1899 +585000,3,1,1870 +269000,3,2.5,1730 +280000,3,2.25,1860 +287000,3,1.75,1940 +183000,2,1,670 +309000,3,1,1820 +920000,4,2.5,3810 +815241,5,2.25,2060 +405000,3,1.75,1520 +525000,5,3.5,3450 +150000,2,1,830 +240000,4,1.75,1880 +698000,4,2.25,2200 +440000,3,2,1800 +204000,3,1,1200 +875000,3,2,2220 +650000,3,1.5,1380 +392500,3,1,1660 +400000,4,1,2320 +653000,3,2.25,2800 +452000,4,1,1210 +345000,4,2.5,2331 +350000,4,1.75,1820 +650000,4,2.5,2860 +525000,5,3,2750 +840000,5,3,2750 +1.33E+06,3,2.5,2280 +259950,4,2,1610 +998000,5,3.5,3760 +1.07E+06,3,3,2940 +1.91E+06,4,3,4460 +190500,3,1.5,1110 +465000,3,2.25,2560 +370000,3,1,1060 +290000,6,4.5,2810 +350000,3,1.75,1380 +740000,3,1.75,1380 +460000,3,1.75,2560 +290000,3,1,1010 +475000,3,1.5,1790 +214000,3,2.5,1600 +455000,2,1,910 +275000,3,2.5,2497 +305000,3,1.5,1800 +449000,5,2.5,2570 +366000,3,2.5,1320 +348000,3,2.5,1670 +515000,4,2.5,2800 +950000,4,2.5,3360 +815000,3,2.5,2590 +199950,3,3,1530 +386000,3,2,1330 +273000,3,2.25,2160 +284000,4,2.5,1830 +399950,3,1,1470 +285000,3,1.75,1150 +315000,3,2.5,1790 +250000,3,1,1700 +290000,4,2,1630 +725000,4,2.5,3420 +410000,3,2,1650 +855000,4,2.5,2810 +399900,4,2.5,2710 +852600,4,2.5,3320 +235000,2,1,720 +230950,2,1,930 +230000,3,2.25,1490 +404763,3,2.5,1690 +245000,3,2.5,1720 +188000,3,1.5,1140 +626100,4,2.5,2280 +428750,3,1,1100 +522000,4,2.25,1800 +684000,4,2.5,2500 +1.07E+06,3,2.25,2950 +611206,1,1,1940 +350000,2,1,1280 +894000,4,2.5,3800 +420000,2,1,930 +400000,5,2,1930 +675000,3,3,2980 +426000,4,2.5,2800 +750000,4,2.25,3190 +368000,3,1.75,1710 +342000,3,1,1980 +700000,3,1.75,1910 +848750,6,3.75,3160 +720000,3,2,1590 +525000,4,2.25,1890 +397900,3,2.75,2500 +405000,3,2,1740 +392800,3,2,1080 +394999,3,1.5,1730 +340000,3,2.5,2480 +482500,3,2.25,1450 +812500,4,2.5,2750 +450000,3,2.5,2820 +398000,3,1.75,1830 +1.08E+06,2,3.25,1550 +540000,2,2,1640 +275000,4,2,1720 +780000,5,2,2880 +225000,3,1.5,1220 +503045,3,3,1560 +249000,2,2,1090 +569950,4,1,1140 +450000,2,2.25,1040 +1.10E+06,4,2,2580 +700000,4,2.5,2310 +454000,3,2.5,1590 +555000,3,1.75,1270 +214000,3,1.5,1240 +590000,3,2.5,2210 +459900,3,1.75,2340 +205000,3,1.5,1420 +390000,3,1.75,1430 +970500,3,2.75,2470 +790000,3,2.5,2390 +320000,3,1,1120 +552500,3,2.25,2700 +1.05E+06,3,3,3490 +230000,3,1,1640 +680000,3,1.75,1620 +985000,3,1.75,1670 +375000,4,2.5,1870 +431000,2,1.5,1300 +463000,3,2.5,2190 +350000,3,1.75,1320 +485000,3,1,1250 +355000,4,1.75,2040 +603500,3,1.75,2140 +860000,5,1.75,2510 +259875,5,2.5,2200 +685000,4,2.5,2170 +382500,4,2.5,2980 +490000,3,1,1180 +229000,3,2,1540 +430000,3,2,1540 +580000,5,2.5,3110 +510000,3,1.75,1370 +489990,5,2.25,2440 +440000,3,2.25,1760 +479950,3,2.5,2810 +806000,4,2.5,2500 +875000,4,2.5,3220 +710800,3,2.5,2880 +565000,3,2.5,2700 +359999,5,3,2680 +625000,3,1.75,1780 +349950,3,2.5,2240 +415000,4,2,1610 +435000,2,2,1440 +225000,3,1.75,1550 +770000,3,1.75,1720 +340000,3,1.75,1740 +965000,5,2.75,3280 +667000,3,2.75,2216 +250000,1,1,1100 +397990,3,1,1180 +535000,3,1.75,2020 +265950,3,1.5,1150 +258000,3,1.75,2090 +505500,3,2.5,1300 +455000,5,2.5,2240 +1.35E+06,5,3.25,3540 +600000,4,2.25,2840 +329800,4,2.5,2080 +222000,2,1,1550 +450000,4,2.5,1900 +952000,3,3.5,2760 +625000,4,2,1410 +226800,2,1,1240 +1.21E+06,5,4.25,4420 +350000,4,2.75,3390 +395000,3,1.75,1400 +285000,5,3,2110 +553000,3,1,1310 +254000,3,1,1270 +348140,2,1.5,2060 +354950,4,2.75,2530 +706000,3,2.75,1900 +499000,4,2.5,2910 +427500,3,1.5,1900 +439000,5,3.5,2880 +545000,4,2.5,2820 +842000,3,1,1620 +685000,4,2.5,3320 +665000,4,3.5,3770 +255000,2,1,1200 +565000,5,2.25,2130 +274000,5,1.75,1950 +260000,3,2,1920 +581000,4,2,2510 +625000,3,1.5,1990 +220000,3,1,1230 +765000,3,2.25,3190 +1.33E+06,6,4.25,5720 +700000,8,2.5,2280 +351000,4,1,1550 +413565,3,2.5,1690 +363000,3,3.25,1651 +679000,4,1.75,2260 +473000,2,1.75,1510 +585888,3,2,1490 +405000,4,2.5,2220 +650000,3,1.75,2800 +415000,4,2.5,2210 +575000,3,2,2150 +220000,3,2.25,1400 +610000,4,3,2450 +499950,3,1,980 +883000,4,2.5,2800 +436000,2,1,1240 +320000,3,2.5,1610 +425000,3,1.75,1510 +204700,4,2,1670 +384000,6,3,2320 +314000,3,2.75,1900 +535000,3,2.5,2390 +568000,4,1.75,2110 +426000,4,1.5,1470 +675000,4,2.75,2670 +380000,4,2.5,2540 +685000,3,2.5,3450 +429000,3,2,1700 +799000,4,1.5,1810 +318500,5,1.75,1550 +925000,3,3.25,4110 +420000,3,1.5,2080 +570000,2,1,1100 +1.05E+06,4,2.75,3950 +333000,3,1,1250 +1.36E+06,2,1.75,2620 +660000,3,2.5,2290 +350000,6,4.5,3500 +682500,6,4.5,3500 +399990,5,2.75,1690 +860000,5,3.25,4500 +216180,2,1,1120 +300000,4,2.25,1740 +145000,3,1,1010 +255000,3,1,1010 +250000,3,1.75,1200 +245000,3,1,1020 +445000,3,1.75,1850 +562000,3,1.5,1830 +501000,4,1,2070 +190000,3,1.75,1160 +862500,4,2.75,3280 +1.09E+06,5,2.5,2340 +575000,5,3,3690 +250000,1,1,720 +310000,7,1.5,2660 +1.40E+06,5,3.25,4300 +284850,3,1.5,1590 +570000,4,2.5,2590 +304000,3,1.75,1720 +560000,4,2.5,1790 +325000,3,1,1590 +557510,4,2,1580 +305000,4,2.25,2580 +320000,5,1,1740 +455000,5,2.25,3470 +383001,3,1,1180 +545000,3,1.75,1700 +487500,2,1,1190 +345000,5,2.5,2450 +583000,6,2.75,2630 +534950,3,2.25,2130 +403504,4,1,1060 +500000,3,1.75,1480 +319502,3,1.75,1610 +525000,4,2.75,2440 +563000,4,3,3100 +898500,4,2.75,2890 +651000,3,2.5,3240 +450000,4,2.75,2900 +665000,4,2.25,2650 +825000,4,2.5,2560 +200000,3,1,1150 +295000,3,2,1760 +748000,4,2.5,3220 +580000,3,2.5,3200 +275000,3,1,1250 +196000,3,1,1000 +235750,2,1,740 +315000,3,2.25,2170 +338000,4,2.5,2370 +353000,4,2.5,2300 +235000,3,1.75,1400 +569999,3,2.5,3080 +505000,4,2.25,2350 +1.23E+06,4,3,2660 +299000,2,1.75,1250 +240000,3,2,1100 +1.96E+06,3,1.75,3330 +1.27E+06,4,3.25,3640 +405000,2,1.75,1350 +304000,4,2,1310 +272000,4,2.25,1800 +412000,2,1,1260 +698000,4,2.5,2990 +400000,2,1,1140 +305000,3,2.5,2100 +585000,4,2,2400 +190000,2,1.5,1400 +760000,4,2.5,2990 +570000,3,1.75,1930 +144000,3,1,980 +139000,2,1,690 +525000,4,1.5,1430 +293000,1,1,1110 +267100,2,2.5,1250 +1.50E+06,4,3.25,3470 +240000,3,2.25,1500 +975000,3,2.5,2530 +279950,5,1.75,2150 +405000,3,1.75,1260 +400000,3,2.5,2740 +225000,3,1,960 +250000,3,1,1520 +272950,3,2.25,1570 +625000,5,1,3240 +670000,3,1.75,1280 +1.07E+06,3,2.5,2130 +540000,3,1.75,1970 +525000,3,2.5,2990 +425000,2,1,1160 +465500,3,1.75,1890 +443500,3,2.5,2170 +350000,4,2.25,1570 +850000,3,2.5,3260 +205000,3,2.25,1250 +315000,4,2.5,1940 +470000,3,2.5,2150 +1.10E+06,4,2.25,3310 +340000,3,1.75,3400 +310000,4,2.5,2660 +305000,3,1,950 +307150,3,1.5,1480 +729032,4,2.5,2840 +750000,5,2.5,3240 +289000,4,2.5,1961 +480000,3,1,1100 +529000,3,1.75,1500 +585000,3,1.75,1480 +704000,4,2.75,2510 +607000,4,2,1490 +580000,3,2.25,2190 +875000,5,2.5,2530 +610000,4,2.5,2440 +230000,3,0.75,1040 +510000,4,2.25,2450 +733000,4,2.5,2210 +169100,3,2,1050 +250000,3,2,1050 +500000,4,2.25,2730 +700000,2,1,1620 +379000,4,2.75,2410 +650000,4,2.5,3420 +412133,2,1,920 +480000,4,2.25,2330 +650000,3,1.75,1940 +505000,2,2.5,1900 +931088,4,2.5,3510 +570000,4,1.75,1860 +475000,3,1,1380 +240000,6,1.75,2210 +462000,4,2.5,2640 +1.12E+06,3,2.5,4530 +243000,3,1,1500 +660000,4,2.25,2010 +1.19E+06,2,1.75,2080 +1.68E+06,4,4.25,5584 +6.89E+06,6,7.75,9890 +368000,3,2.5,2080 +811500,5,4.25,3970 +275000,2,1,770 +650000,4,2.5,2500 +485000,3,2,2410 +425000,3,2.5,1340 +530000,3,2.5,2640 +657000,4,1.75,2740 +315000,4,2.75,1580 +273000,4,1.5,2180 +550000,3,2.75,1960 +347000,2,2.25,1560 +525000,5,2.75,2440 +490000,3,1.5,990 +500000,3,2.25,2210 +585000,3,2.75,3080 +926500,4,2.75,2900 +465000,1,1,1020 +200000,4,2,1900 +1.68E+06,6,4.75,5770 +220500,2,1,990 +329000,2,1,990 +715000,3,4,2080 +780000,3,4,2080 +410000,2,1,1480 +778100,2,1,1480 +406000,3,1,1090 +665000,4,2.5,2800 +305000,2,1,1000 +265000,3,2.5,1640 +485000,4,1,1620 +600000,3,2.5,2460 +510000,2,1.5,1860 +195000,2,1,1080 +432500,3,1.75,1980 +490000,3,1.75,1510 +270000,3,2.5,1690 +370000,2,1.5,1010 +327500,3,2.5,2090 +826000,2,1,1060 +510000,3,1.75,1750 +587750,2,1,890 +449228,5,2.5,3020 +565000,3,2.5,2030 +660000,4,2.5,3170 +400000,5,2.75,2470 +612500,4,2,2060 +560000,4,1.75,2120 +727000,3,2.25,2180 +224000,4,3,2300 +1.08E+06,4,2.5,4200 +439000,3,2.25,1480 +335000,3,1.5,2240 +779000,4,1.5,2740 +452000,5,1.75,1830 +775000,4,3,2000 +235000,3,1.75,1380 +370000,3,1.75,1620 +790000,4,3,3180 +903000,2,1.5,1140 +209950,3,1,970 +309000,3,2.5,1780 +440000,3,1.75,2240 +571500,4,2.25,2810 +514000,2,1,920 +323000,3,1.75,1830 +290000,2,1.75,1560 +2.58E+06,4,4.25,5540 +1.36E+06,3,2,2310 +551000,4,1.5,1470 +960000,4,2.5,3430 +720000,5,2.5,2900 +218000,3,1.75,1850 +334950,4,2.5,2190 +605000,4,2.25,2510 +825000,4,3.25,3200 +268500,4,1.75,1670 +230000,3,1.75,1010 +1.34E+06,4,4,5050 +245500,2,1.5,1430 +440000,3,2.25,1880 +571500,4,2.75,2180 +182500,3,2.25,1830 +217000,2,1,970 +335000,2,1.5,1170 +501000,2,1,1010 +339950,3,2.5,2140 +340000,3,1.75,2230 +582500,2,1,1140 +298800,2,1,860 +317500,6,1.75,2540 +598000,4,2.5,2420 +375000,2,2.25,1640 +465000,4,2.25,2550 +551870,3,2.5,2507 +295000,3,2.5,1920 +263500,4,1.75,2210 +1.10E+06,4,4,3530 +300000,2,1,1100 +780000,4,1,3390 +325000,3,1.5,1590 +370000,2,1,820 +715000,4,2.5,2370 +356000,4,2,1600 +329950,4,1.75,1740 +490000,3,2.25,1470 +429000,3,3.25,1410 +510000,4,2.5,1620 +550000,3,2.5,2360 +467500,3,1,1830 +615000,5,2,2130 +325000,2,1,990 +219950,2,1,1010 +950000,3,1,1720 +925000,3,1,1630 +251200,4,1.5,1310 +215000,3,1.5,1610 +245000,3,2,1850 +259000,3,1.75,1270 +349950,4,1.5,1420 +1.57E+06,5,4.5,5220 +600000,2,1,1410 +405000,2,1.5,1170 +625000,3,2.5,1860 +430000,4,1,1620 +533000,3,3,1280 +1.05E+06,4,2.5,2750 +230000,3,1.75,1420 +275000,4,1.75,2000 +403000,2,1,1100 +550388,3,3,1720 +415500,3,1.5,1240 +913000,3,1.75,2170 +334998,2,1,1800 +201500,3,1,1160 +820000,3,2.5,3030 +371000,3,1,890 +229950,4,2.5,2150 +344900,4,2.5,2150 +840000,3,2.5,2060 +285000,3,1.5,1380 +475000,4,2.25,1800 +420000,2,1,1460 +685000,3,2,2210 +879000,4,3,3590 +197200,3,1,1140 +529950,3,1,1240 +1.09E+06,4,2.5,4340 +792000,3,1.5,1570 +262000,3,2.5,1680 +353900,3,1.75,1560 +380000,1,1.5,1200 +305000,3,2.5,1690 +440000,4,2,2310 +1.01E+06,4,3.5,2650 +549900,5,3,3610 +678500,4,3,2620 +270000,3,2.25,1760 +430000,3,1,940 +1.93E+06,5,4.25,4830 +790500,4,2.75,3350 +447450,3,2.25,1570 +375000,3,2,2240 +565000,4,2,1950 +400000,2,1,1010 +246000,3,1.5,1630 +329922,3,1.75,1420 +1.25E+06,5,3.25,3950 +375000,3,1,1210 +385000,3,1.75,1890 +591500,4,2.5,1690 +255000,4,2,2560 +275000,3,1.5,1350 +800000,4,2.75,3120 +327000,2,1,1140 +355000,4,1.5,2230 +310000,2,1,1050 +869000,5,3.25,4180 +272000,3,2,1200 +665000,5,2.25,3320 +225000,3,2.5,1590 +375000,3,2.5,2750 +375500,3,1.5,1530 +550000,3,1.75,1570 +248000,3,1,1470 +546940,3,1,1470 +680000,4,3,3150 +350000,4,2.5,2380 +593000,2,2.5,2000 +390000,2,1,1140 +297000,3,1,1340 +355000,2,1,1450 +309900,3,2.5,2020 +257000,3,2.25,1810 +1.70E+06,4,3,3600 +300000,3,2,1260 +500000,3,2,1560 +900000,8,4,4020 +695000,4,3,3150 +213400,4,2.5,1680 +425000,2,1,1320 +420000,3,3,2700 +411000,1,1,1080 +762500,4,2.25,3130 +569950,5,4.5,4850 +258000,4,1,1220 +499000,3,2.25,1780 +310000,3,1,1250 +398500,2,2.5,1780 +250600,4,2.5,1930 +352000,4,2.5,2470 +600000,2,1,1180 +645000,3,1,2270 +291500,4,2.5,1770 +350000,4,1.75,2250 +279000,3,2.5,1540 +320000,2,1,820 +495000,2,2,1580 +490000,4,2.5,2430 +770000,5,1.5,2160 +215000,3,1.75,1770 +665000,3,3.5,3580 +423500,3,2.25,1890 +850000,3,3,1910 +155000,2,1,910 +505000,3,2.25,1460 +780000,3,3.5,3310 +165000,3,1.5,1630 +707000,2,2.5,2130 +497000,3,2.5,1220 +349170,4,1.75,1670 +287000,4,1.5,1300 +2.38E+06,4,2.5,3220 +645000,4,2.5,2430 +238000,5,2.25,2240 +328000,5,2.25,2240 +365000,2,1.5,790 +380000,3,1,1380 +525000,4,1.5,1680 +402000,4,2.25,2000 +308000,2,1,1680 +405000,3,2.5,1960 +808000,3,1.75,2590 +875000,4,3.5,3790 +860000,3,2.5,2370 +367500,4,2.25,1930 +604000,6,3.5,2580 +230000,2,0.75,890 +435000,4,2.75,2160 +347500,4,2.5,1970 +525000,4,1.75,1570 +280000,2,1.5,1480 +490000,2,1.5,1480 +265000,4,1.75,1430 +645000,4,2.25,2720 +390000,3,2.25,2420 +267500,3,2.5,1400 +1.28E+06,4,3.5,5844 +404000,4,1.75,1840 +380000,3,2.25,2530 +812500,4,2.75,2810 +265000,3,1,1020 +480000,5,2.75,2550 +264000,1,1,710 +1.35E+06,5,3,5530 +550000,4,1.75,2150 +615000,2,1.5,880 +464000,3,1.75,1630 +365000,3,1,1380 +490000,4,2.25,2800 +280927,4,2.25,2070 +282613,2,1,830 +675000,3,2.25,2770 +575550,4,2.5,2060 +259900,3,2,1490 +450000,4,2.25,2120 +487500,4,2.5,2810 +275000,4,2.25,2400 +305000,3,2.5,2460 +395000,3,1.75,2030 +215000,3,1,880 +410000,3,2,1320 +440000,4,2.5,2160 +1.16E+06,4,3.5,4190 +500000,4,2,2280 +961000,5,2.75,2590 +825000,4,2.25,2770 +734000,3,1.75,2145 +490000,4,4.25,4480 +175000,4,2.5,1780 +190000,1,1,720 +305000,4,2.25,2050 +1.30E+06,3,1,2040 +417000,2,1,920 +275000,2,1,680 +661000,3,2.5,1940 +435000,4,2.75,2230 +788000,5,2.25,2910 +1.80E+06,5,3.25,5270 +408000,5,3.25,2820 +570000,2,1,1790 +1.54E+06,5,3.25,2920 +400000,2,1,840 +247000,3,1.75,1820 +453000,3,1.75,1550 +235000,2,1,1270 +675000,4,1.75,2460 +516200,3,2,2110 +650000,1,1,920 +257100,3,1.5,1500 +457000,2,2,1440 +540000,3,1.75,1610 +268000,3,1.75,1970 +300000,3,1,1150 +380000,2,2.5,2110 +725000,3,2.5,3580 +249000,3,1,1000 +274000,5,1,1680 +1.78E+06,4,3.25,3950 +396500,3,1.75,2390 +460000,2,1.5,1820 +277000,3,1,1100 +449500,6,4,2280 +785950,4,3,2530 +545000,3,2.5,1940 +244000,3,2,1360 +165000,3,2.5,1660 +435000,2,1,800 +642000,3,2.5,2670 +340000,3,2.5,1720 +730000,4,2.5,3550 +563250,3,1.75,1370 +675000,5,2.5,2820 +620000,3,1.5,1620 +275000,2,2,1290 +270000,3,1,1830 +325000,4,2.5,2040 +476100,4,2.5,1850 +700000,2,1,1300 +220000,4,2,1620 +236000,3,1.75,1560 +790000,3,2.5,2600 +350000,3,1,2010 +130000,2,1,780 +283200,4,2.5,1982 +273000,3,1,1500 +599000,5,2.25,2460 +460000,4,2.5,2680 +1.16E+06,4,4.25,5860 +385000,4,1.75,1720 +264250,3,1,1420 +608000,3,2.5,1760 +450000,3,2.5,2790 +1.76E+06,3,2,2360 +339950,5,2,1890 +760000,6,3.75,3810 +350000,2,1,1160 +541500,3,1.75,2320 +730000,6,2.75,3280 +215000,3,1,980 +420000,3,2,1640 +655000,4,2.25,2060 +240000,3,2.5,1500 +730000,4,2,2360 +390000,4,1.5,1940 +473000,3,1,1280 +698000,4,3.5,3630 +511000,3,2.5,1820 +358000,2,1.5,960 +499990,3,1.75,1630 +322000,4,2.25,1940 +201000,3,1,980 +765000,4,2.5,3140 +920000,4,2.75,2880 +360000,4,2,1650 +297300,3,1.75,1980 +399000,3,1,860 +400000,3,1,1430 +230000,3,1.75,1260 +290000,3,1,960 +323800,3,2.5,2060 +574500,4,1.5,1430 +505000,3,2.25,1670 +372500,2,1,880 +425000,3,1.5,1300 +446250,3,2.5,2380 +330000,2,0.75,520 +608095,3,2.5,2680 +550000,3,2.5,2140 +265000,4,2.5,1820 +399888,4,2.25,1820 +430000,2,1,1050 +554990,3,2.5,2100 +359950,3,2.5,2210 +405000,2,1,860 +280000,2,1,870 +479950,4,2.25,2570 +575000,5,1.75,2980 +392000,4,2.25,2360 +760500,4,2.25,2310 +435000,3,2.5,2300 +1.57E+06,4,2.75,2810 +261000,4,1.5,2040 +1.48E+06,3,2.25,3290 +853800,7,4,2960 +657500,3,2.5,2670 +331950,4,2.5,2530 +514000,3,1.75,1720 +496000,3,3.5,3090 +1.09E+06,4,2.5,3930 +195700,3,1,1120 +1.40E+06,4,2.25,3960 +1.18E+06,4,3.25,4060 +643403,3,2.5,2350 +357000,4,2.5,2380 +865000,3,1.75,1480 +905000,3,2.5,2930 +265000,3,1.5,1290 +535000,2,2.5,2730 +450000,3,1,1290 +460500,4,2.5,2170 +315000,4,1.75,1850 +607500,4,2.5,2110 +432000,2,1,960 +1.70E+06,3,4,3910 +479000,4,2.5,2590 +475000,5,2.75,3080 +415000,3,1,1630 +450000,2,1,910 +1.14E+06,3,2.5,2780 +430000,5,3,3880 +296000,3,1.75,1360 +303000,4,2.25,2560 +641000,4,2.5,2600 +280000,3,2.25,1220 +260750,3,2,1560 +601000,4,2.5,2080 +255000,3,1.5,1490 +555000,4,2.75,2020 +865000,3,1.5,1530 +1.39E+06,4,2.5,3450 +315000,3,2.25,1400 +200000,2,1,1730 +357000,3,1,1370 +390000,2,1.5,1050 +462000,5,1.75,2840 +174500,2,1,1010 +305000,2,1,1210 +449000,5,1.75,1720 +260000,3,2,2710 +751000,4,2.5,3110 +370037,2,1,1250 +229950,3,1.75,1900 +349000,3,1.75,1740 +348000,4,2.5,2070 +1.22E+06,3,3.25,3030 +510000,4,3,3610 +265000,3,1.5,1520 +1.25E+06,3,2.75,2780 +937500,4,4,5545 +485000,3,1.75,2590 +489000,4,1,1150 +400000,2,1,920 +638000,3,2.5,2110 +440000,3,1.75,1170 +305000,6,2,1900 +649950,6,2,1900 +680000,4,2.5,3290 +629000,4,2.5,2660 +555000,3,2.5,2160 +669000,4,2.75,2700 +272000,3,2.5,1980 +270000,4,2.25,2600 +215000,3,1,1280 +690000,3,1.5,1710 +256000,4,1.75,1270 +255000,3,2.25,1890 +550000,7,4,3440 +410000,3,1,1190 +410000,2,1,1030 +259000,3,1.75,1240 +292000,3,1,1730 +1.65E+06,4,3.5,4610 +518000,5,1,1590 +485000,3,2.5,1760 +259500,3,2,1330 +354000,4,2.5,2340 +999950,3,2.25,3740 +464500,3,1.75,1150 +300000,3,2.5,1750 +1.08E+06,3,2.75,3890 +309950,4,2.5,1770 +315000,3,1,1160 +499950,3,1,1440 +780000,4,2,2600 +885000,3,3.25,2640 +500000,2,1,1010 +329000,3,2,1840 +246000,4,1.75,1720 +405000,3,1.5,1280 +349000,4,1.75,1700 +374950,4,2.5,1980 +306000,3,2,1160 +416000,4,1.75,1980 +560000,3,2.5,1960 +260000,3,1.5,1270 +306500,3,2.25,2060 +299950,3,1.75,1980 +265500,3,2.5,1450 +219000,3,1.5,1200 +365000,3,1.75,1830 +499000,3,2,2090 +366000,3,1.75,1510 +514950,3,2.25,1310 +875000,4,2.75,3790 +831000,3,2.25,2240 +689900,4,3.25,2740 +315000,3,2.5,1660 +355000,0,0,2460 +336500,3,1,1480 +1.10E+06,3,2.75,2640 +375000,6,2,1900 +289275,3,2,2860 +455000,4,3.5,3440 +505000,3,1.75,1640 +450000,3,1,1450 +567500,3,2.5,2300 +265000,3,1.5,1460 +340000,3,2,1570 +375000,3,2,1540 +920000,6,3,3300 +850000,4,2.25,2130 +202000,3,1,1010 +725000,4,3,2420 +900000,3,3.25,3870 +680200,2,1.5,1960 +216500,3,1,1170 +325000,3,1.5,1890 +675000,3,2.5,2250 +435000,2,0.75,750 +263500,3,1.75,1610 +550000,4,2.25,2590 +875000,3,2.5,2520 +246600,4,1,1340 +337000,3,2.25,1460 +240000,3,1.75,1380 +490000,3,1.75,1510 +510000,5,2.5,2510 +305000,3,1,910 +350000,3,2.5,1970 +284200,3,1.75,1540 +357000,4,2.5,1980 +854000,4,2.75,3150 +1.18E+06,4,2.5,4700 +1.00E+06,3,2.25,2300 +616500,4,2.25,1880 +750000,4,2.75,2640 +650000,6,4.5,3900 +275000,4,2.25,2670 +540000,4,1.75,1840 +225000,3,1,1120 +845000,4,2.5,2970 +490000,3,2.25,1410 +753000,4,2.5,3060 +475000,3,1.75,2490 +124000,1,0.75,840 +224000,1,0.75,840 +485000,2,1,1130 +230000,4,1.75,1850 +372000,4,2.75,2330 +306000,4,2.5,1880 +905000,4,3.5,2980 +440000,4,1,1440 +280000,3,1.75,1630 +435000,3,2.5,1778 +425000,3,2.5,1930 +204950,2,0.75,1130 +670000,2,1.75,1650 +475000,2,1,820 +352000,5,2.5,2900 +575000,4,1.75,2330 +1.73E+06,4,3.5,4440 +491000,3,2,1660 +750000,4,2.5,3020 +830000,4,2.5,1850 +1.14E+06,6,3.75,5960 +137124,3,1,960 +225000,4,1,1150 +732600,4,2.5,2130 +818000,4,2.25,2460 +431000,3,2.25,2360 +304000,2,2.25,1320 +650000,5,2,1910 +450000,2,2,1610 +269000,4,1,1610 +875000,3,1,1160 +890000,4,2.25,2870 +565000,4,2.5,2280 +448175,2,2,1370 +235000,0,0,1470 +680000,5,3,2970 +629000,3,1.75,1460 +494000,3,3.5,1570 +1.10E+06,4,3,2880 +450000,5,2.5,1900 +330000,3,1.75,2020 +960000,4,2.5,3110 +360000,4,2.5,2390 +378000,3,2.5,2150 +499950,3,1.75,1340 +450000,3,2.5,1990 +523500,2,2,1600 +600000,3,2.5,2680 +290000,3,2.5,2080 +176000,3,3.25,1340 +885000,3,2,2590 +483000,2,1.75,1240 +240000,3,1,1310 +720000,4,2.25,2530 +311000,4,2.5,1780 +332500,3,2,1600 +164950,3,1.75,1570 +371000,3,1.75,1570 +264500,3,1.75,1650 +1.74E+06,4,2.25,2920 +503000,2,1,870 +738000,4,2.5,2830 +393000,2,1,980 +280000,2,1,990 +260000,4,2.5,2360 +505000,2,1,1000 +241000,3,1.5,1660 +530000,3,1.75,1520 +713000,1,1,1180 +487000,3,1.75,1770 +128000,2,1,980 +210500,3,1,1840 +420000,3,2.5,1810 +679000,3,2.5,1780 +784950,4,2.75,2840 +352000,4,2.5,2650 +386000,3,1.5,1270 +335000,3,1.75,1260 +472500,3,2,1750 +599950,5,2.25,2680 +963990,4,3.25,3830 +735000,3,2,1610 +858450,3,4.25,3840 +665000,5,2.75,2670 +290000,3,2.5,2000 +250000,2,1,860 +192500,3,1.75,1420 +350000,4,2,2060 +518000,4,2.5,2790 +563000,4,1,1410 +375000,4,3,2420 +400000,3,2.5,1460 +240000,5,1.75,2460 +317500,2,1,1000 +1.32E+06,5,4,4420 +234000,3,1,1240 +645000,3,2.5,1740 +649000,2,1,1280 +605000,4,2.5,2520 +337900,3,3.5,1500 +535000,3,2.75,2490 +325000,4,1,1530 +429950,4,2.25,1740 +775000,3,2.5,3550 +650000,2,1,1280 +1.20E+06,4,2.25,2320 +275000,2,1,1140 +575000,4,3.5,3930 +540000,3,2.5,2370 +640000,3,1.75,2340 +275000,3,1.5,1240 +672800,4,2.5,2740 +495000,4,2.25,1940 +820000,3,2.5,2950 +475000,4,2.75,1980 +1.28E+06,4,2,2850 +380000,3,1,1160 +397500,3,2,2130 +352000,5,2.5,2420 +893880,6,2.5,2820 +635000,5,3.25,3710 +420000,3,2.25,1770 +503000,3,2,1260 +689000,2,1.75,2330 +749500,4,2.75,2490 +1.15E+06,6,3.75,4090 +563500,4,2.5,2800 +480000,4,3,2440 +374950,4,3,2540 +308950,3,2.5,1600 +445000,4,2.75,2680 +237200,3,1.5,1220 +453500,3,1.75,1550 +616500,3,2,2080 +1.25E+06,5,5,5000 +396000,1,1,630 +210000,3,1,1070 +539000,2,1.75,1900 +605000,3,2.5,2960 +437500,3,2,1490 +215000,3,1.5,1500 +440000,4,2.5,2410 +525000,3,1,2000 +319900,3,1.5,1140 +335000,3,1,1120 +485000,3,2.25,2900 +359999,4,2.25,3220 +799000,5,2.75,2500 +280000,3,2.25,1610 +1.05E+06,4,2.75,2250 +290000,1,2,1240 +235000,2,2.25,1660 +495000,3,1.75,2080 +290000,3,2.25,1880 +230000,4,1.5,1050 +234000,3,1.75,1480 +597400,4,2.5,2420 +370000,4,2.5,2190 +755000,4,2.5,2660 +342000,3,2.5,2430 +497000,2,1,770 +835000,3,1,3060 +730000,4,2.75,2920 +655000,3,1,1370 +205000,3,2.5,1870 +632750,4,2,1800 +330000,5,3,2100 +527500,5,2.25,2530 +716500,4,2.5,3290 +388500,4,2.5,1890 +530000,3,1.75,1680 +419000,3,2.5,2170 +385000,3,1.75,1200 +655000,4,2.5,2990 +1.70E+06,4,2.75,3770 +279000,2,1,1020 +262000,3,1.5,1700 +533000,4,1,1550 +640000,3,1.75,1680 +285000,3,2.25,1680 +458400,4,2.5,1910 +620000,5,3.25,3160 +465000,3,1.5,2020 +690000,4,3.75,3210 +462500,3,2.25,2350 +369950,4,2.5,1910 +124500,2,1,840 +950000,4,2.25,2620 +418000,4,1.5,1220 +160000,3,1,1060 +457000,4,2.5,2200 +530000,2,1.75,2120 +385000,3,1,1250 +491000,3,1.75,1440 +521000,4,2.25,1890 +255000,3,1,1140 +292050,5,3,2840 +326000,6,3,1880 +300000,2,1,750 +291600,3,1.75,1630 +435000,5,1.5,1720 +465000,3,2.5,1600 +200000,3,2.25,1230 +238000,3,1.5,1610 +455000,4,2.5,1320 +230000,6,3,2180 +808000,4,2.25,2190 +578500,3,1,1490 +390000,3,2,1463 +517500,3,2.5,1800 +755000,4,2.75,2880 +579500,3,1.75,1250 +649950,3,2.75,1670 +228000,4,1.75,2000 +665000,4,1.75,2280 +689000,4,2.5,2110 +560000,4,2.5,2520 +529000,3,1,1590 +375000,5,2.5,2100 +325000,4,2.75,2090 +583000,4,2.5,3390 +330000,2,1,790 +262000,3,2.5,1970 +555000,4,2.5,2870 +585000,2,1,1110 +425590,3,2.75,1940 +235000,2,1,720 +362362,2,1,710 +252000,3,2,1370 +439000,4,2.5,2690 +465000,4,2.25,3360 +249900,4,2,1500 +665000,2,2.5,2600 +370000,3,1.75,1160 +620000,2,1,1430 +375000,3,1,1870 +552625,4,2,2560 +315500,3,1,1160 +620000,2,1.75,1680 +510000,4,2.5,2010 +652500,4,2.5,2540 +574000,4,2.5,3240 +430000,3,2.5,2670 +390000,3,2,1080 +466500,3,1,1430 +315000,2,2.25,1290 +220000,4,1.5,1240 +325000,3,1.75,1840 +365000,3,1,1120 +356000,3,3.5,2100 +380000,4,1.75,2030 +579000,4,2.25,2030 +682000,2,1,890 +499000,3,1.75,1750 +333760,3,1,1300 +745000,4,2.5,2650 +380000,3,1.75,1750 +435000,3,3,1440 +520000,3,2.75,1700 +965000,4,2.5,3920 +270000,3,2.25,1470 +1.10E+06,5,2.75,2520 +577500,3,1.75,2140 +650000,3,1.75,1550 +1.23E+06,4,2.5,3180 +1.90E+06,5,4.25,6510 +475000,2,2,1440 +200000,3,1,1150 +397000,4,2.5,2320 +383610,3,2,1230 +275000,4,2.5,2060 +840000,3,2,2783 +365000,4,2.5,2140 +362000,3,2.75,1420 +350000,3,1.75,2090 +200000,2,1.75,1320 +299000,4,2.5,2300 +555000,4,1.5,3050 +1.33E+06,3,2.25,2960 +896000,5,2.75,2520 +550000,2,1.75,1740 +324500,2,1,1300 +312500,3,1,1170 +485000,4,3.25,1946 +511000,2,1,1250 +139500,2,1.5,1230 +464000,4,2.5,2180 +255000,3,1.75,1740 +679975,4,2.5,3830 +624800,3,2,2250 +920000,3,2.75,2590 +1.37E+06,3,2.5,2090 +510000,3,1.5,2400 +289659,4,2.25,2260 +585000,4,2.5,2910 +555000,5,3,3640 +940000,4,2.75,3770 +460000,3,2,1600 +319000,3,2.5,2110 +280000,3,2.5,1720 +250000,3,1,1100 +749950,4,2.5,2620 +458000,5,2.5,3090 +465000,3,2.5,1890 +580000,3,1.75,1850 +700000,4,2.5,3100 +350000,4,2.5,2506 +456000,4,1,1700 +290000,3,2,1550 +475000,4,2.75,2200 +285000,3,2.5,1890 +309000,3,1,1140 +860000,4,2,3740 +219000,3,2.25,1940 +546500,3,2.5,2130 +338000,2,1,1470 +505000,2,1,1070 +340000,4,1.75,1680 +678000,3,2.25,2730 +800000,3,1.75,1890 +112000,1,1,1080 +252000,3,1.75,1440 +335000,4,2.75,2540 +610000,3,2,2300 +245000,3,2,1690 +493500,3,1.75,1800 +596500,4,2.25,1770 +245000,3,2,1190 +333500,3,1.75,1320 +373000,3,1,1290 +759900,4,2.5,3000 +317000,3,2.25,1358 +670000,3,1.5,1220 +985000,2,2.5,2720 +310000,3,1.5,1060 +750000,4,2.5,3020 +408000,3,2,1640 +900000,5,3.75,3870 +460000,4,2.25,2860 +339000,4,2.5,1740 +660000,3,2,1140 +449950,4,3,3290 +235000,3,1,1210 +769000,5,2.25,3320 +428000,2,2,1350 +445000,3,2.25,1990 +462000,4,2.5,2060 +775000,3,1,1460 +605000,4,1.75,2250 +193500,2,1,950 +389950,4,2.5,3140 +790000,4,3.5,3560 +442000,2,1,1410 +890000,4,2.25,2770 +235000,3,1,1864 +495000,4,1.75,1930 +600000,4,2.5,3870 +1.40E+06,3,2,2020 +251000,3,2,1300 +471000,4,2.25,3410 +597000,4,2.5,2370 +804000,5,3.5,2770 +357000,3,1.75,1250 +419990,3,2.5,1690 +725000,4,2.5,3040 +275000,3,2.5,2710 +445000,3,2.25,1190 +510000,3,2.5,2300 +330000,4,1,1360 +270000,3,1,1500 +495000,4,2,1610 +225000,4,1.75,1420 +716528,3,1.5,1750 +260000,3,2.5,1510 +471000,4,2.5,2330 +690000,5,3.5,2690 +548000,5,1.5,1700 +505000,3,1,1020 +325000,3,1,1160 +682000,4,2.25,2450 +605000,3,2.25,2010 +276200,2,1.75,1370 +530000,3,1,1370 +245000,3,3,1990 +654950,4,2.5,2790 +221900,2,1,780 +466000,4,2,2240 +383150,3,2,2210 +657100,4,1,1390 +539000,3,2,1800 +400000,6,3,3320 +215000,4,2.5,1960 +489000,2,1,850 +649000,4,2.5,2980 +700000,4,1.75,1980 +268500,2,1,790 +515000,3,2.5,1800 +685000,4,2,2260 +305000,2,1.5,800 +950000,4,2,2490 +292500,4,2.5,1610 +270000,4,1.75,1850 +450000,4,1.75,1850 +535000,4,1,1920 +550000,3,2.5,1740 +457500,3,2.25,1430 +136500,3,1.5,1420 +224097,3,1.5,1420 +254000,3,2.5,1560 +335000,4,2.25,2030 +594950,5,2.5,3280 +350000,3,1.75,1360 +169950,3,1,1180 +432500,3,2.5,1940 +440000,2,1.75,1300 +233703,3,2.25,1650 +310000,3,1.5,1140 +735000,3,2.5,2540 +730000,4,2.75,3440 +257000,3,1.75,1800 +485000,2,2.25,1260 +899000,4,2.25,2370 +279000,3,1,1520 +225000,4,2,1750 +1.36E+06,3,1.5,2680 +355000,3,2.5,1590 +382500,4,1.75,1560 +324360,3,2.5,2000 +315000,3,1.75,2380 +426000,2,1,2230 +395000,5,2.5,2820 +212644,3,1,1570 +510000,3,3,1845 +85000,2,1,830 +235000,2,1,830 +295000,4,2.5,2030 +720001,3,2.5,1430 +313950,3,1,1510 +415000,3,1,1510 +305000,3,1.75,1610 +625000,3,1.5,1600 +490000,3,1,1420 +269950,3,2,1660 +2.70E+06,5,4,4230 +829000,4,3,3310 +635000,4,2.5,2470 +217500,3,1,1040 +270000,4,1.75,1850 +1.25E+06,3,3,4610 +480000,4,2.5,2480 +575000,3,1.75,2130 +426950,4,2.75,2350 +125000,3,1,920 +208000,3,1,920 +325000,4,2,1780 +597157,7,4,2690 +728725,4,2.5,3010 +708000,5,2,3180 +1.30E+06,4,3,4120 +405000,3,1,1280 +550000,4,2.75,1690 +451000,4,2.5,2320 +540500,5,3.75,3090 +1.03E+06,5,3.5,5050 +218000,4,1,1640 +562000,4,2.25,2170 +401500,4,2.5,3140 +196700,2,1,1090 +583000,3,1.75,1930 +309900,5,2.5,2100 +485000,4,3,3110 +465000,3,1,930 +595000,4,2.25,2050 +254000,3,1,1160 +488500,3,2.75,1820 +260000,4,2.5,2110 +166000,2,1,870 +440000,2,1.5,1080 +375000,3,2,1260 +529500,2,1,900 +338000,2,1,750 +335620,3,2.25,1800 +464000,4,2.25,2220 +354000,2,1,1390 +601000,4,3.5,2160 +285000,3,2.25,1840 +462500,2,2,1690 +350000,4,2.5,2650 +329000,4,1,1120 +312500,4,2.5,2500 +370000,4,2.5,2220 +399900,3,1.75,1260 +398000,3,1,1480 +550500,2,1.5,930 +709000,3,2.75,2780 +402000,5,2.75,2770 +450000,3,1.5,1530 +524000,3,2.25,2140 +800000,4,2.75,4600 +185000,4,1,1760 +365000,4,1,1760 +925000,4,2.5,3110 +714000,3,1.75,2260 +495000,3,2,1460 +535000,3,2.25,2050 +880000,4,2.5,2340 +150000,3,1.5,1230 +554500,3,2.25,1880 +520000,3,1.75,1280 +839990,4,2.75,3660 +500000,3,2.5,1650 +305000,2,1,1960 +247800,3,2.5,1580 +344200,4,2.5,2490 +459950,4,2.5,2000 +229900,4,1.75,1550 +750000,4,2.25,2820 +509000,4,2.5,2600 +680000,4,1,2200 +661500,5,2.5,2500 +370000,2,1,1270 +785000,4,2.75,2900 +355000,2,1,840 +446000,4,2,1940 +830000,5,3.5,3490 +324000,3,2.5,1940 +500000,4,2.25,2490 +745000,3,1,1390 +1.20E+06,4,2.5,3940 +385000,2,2.5,1760 +565000,3,2.25,2560 +465000,4,2.5,2300 +401000,3,3.25,1770 +385000,3,1.75,2310 +395000,3,2.5,2310 +245000,5,1.5,2000 +500000,3,2,1540 +334000,5,1.75,2590 +550000,3,1,980 +216000,3,1,1730 +340500,3,2.5,3070 +375000,4,2.25,2100 +600000,3,2.75,2080 +375000,4,1.75,1890 +536500,4,1.75,2000 +599900,3,3,3030 +750000,2,1.5,1110 +355000,3,1,1650 +590000,3,2,1410 +680000,2,1,2140 +429000,3,2.5,1860 +581000,2,1,1170 +463800,3,1.5,980 +2.98E+06,5,5.5,7400 +443000,5,1.75,1650 +276200,3,2.5,1480 +630000,5,3.5,4060 +570000,3,1.75,1370 +979700,4,2.25,2480 +730000,4,2.5,2030 +268450,5,2.25,2200 +490000,3,1.75,1770 +808000,3,2.5,2550 +350000,3,1,1250 +695000,4,1.75,2390 +1.23E+06,4,2.5,5730 +309950,1,1,1120 +134000,3,1,1270 +645500,4,2.5,2390 +750000,3,2,1760 +1.40E+06,3,2.5,2560 +344900,4,1.75,1820 +601450,2,3.25,1840 +575000,4,2,1810 +405000,3,1.75,2470 +518000,4,2.75,2520 +265000,2,1,1600 +180000,3,1,1280 +285000,3,2.5,1590 +433000,3,2.75,2000 +399000,3,1.75,1780 +565000,3,2.5,1700 +406500,3,1.5,1970 +420000,4,1.75,1940 +965000,4,3.5,3290 +1.38E+06,4,3.5,3500 +353950,5,2.25,3260 +847700,5,3.25,4230 +185000,5,1,1590 +269000,2,1.5,1010 +422800,3,1.75,1820 +379950,2,1,870 +525000,3,2,1620 +810000,4,3.5,3980 +209950,4,1,1630 +439950,3,2,1230 +554820,4,2,3510 +359000,4,2.5,2160 +242500,3,1,1020 +330000,3,1.75,1590 +740000,3,2.25,3440 +630000,5,1,3020 +750000,3,1.75,2280 +695000,4,2.5,2790 +109000,2,0.5,580 +389000,3,1.5,2030 +447000,2,1,850 +1.20E+06,3,2,2480 +315000,3,1.75,1010 +640000,3,2.5,2420 +570000,3,2.25,2180 +495000,3,2.75,1830 +449500,5,2.75,2040 +1.08E+06,4,2.75,2640 +294950,2,1,1060 +170500,3,1,1640 +312000,4,1,1190 +350000,3,2.5,2180 +690000,4,2.5,2120 +375000,4,2.5,2210 +575000,4,2.5,2510 +646000,4,2.25,2500 +239950,3,2.5,1560 +400000,5,2.5,2510 +455000,4,1.75,3060 +240000,3,2,1310 +3.40E+06,4,4,4260 +695000,3,2,2500 +304950,2,1,670 +650000,3,1.75,1840 +402500,3,1.75,1480 +482000,3,2.5,2420 +655000,3,2,1820 +577000,5,2.75,1940 +350000,3,2.5,1630 +415000,4,2.25,2520 +396400,4,2.5,2120 +654300,3,2.5,2490 +774950,4,2.5,3410 +855000,4,2,2380 +1.15E+06,3,2.5,2490 +330000,2,2.5,1240 +290000,4,2.25,1900 +519500,3,3,2390 +450000,3,1.75,1810 +3.12E+06,3,3.5,4490 +265000,3,1,1620 +359000,4,2.5,2640 +2.00E+06,4,3.75,2870 +1.05E+06,4,2.5,3250 +402500,2,1,800 +450000,3,1.75,1360 +262500,5,2.25,1950 +285000,4,2.25,1970 +290000,3,2.5,2020 +752500,2,2.5,2280 +820000,4,2.75,3540 +292000,3,2.5,1560 +213000,2,1,750 +400000,4,3,2240 +202000,1,0.75,590 +484000,1,0,690 +617450,3,2,1580 +250000,3,1,1040 +405000,5,1.75,1880 +325000,2,1,1070 +301350,3,3,1860 +425000,2,1.75,1550 +460000,3,1,1860 +938000,3,2.5,3090 +348000,3,1.75,1720 +435000,2,1,1260 +227950,3,1.5,1120 +425000,2,1,1250 +550000,3,2,1810 +347500,3,2.5,1890 +397000,4,1.75,2020 +410000,4,1.75,1790 +780000,3,3.5,3190 +1.35E+06,4,3.25,3030 +476000,3,2.25,1630 +390000,3,1.75,1180 +226500,3,2,1560 +495000,3,2,1340 +1.50E+06,5,3.25,2590 +385000,3,1,1020 +535950,3,2.5,2370 +910000,4,2.5,3170 +465000,2,1,1120 +495000,3,1.75,1440 +250000,4,2,2170 +1.23E+06,4,2.25,3490 +400000,4,2.25,1970 +715000,4,2.5,2780 +342000,3,2,2250 +420000,4,1.75,1340 +148226,3,1,1400 +313000,3,1,1510 +150000,3,1,1320 +150000,2,1,820 +230000,2,1,1080 +389100,2,1,840 +645000,4,2.25,2070 +310000,3,1,1520 +351358,2,1.75,1210 +1.70E+06,5,2.75,3810 +1.57E+06,4,3.5,5370 +850000,3,2,1540 +470000,4,2.5,2310 +770000,3,2.25,1870 +366000,3,1.75,1840 +545000,3,2.5,2060 +205000,3,1,1010 +405000,2,1,1020 +467000,4,2.5,2220 +392500,2,1,1050 +901000,4,2.75,3030 +500000,3,1.75,1800 +384950,3,2.5,1860 +1.70E+06,4,3.5,4070 +245000,2,1,860 +1.17E+06,4,2.25,3080 +184500,3,1.5,1280 +269000,2,2,1540 +570000,3,2.5,1530 +850000,4,1.75,2350 +209000,3,1,920 +327000,4,1.75,1840 +369500,3,1.5,1650 +440000,3,1.75,1760 +947500,4,2.25,3290 +510000,2,1,1270 +385000,3,2,1600 +370000,5,3,2670 +660000,4,1.5,1960 +729000,3,4.25,3300 +440000,3,1.75,2000 +445000,4,2.5,2360 +460000,2,1,1430 +516000,3,3,2330 +343888,4,2.5,2060 +500000,4,1.75,2240 +465000,5,1.75,2330 +302000,5,2.25,2180 +195000,2,1,1280 +640000,3,2.5,2140 +502000,6,2.5,2890 +360000,3,2.5,1480 +290500,4,2.5,1680 +248000,4,3,2163 +433000,4,2.5,2280 +480000,2,1,820 +410000,3,1,1330 +309950,4,2.75,2310 +253000,3,2,1290 +280000,3,1.75,1630 +440000,3,1,1410 +333000,5,1.75,1240 +759950,3,2.5,3100 +345000,3,2.25,2020 +350000,4,2.5,2500 +198000,2,1,790 +730000,3,1.75,2040 +266200,3,1.5,1430 +1.06E+06,4,2.5,2250 +95000,2,1,1070 +430000,3,1.75,1300 +650000,4,2.25,2560 +379900,3,2.5,2190 +325000,2,1.5,940 +455000,4,2.25,1740 +392000,4,3.75,2220 +373000,3,1.75,1310 +951250,5,3,2710 +502000,3,2,1300 +362500,3,2,1940 +525000,2,1,1080 +580000,4,2.5,2110 +278000,3,2.25,1590 +422500,2,1,910 +783200,4,2,1590 +715000,4,2.5,3290 +472217,3,2.5,2010 +244615,3,2.5,2060 +385000,3,1.75,1560 +549995,3,1,1120 +959900,4,3.75,3550 +510000,6,4.5,3300 +367000,3,1.75,2000 +375000,5,3,2680 +500000,2,2.25,1290 +489000,2,2.25,1290 +340000,3,2,1150 +562000,3,1.75,1880 +489950,3,2.5,2400 +652000,3,2.25,1920 +472000,4,3.25,4350 +333000,4,2.5,1910 +560000,3,1.5,2000 +799000,4,3.5,3290 +860000,5,2.25,3480 +449500,4,2.5,2410 +692500,4,3,2820 +925000,4,1.75,2710 +267500,3,2.25,2080 +396800,4,2.5,2200 +220000,4,1.5,1180 +892500,3,1.75,2120 +455500,3,2,1460 +743000,3,1.75,2110 +338000,4,1.5,1790 +332000,3,1.75,1340 +563225,3,1,2460 +1.15E+06,4,3.5,3760 +645000,2,1,1240 +739000,3,2.5,2750 +435000,3,2.5,2530 +995000,3,2.25,3200 +520000,4,2.75,2020 +400000,4,2.5,3030 +440000,3,1.75,2350 +440000,3,1.5,1690 +738000,3,1,1280 +250000,3,1.5,1170 +338150,4,2.25,2700 +425000,3,2.25,1800 +883000,4,2.5,3670 +510000,3,2,2350 +950000,4,1.75,3100 +435000,3,1,1120 +415000,5,1.5,1900 +439000,2,2.5,1350 +295832,5,1,1410 +285000,3,1.75,1560 +350000,3,1.5,1090 +489000,2,2.75,1465 +304500,3,2.25,1790 +288000,3,1.5,1300 +417000,3,1.75,1920 +615000,3,3,1420 +730000,5,3.5,3760 +178500,2,1,930 +300000,4,2,1580 +415000,4,2.5,2170 +452500,3,1.75,2040 +1.01E+06,4,2.75,3430 +653000,4,2.5,2160 +715000,4,2.25,2060 +541000,3,1.75,1410 +245000,4,1.5,1850 +547000,2,1,1370 +750000,5,2.75,3330 +575000,5,2.5,1970 +216000,3,1.75,1310 +443000,3,1.75,1640 +257700,4,2.25,1600 +278000,3,1,1230 +300000,3,2.5,2240 +269100,3,2.5,2190 +402500,3,1,990 +306888,2,1.5,1010 +795000,4,2.5,2920 +525000,4,2.5,2310 +1.05E+06,3,2.5,3470 +452000,2,1,1220 +350000,3,2.25,1550 +410000,4,2.5,2070 +595000,3,1.75,2060 +499000,3,2.5,1690 +340000,4,2.5,2550 +1.07E+06,5,3.25,3370 +460000,4,3,2230 +345000,4,2.5,2382 +280500,3,2.25,1620 +704000,3,1,1140 +545000,3,2.5,2140 +335000,3,1.5,1900 +1.33E+06,4,3,3370 +420000,3,2.75,2300 +705000,4,2,2040 +274900,4,1.75,1840 +499950,4,2.5,2860 +415250,3,1.5,1400 +222000,3,1,990 +375000,3,2,3120 +300000,3,2.5,1640 +456700,3,1.75,2820 +925500,3,2.75,1970 +375000,5,2.5,2840 +420000,3,2.5,2370 +575000,3,2.5,2610 +335000,3,2,1340 +428000,4,2,1300 +655000,4,2.5,3340 +738000,3,3,2630 +415000,5,1.75,1960 +392000,3,1,1090 +555000,2,1,1550 +260000,3,2.5,1770 +392500,3,1,1390 +912000,3,2.5,2979 +135000,2,1,830 +500000,3,2.75,1560 +238000,3,1.5,1360 +251000,4,2,1650 +406500,2,1.75,1510 +433495,4,2.25,3010 +265000,3,2.25,1510 +360000,3,1.75,1950 +425000,4,1,1800 +450000,2,2.75,2810 +449900,3,1.75,1760 +345000,4,2.5,2040 +612500,4,2,1690 +317000,3,1.75,1530 +585000,3,1.5,1810 +455000,3,1.75,1180 +1.04E+06,4,4,4090 +497000,4,2.25,2250 +226750,3,1.75,1070 +385000,4,2,1820 +205000,3,0.75,1080 +745000,4,2.5,2760 +371000,4,2.5,2550 +545000,4,2.5,2080 +443000,3,1,1280 +287000,2,1,950 +194000,3,1,1050 +265000,3,1,1800 +1.14E+06,4,2.75,3840 +699950,4,3.25,3674 +433000,4,1,1710 +200000,2,1.75,910 +289571,3,1.5,1340 +440000,4,2.75,2340 +400000,3,1.5,1510 +589000,4,2.5,2630 +850000,5,2.25,3100 +520000,3,1,940 +555000,2,2.25,1370 +470000,3,2.5,2480 +207000,2,1.5,1068 +379750,4,2.75,2390 +709000,4,1.75,2170 +240000,3,2.5,1520 +445500,4,1.5,2210 +1.31E+06,5,2.5,3200 +210000,3,1.5,1160 +603000,4,2.5,2670 +720000,3,2.5,2520 +92000,2,1,760 +600000,3,1.75,1310 +725000,4,2.5,2750 +409950,5,2.25,1790 +515000,3,2.5,1790 +495000,4,2.5,2400 +998000,4,2.25,2420 +630000,3,1.75,1710 +410000,3,1.75,2000 +602000,3,2.25,1580 +750000,4,2.75,2310 +711600,4,3,3580 +1.05E+06,4,4,4320 +700500,3,2.5,2560 +710000,4,2.5,3220 +250000,3,2,1660 +350000,4,1.75,2420 +475000,7,3.5,2870 +200000,2,1,830 +450000,4,2.25,1710 +316000,5,2.5,2600 +310000,1,1,670 +392000,3,1.5,1500 +521000,3,3.25,1460 +495000,2,2,1540 +209000,3,1.75,1250 +809950,4,2,2230 +400000,2,1.75,1800 +415000,4,2.5,2400 +411000,4,2,2370 +825000,2,2,1830 +436000,3,2.25,1480 +460000,4,2.5,2620 +281000,3,1,1300 +976000,4,1.5,3120 +485000,4,2.5,2400 +429000,3,2.5,1430 +729000,3,2.5,2480 +625000,3,2.5,2280 +218500,3,1.75,1390 +175000,3,1,1030 +442500,3,1,1120 +480000,3,2,1300 +715500,3,2.25,2410 +432500,3,1.75,1470 +875000,5,4.25,4720 +605000,5,2.75,2910 +1.69E+06,4,4,5000 +318000,3,2.25,1690 +311300,2,1,1000 +325000,5,2.75,2400 +795000,5,3.5,3330 +558000,4,2.25,2060 +370000,4,2.5,3090 +598850,4,2.5,2350 +515700,3,2.5,2180 +458000,3,2.5,1870 +583500,3,2.25,3530 +653750,4,2.5,2460 +299000,3,2.5,1650 +532000,5,3,3480 +819000,3,2.75,3176 +945000,4,2.25,2420 +608700,4,2.5,2260 +812000,4,2,2380 +464000,5,2.5,3400 +950000,4,2.5,3770 +700000,4,2.5,2672 +435000,3,1,1180 +229500,3,1.5,1810 +1.58E+06,3,3,2610 +265000,3,2.25,1450 +995000,2,2,1600 +590000,3,2.5,2650 +740000,4,2.75,2490 +360000,2,0.75,850 +548500,4,2,1820 +599000,3,1.75,1960 +615000,3,1.75,2350 +292000,3,1.75,1320 +899000,4,2.5,3720 +500000,3,1.5,2210 +580000,3,2.5,1910 +580000,4,2.5,2840 +594000,3,1,1320 +500000,3,2.5,2440 +550000,4,2.5,2420 +275000,3,1.75,1180 +390000,3,2.25,1820 +1.25E+06,3,3,3760 +250000,3,2.25,1560 +405000,2,2.5,1790 +213950,3,1,1430 +232000,3,1.5,1390 +207000,3,1,990 +310000,3,1.75,1880 +540000,3,2.5,2520 +750000,4,1.5,2060 +392500,4,2.5,2150 +305000,5,2.5,2500 +735000,3,2.5,2390 +575000,4,2.5,2400 +175000,2,1,660 +291000,4,2.5,1580 +791500,4,2.5,3250 +475000,3,2,1880 +238950,2,1,1190 +470000,3,3.5,1280 +420000,4,1.75,2380 +440000,3,2.5,2040 +656000,4,1.75,1440 +559950,3,2.5,2120 +600000,2,2,990 +255000,3,1,1710 +210750,4,1.5,1840 +485000,4,1,1150 +390000,3,2.5,2250 +405000,3,2.5,2460 +462500,4,1,1540 +435000,4,2.25,2210 +440000,3,2.5,1440 +299950,3,1.75,1790 +440000,2,1.5,1120 +312620,3,2.5,1260 +372500,3,1.5,1180 +297262,3,2.5,1730 +735000,4,3,2250 +430000,3,1.5,1550 +241000,2,1.75,1070 +201000,3,1,1460 +570000,2,1,1060 +538000,4,1.75,1840 +729000,3,2.5,2440 +331500,4,1.75,1700 +110700,2,1,680 +245000,3,2,1700 +427000,3,1.75,2000 +650500,4,1.75,2340 +335900,2,1,1120 +535000,2,2,1510 +360000,5,2,2120 +294900,3,2.25,1500 +460000,2,1,1030 +1.77E+06,4,3.5,5440 +463000,2,1,1150 +332000,5,1.5,2420 +199500,4,2,1750 +247000,4,2,1750 +442500,4,2.5,2170 +600000,3,2,2540 +449000,3,2.5,1690 +725000,4,1,1600 +215000,3,1,1060 +582500,2,1.75,1990 +305000,4,2.25,2210 +734000,4,2.75,3090 +300000,3,2,1050 +525888,5,1.75,2550 +711000,4,2.5,2095 +360000,3,1.75,1520 +357000,5,2.5,2750 +235000,3,1.75,1200 +550000,3,1.75,1830 +324000,3,1,1160 +420000,3,2,1750 +450000,4,2.5,2400 +825000,5,3.5,4140 +272000,4,2.25,2115 +481000,3,2,2580 +500000,3,1,1220 +448000,2,1.5,1630 +480000,2,2,1350 +475000,3,2.5,1690 +472500,2,2.25,1700 +291000,4,2.25,1890 +294000,2,1,850 +1.01E+06,4,2.5,2480 +442500,3,2.5,1690 +170000,2,1,810 +1.58E+06,4,2.5,3980 +665000,3,2.25,2580 +1.61E+06,5,4.5,6085 +675000,2,1.75,2140 +279900,2,1.75,1360 +875000,4,1.5,1800 +571000,3,2.5,1920 +320000,3,1,860 +525000,3,2.5,2340 +1.65E+06,8,2.75,4040 +137900,3,1.75,1160 +440000,3,2.25,1680 +360000,3,1,1280 +271000,4,1.5,1800 +465000,6,3.25,4250 +280000,4,2.5,2400 +283000,2,1,940 +411500,3,1,1110 +282000,3,2.25,2420 +535000,3,2.5,1850 +554729,4,2.5,2020 +868000,4,2.5,2020 +427000,3,2.5,1830 +455000,4,1.75,1920 +595000,2,1.75,1280 +400000,4,2.5,3130 +770000,4,2.5,3920 +742500,4,2.75,3100 +1.25E+06,4,2.5,3220 +375000,3,2,1670 +1.56E+06,4,2.5,2700 +545000,4,2,5461 +1.05E+06,4,3.25,4400 +1.57E+06,3,1.75,2190 +178000,4,1.5,1200 +262500,3,1.75,1470 +730000,3,1.75,1650 +395000,5,1.75,1840 +355000,3,1,1210 +299990,3,2.5,1870 +1.13E+06,4,3.25,3890 +425000,4,2.25,2660 +349000,2,1,1150 +554950,4,1.75,1740 +326000,6,3,2580 +580000,4,1.75,1720 +699000,3,2.5,2740 +757000,3,2.75,2610 +335000,3,1.75,1400 +660000,3,2,2570 +540000,4,2.75,2830 +320000,5,2.25,2630 +280000,3,2.5,1580 +324000,3,2,1540 +300000,3,1,2120 +360000,3,1.75,1830 +600000,3,2.5,2260 +950000,4,1.75,2500 +599950,3,3.25,1830 +190000,4,1,1190 +350000,4,1.75,2310 +522000,3,1,1230 +850000,3,2.5,2940 +308000,3,1,1010 +1.02E+06,6,2.25,2550 +397500,3,1,1480 +186000,3,1.75,1460 +436500,5,3,3110 +710000,3,2,2140 +1.38E+06,5,3.25,3450 +450000,3,2.25,1960 +375000,4,2.75,1890 +315000,2,1,2080 +467500,3,1,1700 +330000,3,1,1140 +665000,3,2.5,3136 +760000,4,3.25,2590 +469000,3,1.75,1480 +408000,3,3,1500 +851000,3,2.75,2660 +410000,2,2,1350 +235000,2,1,860 +207100,2,1,1000 +560000,4,2.5,2480 +903000,3,2.75,3860 +998500,3,1.75,2140 +268500,4,1.75,1820 +494950,2,1.75,2220 +1.13E+06,4,2.5,2660 +250000,3,2,1470 +449000,4,1.75,2350 +1.23E+06,3,2.25,2980 +325000,4,2,1870 +506000,5,3,2430 +751000,4,2.5,2790 +280000,3,2.5,1370 +1.12E+06,4,2.25,4470 +580000,3,1.75,2040 +665000,4,2.25,2340 +450000,4,2.5,2520 +389900,4,1,1710 +427000,3,1,1200 +265000,3,1.75,1330 +398000,3,1.5,1310 +354000,6,3.5,3020 +339950,4,2.5,2260 +399000,2,1,790 +325000,2,2,970 +998800,3,2,2250 +350000,4,2.5,1530 +1.00E+06,4,1.75,1780 +561000,3,2.5,2120 +245000,2,1,1500 +570000,2,1,1500 +845000,4,3,2390 +314500,4,2.5,2390 +650000,3,1.75,2920 +298000,2,1,850 +500000,2,1,930 +870000,4,2.5,3340 +299000,2,1,710 +527000,3,2.25,2240 +420000,3,1,1060 +290000,3,2.5,2360 +1.66E+06,4,2.75,3520 +499990,3,1.75,1730 +315000,3,1.75,1170 +425000,4,2.25,3680 +630000,3,2.5,2900 +365000,3,1.75,1290 +774000,4,2.75,2010 +368888,3,1.5,1490 +339500,4,2.5,1930 +344950,4,1.75,2240 +450000,3,2,2320 +814950,4,2.75,2990 +299900,4,2.5,2200 +315000,3,2,1500 +880000,3,1.75,3860 +195000,3,1.5,1430 +910000,5,2.75,3750 +540000,5,2.5,3100 +306000,3,2.5,1870 +272000,4,2.25,2040 +1.30E+06,5,3.5,3700 +450000,3,1.75,3150 +450000,3,2.5,1990 +310000,4,1,1740 +530000,2,2.25,2080 +435000,4,2.5,2060 +485000,3,2,1590 +690000,3,1.5,1760 +305000,4,2.5,1620 +300000,3,1.75,1210 +289950,4,3,2040 +575000,3,2.5,2270 +1.82E+06,4,4.5,6640 +219000,3,1.5,1060 +265000,4,3,1940 +1.11E+06,5,3.25,3070 +200000,3,1,930 +545000,4,2.75,2180 +378000,3,2.5,2130 +388000,2,1.75,800 +425000,4,2.25,2200 +536000,2,1.5,1130 +1.18E+06,3,2.5,1970 +629950,3,2.5,1680 +465000,4,1.75,1470 +545000,4,2.25,2390 +592000,4,2.5,2300 +446000,4,2,2280 +375000,3,2.5,1330 +632500,5,2.5,2640 +459950,4,1.75,2430 +485000,4,2.5,2470 +255000,3,1,1440 +251750,3,2,1320 +725000,3,2.5,2810 +460000,3,3.25,1370 +625000,3,2.5,2000 +530000,3,1.75,1980 +394950,3,2.5,2050 +324950,4,1.75,2320 +330000,3,2.25,1960 +220000,4,1.75,1910 +685000,3,3.25,2030 +500000,3,2.25,2210 +368000,4,2.75,2610 +825000,3,2.25,2520 +660000,6,1.75,1840 +253000,3,1.75,1570 +392500,4,2.75,2400 +605000,3,1.75,1930 +215000,3,1,1160 +650000,4,2.5,2820 +877500,4,2,3060 +232500,3,1,1320 +234000,2,2,1200 +380000,3,1.75,1560 +420000,5,2.25,3070 +399950,3,1,1040 +256750,3,2.5,1990 +535000,3,2.5,1690 +515000,3,2,1810 +770000,4,1.75,2520 +256000,3,2.5,1570 +489900,3,1,1680 +165000,3,1.5,1250 +220000,3,1.5,1280 +575000,4,2.5,4620 +375000,3,2.5,1580 +422250,3,1.75,1650 +420000,3,1.75,1660 +608000,4,2.5,2410 +620000,3,2.25,1720 +850000,3,2.5,3120 +463000,4,2.5,2680 +750000,5,1.75,2640 +1.07E+06,3,3.25,3730 +290000,3,2,1700 +525000,4,1.75,2280 +319000,3,2.25,1220 +592500,6,4.5,3500 +350000,3,2.5,2010 +454900,3,1.75,2130 +272000,4,2.25,1800 +357500,3,1,1070 +285000,3,1.75,1020 +280000,4,2,1600 +477000,4,1.5,1380 +750000,3,2.25,3270 +595000,4,2.5,2100 +525000,3,2.25,2110 +319000,3,1.75,1640 +225000,3,2,1320 +485000,4,2.5,2420 +341000,3,1,1390 +674000,3,3.25,2320 +442250,3,2.5,2170 +591000,4,2.25,2710 +276000,3,2,1450 +394000,3,2.5,1370 +355000,3,2.5,1810 +260000,3,2.5,1420 +300000,3,2.75,2090 +310000,3,2.75,2090 +209000,3,1,1330 +344950,3,2,1330 +230000,5,2,1910 +336950,3,1.75,2310 +700000,3,2.75,2500 +230000,3,2,1310 +443500,4,2.5,2040 +471000,4,2.5,2040 +595000,3,2.25,2400 +470000,3,1,1400 +600000,4,1.75,1700 +1.38E+06,4,3.75,3160 +427800,3,1.75,1340 +445000,4,2,1470 +382000,3,1.75,1790 +577000,3,1.5,1560 +427000,3,2.5,2620 +255000,3,1,1580 +240000,3,1,1090 +1.23E+06,5,3.25,3240 +435000,4,1.75,2520 +1.45E+06,3,1.75,2230 +425000,4,3,2430 +393000,2,1,1020 +264950,4,1,1810 +746500,4,2.5,3460 +450000,3,1,2020 +229950,3,2,1410 +425000,2,1,750 +2.56E+06,4,2.5,5300 +1.40E+06,4,3.5,4380 +753000,3,2.25,2290 +310000,2,1,720 +395000,2,1,1200 +725000,3,2.5,2620 +295000,4,3,2120 +225000,3,1.75,1580 +1.70E+06,3,3.25,4160 +431000,3,2.25,1830 +358500,3,2.5,2000 +595000,2,1,980 +468000,4,2.5,3040 +260000,4,1,1740 +375000,3,2,1450 +295000,3,2.5,1560 +403900,4,2.5,2050 +269950,3,1.75,1760 +640000,3,3.5,1740 +221000,3,1,910 +255000,3,1.75,1700 +300000,4,2.5,2620 +270000,3,2.25,1500 +575000,4,1.75,1630 +246900,3,1.5,1370 +635000,2,2.5,1390 +450000,3,2,1540 +215000,3,1,1190 +785000,3,3.5,4500 +522500,4,3,2370 +150000,2,1.5,1360 +199950,2,1.75,870 +3.00E+06,4,4.25,4850 +379900,3,2,3110 +950000,4,2.5,3700 +865000,6,2.75,3500 +785000,3,1.75,1670 +245700,3,2.25,1640 +951000,3,2.25,3400 +499950,3,1.75,2060 +257000,3,1.75,1330 +549000,3,2,2330 +1.60E+06,3,2.75,3040 +1.40E+06,5,3.75,3700 +619000,3,2,1990 +311000,5,3,2020 +600000,5,2.25,2980 +1.08E+06,4,3.5,3990 +436000,2,1,790 +205000,2,1,1060 +514000,3,2.25,2260 +530000,2,2.5,1900 +511000,5,2.5,3361 +2.10E+06,4,1.75,3550 +370000,5,2.5,2740 +500000,4,1.75,2040 +710000,4,2.5,4070 +270000,1,1,720 +415000,3,1.75,2000 +1.80E+06,5,4.5,4400 +236000,3,1.75,1300 +278000,2,2.5,1420 +312000,3,2.25,1540 +539000,3,2.25,1540 +498000,3,3,2360 +857000,4,3,3720 +780000,3,1.75,1690 +650000,3,2,2300 +559500,4,1.75,1650 +219950,2,1,990 +671500,4,2.25,2130 +813000,4,2.5,3320 +182000,3,2.25,1960 +203700,2,1,770 +740000,4,1.75,2010 +230000,2,1,800 +128000,3,1,910 +345000,3,1,1200 +663000,4,2.5,3570 +329950,3,2.5,1820 +1.05E+06,3,2.25,2930 +402300,3,1.75,1480 +492000,4,2.5,3305 +448000,4,2.5,2230 +273000,3,1,1560 +335000,3,1,1030 +695000,3,3.75,2380 +279000,3,1,1010 +485000,2,1.75,2060 +383000,4,2.5,2370 +490000,4,2.5,2242 +240000,2,1.5,1078 +285000,2,1,890 +524950,3,1.5,2700 +729000,4,2.5,2450 +460000,3,1.75,1420 +687500,3,1.5,1280 +1.17E+06,5,2.75,2910 +825000,4,2.25,2430 +314950,2,2.5,1860 +470000,3,2,1800 +500000,3,1.5,1960 +313000,3,1.5,1550 +445000,2,1,840 +300000,4,1.75,2080 +619500,4,2.5,2210 +305000,3,1.5,1210 +874000,3,2.5,1350 +477500,3,2,1860 +700000,3,2,1940 +515000,4,3.5,3400 +590000,4,2.5,2240 +205000,3,1.75,1170 +310000,3,3.25,3130 +442500,2,2.25,1510 +1.08E+06,4,3.5,3740 +530000,4,2.5,2690 +343500,4,1.75,1760 +334900,4,1.75,2180 +544300,4,1.75,1560 +370000,3,2.5,1780 +245000,3,1.75,1260 +535000,4,1.75,1570 +202000,2,1,740 +490000,4,2.25,2020 +651500,4,1.5,1500 +270000,4,2.5,1670 +1.16E+06,3,3.5,3620 +289000,2,1.5,1010 +240000,3,1.5,1460 +790000,3,1.75,1790 +350000,3,2.25,1760 +246950,3,3.5,1790 +400000,3,1,1050 +533000,4,2.5,2590 +198400,3,1,1040 +495000,4,2.5,4060 +862000,4,2.5,3190 +870000,4,2.5,3190 +875000,4,1.75,2180 +317000,6,3.5,2120 +325000,4,2.75,2110 +615000,2,1.5,1210 +334950,4,2.5,2410 +775000,3,2.5,1980 +600000,4,2.5,2370 +565000,3,1.75,1720 +292500,2,1,750 +825000,3,2.25,2510 +495000,3,2.5,2577 +525000,3,1.5,1540 +438600,1,1,720 +507000,3,2.25,1810 +275900,3,1.75,1380 +1.17E+06,4,2.5,2570 +275000,4,1.75,1690 +355000,3,0.75,1420 +233000,4,2,2130 +666000,3,2.5,3000 +317500,4,2.5,2150 +420000,4,2,2280 +290000,4,2,1560 +320000,3,2,1880 +650000,3,2.5,2320 +325000,3,1.75,1010 +165000,3,1,1120 +500000,3,1.75,1560 +443000,4,1.5,1860 +213400,3,1.5,1150 +480000,4,1.75,1920 +275000,4,2.25,2490 +299880,3,2.5,1460 +499950,3,3.5,1820 +1.71E+06,5,3,4290 +550000,4,2.75,2230 +300000,4,2.5,2070 +920000,3,1.75,2480 +2.30E+06,4,3.25,4110 +620000,4,2.75,2290 +253500,3,1,1220 +978000,4,2.75,2620 +387500,4,2.5,3190 +325000,3,1,850 +568000,3,2.5,1740 +525000,4,2.5,2140 +560000,3,2.5,2070 +394000,3,2.5,1680 +484950,2,1,1000 +1.30E+06,3,2.75,3340 +315000,3,2.5,1260 +590000,4,2.25,2430 +106000,1,1,560 +751000,3,2.5,3380 +474000,2,1,1100 +189000,2,2,1700 +440500,3,2.5,1600 +1.02E+06,3,2.5,2605 +589000,2,2,1850 +273000,3,2.25,1830 +950000,3,3.25,3050 +277700,2,1.5,1240 +299900,3,2.25,2100 +235000,3,1,1250 +464000,2,2,1230 +281000,3,1.75,1690 +320000,3,1,1520 +282000,4,2,1890 +745000,4,1.75,1990 +245000,3,1.75,1480 +250000,3,1.75,1480 +470000,3,2.5,2120 +216650,3,3.5,1480 +440000,3,1,1250 +590000,4,2.5,2010 +935000,5,2.5,3150 +848000,3,3.5,3010 +827500,5,4.25,3920 +1.13E+06,6,3,2880 +630000,2,2.25,2550 +340000,5,1,1120 +570000,4,2.75,3140 +2.75E+06,4,4,4130 +514500,4,2.5,2990 +360000,2,1,1120 +228900,4,1.5,1570 +660000,3,2.75,2210 +647000,4,2.5,2390 +366000,3,1.75,1520 +354000,5,1.75,1830 +850000,4,3.5,2640 +496700,3,2.5,1740 +300000,3,2,1550 +390000,3,1,1040 +350000,3,2.25,1640 +561000,3,2.25,1640 +475000,3,1.75,1260 +275000,3,1.5,1170 +290000,3,1.75,1590 +199000,3,2.5,1750 +279900,4,2.5,1770 +1.66E+06,4,2.25,3530 +405000,3,2.5,2160 +615000,4,2.25,2360 +268000,3,1.75,1980 +451000,4,1.5,1620 +850000,2,2.75,2700 +1.18E+06,5,2.25,3270 +245000,2,1,870 +450000,2,1.75,840 +370350,3,3.5,1340 +543000,3,2.5,1540 +265000,2,2,1650 +497000,3,2.5,2630 +419000,4,2.25,1880 +545800,4,2.5,1980 +403000,3,1,1500 +195000,3,2,1230 +1.13E+06,4,2.5,2520 +255000,5,1.75,1970 +500000,2,1.5,1520 +855000,4,2.75,2600 +390000,4,2,2290 +339000,3,2,1979 +1.33E+06,4,3.5,2170 +429900,4,1.5,1820 +370900,3,1.5,1200 +457500,3,1,1210 +499000,4,2.5,1970 +225000,2,1,1040 +615000,3,1.75,1920 +455000,2,1.5,1020 +458000,3,1,1660 +580000,3,2.25,1670 +966000,5,4.5,3810 +240000,4,1.75,2020 +229050,1,1,420 +328500,3,2.25,1390 +319000,3,1.5,2010 +650000,4,2,1820 +398500,3,2.5,1630 +250000,1,1,800 +815000,3,2,2270 +1.07E+06,3,2.75,2290 +510000,3,2.25,2750 +156000,2,1.75,590 +254500,4,2.75,2570 +760000,3,2.5,2050 +210000,3,2.5,1610 +349950,3,2.5,2140 +676000,3,2,1730 +475000,4,3.5,2440 +880000,4,2.75,3220 +1.21E+06,4,3.25,4330 +420000,3,1.5,1780 +607000,3,1,1230 +475000,4,1.75,2160 +395000,2,1.75,1400 +650000,4,1.75,1900 +625000,5,2.75,2910 +849000,3,3,2960 +429950,3,1.5,2010 +825000,3,2.5,3760 +505000,2,1,1020 +265000,2,1,1290 +283000,3,1,890 +560000,3,2.75,1620 +765000,4,2.5,3360 +610000,5,2.75,2930 +589000,3,2.5,2940 +192500,3,1,1080 +3.20E+06,3,3.25,4560 +550000,3,1,1010 +460000,2,1.5,1790 +264500,4,2.25,2060 +339000,3,1,1150 +950000,4,3.5,4030 +677500,3,1.75,2020 +690000,4,2.5,2740 +312000,4,2.25,1930 +840000,5,1.75,2500 +357500,3,3.5,2080 +675000,3,1.5,1460 +515000,3,2.75,3290 +491234,4,2.5,1540 +290000,3,2,1310 +490000,4,2.5,2120 +810000,4,2,2920 +252000,3,1.5,1150 +299999,3,2.5,2380 +400000,3,2.75,2220 +530000,5,2,3020 +357000,3,2,2460 +365000,3,1.75,1820 +804000,4,2.5,2620 +808250,3,2,1750 +360000,4,2.5,2020 +240000,3,1.75,1240 +335000,2,2,1380 +380000,3,1.75,1920 +350000,3,1.75,1680 +194000,3,1,1400 +310000,3,1,1240 +315000,3,1.75,1410 +258950,3,1.75,1440 +479000,2,2.25,1230 +510000,5,1.5,1550 +400000,3,2,1760 +1.45E+06,4,3.5,5000 +680000,5,2,2140 +1.75E+06,6,3,3510 +335000,3,1.75,2010 +460000,5,2.5,3390 +440000,4,2.25,2160 +412250,2,2,1300 +185000,3,1.5,1280 +286500,3,2,1840 +422000,4,2.5,3200 +408000,3,2.25,2800 +306500,2,1,1390 +359900,4,2.5,2600 +560000,3,2.5,1960 +259875,3,1,1250 +385000,3,1,1250 +188000,1,1,550 +1.14E+06,4,3.25,2500 +255000,3,1,1250 +1.19E+06,4,2.75,3020 +635200,4,1.75,1640 +355000,3,1.75,1870 +544000,3,2.5,1760 +402000,3,1.5,1320 +575000,4,1.5,1430 +216000,3,1.75,1580 +1.20E+06,4,3.5,4170 +850000,4,3.25,3090 +238000,3,2,1020 +625000,4,1.75,2180 +1.11E+06,5,3.25,3350 +820000,3,2.5,2510 +355000,3,2.5,1880 +495000,4,1.5,1810 +1.30E+06,5,2.5,4170 +398750,3,2.5,2230 +835000,4,2.5,3650 +705000,6,2.75,2830 +625000,4,1.5,2120 +550000,4,2.5,2090 +540000,3,1.5,2600 +519000,2,1,830 +311000,4,2.5,1975 +305000,4,2.5,1900 +395000,4,2.75,2640 +275000,4,1.5,1610 +450000,3,3.25,1770 +324000,2,1,1070 +2.80E+06,5,3.25,4590 +565000,4,1,1540 +373000,4,1.75,1590 +613000,2,2,1170 +614000,4,2.25,2880 +595000,4,1.75,2510 +440000,2,1,1280 +425000,3,1.5,1570 +407000,2,1,740 +472000,3,1.5,1740 +472000,3,2.5,1180 +1.25E+06,5,2.75,2960 +412000,3,1.75,1880 +717000,3,1,1150 +425000,3,1,1320 +299999,4,2,1640 +254000,3,2,1470 +178500,3,1,900 +800000,3,1.75,1510 +420000,3,1,1440 +319900,2,1,1380 +350000,2,1.5,1150 +968000,6,2.75,3610 +491000,3,2,1250 +948000,3,2.5,3510 +900000,3,2.5,2260 +270000,3,1.75,2840 +198000,3,1.5,1430 +250000,2,1,1420 +615000,4,2.5,2120 +550000,3,2.5,2080 +190000,2,2.5,1370 +629000,4,2.25,1900 +434000,3,1.75,1660 +415885,3,1,1310 +550000,3,2.5,1840 +272000,1,0.75,1040 +665000,3,2.5,2610 +510000,3,2,1990 +530000,3,2,3080 +355000,3,1,1200 +255000,4,1,1250 +790000,4,2.75,2640 +695000,5,1.75,1790 +255000,2,2,1140 +410000,3,2.25,1790 +650000,4,2.75,1910 +675000,4,1.75,1530 +332888,2,2.5,1050 +300000,3,1.75,1730 +320000,4,1.5,1100 +342500,5,2.25,2100 +752875,4,2.5,2800 +1.73E+06,5,3.5,5000 +255000,1,0.5,880 +244000,3,2.5,1470 +1.42E+06,5,3.25,3950 +218000,3,1,980 +359000,4,1,2180 +840000,4,2.75,3040 +900000,5,3.75,4130 +205000,4,1.75,1850 +205000,3,2.5,1600 +500000,2,1.5,2070 +510000,4,2.5,3180 +1.14E+06,6,4.25,6900 +1.55E+06,4,2.25,2640 +210000,3,1.5,1920 +597500,3,1.75,2030 +400000,2,1,1140 +412000,3,1,1660 +299950,2,1.5,1390 +1.08E+06,4,3,2490 +422500,4,2.5,2550 +410000,3,2,1270 +1.40E+06,4,3.25,2980 +245000,3,2,1470 +720000,4,3,3550 +315000,2,1,780 +191950,2,2.5,1390 +455000,4,2.5,2440 +523000,3,1.5,1260 +250000,3,2.25,1640 +294000,3,3,1670 +490000,3,2.25,2380 +310000,4,1,1030 +265000,3,1.5,1560 +402000,4,1.75,1640 +705000,2,2.5,2200 +589450,4,2.5,3190 +219950,3,1.5,1200 +750000,3,2.25,2250 +478000,2,1.75,1960 +170000,3,1,1250 +489950,4,2.25,2640 +1.37E+06,2,2.25,2460 +319950,3,2.5,1700 +208417,2,1,840 +410000,4,2,1900 +590000,4,2.75,2160 +648000,3,1.75,1610 +255000,3,2.5,1720 +465000,4,2.75,2190 +622000,4,1.75,3020 +306000,3,1.75,1980 +617000,3,2.5,1880 +438750,3,1.75,1610 +1.28E+06,4,3,3260 +995000,5,3.25,3970 +1.58E+06,4,2.5,4570 +635000,5,2.75,2620 +215000,3,1,1180 +530000,3,2.5,1365 +295000,2,1,720 +245000,3,2.25,1350 +400000,6,2.5,3060 +303000,3,2.75,1850 +330000,3,1.75,1320 +700000,3,1.75,1990 +126000,1,1,610 +850000,4,1,2500 +405000,3,2,1440 +869900,6,4.5,2750 +485000,3,1.75,1790 +400000,2,2,1050 +299950,3,2.5,1780 +585000,4,2.5,2200 +495000,4,2,1720 +2.20E+06,5,4.5,5840 +447000,3,2.25,1520 +206000,3,1,1320 +500000,3,1,1070 +302500,4,2.5,1990 +1.25E+06,4,4.25,4980 +391000,2,1,890 +250000,3,2,1440 +435000,4,2.5,2440 +160000,4,2.25,1800 +451000,5,3,2260 +206000,2,1,810 +590000,4,2.75,2240 +695000,3,2.5,4560 +350000,3,1.5,1550 +1.24E+06,5,3.5,3180 +395000,6,2.25,2950 +419000,5,3,2190 +592350,2,2,1570 +855000,5,3.25,3420 +771000,4,2.5,2420 +325000,3,2.25,1570 +1.85E+06,5,3.25,3680 +545000,4,1.75,1910 +615000,3,1.75,1780 +625500,2,1,2160 +232000,3,1.5,1460 +168000,3,1.5,1370 +238000,3,1.5,1370 +260000,3,2.5,1500 +460000,3,1.75,1210 +900000,3,2.5,2850 +289950,3,1,1090 +265000,3,1.75,1450 +465000,4,2.25,1820 +370000,3,1.5,1320 +240000,2,1.5,1670 +232000,4,2,1440 +237502,3,1,980 +1.28E+06,4,3.5,4340 +957000,4,2.25,2860 +218000,3,1.5,1140 +205000,3,1.5,1120 +350000,3,3.25,1460 +256000,4,2.5,2050 +275000,3,1,1250 +372000,4,2.5,2520 +688888,3,3.25,2580 +170000,2,1,1200 +530000,5,2.25,2140 +905000,4,3.25,3440 +365000,4,2.5,1800 +312000,4,2.5,1790 +400000,2,1.75,1250 +278750,2,2,800 +510000,3,2,1410 +527700,2,2.25,1330 +740000,4,2.75,2890 +512000,4,2.5,2550 +362000,5,2.5,2880 +225000,3,1,660 +491500,3,2.25,1470 +429950,4,1.75,1700 +375000,3,1,1040 +199400,2,1,880 +364900,4,2.5,2490 +324950,3,1.5,1210 +467000,5,2,2080 +380000,3,1,1380 +250000,3,2.25,1620 +700000,4,1,1680 +206990,3,1,1330 +670000,3,1.75,1730 +315000,2,1,790 +319950,3,2.5,2240 +419000,3,1.5,1500 +205000,3,2,1800 +335000,4,2.5,1980 +397000,3,1.75,1340 +370000,2,1,750 +330000,4,2.25,1790 +1.79E+06,4,3.5,5490 +399000,3,2,1940 +400000,4,1.75,2670 +249900,3,2,1220 +717000,3,1.5,1310 +319000,4,2.5,1930 +635000,4,3,2100 +355000,3,1,1180 +1.60E+06,5,3.25,4320 +585000,4,1.75,3140 +320000,3,2,2320 +305495,3,1.75,2110 +240000,4,2,1790 +199950,5,2.5,1740 +1.62E+06,4,3.25,3820 +770000,3,3.5,2050 +255000,4,2.25,1680 +289000,4,2.25,1930 +494500,4,3,3760 +746000,3,2.25,2370 +385000,4,3,2120 +688100,4,2.5,2370 +870300,4,2.5,2350 +310000,3,1,1180 +500000,3,2.5,2270 +255000,3,2.25,1830 +1.48E+06,3,2.75,3910 +154500,3,1,890 +425000,3,2.25,1820 +700000,4,2.5,2440 +410500,2,1,1110 +432000,3,2,1870 +530000,3,1.5,1240 +465000,3,2,1560 +498688,3,2.5,1910 +573500,3,1,2200 +349900,4,2.75,2530 +220000,3,1,1130 +260000,2,1,820 +290000,2,1,960 +615000,4,1.5,1980 +730000,4,3.5,3370 +1.95E+06,4,3.25,7420 +332500,3,2.25,1800 +650000,5,3.5,3990 +1.40E+06,4,2.5,4070 +465000,4,1.75,1640 +690000,4,3.25,3730 +289900,3,1.75,1220 +1.62E+06,3,3.5,3490 +339950,3,2.5,1730 +367999,4,2.75,3430 +380000,4,2.5,2320 +440000,3,1.75,2030 +975000,5,4,4850 +309500,3,1.5,1340 +350000,3,1,1130 +215000,2,2,1180 +254000,2,1,910 +567000,3,1.75,1630 +402000,2,1,710 +365000,4,1,1520 +625000,4,2.5,2820 +432000,4,1.75,1970 +335500,5,3,2240 +672500,2,1.75,1860 +336000,4,1,1780 +294400,4,2.5,1788 +541900,3,2.5,1880 +505000,3,1.75,2300 +255000,3,2.5,1610 +435000,6,2.5,2270 +636000,2,1.75,1230 +655000,4,3.5,3420 +280500,3,1.5,1670 +520000,2,1,1120 +354000,4,2.5,2580 +810000,5,2.75,3847 +400000,4,2.5,3630 +879900,4,2.75,3580 +1.29E+06,5,4,4050 +902500,3,3.5,3240 +900000,3,1.75,1540 +419500,4,2.5,2550 +685000,4,2,2340 +429950,4,2.5,2320 +464950,4,2.5,1640 +239900,2,1,910 +406250,4,3.25,2550 +447000,4,2.5,2660 +466800,3,2.5,1480 +674000,4,2.5,2810 +525000,1,1,830 +674950,3,2.75,3510 +374900,3,2.5,2480 +1.44E+06,4,3,3720 +559500,3,2.25,2150 +522500,3,2.5,2370 +1.13E+06,5,2.5,4310 +498500,5,2.75,2990 +571000,4,1,1350 +543000,2,2,2370 +271920,3,2,1410 +104950,2,1,1170 +485500,4,2.5,1800 +1.21E+06,4,2.75,3650 +260250,3,1.75,1490 +875909,4,2.5,3610 +455000,4,1.75,2050 +309000,3,1,1092 +229000,4,2.25,2010 +250000,3,2,1680 +600000,4,2,2510 +535000,4,2.5,2280 +571000,3,2.5,2510 +1.03E+06,5,2.75,3190 +600000,4,3.25,4690 +469500,3,2.25,1850 +1.15E+06,4,3,4160 +785000,4,1.5,2220 +872750,3,2.5,2870 +900000,4,2.75,3950 +350000,2,1.75,1740 +2.58E+06,5,3,4780 +940000,4,2.5,3160 +185000,5,1.75,1990 +850000,4,3.5,3920 +201000,3,1,960 +499000,2,1.5,1540 +315000,4,2.5,1970 +509950,3,2.5,1880 +286300,3,2.75,2000 +590000,3,2.5,1990 +325000,4,1,1400 +625000,4,2.5,3190 +378000,3,1.5,1000 +239950,3,1.75,1670 +550000,4,2,2100 +325000,2,1,1010 +831000,4,2.5,2030 +249000,3,1,1090 +484000,4,1.75,2440 +395000,4,3,2500 +839900,4,2.5,3420 +760000,4,2.5,2850 +750000,4,1.5,2030 +3.00E+06,5,3.75,4590 +440000,3,2.5,2230 +501000,2,1.75,1810 +739000,6,4.5,4000 +685650,3,1.75,1490 +1.01E+06,4,4.5,4225 +980000,4,1.75,2120 +275000,3,1.5,1030 +319950,4,1.75,2310 +448500,3,2.25,1830 +437000,5,2,2120 +330000,4,1.5,2500 +365000,3,2.5,2470 +329000,2,1,940 +681500,5,2.75,3260 +566000,3,2.25,1660 +897500,4,3,4370 +738000,3,2.5,2620 +185000,3,1.75,1500 +445000,2,1,910 +175000,3,1.75,1430 +315000,2,1,900 +445000,4,1.75,1250 +1.40E+06,5,3,3850 +832500,4,2.5,3450 +771150,4,3.5,3950 +225000,4,1.5,1950 +389950,3,2.5,1700 +435000,3,2.5,2370 +845000,3,1.75,1600 +1.30E+06,4,1.75,4060 +350000,3,2.25,1322 +250000,3,1.75,1140 +370000,2,1.5,1280 +750000,4,2.5,3080 +439950,2,1.75,1210 +395000,4,1.75,1950 +375000,4,1,1450 +263000,3,2.25,1590 +185000,3,1,1240 +500000,3,1,1440 +920000,4,2.5,3470 +936000,7,3.75,5100 +1.50E+06,3,1.75,2430 +1.10E+06,3,2.25,2420 +247000,3,2.5,1510 +289500,3,1,1200 +432500,3,2.5,2240 +680000,3,1.75,1870 +589000,3,1,1110 +756450,4,2,3210 +536650,3,1.75,2090 +540000,3,2.25,1320 +385000,3,1.75,1340 +485000,3,1,1020 +240000,3,2,1220 +415500,3,2,1220 +550000,3,2,1390 +1.26E+06,4,2,2970 +430000,2,2,1440 +415000,2,1.75,1550 +365000,4,2.5,1904 +257000,4,1.5,1400 +420000,3,2.5,2140 +338995,3,1.75,1320 +615000,3,1.75,2620 +312500,4,0.5,2300 +513000,4,2.5,2000 +857500,4,2.75,2960 +1.06E+06,3,2.75,2700 +585000,3,1.75,1740 +350500,2,2.5,1770 +215000,3,2,1290 +440000,4,2,1450 +270000,3,2.25,1420 +385000,3,0.75,1330 +688500,3,1.75,1760 +700000,3,1.75,2010 +585000,5,2,2560 +401000,2,1.5,1260 +655000,4,2.25,2420 +317000,3,1,1010 +500000,4,2.5,1770 +314963,2,1,890 +715000,3,1.5,1670 +280000,3,2.25,1360 +531000,3,2.5,2120 +617000,3,2.5,1910 +440000,4,1,1480 +140000,3,1,1090 +661000,4,1.75,1670 +697000,4,1.75,1670 +1.20E+06,5,2.75,3650 +535000,4,2,1970 +404500,2,2,1320 +396500,3,1,1710 +450000,3,2.25,1740 +605000,3,3.25,2200 +699000,3,2,2010 +805000,3,3,3910 +156000,1,0.75,470 +595000,4,2.5,2330 +285000,3,1.75,1930 +725000,4,2.5,3270 +216300,3,2.5,1650 +410000,4,2.75,2220 +597000,2,1.75,2470 +325000,3,1,1300 +355000,5,2.75,2530 +338000,3,1.5,2400 +210000,4,2.25,1500 +423000,4,1.75,1700 +249500,4,1.5,2120 +325000,4,2.5,2240 +257000,3,1.75,1540 +550000,3,1.75,1890 +490000,3,1,1260 +299000,2,1.5,1160 +295000,2,1,1300 +630000,4,2.5,3220 +320000,4,1.5,2020 +1.11E+06,4,2.5,2990 +398000,4,1,1420 +218000,3,1,1020 +590000,4,2.75,2400 +1.60E+06,5,3,3640 +348500,2,2.25,1550 +592500,2,2,1870 +505000,3,2.5,2340 +1.43E+06,5,4.25,3350 +502000,3,1,1710 +257500,2,2,1180 +405000,3,1.5,1600 +427000,3,1.75,1300 +290000,3,1.5,1040 +222000,3,1,1220 +315000,3,2.5,2240 +371000,3,1.5,1420 +279900,3,1.75,1580 +250000,3,1.5,2390 +599000,4,2.25,2260 +267300,3,1.75,1890 +585000,2,1.75,1830 +350000,3,1.75,1000 +506000,3,1.75,2180 +400000,6,2,2320 +151100,3,1,840 +251000,3,1,840 +555000,4,2.25,2350 +467500,3,1.75,2040 +479000,4,2.5,2370 +247000,5,2,1590 +299500,3,1,1380 +306888,4,1.5,1940 +675000,4,2.5,3320 +577000,2,1,1090 +219950,3,1.5,1650 +375000,3,1.5,1110 +650000,4,2.5,2110 +975000,3,3,1850 +229000,1,1,600 +575000,5,2.5,2760 +815000,4,1.75,2970 +525000,3,1.75,2300 +471000,3,2.5,2030 +450000,4,1.75,2160 +590000,3,2,1650 +744000,4,2.5,3140 +460000,4,2.25,2690 +299000,5,2.5,1940 +231000,4,1,1220 +195000,3,1,1300 +305000,3,1.75,1660 +895000,4,1.5,3390 +1.11E+06,4,1.5,2310 +339000,2,1,950 +885000,4,3.75,2400 +375000,3,1,1780 +367400,4,1.5,1280 +700000,4,2,1930 +667000,5,2.25,2560 +200000,2,1,920 +552775,3,2.5,1900 +452000,3,2,2270 +418000,3,2.5,2080 +601500,3,1.75,1460 +600000,3,1.75,1670 +340000,4,2.5,2810 +310000,3,2.5,2370 +290000,2,1.75,1700 +438000,2,1,1630 +718000,4,2.75,2930 +200000,2,1,860 +479900,3,2,1980 +400000,3,2.5,2080 +219950,3,1,1060 +300000,3,2.5,1590 +437000,3,2.25,1980 +350000,4,2,1720 +626000,4,1.75,1350 +490000,3,2.5,2080 +289000,3,2.5,2090 +595000,3,2.5,2030 +676000,3,2.25,2680 +389000,3,1.75,1820 +240000,3,2,1300 +382500,4,2.5,2210 +511555,3,2,1400 +710500,3,1.75,2040 +429000,3,2.5,2420 +170000,4,1.75,1920 +2.14E+06,4,3.25,3860 +480000,5,2.75,2760 +1.67E+06,4,3.75,3450 +225000,3,1,1040 +615000,3,1.75,2220 +438950,4,2.5,2470 +242000,3,1.75,1300 +560000,3,2.5,1960 +857500,3,1.5,2040 +685000,4,2.5,3030 +486000,4,3,2260 +749000,3,2.5,2670 +260000,3,2.5,1520 +1.02E+06,3,1.75,3610 +565000,3,1.75,1130 +355000,3,2,1480 +775000,5,2,3540 +335000,4,2.25,2100 +1.30E+06,5,4,3366 +545000,3,1.75,1810 +540000,3,1.75,1680 +687500,3,1.75,2450 +115000,1,2,1150 +227000,1,2,1150 +870000,4,2.5,3240 +1.19E+06,4,2.5,3480 +375000,4,2.5,2800 +902000,3,2.75,3240 +269500,2,1.5,1480 +570000,3,1,1700 +359950,2,1,1240 +1.45E+06,4,3.5,3720 +615000,3,2.5,1910 +250000,4,2,2120 +530000,4,2.5,3020 +474950,3,2,2250 +490000,4,2,1650 +210000,2,1.5,880 +265500,3,1,1860 +1.46E+06,5,3.25,3840 +310000,4,2.25,2192 +324500,3,2.5,1590 +599000,4,4.75,3700 +525000,4,2.5,3670 +400000,3,1,1630 +887500,3,3,4230 +344000,2,1,1060 +525000,3,2.5,2700 +385000,3,2.25,2110 +820000,4,2.5,3720 +1.31E+06,4,3.5,3440 +549000,4,2.25,2420 +180000,3,1,1090 +589000,4,2.5,2910 +350000,3,1,1050 +197400,3,2,1610 +267000,3,2.5,1760 +480000,3,1.5,1540 +650000,4,2.5,2580 +600000,2,1,1370 +490000,2,1.75,1440 +225000,3,1,1410 +640000,3,2.25,1980 +710000,3,3.5,2440 +325000,3,2,1350 +595000,3,3.25,3130 +128750,3,1,880 +465000,3,2.25,1920 +710000,4,1.75,2700 +605000,4,2.75,1670 +994000,4,2.5,3470 +489950,3,2.25,1820 +365000,3,1.5,1310 +359950,3,2,1790 +495000,4,2.5,2460 +255000,3,1.5,1060 +330000,3,1.75,1340 +450000,3,1.75,1480 +655000,4,2.5,3500 +485000,4,2.75,2910 +375000,4,1.75,1940 +570000,4,2.5,2280 +350000,3,2.25,1190 +550000,3,1,1260 +513000,5,2,2270 +450000,4,2.25,1990 +432500,4,1.75,1500 +432000,5,2.75,2060 +480000,3,2.25,1950 +402200,3,1.75,1790 +650000,3,1,1520 +1.20E+06,4,2.5,3240 +312000,3,2,2440 +610000,4,2,2220 +823000,5,1.75,2640 +471000,4,1.75,1450 +481015,3,2.25,1550 +1.96E+06,5,4.5,6200 +624000,4,3.25,2810 +480000,4,2.5,2080 +815000,3,1.5,1370 +1.65E+06,4,2.25,2920 +180000,3,1,1000 +156601,2,1.75,1210 +374950,4,2.5,2790 +368000,2,1.5,1660 +550000,3,2,1650 +198000,3,1.75,1300 +345000,3,1.75,1090 +1.71E+06,5,2.5,2660 +185900,3,1,940 +950000,3,2.75,2750 +995000,4,4.5,3850 +345000,2,1,860 +741000,4,2.75,2070 +737000,2,2.25,2290 +668750,4,2.5,2340 +575000,3,1.75,2680 +280000,4,2,1710 +583000,3,1.5,1800 +196000,3,2.25,1510 +349950,3,2.5,1700 +429000,4,1,1350 +270000,5,2.5,2140 +385000,6,4,2700 +535000,1,1,920 +352500,3,1.75,1500 +624000,3,1.75,1510 +215000,5,1.5,1980 +870000,4,3,4500 +440000,4,2.5,3220 +518000,2,1.5,1140 +259500,3,2.25,1490 +795127,4,3.25,4360 +290000,3,1,960 +385000,4,3,2253 +259950,2,1,770 +330000,2,2.5,1310 +280000,3,1,980 +595000,4,2.5,1820 +925900,4,3.75,3980 +499000,3,2.25,3010 +325000,4,2.5,1830 +895000,5,2.5,2550 +162248,2,1,800 +1.07E+06,3,2.25,2890 +430000,3,1.5,1810 +615500,3,1.5,1810 +260000,3,1,940 +295000,4,2,1810 +1.19E+06,3,1.75,2550 +749950,4,2.5,2370 +175000,6,1,1370 +415000,6,1,1370 +190000,3,1,1200 +625000,3,1.75,2100 +420000,3,2.25,2020 +339900,4,1.5,1570 +160000,2,1,1140 +353000,4,2.5,1830 +390000,3,2,1010 +675000,4,2.5,1770 +400000,3,2.5,2120 +1.34E+06,4,3.5,3190 +1.65E+06,4,2.5,2780 +1.00E+06,5,3,3350 +850000,5,3.5,3450 +275000,3,1.5,1060 +450000,3,2.5,1670 +305000,4,1.75,2251 +643002,3,2.5,1770 +468000,2,1.75,1510 +324950,4,2.5,1770 +290000,3,2,1260 +488500,3,2,1710 +367950,3,1.75,2290 +285000,2,1,790 +417000,3,2.75,1820 +1.12E+06,4,2.5,3180 +1.55E+06,4,4,5280 +604000,3,2.5,3240 +380000,3,2.5,2390 +336500,4,2.5,2500 +685000,4,2,2290 +4.21E+06,5,6,7440 +670000,3,1,1600 +524000,2,1,1120 +172000,3,1,1340 +680000,6,2,1670 +549900,4,3,2830 +357000,4,2.75,2700 +107000,3,1.5,910 +232900,3,1.5,910 +800000,4,3.5,2370 +248500,2,1.5,880 +670000,3,2.5,2050 +207000,3,1.75,1180 +164000,3,1,1070 +570500,2,1,1380 +599990,3,2.25,2680 +395000,5,1.75,2100 +979500,4,3.75,4133 +207000,3,1,920 +237000,3,1,920 +650100,2,1,1750 +385000,4,2.5,1950 +335000,2,1.75,1660 +347000,4,1.5,2670 +204000,3,1,980 +615000,4,2.25,1780 +943500,3,2.25,2370 +560000,3,2,1640 +547500,4,2.5,2610 +359500,4,1.75,2030 +660000,3,2.5,2590 +258000,3,1.75,1620 +355000,3,1.75,2040 +253500,2,1,810 +422500,3,1,1270 +239000,2,2,1470 +628000,3,2.25,1720 +352000,2,2.5,1320 +311600,3,2.25,1358 +235000,4,1.5,2070 +870000,5,2.25,2910 +190848,4,1.5,1370 +570000,4,1.75,2340 +661254,4,4,2290 +575000,4,2,1650 +230000,2,0.75,650 +680000,3,2.25,2300 +148000,1,1,620 +244900,1,1,620 +214950,3,1,1400 +580000,3,1.5,1800 +263000,3,1.5,1300 +317000,5,2.5,2360 +302000,4,3,3320 +899000,3,1,1480 +1.29E+06,3,2.5,2190 +710000,3,3.25,3740 +230000,3,1,1360 +430000,3,1,1210 +1.17E+06,5,4.25,4610 +397000,3,1,860 +595000,3,2.5,2250 +485000,3,1.75,2030 +755000,5,2.5,3260 +185000,3,1,1840 +340000,3,1,1840 +236000,4,2.75,2000 +550000,4,2.5,2810 +680000,3,2,1780 +630000,4,2.5,2540 +560000,3,2,2340 +385000,3,2,1480 +280000,3,2.25,1358 +225000,3,2.5,1750 +610000,4,1.75,1830 +592500,3,2,1170 +750000,4,2.75,3170 +164000,4,1,1530 +320000,2,1,1100 +544000,4,2.5,2030 +344950,3,1.75,1870 +539500,3,2.5,3080 +420000,4,1.75,2480 +305000,2,1,910 +229000,2,1,810 +1.07E+06,5,3.5,3990 +397500,3,2.25,1430 +540000,4,2,2190 +650000,4,2.5,2290 +1.90E+06,6,4,3020 +649000,2,1.75,2260 +287500,5,2,2020 +815000,4,2.75,2620 +795000,2,2.5,2830 +502775,3,1.75,1700 +222900,2,1,1110 +399950,4,3,2150 +728000,4,2.5,2650 +850000,5,3.5,3870 +525000,4,2.75,2530 +257000,3,1,1450 +433500,3,2.5,2200 +314950,4,1.75,1890 +500000,3,1.75,1530 +300000,3,1.5,1590 +645000,4,2.5,2690 +222500,3,1,990 +275000,3,1.75,1300 +498000,3,1.5,1720 +800000,3,1.75,2080 +297000,3,2.5,1840 +625000,5,3.5,4010 +770000,4,2.5,3560 +517000,3,2.25,1640 +238000,1,1,530 +234550,3,1,1990 +230500,3,2.25,1690 +585000,5,2.5,2670 +733000,4,1.75,1930 +357950,2,1,810 +530000,3,1.75,1550 +377500,4,2.5,2640 +475000,4,2.5,2320 +399000,3,1.75,2170 +660000,3,2,2080 +400000,5,2.25,2070 +440000,2,1,800 +366400,4,2.25,2040 +627250,4,2.5,2830 +375950,3,1.75,1480 +162000,3,2.25,1810 +780000,3,2.75,1970 +705000,4,2.5,2650 +450000,4,2.5,2820 +311000,3,2.75,1400 +485000,3,2.5,1580 +485000,3,2.5,1800 +725000,5,3.75,3360 +185000,3,1,1510 +1.89E+06,4,4.25,4285 +260000,3,2.25,1610 +356000,4,2.5,2470 +225205,3,1,1200 +445000,3,1,1260 +356000,2,1,920 +760250,5,2.75,2540 +572000,2,2,1870 +970000,3,2.25,3060 +348450,4,2.5,1950 +535500,3,1.5,1730 +710000,5,2.5,2570 +745000,3,1.75,1490 +355000,4,2.5,2040 +333000,4,2.5,2690 +282000,3,2.5,1610 +840500,3,2,2520 +432000,3,1.75,1550 +625000,3,1,1800 +209977,3,1,1170 +174000,2,1,900 +740000,4,2,2800 +518000,3,1.75,1830 +539000,3,1.75,1380 +575000,3,2.75,1990 +530000,2,1.75,1170 +242025,4,1.75,1400 +1.03E+06,4,2.5,2620 +230000,3,1,880 +350000,4,2.5,2260 +595000,3,1,1300 +440000,3,1.75,1450 +550000,3,1,1110 +940000,4,2.25,1890 +375000,3,1.5,1100 +567500,2,1.5,1350 +735000,3,2.5,3020 +114000,2,1,730 +608000,2,1,1390 +442500,3,1.5,2710 +381800,4,2,1530 +330000,3,2,2170 +90000,2,1,790 +312000,2,1.75,1160 +339000,3,1,1080 +313000,3,1.75,2190 +618080,3,2.5,2030 +325000,3,2.25,2480 +242000,4,1,2240 +364000,2,1.5,1650 +545000,3,1.75,1700 +445000,3,2.5,2790 +1.09E+06,4,2.75,3010 +660000,4,2.5,2550 +845000,4,2.5,2880 +417000,4,2,2090 +213800,2,1,740 +400000,2,1.75,960 +759950,4,3.5,2100 +990000,4,2.5,2540 +710000,3,1.75,1650 +315000,1,0.75,770 +515000,4,2.5,2280 +638000,3,2,1660 +370000,4,2,2020 +184000,3,1,970 +583800,3,2.5,2480 +309500,3,1,1250 +1.96E+06,4,4,4430 +299000,1,1,740 +215000,2,1,710 +410000,4,2,1970 +478000,2,1,820 +431000,2,1,1000 +635000,4,2.5,3080 +648000,5,2.25,2410 +640000,3,2.5,2370 +932808,5,4.5,4690 +835000,2,2,2280 +469775,2,1.75,1530 +587000,5,3.5,3610 +677915,3,2,1740 +1.08E+06,4,3,3600 +671000,4,3,3130 +695000,5,3.25,3940 +205000,4,2,2200 +350000,4,1,1510 +360000,3,1.75,1560 +313999,4,2.25,1870 +300000,3,2.25,2070 +452000,2,1.75,1660 +495500,3,2.5,2010 +288000,3,1,1410 +227490,3,1.75,1820 +470950,3,2.5,2560 +735000,4,2.75,2450 +730000,7,2.75,3110 +412000,3,2.5,2210 +589500,4,2.5,2630 +291000,7,1,2350 +1.30E+06,5,3.75,4450 +190000,3,1,1200 +456200,2,1.75,1210 +225000,3,1,1290 +2.00E+06,3,2.5,3490 +740000,4,2.5,3360 +467000,3,1.75,2660 +385000,2,1,770 +670000,3,2.5,1800 +500000,4,2.5,2900 +352450,3,2,1430 +669888,4,2.75,2550 +405000,3,2.75,1310 +518000,3,1.5,1430 +280000,4,1,1880 +435000,3,2.5,1600 +314950,3,2,1760 +209900,2,2,1180 +630000,4,2.5,2330 +442000,4,1.5,1960 +340000,4,1,1140 +230000,3,1.75,1400 +495200,5,2.25,2710 +900000,4,2.5,3510 +265000,2,1,910 +489500,3,1.75,2090 +335000,3,2,1410 +585000,3,3.25,3050 +800000,4,2.25,2010 +379500,4,2.25,2120 +475000,3,1,1270 +520000,3,2,1670 +515000,4,2.5,1800 +577500,2,1,1640 +269900,3,2.25,1740 +329000,3,1,1600 +458500,3,1.5,1280 +890000,4,2,1480 +361500,4,2.5,1980 +2.54E+06,5,3.25,3730 +325000,2,1,900 +1.85E+06,4,3.25,3480 +945000,4,2,2840 +370000,3,2.5,2490 +320000,0,2.5,1490 +450000,2,2,1510 +800000,4,2.5,2900 +676000,3,2.5,2240 +1.27E+06,4,1.75,2040 +290000,3,1.75,1460 +158000,3,1.5,990 +379950,4,1.75,1970 +583000,4,2.5,2660 +150000,2,1,870 +261500,3,2.5,1740 +278000,4,2.5,2290 +555000,4,2.75,2170 +355000,3,1.75,2040 +375000,4,1.5,1770 +227000,3,1.75,2380 +335000,4,2,2030 +680000,3,2.25,2270 +686500,2,1.75,1390 +410000,3,1.75,1530 +425000,2,1,1430 +562500,3,2.5,2030 +345000,4,2.5,2390 +627500,4,2.5,2540 +355000,3,1,1890 +335000,3,2.25,1870 +350000,4,3,1780 +590000,3,1,1610 +252000,3,2,1420 +1.30E+06,5,4,4440 +705000,4,2,1820 +498000,3,2,1620 +312500,2,1,870 +260000,4,1.75,1830 +209950,3,1.5,2290 +610000,3,1.75,1110 +500000,4,1,1440 +850000,3,3.5,3070 +689000,4,2.5,2440 +470000,4,2,2410 +640000,3,3,2270 +290000,4,1.75,2340 +258500,3,2.5,1800 +1.10E+06,4,3.5,2210 +420000,3,1.75,1820 +230000,3,1,1190 +252000,3,1.5,1400 +515000,3,2.5,2600 +425000,2,1,910 +575000,3,2.5,1760 +390000,2,1,860 +561500,4,2.25,2310 +1.35E+06,4,1.75,2000 +835000,5,2.75,2460 +245000,2,1,1020 +475200,3,2.5,1670 +425000,2,1,790 +218000,2,1.5,2010 +600000,4,2.5,2600 +545000,4,2.25,1890 +2.41E+06,5,2.5,4600 +460000,5,3,2008 +425000,2,1,880 +455000,3,1.75,1700 +313100,3,2,1730 +780000,4,3.5,3910 +345500,4,2.5,2160 +243000,3,1.75,1200 +670000,5,3.5,3860 +325000,3,1.5,1320 +281000,2,1,1280 +130000,3,1,1100 +340000,3,2.5,2170 +485000,4,2.75,2720 +642860,4,2.75,2520 +747000,3,1.75,2560 +559950,4,2.5,2650 +577288,4,2.75,2870 +575000,2,1,1230 +287000,3,1,1450 +1.15E+06,4,3.75,3180 +335000,2,1,1800 +375000,4,2.25,2020 +325000,2,1,620 +530000,3,2.25,2190 +287000,4,2.25,1980 +320000,5,3,2970 +425000,4,2.5,2270 +550000,3,1,1630 +135000,3,1,1520 +695000,3,1.75,2080 +975000,5,2.5,3020 +210000,4,1.75,2180 +518000,4,1.75,1780 +335500,3,1,1370 +750000,4,3.5,3050 +515000,3,1.75,1490 +344500,4,2.75,1800 +470000,3,1.5,1760 +606150,4,1.75,1770 +292000,4,2.75,2910 +450000,3,2.5,2880 +429000,3,1.75,2520 +765000,4,2.5,3190 +425000,2,1,540 +505000,4,2.5,3170 +544950,3,1.75,1830 +382000,3,2,1360 +475000,3,1.75,1870 +355000,3,1.5,1370 +410000,4,2.5,1700 +450000,4,2,1960 +565000,7,4.5,4140 +529100,2,1,1290 +452500,4,2.5,2460 +245000,4,2,1580 +415000,1,1,700 +610000,4,2.5,2410 +363500,4,1.75,2180 +510000,3,2.75,1950 +650000,4,2.5,2630 +290000,4,2.5,2050 +170000,3,1,790 +510000,2,1,1070 +2.28E+06,7,8,13540 +316000,4,2.5,2320 +690000,4,2.5,2670 +199950,2,1,700 +207000,3,1,860 +449950,4,2.25,3490 +361550,3,1.75,1160 +824000,4,3.5,3650 +537000,3,1.75,1550 +838400,4,2.5,2620 +225000,2,1,720 +329900,3,2,1380 +282500,4,1,1170 +229950,3,1.75,1170 +500000,2,1,1630 +495000,3,1.75,1890 +149500,3,1,1010 +726000,3,2.5,2040 +899000,4,2.5,4080 +317000,3,1,1270 +395000,1,1,790 +360000,4,3,2580 +570000,4,2.5,2290 +320000,4,2.5,3490 +320000,3,1.75,1510 +268000,5,2.5,2400 +191000,2,1,900 +400000,2,1,1270 +515000,2,1,1050 +610000,4,2.5,2950 +538000,2,1.75,1850 +432000,3,2.5,1970 +335000,4,2.25,2400 +302000,5,1.75,2360 +787500,4,1.75,1580 +420000,3,1,1790 +560000,3,2.5,2840 +535000,3,2.5,1970 +310000,3,2.5,1780 +760000,5,2,3920 +242500,3,1.75,1550 +1.31E+06,6,3,2980 +235000,3,1,1270 +598780,4,2.25,3040 +433200,3,2.5,2075 +343000,2,1,1110 +145000,2,1,800 +291970,1,1,680 +599950,3,1,1680 +1.75E+06,4,2.5,3910 +870000,4,1.75,2780 +323000,4,2.75,2000 +727000,4,3,3150 +166000,1,1,1120 +450000,4,1.75,1740 +400000,3,2.5,2970 +599000,3,2.5,2970 +165000,3,1,1150 +229000,2,1,1190 +305000,1,1,900 +930000,3,3.25,2950 +542000,3,2.5,1990 +214000,3,1,1020 +718000,3,2.5,2070 +349000,3,2.5,1430 +305000,3,2.5,2030 +498000,3,2.5,1620 +799950,4,3.5,4220 +737000,3,2.5,2300 +860000,4,3.25,3830 +339950,3,2.5,2390 +249000,3,2.25,1440 +370000,2,1,910 +725000,3,2,1550 +529000,5,2.5,2380 +310000,4,2.75,2060 +315000,4,2.25,1880 +1.30E+06,4,2.5,3470 +435000,3,2,2360 +350000,3,1.75,1970 +240000,3,1,1040 +410000,3,2.25,1420 +430000,4,2.75,2290 +446000,4,2.5,1530 +240000,3,1.5,1360 +595000,4,3,3680 +215150,3,1,920 +319950,2,1,1070 +385000,3,2,1590 +280000,3,2.5,1600 +399950,3,2.5,1510 +132500,3,1,1080 +399950,2,0.75,1330 +290000,2,1,850 +860000,5,2.25,1960 +3.10E+06,6,4.25,6980 +245000,4,1,1530 +255000,3,1.5,1320 +310000,4,3,2320 +299000,3,1,960 +575000,4,2.5,2040 +284000,3,1,1080 +840000,3,1.75,2020 +442573,3,1.75,1780 +560000,3,1,1140 +485000,3,2,1610 +472500,4,1.75,1440 +1.61E+06,4,2.75,4270 +808000,8,3.75,3460 +398000,3,1.75,1890 +340000,3,2.5,2240 +380000,2,1,760 +235000,3,1,1020 +400000,3,1.5,1330 +582000,5,2.5,2780 +209000,2,1,1070 +335000,5,3,2660 +285950,2,1,710 +645000,5,2.25,3340 +312000,2,1,1160 +663000,3,2.25,2840 +443950,3,1.75,2000 +315000,3,2,1060 +302200,4,1.5,1730 +770000,3,2.5,2190 +374950,4,1.75,1660 +330000,3,2.5,2210 +230000,2,1,870 +967000,4,2.5,3100 +536500,4,2.5,1720 +315000,6,4,3120 +626000,3,1,1040 +334009,4,2,1650 +429000,2,1,1010 +818000,4,2.5,4020 +326000,5,2.75,2166 +310000,5,3,1880 +525000,4,2,2260 +350000,3,2.25,2010 +936000,4,2.5,3330 +226000,3,1,1520 +1.25E+06,5,3.5,3510 +428000,3,1.75,1580 +329932,3,1.5,1460 +539000,3,1.5,1460 +275000,3,1.75,1650 +590000,4,2.5,2660 +782000,4,2.5,3510 +575000,4,2.5,2120 +509000,3,2.25,1780 +290000,4,2.5,2000 +305240,3,1,1300 +555000,3,2,2180 +317000,3,2,1790 +430000,3,2,1910 +850000,2,1.5,1800 +469000,3,2.25,2620 +327200,2,2,1440 +835000,3,3,2790 +360000,4,2.5,2340 +372000,4,2.5,2070 +453000,3,1,2160 +275000,2,1.75,2090 +475000,4,2.5,2040 +310000,4,2.75,1950 +173000,4,2,1200 +313500,5,3,2240 +345000,3,2.5,1360 +436000,3,1.5,1500 +244500,2,1.75,1300 +206000,3,1.75,1140 +890000,4,2.5,2930 +329950,4,2.25,2140 +250000,3,1.75,1628 +246000,3,2,1990 +440000,3,1.75,1950 +395000,4,1.75,1910 +305000,3,1,820 +160000,3,2.25,1470 +269000,3,2.25,1470 +169500,3,1,1060 +690500,4,2.75,3130 +245560,2,1.5,1260 +345000,4,2.75,2200 +383000,4,1.75,2580 +388500,3,2.25,1350 +250000,3,1.75,1350 +455500,3,1.75,2290 +672000,3,1,1220 +550000,4,1.5,2750 +487000,3,1.75,1430 +291375,4,2.5,2220 +225000,3,1,1490 +519950,5,3.5,2440 +250000,3,2.5,2070 +614950,3,1,1500 +599500,4,2.25,2020 +625000,4,1.5,2190 +248500,2,1,780 +469950,5,2,1220 +525000,3,1.5,1840 +787500,2,2.5,2390 +485000,4,2.5,3710 +310000,2,1,750 +280000,5,2,2110 +200000,4,1,1020 +490000,3,2.5,3080 +146000,3,1,900 +500000,5,3,3720 +242500,3,1,940 +324950,3,1,1040 +231500,2,1,1000 +300000,3,2.5,2080 +545000,4,2.5,2500 +350000,3,1,1050 +467100,3,1.75,1620 +180000,3,1,1610 +749000,4,1.5,2130 +245000,3,2.5,1460 +260000,5,1,1600 +490000,3,3,1730 +565000,4,2.5,2280 +330000,4,2.25,2430 +295000,3,1,1380 +725000,3,1.5,1790 +1.14E+06,4,2.5,3370 +680000,3,2.25,2920 +490000,2,1,2180 +635000,3,1.75,1480 +750000,3,2.5,2350 +330000,4,2.25,2440 +270000,3,2.5,1350 +340000,3,2.25,1970 +413252,3,0.75,1110 +600000,4,2.75,2950 +726888,5,3,2970 +285000,2,1,720 +365000,2,1,770 +295000,4,2,1650 +460000,3,2.25,1620 +230000,3,1.5,1510 +337000,3,1,1070 +300000,3,1,1010 +2.30E+06,4,2.5,3370 +360000,4,2.5,2000 +585000,3,2.5,2060 +182700,3,2.25,1740 +305000,3,2.25,1740 +309950,3,2.5,1880 +550000,3,1,960 +825000,3,2.5,3280 +998500,2,1,1570 +644500,4,2.5,2990 +320000,3,2,1250 +266950,3,2.5,1920 +633100,4,2.5,2470 +395000,2,1,960 +259250,3,1,940 +300000,3,1,1260 +413000,3,1.75,2280 +435000,3,2.25,1740 +500000,4,2.75,2630 +402000,4,1.75,2430 +777700,3,2.5,2260 +580000,2,1.5,1220 +570000,3,1.75,2580 +174950,2,1,730 +300000,2,1,760 +435000,3,1.5,1740 +840000,4,2.5,3420 +469000,5,2.5,2240 +870000,4,1.75,1920 +532000,4,1.75,2020 +455000,4,1.5,1880 +201000,3,1,1010 +649000,5,3.25,3990 +445500,2,1.75,1390 +475000,3,2,1230 +590000,4,2.5,2940 +565000,4,1.5,2190 +110000,1,1,640 +375000,3,2.5,1670 +255000,3,1.5,1240 +315000,5,1.75,1850 +496600,4,2.25,2020 +380000,3,1,1020 +338950,3,1.75,1610 +542500,5,3.5,2730 +739000,5,2.5,2840 +549000,4,1.75,1290 +252000,3,2.25,1670 +1.70E+06,4,4.5,3860 +735000,4,1.75,2460 +270000,4,2.5,1660 +2.25E+06,3,2.5,3420 +155000,2,1,1010 +469000,4,2.5,2240 +305000,4,2.25,2340 +675000,3,1.75,1920 +931000,3,2.5,2460 +385000,3,1,1470 +815000,3,2.5,3400 +531000,3,2.25,1910 +386500,4,1,1400 +475580,3,1.75,1520 +358000,2,1,930 +677500,5,1,2340 +868500,3,2.5,2920 +599380,3,1.75,1270 +712000,4,2.25,2450 +350000,5,1.75,1380 +875000,4,2,2520 +365000,3,2.25,2290 +452000,4,2,1660 +915000,3,2.75,2800 +482500,3,2.5,1690 +425000,3,1,1180 +460000,2,1.75,1390 +666570,4,2,2320 +390000,3,2.25,2270 +650000,4,1.75,2640 +305000,3,2,1680 +250000,3,1,990 +438800,4,2.5,2770 +290000,2,1,950 +324950,4,2,2160 +453000,3,2.5,1650 +556000,3,1,1800 +315000,3,2,1660 +445830,3,2.5,1870 +1.26E+06,3,3.5,3220 +287200,3,3,1850 +525000,4,1.5,1580 +1.14E+06,4,4.25,4590 +381000,3,1.75,2700 +360000,3,1.75,1020 +619000,5,3.5,2950 +535000,2,1.75,1780 +402000,2,1,710 +600000,4,3.5,4300 +549950,3,2.5,2080 +300000,4,2,2360 +360000,6,2,2210 +419000,7,3.25,4340 +510000,3,3,1320 +319950,3,2.5,1980 +1.18E+06,5,5,3960 +381000,4,2.5,2130 +256900,3,2.5,1720 +346000,5,1,1790 +465000,2,2.25,1390 +545000,3,2,1900 +516000,2,1.75,1640 +550000,4,2.5,2700 +339950,4,2.25,2200 +417000,3,1,1310 +906000,4,2.5,2480 +980000,4,2.25,3010 +555000,4,2.5,2450 +468000,2,1.75,1250 +378000,3,1.75,2610 +430000,4,2.5,2010 +730100,4,2.5,3120 +219000,4,1.5,1370 +570000,3,2.5,2420 +262500,4,2.75,1500 +525000,5,2.5,2630 +520000,2,1,950 +417400,3,3,2680 +788000,4,3.25,3680 +320000,3,1,1270 +950000,6,1,2330 +255000,3,1,960 +260000,4,2.5,1990 +394000,3,1,1450 +575000,4,2.5,2280 +1.25E+06,4,2.25,1830 +385000,3,2.25,1650 +456000,5,2.75,2720 +637000,4,2.5,1710 +485000,5,1.5,1420 +315275,3,1.75,1440 +252500,2,1.5,1280 +240000,2,1,1320 +790000,4,2.5,2560 +310000,3,1,1480 +1.25E+06,4,2.5,2960 +425000,2,1,1160 +548000,3,2.5,2110 +379880,3,2.5,1650 +530000,3,2.5,1950 +695000,3,2.25,2600 +435000,3,1,1270 +540000,3,1.75,1300 +425000,3,2.25,1790 +490000,3,2.5,1930 +220000,4,1,1200 +540000,4,2.5,2050 +670000,3,1,1710 +667500,3,1.75,2130 +585000,3,3.5,1700 +225000,3,1.5,1390 +375000,3,1,1230 +335000,3,2,1490 +680000,5,3.25,2440 +600000,3,1,970 +161000,4,2,1700 +220000,4,2,1700 +420000,3,1.75,1720 +710000,3,1,1400 +626000,4,2.5,2570 +279500,3,1.5,1200 +1.61E+06,4,3.5,4390 +325000,2,1,1080 +380000,4,2.25,1860 +470000,4,2.75,2150 +363000,4,3,2250 +245000,4,2.25,2050 +525000,3,1,1010 +1.70E+06,5,3.5,5850 +658500,4,2.25,1900 +680000,2,1,1020 +835000,4,2,3390 +595000,4,2.5,1990 +419000,4,2.5,3190 +198900,2,1,1210 +1.09E+06,4,3.25,3740 +500000,3,3.5,2150 +575000,4,1.75,2440 +324950,2,1.5,1230 +259000,3,2.5,2740 +551000,2,2,2260 +488000,2,1.5,1000 +635000,4,2.25,2350 +395000,3,2.5,2300 +370000,3,1,1440 +675000,4,3,2780 +402000,3,1,1200 +825000,3,2.75,3040 +579000,3,2.75,2660 +455000,5,2,1510 +265000,3,2.5,1780 +713500,5,2.75,2920 +240000,3,1,1550 +570000,4,3,2710 +243800,3,1,1140 +543000,2,1,940 +1.01E+06,3,2.25,2160 +625000,4,2.25,2470 +459950,4,2.5,2800 +370000,4,2.75,2420 +150000,4,2,1460 +683500,3,1.5,1820 +499950,3,2.5,1520 +255000,2,1,1320 +279000,3,2.5,1920 +910000,5,3,2640 +699000,4,2.5,2650 +1.65E+06,4,3.25,3640 +248000,3,1,1420 +429000,3,1,1540 +685000,4,1,1550 +316000,2,1,730 +410000,2,1,2020 +299000,3,1,1200 +559000,2,1,1240 +575000,3,2.25,2680 +602000,3,2.5,1640 +492000,4,2,1640 +293500,3,2.5,1610 +481000,3,2.75,2290 +311100,4,2.25,2130 +375000,3,1.75,2140 +1.08E+06,3,3,4020 +500000,5,2.5,2030 +553000,3,1,1380 +760000,3,2,1780 +589500,4,1.5,1440 +840000,5,2.75,2790 +2.55E+06,4,3,4190 +1.28E+06,3,2.5,3870 +260000,3,2.5,1850 +430000,3,2.25,1550 +781000,3,2.5,1920 +280000,2,1,790 +392000,5,2.25,3740 +466200,3,1.5,1340 +641000,3,1.75,1620 +350000,3,1,1680 +450000,3,2,1610 +1.80E+06,4,3.5,4460 +185000,3,1.5,1200 +290000,2,1,1250 +964000,3,2.5,3630 +2.00E+06,4,3,4260 +545000,3,2.5,2180 +609950,3,2.25,1760 +605000,4,2,1820 +550000,4,2.5,2120 +905000,4,2.75,2730 +384200,3,2.5,2430 +370000,3,1,1170 +717500,3,1,2090 +2.00E+06,4,3.25,3910 +365500,2,1,1140 +580000,2,1.5,1460 +415000,4,1.5,2700 +272000,2,1,670 +600000,3,1.75,1880 +744000,4,3,1980 +830000,3,3,2080 +322000,3,3.25,1380 +270000,3,2.5,1808 +272450,3,1,1350 +605000,3,3,1760 +510000,3,1.75,1950 +1.13E+06,4,3.5,3170 +1.69E+06,4,2.5,3000 +162000,4,1,1460 +337500,3,1.75,1350 +312000,3,2.25,1470 +740000,4,3,3350 +700000,4,3,3350 +328000,4,1,1360 +241000,3,1,1020 +265000,3,2.25,1840 +246000,5,1.75,2030 +271000,4,1.75,1490 +270000,2,1,2060 +395000,4,2,2240 +340000,3,2,1460 +340000,3,1.75,2140 +335000,2,2.25,1420 +435000,2,1,1060 +527950,4,1.75,1760 +600000,2,2.25,2320 +667000,3,1.75,1770 +1.15E+06,10,5.25,4590 +417000,3,2.5,2040 +451000,4,1.75,1260 +580000,2,1,1650 +570000,4,2.25,2380 +750000,5,3.25,2750 +685000,3,2.5,2810 +275000,3,2,1340 +739888,3,2.5,2420 +715000,2,2.5,2160 +800000,4,2,2450 +350000,3,1.5,1870 +220000,3,1,1000 +452500,3,2.5,2240 +280000,4,2.5,2200 +248000,1,1,790 +305000,2,1,890 +435010,3,1,1270 +678100,3,1.75,1850 +325000,3,2.25,1352 +529950,3,2,1540 +440000,3,1.75,1640 +585000,3,1,1350 +462608,3,2.5,2010 +350500,3,1.75,2080 +210000,3,1,1040 +510000,3,2.5,1890 +280000,3,2.25,1810 +385000,3,1.75,1930 +349000,3,1,1010 +252000,3,2.25,1740 +1.10E+06,4,2.5,2910 +375000,3,2.25,1330 +336000,4,2.25,2210 +732000,3,3.75,2670 +200000,2,1,1000 +681716,4,2.5,3150 +235000,3,1.75,1520 +257500,3,1,1690 +315000,3,1,1070 +299950,3,1,910 +530000,4,2.25,2130 +766500,2,1.75,2230 +860000,4,2.5,3560 +690000,3,2.5,2590 +551000,4,1.75,2040 +530000,3,2.75,2100 +568000,3,1,1340 +749950,3,2.5,2770 +535000,3,2.5,2400 +234300,3,1,1140 +190000,2,1,930 +525000,4,1.75,1820 +610000,4,1,1390 +520000,3,2.5,1480 +375000,2,1,760 +600000,3,1.75,1580 +664000,4,2.5,1870 +698000,2,1,1510 +418000,3,2,1250 +271675,3,1.75,2140 +450000,3,1,1540 +759000,3,2.25,2950 +599950,6,3,2020 +810000,4,2.75,2820 +331292,3,1.75,1660 +348000,3,1.75,1830 +435000,2,1,720 +530000,3,2.5,2160 +227000,3,1.75,1510 +285000,3,1.5,1870 +740000,4,2.25,2860 +246000,3,1,990 +260000,3,1,1910 +366000,3,2,1350 +594950,4,3.25,2557 +608000,3,2.75,2610 +313100,3,2,1720 +185000,3,1.75,1170 +455000,2,1,1140 +235000,3,2.5,2350 +230000,3,1,1020 +770000,4,2.25,2730 +240000,4,2.25,1830 +461000,3,2.5,1690 +1.58E+06,4,2.5,2900 +1.82E+06,4,4.5,6380 +452000,3,2.5,1690 +765000,4,2.5,2660 +1.05E+06,4,4,4550 +546000,3,3,1530 +781000,3,2.5,2070 +538000,4,1.75,1880 +790000,4,2.5,2240 +696500,4,2.75,2540 +276000,3,2,1370 +269000,2,1,770 +2.42E+06,5,4.75,7880 +829000,4,2.75,2970 +122000,2,1,740 +352500,3,1.5,1360 +249000,4,2,1280 +360000,4,2,1920 +629500,3,2,2020 +1.14E+06,4,2.25,3310 +1.55E+06,2,2.25,2950 +275000,3,1.5,1320 +697000,4,2.5,3160 +379500,2,1,1640 +720000,3,2.75,2440 +675000,4,2.5,3000 +1.17E+06,5,2.5,2810 +1.10E+06,3,2,2390 +520000,4,1,2080 +415000,3,1.75,2650 +415000,3,2.5,1060 +450000,3,2.25,1940 +485000,2,1,1080 +294000,3,2.25,1700 +1.04E+06,4,3.5,4440 +690000,3,1,1580 +716500,5,2.75,3630 +481000,2,2.25,1290 +575000,4,2.75,1960 +785000,3,2,2090 +480000,3,1.75,1960 +720000,3,2.25,2120 +536000,3,2.75,2290 +324900,4,2.5,1880 +265000,2,1,770 +545000,3,2.5,1530 +465000,2,1.5,1450 +292500,3,2.25,1690 +860000,4,1.75,1880 +1.05E+06,4,3.25,4160 +495000,4,2.5,2140 +342000,2,2,1320 +320000,4,2.5,2000 +444000,3,2,1460 +804100,4,2.5,3070 +432000,3,2.5,1660 +230000,6,1.5,1810 +935000,4,3.5,3510 +634950,3,3,2180 +780000,6,4,3300 +611000,4,2.5,2460 +475999,4,1.75,1880 +565000,3,2,2290 +630000,4,2.5,2290 +840000,4,3.5,3860 +790000,3,2.5,2640 +450000,5,2.5,2850 +1.27E+06,4,3.25,3020 +520000,3,2,1510 +446800,4,2,2410 +652000,3,1,1470 +1.17E+06,3,2.75,2890 +745000,4,3.25,3490 +594000,3,2.25,1270 +257000,2,1,1000 +485000,4,1.75,1430 +330000,3,1,1060 +381000,3,2,1680 +849900,2,2,2280 +793000,4,2.5,2450 +920000,3,2.25,3650 +455000,2,1,830 +975000,4,2.5,3490 +375000,2,1.5,1050 +400000,2,2.5,1170 +447000,3,1,1220 +470000,3,1.75,1310 +665000,4,2.5,3130 +295500,3,1.75,1590 +200000,4,2.5,1720 +620000,3,2.25,2520 +434900,3,2,1520 +1.33E+06,4,2.25,3260 +1.65E+06,4,3.25,3910 +852500,4,2.5,3480 +790000,3,2.5,3040 +565000,4,1.75,2030 +1.13E+06,6,3.25,3870 +289950,3,2.5,1870 +850000,2,2,2640 +505000,4,1.75,1940 +372000,3,2.5,1710 +207000,4,2,1690 +780000,3,1.75,2340 +400000,4,1.75,1700 +440250,3,1.5,1850 +585000,2,2,1370 +850000,4,2.5,2900 +570000,3,3,2400 +869000,4,3,3740 +551000,4,2.75,2170 +172380,3,1,970 +355000,3,2.5,2620 +728935,4,2.5,2980 +850000,3,2.5,2340 +515000,5,1.75,1880 +215000,2,1,1480 +220000,4,2.5,2240 +845000,4,2.5,2940 +390000,1,1,710 +135000,4,1,1460 +439000,3,1,1530 +585000,4,2.5,2630 +620000,5,1,2230 +477000,3,1,960 +399500,2,1.5,1180 +500000,2,1,1760 +432500,3,2.5,1340 +940000,4,2.25,2800 +3.17E+06,5,3.5,4330 +1.08E+06,3,2.5,3720 +229999,4,2,1670 +233000,3,1,1100 +600000,3,2.5,3240 +334000,4,1.5,1680 +332500,3,1,1030 +249900,3,2.5,1630 +310000,3,2,2610 +200000,2,1,1250 +310000,4,1.75,1480 +230000,3,1,1390 +420000,4,2.5,1940 +785000,4,2.5,2960 +1.78E+06,3,2.25,4320 +265000,5,1.5,1500 +295000,2,1,840 +896000,4,2.5,3560 +415000,4,2.75,2390 +250000,3,1.75,1200 +1.48E+06,3,2.5,2570 +635000,5,2.25,2180 +905000,3,2.5,3450 +528000,3,2.5,2020 +530000,3,2.5,2480 +310000,3,1.5,1140 +252000,3,1,1530 +334500,3,2,1700 +370000,3,1,2150 +311000,3,2,1190 +260000,3,2.75,1730 +217500,3,1.75,1400 +290000,3,2.5,2200 +500000,3,1.5,960 +423500,3,2,1770 +715000,4,2.5,2970 +299000,3,2.5,1590 +635000,3,2.5,3350 +806000,4,2.5,3370 +289950,3,2.5,1960 +280000,3,1.75,1360 +479950,3,2.5,2780 +394000,4,2.5,3000 +682000,4,2.5,3600 +409950,2,1,990 +1.00E+06,4,3.5,2990 +436000,4,1,1200 +279000,3,1,1530 +390000,1,1.75,1440 +635000,3,1.75,1940 +304400,4,2.75,2140 +780000,5,1.75,2330 +520000,4,3.5,2734 +580000,3,1.75,1950 +274000,3,1.75,1440 +315000,3,2.25,1530 +390000,4,1.75,1910 +340000,5,2,1750 +502000,3,2.25,1600 +260000,3,1.75,1750 +399000,2,1,940 +312500,2,1,880 +370000,3,1.75,1650 +1.24E+06,4,3.5,3820 +230000,3,1.5,1900 +1.28E+06,4,1.75,3720 +294350,3,1,1410 +208950,3,1,960 +515000,2,1.75,1930 +965000,4,2.5,3420 +925000,4,2.75,3010 +654500,4,1,1780 +364000,4,2.5,2080 +150000,2,1,1250 +349950,5,3,2257 +585000,3,1.5,1670 +801501,4,2.25,2250 +610000,3,1.75,1650 +382000,5,2.25,2880 +495000,4,3,3620 +447500,3,1.75,1950 +575000,4,2.5,2280 +565000,2,1.75,1740 +348580,3,1,1220 +459000,4,1.75,2260 +375000,4,2,1790 +310000,4,2.5,2440 +210000,3,1.5,1400 +384205,3,2.75,1810 +180000,2,1,1400 +310000,2,1,1400 +427500,4,2.5,2010 +780000,3,3,2520 +1.76E+06,3,2.25,3060 +339950,4,2.5,2150 +820000,3,2.25,2880 +398000,2,2,1300 +492000,3,1.75,2770 +240000,4,1.5,1780 +599950,4,3.5,3730 +105500,2,1,930 +445000,2,1,930 +390500,2,1.75,1460 +255000,3,2,1310 +675750,4,2.5,2770 +1.64E+06,3,3.25,3140 +353500,4,2.5,1770 +765000,3,1,1220 +563500,4,2.5,2190 +439000,4,2,1800 +975000,5,2.75,3100 +469900,3,2.5,2270 +252000,3,1,1300 +495000,3,2,1769 +570000,6,2.5,3370 +327000,4,2.5,1630 +898000,2,2.25,2470 +300000,4,2.5,2600 +418500,3,2,1800 +450000,4,2.5,2240 +403000,3,2,1960 +440000,3,1,1710 +350000,4,1.75,2140 +240000,3,2,1400 +460000,2,1,890 +825000,4,1,1820 +267500,3,2.25,1860 +201000,3,1,1220 +479500,3,2.75,2300 +210000,2,1,1520 +445000,2,1,1440 +265000,3,1.75,1170 +399000,3,1.75,1170 +785000,4,2.25,3200 +831500,5,2.5,4470 +360000,4,2.5,2570 +655000,3,2.5,2370 +449950,4,1.5,1800 +612000,5,2.5,2300 +575000,3,2.5,3240 +557000,3,2.5,2280 +375000,4,1.75,1870 +369000,3,2.25,1820 +330000,5,2.75,2390 +1.03E+06,4,1.75,2110 +550000,2,1,980 +338000,3,1.75,1250 +1.90E+06,4,2.5,3680 +235000,3,1,2230 +349950,1,1,1230 +300000,5,2.5,2093 +431000,3,1.75,1660 +280000,5,2.5,1630 +295000,4,2.5,1677 +445000,4,2.5,2990 +550000,5,1,2150 +515000,4,2.5,2890 +555000,3,2.5,3050 +265000,3,2.5,1410 +597000,4,2.5,2280 +661000,2,1,1260 +362764,3,2,1460 +427000,4,2.5,1600 +405000,3,1.75,2020 +157000,3,1.5,1170 +246500,3,1.5,1170 +386500,2,1.5,1280 +300000,4,2.5,2680 +240000,3,1.75,1770 +818500,5,3.5,4790 +249000,3,1.75,1300 +580000,4,2.25,2610 +2.34E+06,4,2.5,4500 +333000,4,2.5,2100 +230000,2,2,1340 +360500,3,1,970 +265000,3,1.75,2200 +490000,2,1,990 +600000,2,1.75,1180 +307500,3,1,980 +670000,4,2.25,2370 +247200,3,1.5,1910 +2.60E+06,4,4.5,5270 +440000,3,1.75,1430 +700000,4,2.5,2490 +756100,4,2,2000 +555000,4,2.75,2600 +830000,5,3.5,2880 +180000,3,1,1010 +775000,5,3.5,3290 +220000,4,1.75,1530 +650000,4,2.75,2020 +410000,3,1.75,1340 +339995,4,2.5,2180 +1.16E+06,5,1.75,2870 +440000,3,2.75,2070 +275000,2,1.75,930 +766000,3,2.5,2270 +231500,3,2.25,1630 +472000,3,2,2770 +1.33E+06,4,2.5,4010 +265000,4,1.75,1970 +325000,2,1,790 +364500,3,1.75,1740 +322500,2,1,1130 +338900,3,1.75,1180 +910000,5,2.5,2350 +1.02E+06,5,2.5,2350 +459950,3,1.75,1850 +584950,4,3,3220 +252000,3,1.75,2050 +270000,3,2.5,1430 +750000,4,2.5,3210 +775000,3,1.75,3520 +325000,3,2.5,2260 +810000,5,3.25,3290 +409000,2,2.25,1640 +400000,4,1.75,1580 +530000,4,2.25,1940 +580000,3,2.25,1580 +491300,3,1.75,1750 +272000,4,2.75,1810 +599950,3,2.5,1970 +464000,3,2.5,1770 +471001,3,1.75,1800 +230000,3,1.5,1500 +358000,3,1,940 +510000,3,2.25,2340 +86500,3,1,840 +199950,3,1,840 +1.71E+06,3,3.25,2940 +850000,3,2.75,3180 +542000,4,2.5,2020 +102500,2,1,820 +718000,3,1.75,4060 +625000,4,2.25,2660 +350000,3,1,1010 +216000,2,1,710 +340000,3,1,980 +505000,3,1,1100 +372000,5,2.5,2840 +263850,4,2.25,2300 +1.35E+06,4,3.25,5370 +325000,4,2.5,2280 +289000,2,1,1010 +364000,3,2.25,1420 +610000,4,2.5,2100 +531500,4,2.75,3110 +402500,3,2.25,2160 +375000,2,1,820 +537500,5,2.5,4340 +375000,3,1.75,2100 +293550,4,1.75,1250 +585000,6,3,3870 +225000,2,2.5,1360 +185000,4,1,1400 +402000,3,1.5,1450 +585000,5,1.75,1880 +549000,2,2.5,1380 +1.81E+06,3,2.25,2910 +345000,3,1.75,1380 +302500,3,2.25,3100 +218500,4,1.75,1400 +705000,2,2,1650 +191000,3,1,840 +695000,3,2.5,2550 +350000,2,2.75,2820 +480000,3,1.75,1710 +220000,3,1,820 +535000,4,2.25,2620 +1.00E+06,2,1.75,2430 +592000,3,1.75,1560 +775000,4,2.5,3060 +320000,3,2.5,1680 +760000,3,3.25,3320 +640000,3,2.5,2390 +253200,3,1,1360 +228000,2,1,1800 +325000,3,1,1160 +530000,4,3.25,4160 +300000,4,2.25,1660 +418000,3,2,1410 +415000,4,1.75,2230 +384000,3,2.5,1700 +325000,3,2.5,2070 +600000,3,1.75,2300 +760000,4,2.25,3040 +168000,2,1.5,1220 +405000,3,1,960 +479000,3,1,1480 +549000,3,2,1560 +215000,3,1.5,1100 +550000,2,1.5,900 +389000,4,1.75,2400 +447500,3,2.5,2320 +540000,5,3,2570 +273500,4,2.75,1300 +257000,5,2.75,2930 +199000,2,1,720 +339100,4,2.5,2350 +435000,4,2.5,2940 +400000,3,2.5,2020 +356000,2,1,1430 +395000,3,1,950 +575000,2,1,1250 +515000,3,1.75,1300 +618250,4,3.25,2520 +245000,3,1.5,1330 +690000,3,2.75,2480 +465000,5,2.25,3020 +280000,3,1.75,1770 +285000,3,1.75,1930 +320000,3,2.25,1650 +355000,4,3,2580 +670000,3,2,2570 +550000,1,1,2880 +765000,4,2.75,2660 +430000,3,1,1560 +950000,3,2.5,3080 +525000,4,1.75,2540 +300000,6,2.5,3080 +345000,3,2.75,2190 +838000,3,3.75,2930 +1.80E+06,5,2.75,2880 +390000,3,1.75,2160 +1.15E+06,3,2,2110 +295000,4,2.25,1830 +775000,4,4,3180 +380000,3,2.5,1880 +550000,3,1,1140 +199900,5,1.75,1798 +329900,3,1.75,1670 +898000,3,2.25,2580 +875000,4,2.25,3720 +375000,4,2.5,2790 +365000,3,2.5,2190 +530000,4,2.75,2280 +225500,3,1,1100 +318000,4,2.25,2180 +910000,4,2.5,2770 +207000,3,1,1980 +1.89E+06,5,3.5,4180 +624500,6,3,3030 +640000,3,2.5,1690 +500000,3,2,1990 +390000,5,1.75,2250 +284000,3,2.25,2080 +620000,3,2,2460 +306000,3,2.5,2588 +495000,4,1.75,2570 +499950,3,2.5,2370 +330000,3,1,1070 +665000,3,2,1940 +850000,3,2.5,2650 +599950,4,2.5,2290 +360000,4,2.5,2050 +699000,3,2.5,2680 +475000,3,1.75,1520 +575000,3,2,2690 +345000,2,1.5,1180 +367950,4,2.5,3030 +374500,3,2.25,1400 +607500,4,2.5,3000 +374000,3,1,1200 +390000,3,1,1000 +705000,4,3.25,2740 +467000,3,2.5,1990 +243500,3,3,2110 +593000,3,2.75,1830 +223000,3,1,940 +574000,4,2.5,2980 +400000,3,2,2260 +772000,4,2.75,3470 +593777,3,1.75,1510 +539500,4,3.5,2710 +550000,3,2.5,2080 +265000,2,2,1860 +428000,3,1.75,2120 +505000,3,2,1110 +925000,5,5.5,5190 +230000,3,1.75,1520 +695000,4,2.5,2650 +700000,4,2.75,3350 +712500,3,1.75,1770 +480000,3,2.5,2200 +470000,3,2.5,2000 +335000,3,1.75,1730 +270000,3,1.5,1300 +810000,5,3.25,2950 +589000,3,3,1720 +415000,2,1,880 +197000,4,2.25,1790 +235500,3,1.5,1380 +460000,3,2.25,1530 +572500,5,1.75,2330 +302000,5,2,1540 +870000,3,2.5,3210 +485000,3,1,1130 +240000,3,2,1460 +383000,3,1.75,1410 +750000,4,2.75,1750 +409950,2,1.75,1370 +246000,3,1.5,1780 +860000,4,1.75,1890 +339950,3,2.25,1630 +315000,5,1.75,2320 +698000,3,2.5,2580 +419000,2,2.5,1470 +372000,3,1,2298 +425000,3,2.5,1960 +386500,3,2.25,2950 +348000,2,1,670 +754000,5,3.5,3020 +269950,4,3,2390 +891500,3,2.5,3090 +349950,4,1.75,1780 +360000,2,1,1420 +975000,4,2.25,2420 +449250,4,2,1480 +350000,4,2.25,2190 +790000,4,1.75,1820 +990000,3,1.75,1810 +834000,3,2.25,2550 +466950,3,1,1360 +262500,3,1.75,2259 +762300,4,2.5,3880 +733000,6,2.75,2730 +439000,4,2.5,2800 +1.16E+06,5,3.25,4290 +420000,3,2.5,1770 +549000,3,2.25,1920 +518000,4,2.5,2320 +695000,4,2.5,2961 +485000,3,2.5,1680 +280000,3,1.75,1590 +306500,2,1,1420 +720000,2,1,1370 +277500,3,2.5,2620 +649000,3,2,1810 +3.40E+06,4,3.5,4730 +267800,2,1,700 +625000,4,2.75,2390 +600000,4,2.5,2070 +395000,4,2,1780 +212000,4,2.5,1900 +425000,2,1,1040 +870000,4,1.75,2370 +420000,3,2.5,1970 +800000,4,2.25,2120 +575000,3,2.5,1960 +915000,3,3.25,2660 +400000,3,2.25,1180 +750000,3,2.5,2390 +235000,3,1,1250 +599950,5,3,2600 +481203,2,1,940 +1.82E+06,5,3,3880 +379000,3,2.5,1530 +626000,3,1.75,2430 +535000,2,1,1030 +1.23E+06,4,2.5,2740 +410000,2,1.5,1180 +940000,4,2.5,3090 +326250,3,1,1060 +200000,2,1,790 +880000,4,2.5,3070 +370000,2,2,2100 +190000,2,2.5,1100 +160000,2,1,1070 +625000,4,3,2190 +590000,4,3.5,3450 +575000,3,2.5,2070 +470000,2,1,1190 +130000,2,1,600 +229000,3,1,940 +279900,3,1,1280 +307000,3,1,1370 +399950,3,1.75,2450 +405000,4,2.25,1970 +539950,4,2.75,2910 +129000,2,1,760 +340000,3,1.75,1270 +214950,3,1.75,1570 +450000,4,2.75,2310 +515000,3,1.75,1900 +1.40E+06,4,2.25,3780 +230000,3,1,1060 +681000,3,1.75,1880 +255000,3,1,1160 +580000,2,1,860 +295000,2,2,1590 +286000,2,1,1170 +425000,3,1.5,1190 +170000,2,1,1300 +380000,3,2,1660 +506000,3,2,1160 +315000,3,2.5,1950 +449950,4,2.5,2470 +255000,3,1,1430 +289000,3,2.5,1970 +389000,3,1.75,1400 +327000,3,1.5,1510 +2.89E+06,7,3,5350 +210000,3,1,920 +1.68E+06,4,3.75,7620 +360000,4,2.5,2490 +875000,4,2.5,3030 +550000,4,2.25,1650 +257500,3,1.5,1210 +1.08E+06,4,2.75,2990 +202950,2,1,1060 +622000,4,1.75,2680 +455000,4,1.75,1790 +805000,3,2.5,2690 +257000,2,1,770 +744500,5,2.5,2700 +885000,4,2.5,2620 +355000,2,2.25,930 +240000,3,1,1340 +169000,3,1.5,1470 +639900,3,2.5,2330 +292000,3,1.75,1730 +563500,4,2.5,2780 +389000,2,2,1200 +2.75E+06,4,3.25,4430 +661000,3,2,1820 +344000,2,2,1300 +510000,1,1,680 +289000,2,1,780 +365000,3,2.25,2430 +410000,3,1.5,1750 +535610,3,1,1610 +397950,4,1.75,2120 +284000,3,1.75,1430 +201000,4,1.5,1360 +734000,4,2.25,2530 +357500,5,3,3270 +550120,5,2.5,2620 +300000,3,1.5,1810 +374950,3,2.5,2120 +602500,4,1.75,2190 +221000,3,1,980 +920000,5,3,2230 +235000,4,2,1540 +375000,3,1,980 +599000,4,2.5,2120 +562100,3,2.25,2090 +640000,3,2.5,1620 +294000,3,2,1650 +714000,4,2.5,3230 +970000,4,3.25,2790 +280000,4,2.25,1600 +260000,4,2.5,1790 +294000,3,1.5,2060 +255500,4,1,1370 +3.30E+06,5,4.75,6200 +450000,3,2,1510 +368000,3,1,1280 +830000,4,2.25,2180 +282500,2,1.75,1440 +335000,3,2.25,1580 +558000,2,2,1580 +270000,4,1.5,1730 +152000,2,1,700 +493000,4,1.75,2030 +740000,4,2.5,2500 +789800,3,2.5,2605 +275000,2,1,910 +1.50E+06,6,2.5,3560 +424000,3,1.75,1140 +715000,2,1,1000 +600000,4,2.5,3010 +802000,2,1.75,2110 +165000,3,1,910 +750000,4,3.25,2050 +405000,2,1,1090 +521900,3,2.5,2100 +275000,3,1,1000 +600000,5,3.25,4410 +442500,3,1.75,1800 +229950,2,1,920 +274950,3,2,1410 +407185,3,1.75,1860 +468000,4,2.5,2100 +450000,2,1,1030 +219950,2,1,940 +275000,2,2.5,1340 +229950,2,1,850 +675000,3,1.75,2130 +412950,4,2.5,2430 +670000,5,2.25,2290 +420000,3,1.75,1230 +358000,3,1.5,1150 +680000,3,2.5,2120 +380000,2,1,980 +515000,3,2.5,2130 +325000,2,1,1050 +875000,3,2.5,1820 +426000,3,2.5,2210 +868500,5,2.5,2490 +657500,4,2.75,4140 +366000,2,1,1210 +385000,2,1,1010 +300000,4,2,2050 +810000,3,1.75,2060 +460000,4,1.75,1560 +459000,3,2.5,1780 +260000,3,1.75,1460 +557865,4,2.5,3030 +295000,4,1,980 +375000,4,2.25,1450 +2.11E+06,3,2.25,3230 +307300,2,2,1520 +225000,4,1,1410 +290000,3,1.75,1390 +690000,4,2,2230 +825000,4,2.25,2110 +645000,3,1.75,2270 +590000,4,2.25,2530 +667000,5,2,1900 +664000,4,2.5,2390 +452100,4,2.5,3160 +290000,2,1,900 +950000,3,3,3610 +662500,3,2,2070 +475000,4,2.5,1850 +450000,3,1.5,1440 +538250,3,2.25,2590 +329950,2,1,1140 +1.10E+06,4,3.5,2760 +307000,5,1.5,1310 +433000,3,1.75,1870 +212000,3,2.25,1900 +750000,5,2.75,2860 +279000,3,2,1640 +476000,3,1,1140 +368000,5,1.75,2590 +228950,4,3,2160 +568450,5,3.5,3260 +619000,4,1.75,1660 +275000,3,2.25,1640 +321500,4,2.5,2620 +230000,3,1.75,950 +179500,3,1,900 +460000,3,2.25,1650 +286000,3,2.5,1800 +427500,3,1,1480 +400000,3,1,1040 +675000,3,3.5,2300 +350000,3,1,2480 +385000,4,1.75,1970 +525000,2,1.75,1530 +315000,2,1,970 +820000,4,2.5,2920 +205000,3,1,970 +500000,2,1,680 +599000,4,2.5,2640 +2.23E+06,3,4,4200 +299000,1,2.5,1980 +947500,3,2.75,2980 +385000,3,3.25,1630 +639950,2,1.75,1780 +824000,2,1,1210 +199950,3,1,1010 +1.01E+06,3,2.5,2570 +950000,4,2.25,2770 +822000,3,2.5,2290 +473600,4,1.5,1780 +490000,5,2,2150 +245000,3,1.75,1920 +199000,4,1,1220 +1.34E+06,3,3,2960 +418000,3,1.75,1500 +450000,7,3.5,2830 +280000,3,2.5,1580 +273000,3,2.25,1230 +549000,4,2.5,2910 +913888,5,2.25,2370 +689888,4,2.25,1930 +305000,4,2,1780 +602500,4,2.5,2760 +355000,2,1.75,1620 +756000,3,2.5,2160 +289950,4,2.25,2190 +800000,3,2.5,3240 +403000,2,1,720 +350000,3,2.25,1410 +1.29E+06,5,3.5,2980 +525126,5,2.25,1950 +241450,3,1,1100 +320000,3,1.5,1400 +234000,4,2,1710 +441000,5,2.5,2000 +474500,5,2.5,2000 +705000,3,1,1440 +517500,4,2.5,1520 +142500,4,0.75,1440 +310000,2,1.5,1010 +749500,4,2.5,2440 +360000,5,3,2480 +267500,3,1,1090 +290000,3,1,1480 +850000,5,2.5,2800 +815000,4,1.75,1820 +2.20E+06,5,4,5840 +1.63E+06,4,3.25,2980 +175000,3,1.5,1220 +429950,3,1.75,1830 +675000,4,2.5,2900 +580000,3,2.25,1940 +240000,4,2,1750 +374000,3,2.5,1850 +862500,4,2.5,3220 +140000,2,1,1080 +740000,5,3.75,3990 +589000,3,1.75,920 +275000,3,1.75,1290 +489900,4,2.5,2090 +545000,3,2.5,1900 +235000,4,1,1360 +230000,3,1,1000 +655000,4,2.25,2170 +185000,2,1,820 +196000,3,1,1090 +572000,3,2.25,1830 +615000,4,2.5,3010 +1.95E+06,4,3.75,4150 +1.23E+06,6,2.25,2930 +375000,3,2.5,1520 +295000,3,1.75,1250 +760000,4,2.5,2760 +347000,3,1.75,1330 +712000,3,2,1700 +495000,4,2,2050 +925000,4,2,3140 +775000,3,1,2030 +429000,4,2.5,2100 +229000,3,1,1010 +400000,4,1.5,1980 +625000,4,2.25,2100 +130000,2,1,840 +349000,3,1.75,1690 +365000,3,2,2140 +487500,3,2.5,1810 +475000,3,2.5,2600 +685000,3,1.75,1650 +960000,3,1.75,2460 +1.10E+06,5,2.25,4320 +428000,3,2.25,2600 +435000,3,2.5,1930 +769950,3,2,2190 +385000,3,1,1420 +352000,3,2.5,2090 +622500,3,2.5,2290 +660000,3,3,2470 +105000,3,1,840 +420000,2,1,2100 +499950,3,1.5,1360 +975000,6,3,3420 +665000,3,2.75,1930 +540000,4,2.5,2180 +400000,4,2,1670 +469950,4,2.75,2720 +777000,4,2.5,3170 +346500,2,1.75,1610 +685000,3,2.5,2370 +396500,3,2.5,2590 +783500,3,2.5,2850 +575000,4,2,1660 +1.50E+06,4,4.25,5550 +515000,3,1.5,2200 +300000,3,2.5,2020 +272000,3,1.5,1760 +355000,4,2.25,1810 +223000,3,2,1310 +397000,4,2.5,3000 +460000,2,2,1080 +848000,3,2.75,2170 +392800,2,1,740 +1.69E+06,3,3.25,5290 +1.80E+06,3,3.25,5290 +577000,3,2.25,2370 +570000,3,1,1890 +250000,3,1.75,1160 +645000,4,1.75,1550 +567500,3,2.5,3090 +337000,4,2.5,2610 +280000,3,1.75,1230 +167000,3,1.5,1280 +280000,2,1,1880 +317500,2,1.5,1220 +405500,2,2.75,1350 +495000,4,2.5,2370 +691000,4,3,3040 +480000,5,1.75,2080 +549010,2,1.75,1560 +750000,5,3.5,2980 +365000,2,1,870 +412500,3,1.75,1660 +425000,3,2.25,1870 +920000,3,1,1410 +340000,4,2.25,2180 +405000,4,2.5,2620 +537100,3,2.5,2450 +353500,4,2.5,3250 +522000,3,1,1150 +710000,4,2.75,2780 +329950,3,1.75,1360 +830000,5,2.5,2810 +800500,4,2.5,1780 +168500,3,1,1100 +490000,3,2.5,2230 +579000,3,2.5,1710 +600000,4,2.5,2620 +445000,4,1.75,1990 +362500,4,1.75,1450 +234000,4,2,1630 +321500,1,1,730 +660000,3,1.75,1980 +319000,4,1,1730 +314000,3,1.75,1350 +517950,3,2,1410 +525000,5,2.5,2360 +319500,3,1,1190 +1.58E+06,4,3.25,3760 +325000,1,1,1220 +795000,4,2.5,2920 +850000,2,1.75,1590 +1.01E+06,5,3.25,3510 +475000,3,2.5,1320 +375000,3,1,1610 +405000,3,1,1410 +420000,4,2.5,2170 +775000,4,1.75,1890 +800000,4,2.75,3260 +436800,3,1.75,2080 +620000,3,1.75,2040 +230000,3,1,1250 +165000,1,1,850 +490000,1,1,850 +480000,3,1.75,1600 +570000,3,2.5,2400 +615000,3,2.25,1870 +280000,3,1,1720 +326000,3,1,1030 +550700,2,2.25,1190 +600000,2,1,910 +450000,3,1,1290 +546000,2,2.25,1530 +585000,3,2.5,2330 +489000,3,1.75,2090 +765000,3,2,1570 +519000,3,1.75,1560 +262000,2,1,1500 +550000,4,2.75,2160 +285000,2,1,780 +476000,4,1.75,2340 +2.20E+06,3,2,3570 +335000,1,1,720 +510000,4,2,2990 +291000,3,2.25,1860 +335000,4,1.75,1950 +415000,3,1.5,1860 +430000,3,2,1550 +270000,3,1.75,1610 +760000,3,2,1810 +450000,2,2,1730 +425000,3,2.5,1230 +725000,4,2.5,2130 +700000,3,2.75,2190 +998000,5,4.5,4130 +396000,3,2.25,1680 +547000,3,2.5,1480 +302000,4,1.5,1790 +999000,5,3.5,2810 +633000,4,2.5,2360 +265800,3,1.75,1460 +530000,3,2.25,2160 +605000,6,2,2610 +489000,4,2.5,2170 +305000,2,1,2160 +513000,4,2.75,2020 +765000,4,2.5,2980 +550000,2,1.5,1300 +974350,4,2.5,3090 +653675,4,2.25,2280 +245000,3,1.75,1260 +700180,2,1.75,1530 +510000,3,2.5,1830 +390000,3,2.5,1610 +606500,3,2.5,2170 +1.50E+06,4,4.25,5020 +290000,3,2.25,1620 +115000,3,1.75,1080 +500000,3,2.5,1940 +139950,0,0,844 +580050,3,2.5,2360 +550000,3,2.5,2010 +465000,3,1,800 +354950,3,1,970 +980000,4,3.25,3720 +500000,3,2.25,2010 +667750,4,1,1430 +735000,3,1.75,2250 +361000,3,1.75,2130 +276750,3,2,1620 +760000,4,3.25,3140 +475000,2,1,870 +234000,4,2.5,1820 +234950,3,2,1510 +269950,2,1.75,1320 +495000,3,2.5,1800 +438000,2,1,1120 +260000,3,1.75,2160 +697000,4,2.5,3220 +212625,2,1,960 +593000,5,2.5,2640 +410000,4,3,2430 +445434,2,1,1470 +200126,3,2.5,2040 +290700,3,2.5,1670 +248000,4,1,1010 +345000,1,1,540 +525000,3,1,1240 +400000,3,1.75,1510 +532000,3,1,1820 +159995,2,1,1000 +287000,5,1.5,2040 +1.12E+06,4,2.5,3690 +765000,3,2.5,2310 +185000,3,1.5,1090 +430000,3,1,1150 +346000,4,2.5,2100 +607000,4,2.75,2150 +417000,3,1.5,2500 +930000,5,2,3530 +573300,2,1.75,1290 +260000,4,1.75,2010 +280000,1,0.75,420 +825000,4,2.5,2180 +307000,4,1,1150 +595000,4,1.75,2000 +528000,5,1.75,2780 +600000,2,1.75,1550 +275000,2,1,2180 +782000,2,1.5,1570 +610000,3,2.5,2260 +488000,3,1,1600 +320000,3,1,1630 +153500,3,1,890 +414500,3,1,1350 +750000,5,1.75,2850 +349990,3,1,1350 +645000,3,2.25,3280 +425000,2,1,1090 +785000,4,2.5,2990 +290000,3,1.75,1340 +415000,3,1.75,1340 +248500,2,1,720 +325000,3,2.5,2330 +272925,2,1,1280 +500000,2,2.25,1570 +250000,4,1.75,1510 +470000,4,2.5,2470 +440000,2,1,1190 +299999,4,2.5,1981 +255000,3,1.75,1590 +415950,3,1.75,1150 +402000,5,2.75,2160 +729000,3,1.5,1770 +635000,2,2.5,2470 +479000,3,2.5,1710 +462370,2,2.25,1860 +171500,3,1,1150 +925000,5,3,3850 +675000,5,3,3410 +320000,4,1.5,1890 +499950,5,3.5,3200 +435000,5,1,2170 +359800,4,2.5,2390 +239900,3,2,1410 +295000,2,1,740 +380000,3,2.5,2150 +435000,4,2.5,2180 +508000,2,1,820 +2.40E+06,6,4.5,5480 +234500,4,2.5,1960 +355000,2,1,1270 +230000,3,2,1710 +345000,3,1.75,1930 +430000,3,1.75,1200 +500000,3,1.5,1680 +378000,4,1,1300 +345000,3,2.5,1540 +410000,2,1.75,870 +750000,2,2.25,1890 +485000,4,1.75,2050 +105000,3,1,880 +1.03E+06,3,2.75,2780 +360000,3,1,1160 +294000,5,2.75,2300 +400000,4,2.5,3140 +325000,3,1.75,2300 +770000,3,2.5,2900 +443000,3,2.25,1920 +325000,3,1,1150 +760000,4,2.5,3120 +640000,4,2,2560 +415000,3,2,1410 +156000,3,1,970 +996000,3,3.25,3620 +415000,2,1,880 +615000,3,1.75,1900 +717000,4,2.5,2540 +548000,4,1.75,1690 +425000,3,1.5,1120 +325250,4,2.75,2130 +1.23E+06,3,2.5,3420 +557500,3,1.75,1900 +1.26E+06,4,2.5,3730 +249950,3,3,1790 +260000,4,2.75,2250 +1.99E+06,3,2.5,2880 +442900,4,1.75,1780 +475000,3,2.25,1580 +365000,5,2.75,3260 +780000,4,2.5,3180 +930000,3,1.75,2460 +2.89E+06,5,6.25,8670 +350000,3,1,1020 +357500,3,1.75,1630 +520000,4,2.5,3290 +330000,4,2.5,1940 +310000,3,2,1350 +279000,3,1,1110 +540000,4,1.5,2993 +322000,4,2.5,2280 +380000,5,3.25,3800 +320000,2,1,850 +400000,3,1.75,1560 +412000,3,1,1000 +887200,3,1,1400 +395000,4,1.75,1540 +895000,4,3,3570 +195000,2,1,800 +390000,3,1,1160 +165000,3,1,1010 +255000,3,1,1010 +589000,4,2.25,2390 +505000,3,2.5,1610 +335750,3,3,2400 +719000,3,1.75,1800 +796000,4,3.25,2110 +95000,2,1,960 +525000,3,3,2600 +417000,3,1.5,1340 +410000,3,1,1410 +984000,4,2.25,2390 +325000,2,1.5,1180 +314950,3,1,1040 +350000,3,2.25,1840 +1.05E+06,4,2.25,2630 +657000,4,2.5,2640 +234950,2,2.5,1720 +410000,4,1.75,2320 +625000,3,1.75,1840 +706000,5,2.5,2890 +485000,3,1.75,2200 +685000,4,2.75,1660 +242050,3,2.5,2170 +770000,3,3.25,3310 +557000,2,1.5,1450 +246000,3,1.75,1440 +194000,4,2,1760 +720000,3,2.5,3170 +449000,2,1,1250 +925000,4,2.5,3280 +570000,4,3,2460 +395000,3,2,1470 +1.00E+06,4,2,1780 +406000,4,1,1580 +574800,3,1.5,1630 +309000,4,2,2240 +770000,3,2.5,2430 +525000,3,1.5,1940 +419000,3,2.5,1970 +479000,4,2.5,2050 +160000,3,1,1340 +333000,4,1.75,1880 +310000,2,1,860 +666000,3,2.5,2140 +2.23E+06,3,3,3620 +310000,4,2.75,2370 +350000,3,2.5,1860 +610000,4,3,2110 +564800,3,2.25,1990 +438000,3,2.25,1820 +855000,3,2,3120 +229000,3,2.5,1190 +260000,3,2,1170 +609000,3,2.5,2630 +277000,4,1,1450 +283000,4,2,2100 +334000,2,1.75,1680 +267000,4,1.75,2000 +385000,3,1,1030 +640000,5,1.75,2020 +532500,4,2,2220 +335000,4,2.5,1750 +415000,3,2.5,1710 +1.10E+06,6,3.25,3560 +1.44E+06,2,2.5,2720 +180000,3,1,1010 +335000,4,2.5,1830 +835000,4,3,4480 +592500,4,1.5,2080 +418900,3,1.5,1470 +340000,3,1,1600 +545000,3,2,1340 +1.38E+06,5,3.5,3680 +183750,3,2.5,1770 +295000,4,2,980 +625000,4,3,2530 +290000,4,3,2390 +760000,4,2.5,3600 +560000,4,2.5,3270 +475000,5,2.5,2300 +620000,3,1,1710 +330000,4,2,1170 +620000,3,2.25,1990 +320000,4,1.75,1710 +525000,3,2.5,1740 +802500,4,3.75,3320 +569500,4,1,1960 +850000,6,3.5,2820 +630000,3,1,1590 +454800,4,2.25,2490 +177000,3,1,870 +275000,3,1.75,1860 +460000,3,2,2930 +729000,3,1,1580 +935000,4,3.25,4110 +481450,3,2,1410 +860000,3,2,2090 +274000,3,1.75,1400 +499000,3,3.5,1690 +696500,5,2.25,3210 +390000,3,1,1190 +265000,3,1,960 +470000,4,2.25,2380 +168500,2,1,1020 +220000,3,1.75,1290 +295000,3,2,1830 +1.48E+06,5,4,4770 +1.30E+06,2,2.5,2910 +285000,3,1,950 +294950,3,1,1160 +1.47E+06,4,4,4930 +565500,3,1.75,1780 +230000,3,2,1410 +569950,4,3.5,2700 +721000,2,1.5,1790 +565000,3,2.5,4040 +438000,3,1.75,1990 +369900,3,1.75,2150 +405000,4,2.5,1850 +282000,3,2.5,1680 +380950,2,1,1430 +349810,3,1,960 +690000,4,2.5,2700 +653000,2,1.5,1290 +526500,3,2.5,1860 +1.04E+06,4,3.5,4320 +335000,3,1,2130 +570000,2,1.75,2870 +1.08E+06,5,3.5,3740 +475000,3,2.5,2130 +315000,4,2,1210 +405000,6,2,2800 +562000,5,2.25,3040 +295000,3,2.5,1570 +383000,3,2.25,2090 +242000,3,2.25,1690 +352500,3,1.5,1470 +239950,4,1,1460 +998000,4,2.5,3030 +515000,3,1.75,1190 +590000,5,1,1840 +1.16E+06,4,3.75,3560 +289000,3,1.75,1580 +424000,3,1.5,1230 +199000,4,2,1440 +730000,4,3.5,4420 +244000,3,1,910 +240000,2,1,670 +797000,4,2.75,2650 +350000,4,2.25,2220 +415000,3,1.75,1640 +378510,2,1,770 +1.20E+06,4,3.5,3960 +379900,2,1.5,1140 +620000,3,2.5,2480 +524500,3,1.5,1580 +270000,4,2.75,1990 +236000,4,2.25,1830 +308500,2,2,840 +989900,5,2.25,3320 +299000,4,2.25,2050 +295000,2,1.75,1560 +110000,2,1,800 +295950,2,1,1190 +270000,3,1.75,1300 +712000,4,2.5,3400 +475000,2,1.5,1170 +410000,4,2.5,2510 +588000,4,2.25,2510 +420000,3,2.5,2390 +355000,4,2.25,2200 +446000,2,1,2550 +765000,4,2.25,2560 +967500,3,3.75,3250 +381000,2,2,1340 +490000,3,2.25,2840 +716000,4,2.25,2480 +605000,5,3.5,3060 +312200,4,2.5,2910 +327000,4,1,1900 +229950,4,1.75,1300 +160000,3,1.5,1480 +255000,3,1,1250 +530000,4,2.5,2000 +239000,3,1.5,1330 +285000,3,2.25,1840 +537000,4,2,1560 +530000,3,2.5,3150 +213675,3,2.25,1560 +530000,5,2.5,2910 +780000,3,2.5,2940 +390000,3,1,950 +450000,2,1,1200 +420000,2,1,1000 +550000,3,2,1490 +110000,2,1,600 +700000,2,1.75,2320 +807500,4,2.5,3190 +179000,2,1,990 +1.61E+06,4,2.75,5470 +655000,4,2.75,2890 +472500,3,2,1790 +299000,4,2.5,2350 +740000,4,2.5,3430 +860000,3,1.75,2600 +620000,4,3,2130 +410000,3,1.75,1660 +343000,5,3.5,2473 +465000,2,2.75,1430 +273950,3,2.25,1570 +825000,2,1,1240 +255000,3,2.5,1720 +250000,3,2,1140 +635000,4,3.25,2690 +240000,3,1.75,1520 +670000,4,2.25,2040 +713414,3,2.5,2830 +245000,3,1.5,1340 +600000,4,2.5,2520 +270000,3,2.5,1660 +190000,2,1,880 +435000,3,2,980 +560000,4,1,1360 +998000,3,3.75,3710 +725000,3,1,940 +210000,2,1,970 +513000,3,2.25,1500 +290000,5,2.5,2780 +1.26E+06,3,2.5,3110 +330000,3,2.25,1860 +189000,3,1,1010 +907500,3,2.25,2850 +410000,3,2.25,2280 +1.05E+06,4,3,3080 +622100,4,2.5,2280 +250000,3,1.5,2030 +1.18E+06,4,3,2570 +925000,3,2.75,3640 +554000,3,2,1760 +545000,3,2.5,2760 +660000,3,2.5,2650 +1.90E+06,5,4.5,5160 +260000,4,2,1480 +219900,3,1,860 +373500,4,2.5,2610 +380000,2,1,1470 +1.06E+06,4,2.5,4570 +2.60E+06,3,3,3410 +450000,3,2.25,1760 +379950,3,1.75,2040 +834800,3,3.5,3470 +365000,2,1,680 +465000,2,2,1494 +452000,3,1.5,1250 +840000,3,3,3570 +465000,4,2,2000 +295000,3,2.5,2030 +396000,3,1,1390 +397000,2,1,1030 +240000,3,1,1280 +300523,3,2.5,2370 +215500,3,2,1380 +552500,5,3,2320 +375000,5,1.5,2050 +160000,3,1,1210 +1.07E+06,4,2.5,3270 +952000,3,2.5,2450 +523460,5,1.75,1890 +305950,4,2.5,2007 +220000,3,2.5,1430 +289000,2,1.75,2056 +648000,5,2.5,2210 +825000,5,1.75,2330 +400000,4,2,2070 +420000,2,2.5,1480 +389000,2,1.75,1160 +865000,4,2.5,2520 +345000,2,1,1770 +700000,3,2.5,3110 +550000,3,2.5,1680 +201500,3,1,1320 +459000,3,1,1320 +327000,3,2.5,1810 +540000,1,1,1140 +805000,5,2.5,4600 +521000,3,2,1840 +375000,3,1.5,2000 +235000,3,1.75,1480 +240000,4,2.5,2040 +575000,4,2.25,2060 +1.52E+06,6,3.5,3720 +394500,4,2.5,3002 +174950,3,1,1060 +383000,4,2,1830 +249950,3,2,1550 +431000,3,2.5,1690 +459900,3,1.75,2580 +475000,5,2.5,2510 +605000,3,2.25,1290 +234950,4,2,1450 +419000,4,2.5,2690 +910000,4,3.25,3340 +392000,4,2.5,2600 +915000,3,2.5,3140 +630000,3,3.25,3800 +416100,4,1.75,2320 +285000,4,2.5,2360 +353000,4,1.5,1100 +297950,3,2,1390 +750000,2,2,2180 +525000,3,3,1730 +495000,5,1.75,2760 +710000,3,1.75,2430 +310000,3,2,2010 +205000,5,1.75,1730 +530000,3,3,2450 +725000,4,2.5,3300 +195000,2,1,720 +401000,3,2,1240 +1.03E+06,5,2.5,3050 +251000,3,1.5,1590 +667500,3,2,2040 +300000,4,2.5,1840 +610000,4,2.25,1960 +1.04E+06,4,5,4110 +430000,3,2.25,1830 +455000,2,1,1330 +600000,5,2,2190 +638000,3,3.25,1720 +561000,3,1.75,1710 +625000,3,2.5,2180 +263950,3,1.75,1700 +740000,3,2.5,2960 +234999,3,1,1330 +380000,4,2.5,1940 +329500,3,2.25,1500 +464950,4,2.5,2230 +500000,3,2.25,1700 +415000,4,1.5,1840 +437500,3,2.25,2100 +599000,7,2.5,2580 +367000,4,2.5,2350 +530000,2,1,760 +989000,5,3.5,3280 +462600,3,2,1320 +875000,3,2.5,1690 +335000,3,2.25,2060 +393000,4,2,1450 +1.34E+06,4,3,2760 +590000,3,2.5,2830 +671000,4,2.75,1890 +925000,3,3.25,2610 +245000,3,2.25,1900 +392500,3,1,930 +505000,4,2,2730 +702000,4,2.5,2650 +337000,2,1,1010 +920000,4,2.5,3550 +495500,3,1.75,2130 +245000,2,1.75,1840 +395000,2,1,1320 +335000,3,1,990 +187000,2,1.75,1020 +450000,4,2,1570 +280000,4,2.25,1930 +1.38E+06,5,4,3760 +265000,2,1,1000 +795000,3,1.75,1930 +510000,3,1.5,2240 +699900,4,2.5,2190 +839000,4,2.75,2400 +396000,4,1.75,1970 +365000,3,2.25,2860 +440000,3,2.25,1900 +405000,4,2.5,2090 +295000,3,1.5,850 +275000,4,2.5,1840 +295000,2,1,820 +1.50E+06,5,3.5,4370 +795000,3,3.5,3190 +650000,5,3.5,3480 +260000,3,1,1690 +382000,2,2.5,1650 +790100,4,2.5,2590 +220000,4,2.5,2160 +799000,4,3.5,3500 +1.48E+06,4,2.25,3920 +367300,4,2.75,2190 +805000,4,2,1890 +730000,2,1,1860 +402000,3,2,1720 +750000,4,2.75,2600 +458000,3,1.5,1570 +898000,3,2.5,3530 +308000,4,2.5,1960 +385000,3,2.5,2230 +1.02E+06,4,3,2720 +1.43E+06,5,3,2840 +240000,3,1.75,1260 +217000,3,1.5,1860 +972000,4,1.75,2010 +361280,2,1,820 +385000,3,1.75,1220 +475000,3,2.5,2220 +724950,4,2.5,2860 +935000,5,4.5,4230 +169950,3,1,840 +585000,3,2.5,2290 +585000,3,2.5,2290 +480000,5,3.5,3480 +635000,4,2.5,4260 +368750,3,2.5,2230 +432500,6,2,3080 +589000,3,2.5,2250 +840000,4,3.25,3160 +316500,3,2.5,1770 +536000,4,2.5,2880 +563750,4,2.75,2690 +152500,4,1,1730 +267950,4,1,1730 +1.64E+06,5,4,4780 +269950,4,2.5,2540 +731688,4,3,2630 +240000,3,1.5,1890 +555950,2,1,1220 +289000,2,1,710 +525000,3,2.5,2970 +745000,3,2.5,2970 +397000,2,1,1000 +233000,3,1,1980 +625000,4,2.25,1920 +535000,3,2,2740 +270000,3,2.25,1740 +360000,3,1.75,1300 +1.11E+06,4,1.5,2740 +970000,4,1.75,4060 +915000,5,2.5,3490 +412000,4,1.75,1430 +265000,4,1.75,1860 +426000,4,2.25,2120 +266000,4,2.25,1860 +325000,3,2,2330 +615000,3,1.75,1670 +310000,3,1.75,2130 +340000,4,1.75,1900 +562500,2,1,1170 +447000,2,1,980 +2.45E+06,7,4.25,4670 +250000,4,1.5,2500 +633000,4,2.5,2020 +310000,3,2,1290 +439000,2,1.75,1620 +470000,3,3.25,1710 +270000,3,2.5,1720 +299500,3,1.75,1820 +227000,3,1,1130 +735000,4,2.75,3040 +537000,3,3,2410 +699000,4,2.5,2440 +330000,2,1,800 +229000,3,1,1030 +200000,3,1,1480 +522500,3,1.75,1710 +1.30E+06,3,2.75,3450 +2.00E+06,3,3.25,2610 +200000,2,0.75,780 +352000,3,1.75,1260 +855000,4,3,2590 +267000,3,2.5,1580 +484000,2,1.75,1660 +402000,4,2.75,2950 +905000,4,2.25,2240 +274000,4,1.75,1940 +475000,3,1.75,1850 +1.54E+06,4,4.5,5770 +628000,4,2,2280 +675000,6,1.75,2740 +429900,4,3.25,3760 +260000,3,1.5,1580 +690000,3,1.75,1600 +1.08E+06,4,2.25,2100 +360000,4,2.5,2610 +499000,3,1.75,1840 +159000,3,1,1320 +430000,3,1.75,1540 +1.05E+06,5,2.75,2520 +725000,5,2.5,3780 +150000,3,1,1200 +840000,4,2.25,2720 +499000,4,2.5,3100 +285000,3,1.75,1630 +340000,4,2.5,1910 +405100,4,2,1580 +464000,3,2.5,1690 +723000,4,2.25,1960 +430000,8,3.25,4300 +645000,3,1.75,1840 +1.58E+06,4,2.75,3480 +925000,5,3,2710 +759000,4,1.75,2100 +690000,4,2,1760 +358800,4,2.5,2155 +683000,5,1.5,1720 +650000,3,1,1430 +288000,5,2.75,2790 +209950,3,1.5,1180 +939000,3,3.5,2450 +320000,3,1,1330 +283748,3,2.25,1940 +370000,3,2.25,1600 +399950,4,2.75,3210 +360000,5,2.5,2880 +365000,2,1.5,1160 +396900,3,2,1360 +321000,3,2.5,2014 +245000,3,2,1440 +502000,2,1,1570 +257000,4,2.75,2330 +423000,4,1.75,1880 +485000,4,2.25,1850 +500000,4,2.5,2230 +442000,2,1,990 +475000,3,1.75,1720 +625000,4,2.25,3230 +194000,3,1,1180 +410000,3,2.25,1450 +1.03E+06,4,2.5,2370 +490000,4,2.5,2570 +348500,4,1.75,1870 +380000,3,1,1220 +660000,3,2,1770 +525000,3,1,1500 +235000,3,2,1110 +1.21E+06,4,3.75,4980 +397950,4,1.75,2360 +268000,3,1.75,1600 +525000,3,1,1450 +549950,3,2.5,2680 +370000,3,1.75,1150 +299000,4,2.25,1870 +715000,6,2.75,3400 +430000,4,1.5,1810 +345000,3,1.75,1860 +1.60E+06,3,3.25,3790 +534640,3,2.5,2130 +1.23E+06,3,2.5,2860 +351000,4,2.5,2370 +745000,4,2.25,2290 +320000,2,1,1120 +555700,3,2,1810 +690000,4,2.5,3220 +449000,3,1.75,1660 +308500,2,1,850 +340000,4,2.5,2665 +937750,4,2.75,2580 +725126,4,2.5,3200 +135000,3,1,840 +635000,4,2.5,2970 +245500,2,1,790 +230000,6,1.5,2140 +1.77E+06,3,2.5,2580 +425000,5,2.5,2180 +220000,2,1,1060 +370000,3,2,1860 +390000,3,2,1840 +239000,3,1.75,1340 +345000,4,2.25,2320 +289000,3,2.5,2110 +285000,5,1.5,1840 +147400,3,2,1080 +600000,2,1,1290 +245000,3,2.25,2210 +520000,3,2.25,2210 +352500,3,2.25,1410 +448000,5,3.5,3740 +270000,4,2.75,2440 +872500,3,2.5,2040 +2.15E+06,4,3.25,3840 +225000,3,1.5,1660 +735000,4,2,1640 +375000,3,1,1310 +169000,3,1.75,1720 +279950,3,1.75,1720 +1.95E+06,4,2.75,4020 +310000,3,2.25,1960 +975000,4,2.5,3240 +650000,10,2,3610 +930000,2,1.5,1800 +412000,4,1.5,1960 +225000,3,1,1250 +507000,3,2.5,2120 +1.76E+06,4,4,3860 +230000,3,2.5,1340 +316000,1,2,1780 +616200,5,3.25,3920 +509900,3,1.75,1690 +370000,4,2.5,2570 +619100,3,1.75,1870 +805000,3,2.25,2860 +612125,2,1.5,1670 +350000,2,1.5,1070 +225000,2,1,940 +335000,3,2.5,2588 +972800,5,3.25,3500 +500000,3,1.75,1690 +2.20E+06,4,3.75,3790 +415000,3,1.5,1090 +399000,3,3,2240 +376000,2,1,1150 +340000,3,2,1870 +490000,5,2.75,2990 +374000,4,2.5,2580 +852000,4,1,2220 +473000,3,2.25,1620 +540000,3,1.75,2590 +431000,2,2,1390 +435000,4,3,2270 +1.05E+06,4,3,2920 +450000,3,2.75,1250 +157500,3,1,1100 +244000,3,1.75,1500 +550000,3,2.5,2800 +975000,4,2.5,3420 +426500,4,2.75,2100 +350000,3,1,1790 +615000,3,1,1790 +542000,3,2.25,2220 +710000,4,1.75,2000 +289950,3,2.5,1770 +1.90E+06,4,2.75,4280 +528000,2,1,1260 +471000,2,1,840 +250000,4,2.75,1830 +155000,3,1.5,970 +515000,4,1.5,1740 +336600,3,2.25,1654 +915000,3,2.25,2390 +350000,2,1.75,1080 +1.30E+06,4,1.75,2610 +175000,3,1,1070 +545000,2,2,1430 +475000,4,3,2400 +390000,2,1,670 +645000,4,2.5,2860 +410000,3,1.5,2270 +480000,4,2.5,2180 +725000,3,1.75,1860 +1.15E+06,6,4.5,6040 +300000,2,1,1010 +752000,4,2.5,2570 +585000,4,2.5,1950 +678700,3,1.75,1970 +603000,4,2.25,2110 +715000,3,1.75,1650 +1.40E+06,4,3,3520 +1.09E+06,3,2.5,2840 +467500,2,1.75,1490 +359000,3,2.25,1650 +745000,4,2,1960 +450000,3,2.25,2450 +935000,3,2,1720 +615000,3,2.5,1980 +1.03E+06,3,2.5,4110 +283500,4,2.5,1990 +340000,2,1,860 +370000,4,2.5,2320 +1.15E+06,3,2.5,4190 +265000,4,1,1940 +480000,4,2.25,2520 +667500,3,2,1880 +1.40E+06,3,2.5,2910 +2.30E+06,7,4.75,5310 +465000,3,2.25,2670 +192500,1,1,470 +345000,3,1,1060 +439800,3,1.5,1120 +468000,4,1.75,2250 +775000,4,2.5,2070 +684680,4,2.25,2370 +910000,4,3.5,3570 +3.64E+06,4,3.25,4830 +375000,3,1.75,1160 +250000,3,2.5,1610 +3.07E+06,5,3,4150 +442500,4,2.25,1840 +900000,3,3.5,4080 +699000,3,2,1820 +360000,4,2,2680 +1.68E+06,4,4.75,4790 +675000,5,2,2420 +345000,2,1,1130 +229000,4,1,1320 +300000,3,1,1290 +392500,3,3.25,1600 +552000,3,1,1120 +457000,2,1.75,2060 +518000,4,2.5,2830 +237000,3,2,1210 +399950,3,2.25,1560 +605000,3,2.25,2260 +295000,4,2.5,1850 +513000,4,2.5,1930 +772500,4,2.5,3230 +765000,4,2.5,3230 +696950,4,2.75,2450 +329000,3,1,1200 +339999,3,2.5,2360 +364500,3,1,1060 +607500,5,1.75,2220 +550000,3,1,880 +479900,4,2,2510 +1.12E+06,4,4,2530 +192000,2,1,700 +250000,3,2,1500 +340000,3,2,1130 +340000,3,2,1420 +635250,3,2.25,2210 +324800,2,1,1170 +78000,2,1,780 +400000,4,1.75,1770 +640500,3,1,1070 +570000,3,2,1930 +1.33E+06,3,1.5,1940 +330490,3,2.75,1440 +325000,3,2.5,1740 +335000,3,2.5,1740 +314000,5,2.75,2210 +625000,4,2,2190 +809000,3,2.5,2590 +535000,3,2.5,2790 +275000,5,1.75,2180 +358000,4,2.75,2580 +297975,3,2.25,2820 +492000,2,1.75,1300 +210000,2,1,720 +622500,3,2.5,2260 +550000,3,2.5,1550 +190000,3,1.75,1390 +340000,4,2.5,2380 +678000,3,2.5,2640 +275000,5,2,2260 +493000,3,2.75,1720 +147000,3,1,1070 +334000,3,2.25,2000 +605000,4,2.5,2800 +365000,3,1.75,1450 +345000,3,1,1620 +999000,3,2.5,2710 +470000,2,1.75,1520 +599000,5,2.75,2730 +255000,3,2.25,1740 +295000,4,1.75,1800 +550000,4,3.5,4150 +1.31E+06,5,3.5,3270 +225000,2,1,1070 +520000,4,0.75,1960 +345000,3,3.25,1600 +475000,4,1.75,1650 +497500,5,1.5,2170 +649500,3,3,3730 +734500,4,2.75,3280 +276000,3,1,870 +235000,2,1,900 +325000,2,1,1400 +425000,4,2.75,1680 +307000,4,2,2390 +635000,3,2.5,2300 +223000,3,1.75,1340 +425000,3,2.75,2600 +190000,3,2.25,1640 +275000,4,1.75,1960 +450000,3,2.5,1480 +1.47E+06,4,3.25,5010 +550000,4,2,1540 +835000,4,2.75,4030 +900000,6,3,3020 +290000,2,2,1590 +1.04E+06,4,2.5,2910 +780000,4,2.5,3020 +572500,3,2,2290 +389000,3,1.75,2180 +350000,4,1.75,2740 +476000,4,2.5,2740 +1.05E+06,2,3,2330 +287000,3,2.25,2300 +707500,4,4,1550 +464500,4,2.5,1750 +720000,3,1.5,2180 +319000,3,2.5,1610 +330000,3,1,1570 +120750,3,1.75,1140 +195000,3,1.75,1140 +650000,4,1.5,2480 +530000,3,1.75,1690 +825000,4,3,2910 +436000,4,2,1600 +658000,2,1,1010 +547500,3,2,1850 +762000,3,1.75,2150 +340000,3,1.75,2650 +880000,4,1.75,2510 +1.22E+06,4,2.5,3240 +1.95E+06,4,2.5,3440 +382500,3,2,1150 +344500,3,1.75,1890 +375000,4,2.75,1430 +276000,1,0.75,370 +500000,5,3.25,3130 +330000,4,2.5,2105 +328000,3,1,890 +450000,3,1.5,1340 +840500,4,2.25,2290 +679000,3,2.5,2770 +270000,3,1.5,1890 +757500,5,2.25,3160 +524950,2,2.5,1830 +424900,4,2.75,2950 +551100,3,1,1430 +421000,3,2,1420 +635000,4,1.75,2460 +255000,3,1,1340 +419950,4,1,1530 +325000,6,3,2650 +281000,4,2.25,1677 +655275,3,1.75,2050 +861000,3,2,2520 +850000,3,3.5,2620 +246000,3,2.5,1650 +380000,2,1,700 +813000,4,2.5,3430 +990000,4,2.5,3140 +650000,3,2.5,2350 +273000,4,3,1990 +398000,4,2.5,2050 +200000,2,1,930 +839000,3,1,1230 +502000,3,2.5,1870 +305000,3,2.25,2110 +574950,5,3.25,3160 +311000,3,1,1120 +1.65E+06,3,2.25,2750 +387000,3,1,1230 +375000,3,1.5,1190 +175000,2,1,740 +248000,4,2.5,1770 +336750,4,2.25,1720 +685000,4,2.5,2770 +645000,4,2.75,2330 +279000,3,2.5,1660 +479000,2,2.5,1730 +466000,3,2.25,1880 +361500,4,2.75,2190 +404000,3,1.75,1720 +319000,4,3.25,2360 +320000,3,1.5,1490 +1.31E+06,4,3.75,3490 +1.00E+06,3,2.75,2370 +660000,4,2.5,2290 +546000,4,3,1790 +300000,4,1.75,1820 +500000,2,1.5,1760 +381500,4,2.5,2430 +990000,3,2.25,2630 +278226,4,2.5,2390 +340000,2,1.75,1500 +305000,4,2.5,2510 +760000,4,2.5,2420 +195000,4,1.5,2170 +564000,4,1.75,1960 +539500,4,2.25,2280 +299980,4,1.5,1580 +290000,4,2.5,1850 +257000,2,1,770 +518500,4,3,2120 +657000,4,2.75,3060 +590000,3,2.25,2680 +526000,4,1.75,2220 +254500,2,1,1150 +575000,2,1,980 +464550,3,1.5,1690 +409950,3,1.75,1320 +100000,2,1,910 +365000,2,1.5,820 +208000,3,1,1300 +497950,4,2.5,1950 +405000,5,3.5,3672 +568000,3,2.5,2740 +334000,2,1,890 +235000,3,2,1090 +295000,2,1,1170 +610000,4,3,2600 +453500,4,1.75,2000 +1.22E+06,4,3.75,3520 +175000,2,1,1410 +335000,2,1,1410 +275000,3,1.5,1950 +400000,2,1,980 +915000,3,2.75,3390 +619850,4,2.5,2270 +225900,3,1,1510 +525000,2,1.5,960 +215000,4,2.25,1900 +802000,3,2.5,2580 +330000,4,2.5,2340 +549800,3,2.25,1580 +195500,4,1,1230 +338000,3,2.5,1590 +3.20E+06,4,3.25,7000 +480000,4,2.25,1770 +383000,4,2.5,1850 +257000,3,1.75,1430 +335000,4,2.75,2190 +422000,4,2.5,2310 +560000,3,1.75,2000 +680000,4,2.75,3620 +320000,2,1,1210 +665000,3,2.5,2330 +751000,3,2.5,2840 +320000,6,2.75,2410 +290000,4,1.75,1820 +250000,4,2,1470 +423000,3,1.75,1100 +601002,4,2.5,2050 +352900,2,1.5,1240 +509950,3,2.5,2210 +360000,2,1.75,1340 +1.08E+06,4,2.75,2580 +349950,3,2.5,2390 +395000,4,2.5,2250 +273500,3,1.5,2000 +700000,4,1.75,1870 +699000,3,2.5,2370 +537000,4,2.25,2640 +405000,3,1.5,1240 +269500,2,1,800 +260000,4,2.5,2050 +266750,3,2.25,1650 +1.80E+06,5,3.75,4320 +779000,2,2.25,2130 +500000,3,2.5,2840 +365000,4,1.75,3080 +724000,2,1,1560 +890000,4,2.75,3220 +431000,4,2.5,1450 +242000,2,1,960 +415000,4,2.5,2670 +727160,7,3.75,2310 +1.11E+06,4,3.25,3520 +265000,2,1.75,1090 +519000,3,1.75,2000 +262000,4,1.5,1840 +1.19E+06,4,2.5,3160 +295000,3,1.75,1520 +615000,3,1.75,2110 +1.10E+06,4,2.75,3410 +575000,4,2.5,2630 +388000,3,1.75,1350 +750500,4,2.5,2860 +527500,3,1.75,2310 +503000,3,2,2590 +1.05E+06,4,3.5,3500 +325000,2,1,800 +402000,3,1.75,1580 +370000,3,1.5,1560 +329950,3,1,1750 +135000,2,1,600 +482500,4,3,1630 +259000,4,1.5,1260 +210000,3,2.25,2140 +459000,4,2.75,2790 +375000,3,1.75,2530 +295000,3,2.25,1330 +910000,3,2,2700 +470000,4,1,1740 +565000,4,2,2070 +339950,4,2.25,2670 +547000,5,3,2200 +125000,2,1,810 +2.30E+06,4,4.75,3970 +348000,3,2.5,2370 +175000,3,1,1460 +439950,3,2.5,1770 +230000,3,1,1120 +207000,3,2.5,1520 +320000,5,2.5,3020 +1.09E+06,5,3.25,5600 +510000,4,1.5,1320 +730000,4,1,1870 +750000,3,3.75,2460 +237000,3,1.5,960 +560000,3,2.5,3440 +745000,3,2.75,3010 +1.83E+06,3,3.75,6030 +180000,3,2.25,1990 +309950,3,2.25,1990 +715000,4,1,1710 +620000,4,2.25,1890 +330000,3,2.5,1990 +525000,4,1.75,1600 +611000,6,2.5,3820 +294000,4,2.5,2210 +463000,3,1.75,2020 +320900,3,2,1770 +369950,4,2.5,2050 +565000,4,2.75,3130 +589500,4,1.5,3520 +400000,4,1.75,1810 +458000,3,2.25,2150 +436000,4,2.5,2495 +310000,3,2,1290 +398000,5,2.5,3004 +625000,4,2.25,2070 +1.01E+06,5,3.25,4050 +435000,2,1,960 +250000,3,2.25,1900 +430000,3,1.5,1450 +790000,4,3.5,2720 +1.68E+06,5,5.25,4830 +250000,4,2.75,1920 +1.12E+06,5,1.5,2540 +383900,3,1.5,1600 +330000,4,2.5,2210 +624000,3,2.5,2510 +383000,5,2,2280 +687000,4,3.25,4400 +558000,4,3.25,3160 +275000,3,2,1380 +687500,5,2.75,3320 +275000,3,2.5,1870 +700000,3,3.5,3030 +342500,2,1.75,1210 +483500,4,2.5,2740 +190000,3,1.75,1350 +300000,3,1.75,1350 +540000,3,2,1470 +140000,3,1.75,1270 +275000,4,1.75,1680 +370000,3,2.75,2120 +227000,2,1,1040 +312000,4,1,1730 +260000,2,1,1410 +797000,3,2.5,1370 +640000,6,2,2840 +605000,4,1.75,3280 +329950,3,2.25,2070 +180000,2,1,960 +220000,3,2.25,1470 +723000,4,2.25,2430 +375000,3,1.75,1430 +388000,3,1.75,1760 +249950,5,2,1730 +390000,5,1.75,2290 +705000,4,1.75,1690 +590000,4,2.5,3220 +292000,4,1.75,2130 +506000,3,2.5,2100 +907500,4,2.5,2770 +2.27E+06,4,3.25,4040 +319500,4,2.75,2500 +265000,5,1.75,1580 +237000,3,1,1130 +235000,5,1,1500 +740000,4,2.25,2230 +359000,3,1.5,1550 +334950,4,2.5,2230 +259950,2,1,790 +253000,4,2.5,2230 +561000,3,2.25,1710 +455000,2,1.5,1260 +675000,4,2.5,2420 +267000,3,1.5,1090 +368000,4,2.5,2689 +599995,3,1,1620 +342500,3,1,940 +252000,4,1.75,1940 +247200,3,1,1590 +910000,3,3.5,3020 +419950,4,1.75,1870 +160000,3,1,880 +799950,4,3.5,3030 +400000,3,2.25,2140 +210000,5,2,2050 +475000,5,2,2050 +355900,3,2.5,2090 +420000,3,2.25,2520 +710000,4,2.5,2630 +518000,4,1.75,2560 +375000,3,1,1200 +185000,3,1.5,1010 +402000,3,2.5,1520 +585000,3,1.75,2170 +500000,4,2,1980 +1.72E+06,4,2.5,3070 +1.68E+06,5,3.5,5170 +570000,2,2,1140 +680000,8,2.75,2530 +345000,3,2.25,1690 +355000,4,2.5,2150 +390000,3,1.5,1180 +128000,3,1,1400 +448500,3,1.75,1300 +346000,3,1.75,1590 +779000,3,1.75,1990 +335000,3,1.75,1510 +1.85E+06,4,3.25,2910 +799990,3,2.5,2850 +1.08E+06,3,2.5,2830 +371000,2,1.5,1110 +620000,4,2.5,1900 +343000,4,1.75,2290 +265000,3,1,1010 +1.00E+06,5,2.5,4670 +825000,3,2.5,3400 +889000,4,3.5,4070 +305000,3,2.25,1630 +407000,2,2.5,1700 +613000,5,2.5,2070 +1.64E+06,3,3.5,4660 +645000,3,3.75,2050 +1.16E+06,4,3.5,4680 +610000,3,2.25,2320 +450000,3,2.5,3800 +300000,3,2,720 +1.12E+06,5,2.75,4400 +418200,3,2.5,2260 +250000,3,2.5,1650 +619000,3,2.5,2560 +500000,4,3,3720 +465000,4,2.5,2590 +322000,4,1,1750 +276900,3,2.5,1620 +660000,3,2.25,1700 +480000,3,2.5,2450 +925000,3,1.75,1610 +825000,3,3,3730 +326000,2,1,1210 +205000,3,1,1300 +150000,2,1,850 +593567,3,2.5,1770 +440000,3,2.5,2060 +751000,3,2.5,3090 +295000,2,1.75,1050 +422500,3,2,1300 +480000,3,1,1160 +890900,4,2.5,3420 +672500,4,2.75,2620 +605000,4,1.5,1880 +1.68E+06,5,3.25,4560 +565000,4,2.5,2330 +725000,4,1.75,2350 +640000,3,3,1560 +253750,4,1,1380 +799950,6,2.75,3040 +595000,4,1.5,1350 +850000,4,2.5,3180 +366000,3,2.5,1790 +715000,4,3,1986 +300000,4,2.5,2400 +960000,4,3,4590 +812000,3,2,1970 +234950,3,1,1360 +656500,4,2,2710 +255000,2,1.5,920 +538000,3,2.75,2000 +260000,3,2.25,1920 +546200,3,2.5,2678 +280500,3,1,1220 +295000,3,1.75,1440 +700000,4,1.75,2420 +560000,3,2,2090 +912000,4,2.75,4030 +437000,3,1.75,1310 +447000,3,2.5,1800 +500000,4,1,1160 +508300,3,1,1160 +485000,3,1.5,1870 +540000,7,5.75,3700 +356000,3,2.25,2280 +525000,4,2,1720 +962800,4,2.75,3630 +315000,4,2.5,2040 +525000,3,2.25,1750 +325000,2,2.25,1550 +965800,4,1.75,2500 +550000,4,1,1440 +182200,4,1,1130 +315000,3,1,1210 +500000,2,1,960 +480000,5,2.5,2160 +1.69E+06,3,1.75,3400 +525000,5,3.25,3960 +407500,4,2.5,1900 +443000,4,3,2620 +1.26E+06,4,2.5,3150 +642000,3,1,1040 +520000,3,1.75,1540 +750000,3,2,1820 +855000,5,1.5,1930 +275000,4,1,1430 +265000,5,2.75,2920 +894400,3,2.5,3100 +546000,2,1,1200 +699950,2,2.5,2390 +435000,3,2,1270 +259500,4,1.5,1300 +359950,4,3.25,2290 +517000,3,1.75,1740 +579000,3,1,1590 +525000,4,2,2420 +320000,4,2.5,2130 +635000,4,1.75,1950 +400000,4,2.5,2150 +455000,3,1.75,1270 +572000,3,1.75,1850 +650000,2,1.5,1440 +162500,3,1.5,1390 +400000,2,2.5,1340 +268300,3,1,1190 +989000,6,4.5,3830 +342000,3,1.75,1780 +315000,4,2.5,3130 +485000,4,2.75,1830 +277500,4,2.5,2550 +1.30E+06,4,3.5,3790 +385000,4,1.75,1800 +426000,2,1,1630 +310000,4,2,1870 +449000,4,2,1870 +375000,2,1,980 +1.19E+06,3,2.25,2860 +468000,3,2.25,1470 +336000,1,1,1160 +392000,4,2.75,1940 +412500,4,2.25,1630 +545000,4,2.5,2755 +133000,5,2,1430 +440000,5,2,1430 +294450,4,2.25,1400 +335000,4,2.5,2520 +362000,3,1,1290 +322000,3,1.75,1400 +230500,2,1,740 +380000,4,2,1710 +292000,4,2.75,2414 +172500,3,1,1040 +784000,4,2.75,3540 +525000,4,2.75,2530 +600000,3,2.5,2320 +435000,3,2.5,2530 +359900,5,2.75,2790 +700000,4,1.75,1950 +280000,3,2,1020 +655000,4,2.5,3110 +2.48E+06,4,5,5310 +499950,3,2.5,2580 +540000,3,2.5,1380 +970000,4,2.75,3980 +330000,4,2.5,2080 +474000,3,1.75,1530 +670000,4,1.75,1930 +1.30E+06,4,3.25,2330 +1.16E+06,4,2.5,3860 +440000,4,2.5,2880 +411000,2,2.5,1590 +500000,3,1.5,2150 +1.34E+06,4,1.75,2300 +696000,6,3.25,2900 +465000,3,2.25,1970 +518000,4,2.5,1740 +251000,3,1.75,1220 +255000,3,2,1290 +319000,2,1,780 +719000,4,2.75,2210 +1.52E+06,5,3.5,5930 +322000,4,2.5,1950 +205000,4,1,1340 +229000,3,1,1590 +395000,3,2.25,1780 +183000,2,1,760 +583500,3,1.75,1720 +312000,3,2.5,2070 +539000,3,1.75,1790 +409000,4,2.75,3230 +510250,3,1.75,1400 +535000,2,2,1370 +280000,3,2.5,1600 +286000,3,1,950 +710000,3,2.75,2210 +395000,2,1,930 +237500,2,1,810 +464000,3,2,1630 +495000,3,1.75,1770 +257500,1,1,710 +570000,4,3.5,3990 +362000,3,2.5,2310 +640000,33,1.75,1620 +172500,3,1,1140 +596000,2,1,1040 +840000,4,2.5,2170 +1.60E+06,3,2.25,3370 +435000,2,1.5,901 +251000,2,1,840 +282500,4,1,1650 +265000,3,2.25,1380 +330000,3,1,910 +435000,2,1,1230 +827235,3,1.75,1740 +249950,4,1,1290 +400000,3,2.5,1950 +300499,4,2.5,2150 +449000,4,2,1560 +500000,2,1,1120 +865000,3,1.5,1790 +899950,4,3.5,3290 +370000,4,1,1540 +442500,5,3.25,4240 +310000,3,1,1010 +1.57E+06,4,2.75,2970 +245000,4,2.25,2190 +254950,2,1,700 +510000,6,4.5,3300 +299950,3,2.25,1370 +379950,4,2.5,2680 +350000,3,1,1390 +300000,3,2.5,1700 +994000,3,2.25,2510 +315000,3,1.5,1700 +480500,4,2.5,2180 +373000,3,1,1770 +728000,4,2.5,3290 +415000,4,3.5,3040 +427500,4,2.5,2460 +339300,3,2,970 +313000,3,1.75,1320 +431500,3,3.5,1900 +415000,3,1.5,1220 +490000,3,1.75,1470 +1.43E+06,4,5,4630 +275000,3,1.5,1400 +325000,2,1,1070 +1.18E+06,5,3.75,3630 +690000,4,1.5,1970 +410000,4,2,2010 +960000,4,2.5,2820 +299250,3,2.5,2530 +239000,2,1,710 +235000,2,1,1210 +587000,3,2.25,2370 +431000,4,2.5,2300 +1.64E+06,3,2.5,3110 +285000,3,1.75,1990 +778000,3,3,2630 +415000,3,1,1300 +550285,2,1.75,1680 +910000,3,2.25,2180 +860000,3,2.5,2770 +765000,3,1.75,2120 +782000,4,2.5,2830 +525000,3,3.5,1370 +745000,3,2.5,2810 +470000,3,3.5,3520 +345000,3,1.75,1990 +279000,3,2.25,2070 +500000,3,1.5,1320 +237000,3,1,1300 +200500,3,1.75,1260 +387500,4,1.75,2400 +392500,4,2,1950 +305000,3,2,1430 +981000,4,2.5,2110 +680000,4,2.5,2980 +276000,4,2.5,2068 +655500,4,3.5,3380 +555000,5,2.75,2810 +235000,2,1,930 +325000,3,1,1300 +268950,3,1,1320 +264500,3,1.5,1580 +240000,3,2.5,1620 +819000,3,2.5,2750 +850000,2,1.5,2210 +294950,4,2.25,1740 +693000,3,2.25,2120 +478000,4,2.5,2780 +222000,2,1,830 +635000,4,2.5,2070 +469000,3,3.25,1390 +350000,4,2.5,2610 +180000,5,1,1460 +490000,4,2.25,3390 +360000,3,1.5,1360 +630000,4,2.5,2807 +615000,4,1,1340 +279950,3,2.25,1340 +317000,3,1,1160 +618000,4,2.25,2470 +620000,5,1.75,2000 +345000,3,1,1110 +608000,3,1.5,2240 +325000,4,2.25,1920 +475000,3,1.75,2270 +154000,3,3,1530 +1.19E+06,5,3,3330 +376950,4,2.5,2643 +500000,2,2,1250 +499950,3,2.5,3230 +230000,3,1,880 +652600,4,2.5,2220 +185000,3,1.75,1130 +274950,3,1,1450 +447000,2,1,760 +129000,2,1,1150 +436000,5,3,2720 +825000,3,1.75,2080 +225000,3,1,1080 +265000,3,2.5,1890 +765000,3,1.5,1500 +509000,4,2,1960 +762450,4,1.75,2570 +465000,5,1.5,1830 +564000,3,1.75,1980 +384500,2,1,1130 +415000,3,2,2010 +345000,2,1.75,1820 +465950,4,2.5,2340 +325000,3,1.75,1780 +500000,3,1.75,1780 +450000,4,2.5,2450 +475000,4,3,2410 +1.35E+06,5,1.75,3380 +747000,3,1.5,1710 +395000,3,1.75,1740 +505000,3,2.5,1995 +215000,3,2,1760 +775000,4,3.5,3970 +540000,4,2.5,3000 +392500,3,1.75,1540 +987000,3,2,2160 +1.19E+06,3,2,2160 +252500,3,2,1810 +730000,3,3.5,2440 +497300,6,2.75,3200 +640000,4,2.5,2970 +580000,5,2,2290 +377000,3,1.75,1820 +1.28E+06,4,3.5,3010 +396500,3,1.5,1360 +300000,4,2.5,2080 +532000,3,1,1110 +579000,2,1.75,1560 +1.40E+06,4,2.5,3520 +571000,5,1.75,2280 +301950,3,1.75,1370 +660000,3,3,2340 +455000,4,2.5,3170 +375000,3,1.75,1380 +470000,4,2.5,2700 +374990,3,2.5,1300 +541500,2,2.5,1900 +782500,3,2.5,3750 +264000,3,2.25,1552 +640000,4,2.5,2500 +660000,3,2,1770 +1.37E+06,5,3.5,4210 +389950,3,2.5,2170 +226000,2,1,1510 +390000,3,1.75,1870 +485000,3,2.25,1570 +840000,4,2.5,2480 +600000,5,3.5,3580 +331000,2,1,1480 +780000,3,2,2610 +300000,3,1.75,1700 +361810,3,1.75,1240 +467000,3,1,1660 +399000,3,1.75,1620 +315450,3,1.75,1130 +600000,3,1,1310 +247500,4,2,1710 +330000,3,1,2140 +500000,4,2.25,2350 +367500,3,1,1570 +560000,3,2.5,2780 +655000,4,1.75,2540 +530000,5,2.75,2500 +270000,3,2.25,2080 +437500,3,2,1760 +575000,3,1.75,1760 +278000,4,2.5,1940 +568500,4,2.5,3010 +280000,4,3,2460 +250000,2,1,750 +247500,3,0.75,1300 +1.25E+06,5,2.75,3710 +535000,4,2.5,2360 +814842,3,2.5,3190 +340000,4,2.5,2181 +359950,3,1.75,1890 +750000,3,1.75,2610 +1.22E+06,4,2,3090 +370000,2,1,860 +329950,3,1,1000 +500000,3,2.5,2760 +734000,4,2.5,3490 +385000,4,2.5,2960 +230000,2,1,1280 +1.39E+06,4,3.5,3230 +210000,3,2,1830 +293000,3,1.75,1420 +465000,3,1,1580 +449000,3,2.25,1960 +325000,2,1.75,1670 +180000,3,2,1670 +650000,6,3,2960 +665000,4,2.75,2420 +324450,3,2,1420 +588000,4,1.75,2170 +200000,4,1,1310 +383000,4,1.75,1830 +499950,3,2,1360 +549000,5,2.5,3440 +465000,5,3,2010 +450000,3,2.5,2450 +799900,4,2.5,3030 +495000,4,2.5,2480 +1.20E+06,3,3.5,4310 +637000,4,2.5,2120 +589000,4,1,2210 +305000,3,1.75,1400 +600000,4,2.25,2760 +587000,4,2.5,2550 +1.43E+06,2,2.5,2220 +250000,4,1,1320 +515000,3,3,2440 +833000,4,2.75,3780 +860000,3,3.25,4720 +550000,4,3,2360 +180000,2,1,890 +507000,4,1.75,1770 +427000,3,2,1720 +616950,3,3.5,2490 +372000,4,1.75,1890 +290000,2,1,1020 +329990,4,2.75,2420 +393500,3,1.75,1600 +1.55E+06,5,3.25,3370 +240000,4,2.25,1720 +285000,3,1,1090 +382500,3,1.5,1090 +1.93E+06,4,3.75,3600 +800000,3,2.5,2760 +550000,4,3.5,2770 +387846,4,1.75,2520 +367500,4,2,1960 +780500,5,1,1760 +680000,3,1.75,1090 +434400,5,1.75,1960 +370000,2,1,1220 +465000,3,1.75,1730 +323000,3,2,1830 +270000,4,2.5,1600 +1.32E+06,3,1.75,2040 +560000,4,2.5,2710 +450000,3,1,1140 +290000,2,1,930 +354000,3,2,1010 +705000,5,3,2380 +445000,3,2.25,1860 +229900,3,1,1440 +610000,4,2.5,2980 +535000,3,3.25,2670 +437400,3,1.75,2150 +540000,5,2.75,3160 +570000,3,2,1890 +533000,3,2.5,2810 +555000,3,2.5,2690 +239950,3,1.75,1230 +350000,3,1,950 +245000,2,1,1200 +456000,4,1.75,1670 +465000,4,2.25,2140 +445000,2,1.75,1440 +517850,5,2.75,3050 +329000,5,2.75,2570 +512500,3,2.5,1840 +365000,2,1,1250 +450500,3,1,1410 +915000,3,1,1560 +205000,3,1,960 +314000,4,2.5,1870 +496000,2,1,900 +329950,4,1,2050 +375000,4,2,2400 +623000,3,2.5,1850 +310000,4,1.5,1220 +532500,3,3.25,3140 +960000,4,2.25,2410 +598000,4,2.5,3130 +683000,3,2.5,2300 +425000,5,2.5,2840 +533000,5,2.75,1800 +375000,3,1,1190 +250500,3,2,1710 +257000,4,1.75,1900 +218000,3,1,880 +460000,3,2,2060 +255544,3,1,1360 +560000,2,2,1680 +480000,4,2.5,2980 +1.30E+06,5,1.75,2130 +580000,3,2.75,2650 +475000,3,2.5,1700 +1.31E+06,4,2.5,2680 +700000,3,2.5,2530 +590000,3,2.5,2520 +264500,3,2.5,1630 +465000,2,1,730 +290000,3,1,910 +1.82E+06,4,4.5,4510 +416000,3,1,1110 +360000,4,2,1450 +585083,5,2.75,2910 +840000,4,2.75,2600 +81000,2,1,730 +1.29E+06,3,2.25,2440 +326000,4,1.75,2290 +447000,2,1,720 +185000,3,1,940 +439950,3,2.5,1540 +234000,3,1.5,1140 +485000,4,2.5,2100 +750000,4,1.75,2670 +865000,4,2,2750 +287500,4,2.5,2570 +375000,3,1.75,1660 +565000,3,2.25,1700 +260000,4,3,1530 +190000,3,1,1260 +399950,5,2,2760 +275000,3,2.5,1830 +528000,3,2.75,2160 +315000,3,2,1770 +614306,2,2.25,2210 +1.49E+06,3,3.5,4560 +590000,3,2.5,2110 +261500,3,1,1130 +300000,4,2.5,1960 +439000,3,2.25,2230 +277554,5,2.25,2350 +215000,3,2,1340 +1.20E+06,2,2.25,2160 +420000,4,2,1700 +485000,3,2.5,1650 +202500,3,2,1540 +710000,5,3.25,3920 +535000,4,2.5,3250 +260000,4,1.75,1360 +254000,3,2,1480 +600000,4,2.5,2360 +285000,3,2.5,1800 +800000,4,3.75,2540 +165000,3,1,1200 +216500,2,1,710 +387990,4,2.5,2640 +500000,4,2.5,3010 +650000,4,2.5,2770 +646000,4,2.5,2310 +323400,4,3,2060 +300000,3,2.5,1880 +712500,5,2,2280 +550000,3,1.75,1380 +400000,3,1,1180 +255000,4,1.75,1650 +660000,3,1.75,2030 +925000,4,2.25,2110 +534000,4,2.25,2130 +215000,3,1,1690 +1.95E+06,3,2.5,2510 +1.40E+06,5,4.25,3530 +212000,3,1.75,1470 +265000,3,1.75,1840 +400000,3,1.75,1860 +311500,4,2.5,1940 +2.33E+06,4,3.5,4420 +225000,2,1,800 +1.25E+06,4,2.5,3700 +380000,3,1,1400 +600000,4,2.5,2250 +600000,3,2.25,2230 +315000,3,2.5,1950 +847000,5,1,2550 +730000,4,2.5,2750 +1.06E+06,4,2,2290 +1.62E+06,4,2.25,2350 +664000,2,1.75,1720 +454450,4,3,2810 +341000,3,1,940 +276693,4,1,1190 +185000,2,1,1390 +160000,2,2.5,1660 +270000,4,2.5,1920 +300000,4,1.5,1460 +264950,3,1.5,1370 +209950,2,1,1050 +850000,3,2.5,3360 +645000,4,2.5,3160 +855000,4,2.25,2480 +632500,4,1.5,2720 +289950,3,2.5,2070 +850000,2,1.75,2170 +565000,4,2.75,3260 +792000,3,2.5,2250 +260000,3,2.25,1950 +585000,3,2,2220 +295500,3,1.75,1330 +329000,4,2,1190 +750000,3,1.75,2770 +495000,4,2.5,2310 +672500,3,1.75,1580 +1.31E+06,5,3.25,2800 +405000,3,2.5,1500 +620000,3,1.75,2140 +615000,4,2.25,2330 +887000,6,2.25,3830 +1.06E+06,4,2.75,4510 +753000,4,1.75,2160 +1.60E+06,3,2.25,3170 +3.71E+06,4,3.5,5550 +365000,3,1.5,1520 +870000,4,2.75,3410 +321000,4,2.5,1830 +280000,3,2.5,1550 +288000,3,2.5,1520 +248500,3,2,1240 +330000,4,2.5,2380 +740000,5,3.5,2720 +445000,3,2.5,2210 +198500,2,1,1050 +280000,7,2.5,1940 +336500,3,2.25,1420 +267000,3,2.5,1690 +315000,3,1,1160 +545000,4,2.5,2040 +274950,3,1.75,1840 +500000,2,1,1440 +299000,3,1,1390 +420000,3,2.5,1470 +620000,3,2.5,1776 +575950,3,2.25,1640 +666500,4,2.5,2860 +180000,4,1.5,1740 +261350,3,1.75,1390 +1.03E+06,4,3.5,2730 +390000,3,1.75,1435 +253500,3,1,1640 +625000,4,2.5,2630 +255000,4,2.5,1580 +257000,3,2.5,1740 +869000,2,1.75,1900 +745000,4,2.5,3130 +1.35E+06,4,3.5,3500 +350000,3,1.75,2130 +475000,3,2.5,950 +540000,3,2.5,1720 +175000,2,1,830 +100000,2,0.75,660 +890000,5,1,2590 +280000,3,2.5,1600 +1.05E+06,4,4.25,4390 +486000,4,2.5,3560 +670000,5,2.5,2860 +480000,3,2.5,1640 +440000,3,1.75,1500 +1.50E+06,3,3.25,3990 +743700,4,2.5,2610 +449950,3,1.75,1470 +367000,2,1,700 +1.19E+06,4,3.25,3960 +201000,3,1,900 +575000,3,1.75,2010 +295000,3,2.5,1940 +190000,3,1,1510 +742500,2,3,2020 +875000,6,3.5,4430 +1.39E+06,4,3.5,4010 +600000,4,2.25,3070 +207000,3,1.5,1460 +650000,4,2.75,3260 +275000,2,1,830 +1.20E+06,4,2.5,2390 +262500,3,2,1130 +399000,2,1,1120 +139000,4,1.5,1410 +575000,3,2.5,1750 +580000,2,1,1040 +468000,3,2.25,1630 +230000,3,1,1380 +675000,4,4,3680 +318000,3,1,1250 +332100,5,3.5,2660 +175000,2,1,620 +817000,4,2.25,2600 +1.20E+06,4,3,2150 +525000,3,1.75,1470 +189000,3,1,1380 +629950,3,2.5,1680 +641500,1,1,1000 +490000,3,2.25,1630 +415000,3,1.75,1790 +250000,2,1,890 +781000,3,1.5,1290 +400000,4,2.25,2420 +935000,4,3,3680 +575000,4,2.5,3020 +1.66E+06,4,3.25,4240 +302300,5,2.75,3130 +355000,2,1,900 +1.54E+06,3,2.25,2880 +926250,4,1.75,2390 +300000,3,1.75,1450 +361500,3,1.75,1070 +616000,3,1.5,1740 +395000,2,1.75,1210 +245000,3,1.5,2100 +206000,3,1,1060 +706000,4,2.5,3280 +578000,3,1.5,1660 +341950,5,3,3070 +305000,3,1,1150 +575000,3,2.75,1710 +330000,3,1,1180 +445000,4,2.25,2130 +333000,3,1,1050 +598500,4,2.5,2520 +225000,2,1,700 +570000,4,2.5,2640 +630000,5,2,2330 +779000,5,2.25,2830 +760000,4,3.5,3720 +322968,5,1.75,1890 +595000,4,2.5,2910 +321000,4,1,1300 +653000,3,2.25,2770 +750000,4,1.75,2520 +530000,3,1,1340 +352750,2,1.75,1060 +424950,4,2.5,2480 +427000,5,2.75,2220 +558000,4,2.5,3220 +438200,2,2,1600 +340000,1,1,640 +830005,4,3.75,3610 +548000,4,3.25,3420 +411715,3,1.75,1840 +865000,4,4,2790 +1.75E+06,6,4.25,5860 +688000,3,3,3450 +399950,4,2.5,2350 +555000,3,1,1250 +677000,3,2,2000 +539000,3,2,2260 +410000,3,1.75,1510 +472000,2,2.25,1800 +755000,3,2.5,2420 +269900,5,1.75,1750 +667400,4,2.5,2660 +1.22E+06,3,2.25,2640 +544000,3,2.5,1460 +800000,2,1,1570 +315000,3,1,1010 +227000,4,1,1200 +765000,4,2.5,4040 +625000,3,3,1820 +1.88E+06,4,5,5810 +822600,4,2.5,3010 +515000,4,2.5,1910 +377000,4,2,1640 +600000,3,1,1480 +525300,4,1.75,2520 +760000,4,3,2840 +202000,2,1,840 +470000,3,2,1730 +810000,3,2.5,3140 +175000,3,1,1480 +440000,4,1.75,1920 +197000,2,1,770 +254000,3,1,1010 +405000,3,1,1460 +416000,2,1,940 +779950,4,2.75,2840 +200000,4,2.75,1910 +658100,4,2.5,2430 +397000,2,1.75,1610 +815000,3,3.75,2780 +345000,2,1,1160 +305500,4,2.5,1850 +340000,3,2.25,2120 +330000,5,2.5,2620 +269000,4,2.5,2060 +349950,3,1,1060 +431000,3,1,1500 +735000,4,1.75,2380 +414000,5,3,3045 +619500,3,2.5,1700 +675000,3,1.75,1240 +380500,3,1,1410 +253000,3,1.5,880 +157500,2,1,740 +627000,4,2,2030 +469500,4,2.5,2090 +319950,2,1,920 +249500,3,1,1180 +485000,3,1,1260 +1.13E+06,5,3,3690 +314500,3,1.75,1700 +220000,2,1,770 +444950,3,2.5,2020 +598000,4,2.5,2030 +699850,4,3.5,2690 +595000,3,2.5,1750 +735000,4,2.5,3270 +542500,4,2.5,2330 +450000,3,1.75,1720 +298500,3,2,2420 +403950,2,1,710 +271000,2,1,710 +335000,2,1,1510 +305000,2,2.25,1610 +630000,3,3,1880 +253000,2,1.75,1220 +395000,4,1.75,2060 +265000,3,2.5,1340 +225000,2,1,1030 +338500,4,2.5,2717 +300000,2,1.75,1360 +255000,2,1,1260 +337000,4,3,2240 +324900,3,2.25,2080 +821000,3,2.75,2760 +500000,4,2.75,3000 +885000,4,3.5,3310 +360000,4,2,1630 +304000,3,1,900 +376000,2,1,880 +425000,4,1.5,1620 +1.18E+06,3,1.75,1610 +187000,3,2.5,1730 +710000,2,1.5,1640 +585000,3,1.75,1840 +1.40E+06,5,4,4700 +1.98E+06,4,3.5,4500 +250000,3,1.75,1780 +950000,4,2.75,3800 +725000,3,2.5,2980 +505000,4,2.5,2780 +90000,1,1,560 +400000,4,2,2060 +407000,3,1,1140 +651000,3,1.5,1890 +485000,3,2.25,2090 +460000,4,2.75,3460 +369000,2,1,1320 +355000,2,1,1240 +155000,2,1,810 +1.00E+06,3,1,1880 +419625,4,2.5,2680 +435000,3,2,2040 +379000,4,1.75,2180 +293000,4,2.25,1870 +592100,4,2.75,2310 +362000,3,1.75,1120 +227000,3,1,1340 +335500,3,1.75,1260 +213000,3,1.75,1200 +338000,5,2.5,2400 +163500,3,1,940 +199988,2,1,860 +1.19E+06,3,2.25,2390 +320000,4,2.5,3130 +450000,6,2.25,3550 +249900,2,2,1470 +223000,2,1,910 +631000,4,4,2630 +350000,4,2.25,1780 +279000,3,1.75,1430 +310000,5,2,2730 +185000,2,1,900 +445000,3,2.5,1740 +365000,4,2.5,2905 +333500,3,1.5,2230 +385000,3,2.25,1680 +345000,3,1.5,1240 +1.26E+06,3,3,3230 +440000,4,2.5,2560 +444500,3,2.5,2600 +340000,4,1,1200 +680000,4,1,1660 +420000,3,1.75,1140 +438500,3,2.25,3050 +109500,2,1,800 +461000,4,2.75,1700 +968000,4,1.75,2630 +355000,3,1.75,1960 +249000,3,1.5,1180 +256500,5,2.5,1960 +1.81E+06,5,2.5,4250 +269000,3,2.25,1950 +1.35E+06,4,3.5,3600 +885000,3,2.25,2060 +455000,3,2,1640 +980000,4,2.5,2730 +412500,3,1.75,1530 +740000,4,3.5,3060 +1.30E+06,4,2.25,2860 +326000,2,1.5,1030 +568500,4,2.5,2460 +620000,4,2.5,2500 +283000,3,1.75,1830 +875000,6,3.25,2820 +1.31E+06,4,2.25,3750 +289950,3,2.5,2070 +252500,3,2.5,1780 +376000,4,2.25,2200 +635700,4,2.5,3240 +710000,4,2.5,2880 +440000,3,1.75,1570 +439000,3,2.5,3180 +455000,2,1.5,1310 +225000,2,1,910 +250000,3,1,1460 +585000,4,3.25,3410 +685000,3,1.75,2720 +420000,5,2.75,2280 +245000,2,1,670 +275000,4,2,1480 +270000,3,2,2330 +767250,4,3,2170 +229000,3,2,1760 +400000,3,1,1240 +2.20E+06,5,3.25,5210 +665000,5,2,2800 +500000,4,2.25,2060 +355500,5,2,2360 +369000,4,2.5,2370 +338500,2,1,720 +256000,3,1,950 +470000,3,2.5,1980 +675000,3,2.5,2540 +369950,4,2.75,2760 +615000,5,3.5,2950 +1.20E+06,5,3,3640 +950000,3,1.75,2150 +799500,4,2.5,2760 +187000,2,1,840 +598000,5,2.25,2890 +429950,3,2.25,2060 +347950,5,2.25,1700 +851000,3,2.5,3560 +205000,3,1,1210 +225000,3,2.25,1590 +705000,4,2.25,2620 +535000,5,2.5,3190 +222500,3,2,1450 +313500,2,1.5,1270 +632000,3,2.25,2730 +467000,3,2,1840 +339000,3,2.25,1970 +712000,3,2.75,3200 +335000,3,1,1060 +470000,3,3.25,1740 +367000,3,1,810 +440500,3,2.5,2460 +305000,4,1,2100 +635000,3,1.75,1530 +1.02E+06,3,2.25,1670 +342000,2,2.5,1175 +283000,3,2.25,2130 +430000,4,2.75,2470 +245000,4,2.5,1700 +355500,3,2.5,2600 +395000,3,1,1460 +324900,4,2.25,2010 +660000,3,1.75,1320 +570000,3,2.5,3150 +552321,3,2.5,1960 +1.10E+06,2,1.75,2050 +237000,3,1.5,1800 +402000,2,1,1210 +470000,3,2.25,1830 +395900,3,1.75,1880 +442000,2,1.75,860 +795000,4,2.75,2890 +190500,3,2,1390 +808000,4,2.75,3340 +500000,4,2.5,2040 +775000,4,2.75,3010 +300000,5,1.75,2110 +496000,5,1.75,2110 +448000,4,2.5,2510 +645000,2,2.25,2770 +464600,3,1.75,1120 +590000,3,1,1530 +399000,3,2.5,1800 +305000,2,1,1030 +478000,3,1.75,1210 +598800,1,1,1090 +430000,4,2.25,1790 +433000,4,1.5,1550 +420000,4,2.75,2400 +585000,4,1.75,2470 +255000,3,1,1170 +305000,3,1,1120 +396000,4,1,1040 +347500,4,2.5,2460 +900000,4,2.5,3690 +425000,3,1.75,1960 +429000,3,2.5,1920 +540000,3,2.25,1670 +324950,3,2,1340 +1.05E+06,3,2.25,2610 +221000,4,1.75,1540 +405000,3,2,1640 +1.15E+06,3,2.5,2100 +588000,4,1.75,1930 +234950,3,2,1430 +580000,4,1.5,2430 +637000,5,3,2460 +704000,4,2.25,2490 +210000,2,1,880 +772000,4,2.5,2110 +763000,4,1.75,1850 +213500,2,1.5,2060 +255000,2,1,1360 +423500,3,2,2000 +520000,3,1.5,1810 +550000,3,2.75,2230 +795000,3,2.75,1820 +495000,4,3,2740 +455000,4,2.5,2710 +85000,2,1,910 +239000,4,2,1980 +184900,3,1,1040 +386000,4,2.25,2810 +415000,4,2.5,2000 +387000,3,1,1530 +2.14E+06,6,4,5110 +685000,4,2.25,3133 +340000,4,2.5,2020 +422000,2,1,750 +442000,3,2.5,1980 +280000,3,1,1200 +1.15E+06,5,2.5,3580 +279000,3,2.5,2010 +569000,4,2,1730 +1.36E+06,5,3.5,5960 +209950,2,1,860 +468000,3,1.5,1370 +237100,3,1.75,1360 +336000,4,2.5,2530 +500000,4,2,1680 +290000,3,2.5,1580 +1.19E+06,7,3.5,3890 +365000,5,2,1600 +146300,3,1,1200 +554000,3,1.75,1760 +424000,3,2,1670 +1.35E+06,4,3.5,4640 +508500,4,1.5,1800 +244500,3,1.75,1210 +206000,2,2.5,1280 +643500,3,2,1650 +372500,4,1.75,1590 +630000,5,2,1900 +418000,2,2.5,1500 +425000,4,2.5,2689 +800000,4,2.75,3250 +208000,2,1,960 +476000,3,1.75,1650 +277500,3,2.5,1690 +478000,3,1.75,2790 +890000,4,2.75,2310 +450000,3,3.5,1790 +205000,3,1,1230 +665000,3,2,1620 +518000,4,2.75,2440 +465000,4,2.25,2100 +330000,3,2.5,3040 +449400,4,3,2490 +829000,3,2.75,2690 +450000,4,1.75,2190 +310000,3,1.75,1490 +615000,3,2.25,2530 +605000,3,2,2060 +437500,3,2.25,1970 +545000,3,1.75,1400 +770000,3,2.5,3680 +600000,5,2.25,3000 +560000,3,1,1440 +1.92E+06,5,5.75,7730 +457000,3,1,1170 +585000,2,1,1770 +560000,3,2,1860 +345000,2,1,770 +550000,4,3.5,3820 +589950,4,2.5,3190 +327000,3,1.5,1320 +800000,2,2.25,1730 +150000,3,1,1010 +425000,2,2.5,1140 +350000,3,1,860 +273000,3,1.75,1540 +750000,4,2.25,2160 +240000,3,1.5,1450 +400000,3,1.75,1830 +230000,3,1.5,1630 +372000,4,2.5,2500 +459500,3,1.75,1470 +582000,3,2.5,2380 +465000,4,2.5,2170 +386000,3,2,2120 +546000,3,2.5,1530 +278000,3,1.75,2710 +540000,3,2.5,2860 +529000,4,1.75,2800 +554000,4,1,1120 +210000,3,1,1730 +225000,2,1,1010 +561600,4,2.5,2350 +300000,6,5.25,2860 +1.65E+06,4,3.5,4285 +1.02E+06,4,3.75,4060 +150000,3,1,1310 +400950,2,1.75,2320 +620000,4,2.25,2210 +449000,4,2.75,2090 +630000,4,2.5,2240 +336000,2,1,1180 +299950,4,1.75,1560 +352500,4,2,1970 +150000,2,1,840 +175000,2,1,840 +305000,3,2,1830 +2.57E+06,4,3.75,4475 +607500,3,1.5,1800 +505000,2,1,1250 +280500,3,1.75,2440 +610000,3,2.5,2910 +381000,5,2.75,3060 +482000,5,2.25,2230 +379950,3,1,1270 +2.50E+06,4,4.5,4300 +425000,3,2.25,1580 +580000,4,2.25,2570 +605000,2,1,860 +194000,1,1,820 +546200,4,2.25,2090 +1.40E+06,4,3.5,3560 +315000,3,1.75,1860 +465000,3,1.5,900 +330000,2,1,1160 +795000,4,2.75,3100 +265000,4,2.25,2300 +1.30E+06,4,2.5,3110 +126500,3,1,1130 +760000,4,2.5,2920 +540000,2,1.25,1230 +446000,5,2.75,2190 +170000,1,0.75,850 +379000,3,2.5,1500 +1.40E+06,9,4,4620 +800000,4,2.75,3150 +260000,3,1,1300 +820000,5,2.5,3160 +449950,3,1.75,2070 +392000,3,2.25,1790 +465000,3,2.5,1650 +449950,4,2.5,2070 +520000,3,1.5,1580 +546800,4,2.25,2170 +825000,4,2.75,2220 +337000,3,1.75,1440 +333000,2,1,720 +380000,2,2,1120 +280000,3,2.5,1970 +202000,3,1.5,1420 +585000,4,2.5,2250 +435000,4,2,2630 +1.20E+06,4,3.5,4740 +364000,2,2.25,1280 +300000,3,1,1260 +558000,2,1.75,1930 +199950,1,1.5,1048 +515000,3,2.25,1640 +590000,4,2.5,2380 +813500,4,2,2530 +725000,4,2.5,2700 +490000,3,2.25,2330 +277000,3,2.25,2160 +325000,4,1.5,1470 +649800,4,2.5,2280 +425000,3,1,1280 +460000,2,1,850 +750000,3,3.25,4610 +469000,5,2.5,2690 +566000,4,1.75,2440 +407500,3,2.5,1930 +353500,2,1,800 +524000,3,2.25,2430 +264950,4,2.5,1990 +547500,3,2.5,2550 +264500,3,2.25,1370 +507500,3,2,2020 +560000,3,3.5,1560 +995000,5,4,5610 +835000,6,2,3560 +440000,3,1.5,2120 +1.02E+06,3,2.5,2920 +300000,2,1,1340 +125000,3,1,1230 +986000,4,3.5,2840 +315000,4,2.5,2080 +320000,4,2.5,2070 +972000,4,3.25,4010 +760000,3,2.5,2190 +265000,4,3,1730 +355000,2,1,1250 +300000,3,1,1300 +474950,5,2.5,2080 +470000,4,2,2180 +437500,3,1,1630 +520000,2,1.5,1840 +237600,2,1,1370 +162950,2,1,950 +457000,3,1.75,1690 +635000,3,2.5,1780 +735000,4,3,2840 +910000,2,2.5,2000 +346500,3,3.25,1570 +655000,4,2.5,2370 +425000,3,1.75,1610 +137000,3,1,1300 +557500,3,2.5,2620 +415000,4,2.25,3060 +830000,5,2.25,2780 +949000,4,3,4270 +420000,3,1,1310 +353000,2,1,1100 +560000,3,1.75,1480 +445700,3,2.5,1270 +226000,4,1,1270 +358000,3,1,890 +501000,3,1.75,1480 +609000,4,2.5,3240 +734950,4,3.25,4280 +725000,5,2.5,3210 +350500,3,2.25,1870 +610000,5,2.5,3990 +605125,2,1,1160 +1.39E+06,4,2.25,2940 +550000,3,2.25,1850 +335000,2,1.75,1060 +397000,3,2,1100 +240000,3,2,1190 +240000,3,2,1030 +262500,2,1.5,1140 +440000,3,1.5,2260 +160000,3,1,1140 +427000,4,1,1860 +920000,4,3.5,4080 +2.30E+06,4,2.5,3280 +480000,4,2.5,2870 +615000,4,1.75,2300 +736500,3,2,2230 +542500,3,2.5,1920 +191000,2,1,700 +730000,4,2.5,2740 +1.23E+06,5,2.25,3440 +129000,1,1,650 +284000,3,1.5,1500 +645000,3,2.5,2490 +218000,3,1.5,1330 +675000,4,3.5,3190 +575000,3,2.5,1590 +225000,2,1,830 +626000,3,2.25,1810 +499950,4,2.5,2910 +405000,4,1.75,2180 +152500,3,1,1090 +325000,4,2.5,2160 +475300,3,1,2110 +485000,3,1.75,2180 +720000,3,2.5,2100 +465000,3,1.75,1410 +489000,3,1.5,1020 +3.10E+06,5,5.25,5090 +288000,3,2.25,2090 +225000,3,1.75,1350 +499000,3,1.75,2650 +632000,5,3,3520 +580000,3,2.5,2040 +730000,4,1.5,2340 +325000,4,2.25,1770 +421000,3,1.75,1100 +316000,3,2.5,1490 +415000,2,1,1460 +401000,3,2.25,1350 +229950,3,0.75,1030 +539950,3,1.75,1820 +335000,3,2,1170 +339000,3,2.5,1450 +414950,4,1.75,2200 +650000,4,2,1610 +445000,3,2.5,2690 +295000,3,2.25,1850 +975000,4,2.25,2250 +296500,3,1.5,1580 +440000,4,2.75,2030 +420000,5,1.5,1890 +302000,3,2.5,2140 +350000,4,1.75,1770 +667000,3,1.75,3320 +645000,3,2,1640 +430000,4,2.75,1820 +413000,4,1,1410 +420000,3,1,1240 +495000,3,2.25,1780 +2.19E+06,4,4.5,4240 +965000,4,2.5,3570 +500000,4,2.5,1900 +636100,3,1,1010 +720000,4,2.5,2870 +298000,3,1.75,1620 +409000,2,1.75,1480 +370000,4,2.5,2650 +230000,5,1,1410 +290000,3,2,1360 +420000,4,2.25,2930 +917000,4,2.5,3500 +957000,5,3.25,3160 +482000,3,2.25,1710 +488000,3,1.75,2180 +760369,5,2.5,2870 +170000,2,1,1500 +625000,3,2.5,2120 +357000,3,1.5,1590 +583000,3,2.25,1830 +173250,3,2,1210 +414050,4,2,1590 +400000,3,1.75,1050 +537000,3,2,1550 +465000,4,2.25,2070 +425000,3,2.25,1740 +445000,4,2,1700 +179950,2,1,1200 +275000,3,2.5,1710 +190000,4,2.5,1840 +385000,3,1.75,1900 +303000,4,1,2300 +165000,3,1,970 +600000,2,2,1270 +710000,3,2.25,3130 +875000,5,3.25,4230 +269950,3,2.5,1480 +838000,4,2.5,3310 +670500,4,2,1590 +420000,4,1.5,1690 +370000,3,1.5,1690 +360000,3,1.75,1500 +562500,4,2.5,2320 +360500,3,2.5,3300 +389999,3,2.25,1445 +450000,4,3,1890 +247500,4,2,1760 +208000,3,1,1050 +455000,3,2.5,1980 +379400,4,1.75,2120 +190000,3,1.5,760 +326188,3,1,1300 +168000,2,2.5,1160 +314000,4,2.5,2340 +630000,4,2.75,2710 +550000,3,1.75,1440 +530000,4,2.25,1980 +637500,3,1.75,1680 +400000,3,2.5,1390 +700000,5,2.75,3100 +272000,3,2.5,1680 +600000,4,2.5,2710 +450600,2,1,840 +550000,3,2.25,2090 +225000,3,1,1120 +132825,3,1.5,1210 +219950,3,1.5,1210 +580000,5,2,1940 +568000,3,1.75,1930 +406000,3,1.75,1270 +469000,3,1.75,1680 +415000,3,2.5,2090 +390000,3,1.5,1000 +251000,3,1.75,1350 +750000,3,2.5,3280 +845000,4,2.5,2390 +350000,3,1.5,1860 +322000,3,1,1380 +664500,4,2.25,3070 +988000,3,1.75,2190 +625000,2,1.75,1990 +675000,2,1,930 +503000,3,1.75,2070 +431000,4,2.25,2170 +250000,3,1.75,1910 +268500,4,2.5,2100 +1.07E+06,6,3.25,3560 +295000,4,2.5,2290 +780000,3,2.25,2130 +354000,3,2.5,2160 +305000,2,1,860 +733000,5,2.75,2880 +640000,4,2.75,2100 +840000,4,2.5,2360 +1.48E+06,5,3.25,3680 +525000,3,1,1560 +625000,4,2.75,1680 +350000,3,2,1380 +650000,4,2.75,2610 +435000,2,1,870 +660000,3,1,1210 +350000,3,1,1150 +435000,3,2.5,3110 +375900,6,1.5,2550 +272000,3,3,2430 +233000,3,1.75,1460 +500000,4,1.5,1330 +540000,4,1.75,2040 +712000,3,2.5,2375 +425000,4,2.5,2480 +242000,3,1.75,1580 +515000,5,3.25,2740 +415000,4,1.75,1920 +375000,3,2.75,2200 +182500,3,1,910 +310000,3,1.5,1860 +360000,3,1.75,1510 +889000,4,3.5,3920 +450500,2,1,1330 +342000,4,2.25,1964 +413000,3,2,1520 +960000,5,4,3720 +180000,2,1,770 +770000,4,2.5,3210 +224400,3,1.75,1070 +280000,3,1.5,1430 +500000,3,2.5,1670 +153000,2,1,710 +385000,3,2.25,1920 +325000,2,1,750 +315000,4,3,2210 +294999,4,2.5,1660 +175000,3,1.75,1910 +299000,3,1.75,1910 +146000,2,1,780 +290000,3,2.25,1650 +1.78E+06,3,3.25,3230 +367500,2,1,810 +535000,4,2.5,2750 +334999,3,2.5,1650 +655000,3,1.75,1960 +1.30E+06,4,3.5,2790 +480000,4,2.25,2230 +465000,3,1.5,1280 +297950,3,2,1240 +590000,3,2,1860 +805000,4,2.75,2410 +204250,3,2.25,1960 +500000,3,2.25,1710 +490000,4,2.5,3480 +2.50E+06,4,3.75,3480 +750000,3,2.5,2960 +405000,4,2.5,2670 +209995,2,1,700 +680000,4,2.5,2830 +355000,3,1.75,1120 +280000,2,1,1310 +385000,3,2.25,1710 +505000,4,2.75,2200 +429900,4,3.25,3310 +560000,4,2.5,2280 +231000,3,2,1640 +135000,2,1,750 +800000,4,3,3520 +420000,3,2.5,2720 +360000,3,1,1660 +642000,4,2.5,2560 +379950,3,2,1080 +745000,3,1.75,2050 +630000,4,2,2670 +250000,3,2.5,1730 +275000,3,1,990 +435000,6,3,3560 +175000,2,1,700 +560000,4,1.75,1880 +325000,4,2.25,1870 +1.19E+06,3,2.75,2500 +399950,3,2.5,2570 +752000,4,2.5,2940 +1.20E+06,4,3.5,3930 +400000,4,1.5,2150 +240000,3,2,1330 +640000,5,2.5,3220 +564450,3,2.5,2710 +300000,3,1.5,1630 +286000,3,2.5,1680 +531800,3,2.5,1930 +502000,4,2.25,2140 +993500,4,2.25,4070 +450000,3,1,1350 +997950,4,3.5,4270 +526000,3,1,1320 +335000,3,1.75,2100 +187250,2,1,710 +735000,3,2.25,2350 +425000,3,1,1180 +110000,3,1,1250 +305000,3,2,1490 +212000,3,1,1000 +1.38E+06,5,4.25,4050 +298950,5,2.25,2300 +525000,3,1.75,1330 +707000,4,3.25,3200 +695000,3,2.75,2590 +796500,3,2.75,2590 +420000,4,2.5,2030 +625000,5,2.5,2700 +620000,3,1.75,1670 +1.45E+06,5,2.75,3090 +549950,5,2.5,2650 +275000,4,2,1440 +705000,3,2.5,2820 +197000,3,1.75,1690 +265000,3,1.75,1420 +297000,4,1.75,1790 +207500,3,1.75,1320 +410000,3,2.5,1509 +268000,3,2,1610 +330000,4,1.75,1550 +417500,3,1,1160 +760000,4,2.25,2500 +499000,3,2.5,1540 +620000,4,2.5,1910 +315000,3,2.5,2340 +624950,3,2.5,2060 +525000,3,2.25,1960 +300000,2,1.5,1150 +299900,4,2.75,2330 +299000,3,2.5,2210 +1.88E+06,4,2.75,3260 +265000,4,1.75,1900 +280000,2,1.75,1610 +124740,3,1,1340 +1.09E+06,3,2.75,3170 +1.97E+06,8,3.5,4440 +219000,4,1,1370 +569950,5,1,1420 +212500,2,2,1030 +680000,3,2.25,1820 +1.46E+06,4,1.5,2650 +300000,3,1,910 +629950,3,2.5,1680 +349900,2,1.75,1550 +690000,4,2.5,2780 +1.45E+06,5,4,4070 +1.29E+06,3,2.5,3240 +696000,4,3.5,3650 +650000,3,2.25,2180 +640000,3,3.5,2480 +499950,5,2.5,3180 +490000,4,2.5,3630 +685000,5,2.5,3160 +387500,4,1,1370 +401750,2,1.5,1070 +254950,4,2,2180 +500000,4,2.25,2420 +856500,4,2.5,3290 +552000,3,1,1430 +506500,4,2.5,1890 +500000,3,2.25,1760 +280000,4,2.75,2230 +308000,3,1.75,1630 +613500,3,2.5,2350 +255000,3,1.75,1550 +545000,3,2.5,3550 +620000,4,2.5,2720 +450000,3,1.75,1740 +279000,4,1.75,1840 +625000,3,2.5,2010 +274950,3,1.75,1670 +423000,3,1.75,1820 +350000,2,1,720 +305000,4,1.75,2370 +368000,3,1.75,2120 +232000,3,1.75,1290 +250000,4,3,1800 +220000,3,1.75,1230 +435000,3,2,1380 +350000,2,1,740 +206325,5,2.5,1720 +339000,5,2.5,1720 +399000,4,2.5,2100 +529000,2,1,1210 +640000,4,2.5,2210 +735000,4,2.5,2470 +378000,5,2.5,2760 +775000,3,2,2540 +2.25E+06,3,4.25,5150 +1.35E+06,4,4.5,3420 +380000,4,2.5,2270 +624900,4,2.5,2270 +379770,3,2.5,1470 +340000,3,1.75,1280 +515500,4,2.75,2830 +600000,4,2.25,1970 +400000,1,1,1390 +364000,4,1,1020 +440000,4,2.5,2250 +285000,2,1,800 +669000,3,1,1560 +475000,4,2,2100 +747000,2,1,990 +317000,3,1.5,1060 +390000,2,1,1270 +1.07E+06,4,2.5,2740 +1.21E+06,4,2.75,2470 +580000,3,1.75,1970 +518000,4,2.5,2070 +147500,3,1.75,1010 +555000,4,2.25,2220 +427500,2,2,1090 +1.74E+06,3,2.5,4310 +265950,3,2.5,1490 +247500,2,1,700 +244000,4,1,1450 +578550,3,2.5,2120 +451000,4,2.5,1670 +489000,2,1.75,1810 +190000,2,1,710 +475000,3,3,2540 +485000,3,2,1420 +530000,3,2.75,2440 +379000,4,2.5,2570 +1.63E+06,5,2.5,3090 +739000,3,1.75,2050 +189950,3,1,920 +637500,4,3,2320 +2.23E+06,3,3,3450 +209950,3,1,1660 +460000,3,1,1130 +543500,4,2.5,2550 +376000,4,2.75,2420 +430000,3,2.25,1470 +515000,4,2.5,2030 +580000,7,2.75,2310 +600000,5,3.5,3370 +476800,3,1.75,1900 +815000,3,1.5,1940 +455600,3,2.5,2420 +270000,3,1,1010 +1.20E+06,5,4,2710 +525000,2,1.5,1340 +242000,3,1.75,1310 +715000,4,2.5,2650 +475000,3,2.75,1890 +370000,4,3,2580 +788600,4,2.75,3500 +160000,2,1,1040 +800000,5,1.75,1930 +520000,4,3,2190 +725000,3,1.75,1530 +335000,4,1,1480 +919000,4,2.5,3620 +425000,3,2.75,3370 +420000,5,2.5,2100 +905000,4,3,3370 +435000,2,1,2240 +438000,3,2.5,1650 +725000,4,2.75,2630 +840000,4,1.75,2330 +425500,3,2.5,1970 +853505,3,2.5,2820 +398000,2,1,590 +418500,3,2.5,2060 +826000,3,1.5,1890 +742000,4,2.5,2810 +180000,4,1,1470 +286000,4,1.75,2190 +421200,3,2.5,1440 +390000,3,3,2480 +739000,4,2.5,2780 +499900,4,3,2180 +670000,3,2.25,3340 +842500,3,2.25,2560 +492500,2,2.25,1600 +836500,3,2.5,2230 +334000,2,1,900 +179900,3,1,1010 +563000,3,2,1580 +310000,3,2.5,1890 +335000,4,2.25,2160 +499950,4,2.25,2160 +658500,2,1,1410 +297000,2,1.5,1430 +725000,6,1.75,2380 +780000,3,2.25,2206 +252500,3,1,1030 +330000,3,2.5,1070 +525000,3,2.5,2320 +365000,2,1.75,1270 +500000,4,3,2570 +179950,3,1,920 +440000,3,2,1790 +145000,1,0.75,480 +331000,4,3,2483 +780000,3,2.25,2140 +855000,3,1.75,1900 +225000,3,2.25,1650 +199000,3,1,1510 +550000,3,1.75,2910 +1.43E+06,4,4.25,4960 +805000,3,2,2710 +261000,3,1.5,1810 +347000,3,1,940 +390000,3,2.25,1600 +436000,4,2.5,2640 +1.80E+06,5,3.25,3890 +557000,3,2.5,1630 +135000,3,1,830 +425000,3,2.5,1800 +648752,3,2.25,2060 +1.39E+06,4,3,4040 +630100,4,2.75,1910 +739000,4,2.5,2800 +269000,3,1.5,1320 +250000,3,1,1220 +475000,5,2.75,3100 +290000,1,1,550 +219000,3,1,1080 +416000,2,1,880 +179000,2,1,720 +302000,4,2.75,2030 +565000,4,2,2040 +281700,3,1,1570 +480000,2,1,1500 +775000,4,2.5,3180 +375000,3,1.75,1260 +345000,3,1.5,1390 +300000,3,3,2850 +364950,4,2.5,2070 +410000,3,3.25,2650 +231000,3,1.75,1220 +445000,3,2,1630 +530000,2,2.5,1785 +353500,3,2.5,1260 +209950,3,1.5,1380 +650000,3,1.75,2330 +325000,2,1,840 +257000,3,2.25,1730 +337000,4,2.5,2230 +541000,3,2.5,1790 +577500,3,2.5,2280 +560000,3,2.5,2430 +979700,5,3,3730 +750000,5,3,2230 +407500,2,1,770 +530000,4,1.75,1814 +235000,4,1.75,1920 +715000,4,2.5,1860 +795000,5,3,2750 +465000,4,2.5,1930 +287600,3,2.5,1950 +630000,6,3,2470 +445000,3,2.25,1630 +490000,4,2.25,2110 +565000,3,1.75,1490 +330000,3,2.5,1740 +463000,4,2.75,1900 +1.87E+06,5,4,4510 +219500,3,1,1090 +622200,3,1.75,1720 +474800,2,3.25,1400 +465000,4,2.5,2090 +389950,3,1.75,1580 +650000,4,2.5,2620 +395000,3,2,1500 +304500,4,2.5,2030 +307000,3,1,1020 +485000,3,2.5,1540 +1.56E+06,5,3,3910 +650500,5,4.25,3920 +960000,4,2.5,3180 +710000,3,2.5,2330 +540000,3,2.5,2600 +601000,4,1.75,1950 +463828,5,1.75,3250 +293000,4,1,1130 +597500,3,2.5,2620 +240000,2,1,1120 +284000,3,1.75,1800 +440000,4,1.75,2180 +340000,3,1.75,1960 +363000,3,1.75,1960 +270000,2,1,1150 +365000,4,2.5,2800 +428000,3,2,1310 +600000,3,1.75,2340 +405000,3,2.5,1430 +339900,4,2.5,2340 +275000,3,1,1290 +361600,2,1,760 +325000,6,2,2780 +1.05E+06,3,2,2090 +959750,4,3,3060 +210000,3,1,1110 +258000,3,2,1790 +468000,3,1.5,1830 +710000,4,3.5,2850 +268000,3,1,1420 +115000,2,1,790 +500000,3,2.5,2300 +431000,3,2.5,2440 +241500,3,2,1310 +300000,3,1,1380 +982000,4,2.5,2790 +248500,3,2.5,1360 +665000,4,2.5,2510 +1.22E+06,3,3,4560 +380000,2,1,780 +220000,3,2,1410 +631500,4,2,2530 +386100,3,2,1270 +1.05E+06,4,4.5,3180 +650000,2,1.75,1450 +545000,4,1.75,2040 +870000,4,2.5,2650 +380000,3,1.75,1240 +265000,2,1,820 +645500,2,1,1890 +570000,3,2,1270 +1.20E+06,4,2.5,3350 +605000,2,1,1550 +199500,3,1,920 +445000,2,1,950 +495000,4,1.75,2040 +594000,4,1.75,1870 +465000,3,1.75,1720 +160000,2,1,1020 +340000,4,2.5,2690 +870000,4,2,3090 +249000,3,1.5,1070 +500000,4,2.25,2050 +220000,3,1.5,1660 +368500,5,1.75,2810 +439950,4,2.25,2460 +179900,3,1.75,1230 +490000,4,2.5,2360 +425000,4,1.75,1730 +533300,4,2.5,2770 +447500,4,2,1770 +768000,5,2.75,3030 +285000,3,1.75,2380 +336900,3,1.75,1780 +415000,4,1.5,1540 +500000,3,2.25,1580 +337000,4,2.5,3200 +419950,4,2.5,2220 +290000,4,2.75,2240 +349950,2,1.75,1640 +330000,3,1.5,1170 +965000,4,2.25,3160 +515000,3,2.5,2100 +665000,4,2.5,2600 +265000,3,1.75,1630 +545400,3,2,2850 +350000,4,3,2560 +260000,2,1.5,980 +2.51E+06,3,3.25,5480 +355000,3,2,2160 +879000,3,3,3030 +833000,4,3.5,3560 +261590,2,1,760 +512500,3,3,2260 +600000,2,1.75,1560 +417500,5,3,2270 +970000,5,3,3480 +316000,3,2.25,1900 +397500,4,3,2350 +1.35E+06,3,2.5,2390 +840000,4,2.5,3730 +270000,2,1,1780 +312900,4,2.5,1630 +325000,2,1,1130 +680000,3,1.75,2140 +763000,4,2.5,3220 +375000,1,1,800 +475000,3,2.5,1800 +219000,2,2.5,809 +415000,3,2.25,1820 +90000,2,1,580 +220000,2,1,580 +616000,3,2,2900 +269500,2,1,1140 +395350,2,1,1060 +770000,4,3,2320 +840000,4,2.5,3450 +428950,2,1,1760 +800000,4,3.75,3370 +401000,4,1,1940 +303697,4,2,2520 +355000,3,1,1360 +350000,2,1,800 +754999,4,2.5,3010 +982218,3,1.75,2340 +406500,3,2,1780 +1.65E+06,4,3.25,4200 +565000,2,1.75,1720 +160000,2,1,830 +220000,3,1,1090 +1.28E+06,5,4.25,5040 +970000,5,2.75,3500 +115000,3,1,1080 +124000,3,1,1080 +157000,3,1,1080 +183000,3,1,870 +527000,4,2.5,2830 +407193,4,2,1880 +970000,4,2.75,3600 +535000,4,2.5,2340 +245000,3,2,2040 +337000,3,1.75,1310 +630000,3,2,1470 +320000,3,1.75,1370 +228500,3,1,1080 +293000,3,2.5,1990 +447000,3,1,1310 +226500,3,1.75,1640 +436000,3,2.25,1770 +451000,3,2.5,2050 +315000,3,1,1170 +450000,2,1,1340 +635000,3,1.5,2240 +292500,2,1,880 +329900,3,2.5,2170 +531000,2,1.5,1260 +725000,3,1.75,1880 +355300,3,2.5,1620 +280000,3,2.5,1610 +1.10E+06,4,2.75,3330 +605004,4,2,1370 +260000,2,1,690 +748000,4,2.5,3170 +776000,2,2,1990 +425000,4,1,1080 +230000,4,1,1870 +418000,3,1.75,1670 +440000,4,2.5,2800 +858450,5,2.75,3460 +390000,3,2,1930 +957000,4,3,2370 +507000,3,1,1180 +575000,2,1,1320 +700000,3,1.75,1350 +239950,2,1.5,1068 +253000,3,1,1580 +540000,4,1,1690 +1.55E+06,3,4,5120 +805000,4,2.5,3960 +920000,4,3.25,2420 +496600,3,2.5,1910 +246000,3,2.25,1440 +350000,5,3,2320 +585000,3,2,1670 +450000,3,1.75,1390 +746000,3,2.5,2620 +598555,3,2.5,3040 +820000,3,2.5,2990 +266500,3,2.25,1740 +370000,2,1,2360 +625000,3,2.75,2240 +243500,4,2,1610 +340000,2,1,700 +559950,5,3,2730 +315000,3,2.75,1780 +753000,3,2.5,3070 +800000,3,3,2060 +550000,3,2.25,1360 +465000,3,2,1430 +465000,3,2.25,1840 +710000,4,2.25,2000 +505000,3,2.5,1820 +690000,3,1.75,2330 +217500,2,2,1070 +500000,2,1,930 +325000,2,2,1040 +500000,4,2.25,1960 +721500,3,3.25,2970 +924000,3,1.5,2200 +2.01E+06,6,4.5,3810 +345000,2,1.5,830 +825000,4,3.5,3920 +560000,3,2,2870 +599000,3,2,2560 +211000,3,1.5,1350 +425000,4,2.25,1240 +750000,4,2.75,3210 +479000,3,2.5,1690 +612500,4,2.5,2550 +605000,5,1.75,3240 +1.36E+06,4,2.5,3560 +389900,3,2.5,2160 +710000,4,2.5,3060 +295000,3,2.5,1690 +275250,3,2.25,1520 +250000,4,2.5,2040 +709000,3,2,2360 +399500,4,1.75,1360 +225000,3,2.5,2000 +500000,3,2.5,1650 +364900,3,3,2500 +356000,3,1.5,1140 +616750,3,1.5,2140 +755000,3,2.75,2870 +327500,2,1,830 +605000,3,2.25,1960 +179950,4,1.5,1130 +633000,5,2.75,3630 +349950,4,2,1764 +1.08E+06,3,2.75,2770 +425000,3,2.5,2650 +990000,3,2.75,2500 +410000,3,1,2710 +590000,3,2.25,2490 +242000,3,1.75,1500 +775000,3,2,1160 +680000,4,1.5,1880 +217000,3,2.5,1340 +395000,3,2.5,1960 +572500,3,2.25,2030 +559900,5,3,2200 +845000,3,2,2540 +241000,3,2,1520 +1.33E+06,3,2.25,2360 +475000,3,1.75,1340 +575000,2,1.5,1400 +455000,4,2.75,3030 +839000,3,2.5,3200 +475000,4,1.5,1580 +600000,2,1,2120 +515000,2,1,1640 +425000,3,2.25,1890 +565000,4,2,1710 +498000,2,2,1140 +739000,4,3,2720 +355000,2,1.75,1650 +263000,3,1.75,1790 +375000,4,1.75,1680 +322000,3,1.75,2200 +325000,2,1,830 +290000,2,1,770 +809950,4,2.5,3280 +969500,3,3.25,2080 +665000,4,2.5,2790 +635000,5,3.5,4150 +272450,3,2.25,1780 +427000,4,1.75,1460 +261500,3,1,1410 +488800,4,2.25,2170 +340000,2,1,690 +398950,4,3,3000 +217000,3,1,870 +799000,4,2.5,3170 +160000,4,1,1540 +447000,3,1,1270 +765000,3,1.75,2190 +1.32E+06,4,3.5,4410 +445000,4,2.5,2790 +310000,3,1,1510 +380000,2,1.75,1800 +325000,4,1,2410 +345000,4,2.75,2250 +300000,3,1,950 +530000,4,1.75,2860 +583500,4,1.75,2860 +410000,2,1,1560 +535000,2,1.5,1940 +2.05E+06,4,3.25,3580 +345000,4,2.5,2040 +539000,5,1,1700 +590000,4,2.5,3700 +187000,2,1.75,1050 +270000,3,2,1690 +546000,2,1,1120 +520000,3,1.75,1490 +515000,5,2,2220 +990000,3,2.5,2160 +382000,2,1,870 +1.21E+06,3,1.75,1900 +900000,4,3.5,3370 +675000,3,2.75,3370 +460000,2,1,880 +234000,2,1,940 +399000,3,1,1340 +253500,3,1.5,1440 +475000,3,1.5,1750 +740000,5,3.5,3990 +799000,3,2.5,2860 +390000,4,2.5,1940 +421000,2,1.5,1400 +296500,3,2.5,1770 +895000,4,2,1710 +386000,4,2.5,2810 +424000,3,1,1580 +749000,3,1,1580 +523000,3,1,1440 +389000,4,2.5,2420 +270000,4,1.5,1930 +275000,3,1,1190 +287500,4,2.5,2240 +345000,2,2.5,2550 +427000,2,1,920 +508450,4,1.75,1520 +705000,3,2,1460 +550000,1,1.5,1900 +380000,3,1.5,1430 +539900,3,2.5,2500 +330000,2,1,720 +455000,2,1,1140 +510000,4,4,3530 +315000,3,2,1220 +206000,3,1,1320 +592500,4,3,2170 +744000,3,2.5,2020 +334500,3,2.5,1990 +886000,4,2,2660 +600000,4,2.5,2360 +850000,3,2,2740 +550000,3,1.75,1360 +184900,2,1,1230 +245000,3,1.5,1260 +370000,2,1,1040 +480000,4,2.5,2700 +579000,3,1.75,1800 +339275,3,1.5,1590 +425000,3,2.75,1360 +170000,3,1.75,1370 +950000,4,2.5,3320 +623000,4,2.5,2980 +477000,3,2.5,1350 +330000,3,1,1160 +600000,3,2.25,1480 +570000,3,2,1640 +515000,4,2.5,2680 +805000,4,2.25,2440 +555000,4,2.5,2920 +245000,3,2.25,1780 +638150,4,2.5,2170 +1.65E+06,4,4.5,5550 +269950,4,2.5,2060 +195000,3,1.5,1050 +159100,2,1,790 +550000,3,1,1010 +299000,2,1,1040 +1.38E+06,4,3.5,3130 +249500,2,1,900 +700000,4,1,1470 +275000,4,1,1080 +565000,3,2.25,2440 +425000,4,1.75,2520 +620047,4,1.75,1760 +480000,3,2.25,1820 +515000,3,2.25,1820 +420000,4,2.5,3040 +610000,5,3.25,3490 +849000,4,1.5,2440 +718000,3,1.75,2280 +295000,3,2.25,1980 +871000,5,1.75,2360 +430000,3,3.75,3890 +440000,4,2.5,2300 +405000,2,1,910 +340000,3,2,1140 +675000,4,2.5,2390 +480000,3,1,1150 +362500,5,2,2330 +752888,3,2.5,2420 +255000,4,1.75,960 +283700,1,1.75,1010 +335000,4,2.5,2370 +285000,3,1.75,2880 +278000,4,2.25,2400 +731000,5,2.5,3670 +335000,3,1.5,1140 +334200,3,1.75,1410 +642000,6,1,1530 +540000,4,1.75,1720 +299000,3,2.5,1620 +560000,3,1.75,1570 +852000,5,2.75,1990 +306000,2,1,930 +440000,3,1.75,1550 +517000,4,1,1650 +379000,2,1,800 +360000,2,1,930 +645000,4,1.5,2550 +217000,2,1,720 +255000,2,1,620 +625000,3,2.5,2360 +680000,3,1.75,1760 +440000,3,1.75,2100 +615000,5,2.25,2480 +239000,3,1,1040 +462500,3,2.5,1656 +619400,4,2,2090 +975000,6,2.75,2520 +330000,2,1,700 +985000,4,3.25,4030 +430000,2,1,760 +2.46E+06,4,5.25,6500 +778000,3,2,1840 +219000,3,2,1090 +1.60E+06,4,2.5,2980 +715000,4,2.25,1900 +950000,4,2.5,2790 +425000,2,1,1280 +239000,3,1,1510 +310000,1,1,920 +400000,2,1,700 +428000,2,1.75,1980 +600000,3,1,1440 +415000,4,4,2740 +401000,2,1,1400 +292000,3,1.75,2270 +291750,3,2.25,1310 +227000,3,1.75,1680 +675000,3,2.25,2260 +397500,3,2.25,1350 +206000,2,1.5,1820 +1.19E+06,3,3.5,3380 +360000,4,1.75,2140 +427500,4,2.5,2430 +115000,2,1,940 +559000,3,1.5,2070 +420000,4,1,1510 +550000,4,1.75,2550 +282150,2,1,700 +260000,3,1,1150 +428000,3,2.5,2340 +319950,3,3.25,1510 +1.35E+06,3,2,2070 +552000,2,1,1150 +637000,4,2.75,2190 +213000,4,1.75,1980 +215000,3,1,960 +590000,3,1.75,2180 +390000,4,2.5,2560 +287000,4,2.25,2270 +580000,5,2.75,3550 +424000,3,2,1330 +610000,4,2.5,2110 +1.32E+06,4,3.25,3470 +623500,4,3,1550 +260000,2,1,570 +906000,3,2.5,2030 +330000,3,2,1500 +275000,2,1,920 +290000,3,1,1470 +599950,2,1,1150 +550000,4,3,4180 +289000,3,1.75,1690 +411000,4,2.75,2150 +826000,3,3.25,2330 +400000,4,2,2680 +342000,3,2.5,1740 +475000,2,1.75,1320 +1.21E+06,4,3.5,3150 +455000,4,3,2480 +850000,4,3,3330 +185000,3,1,1010 +850000,6,3.25,4920 +239900,4,1.75,1570 +765000,5,3.75,3580 +437000,3,1.75,2220 +240000,3,1.5,1010 +395000,2,1,1440 +320000,3,1,1230 +525000,3,1.75,1710 +260000,3,3,2390 +450000,3,2.75,2840 +560000,4,2.5,2300 +310000,5,3,2270 +440000,3,2.5,2290 +458450,4,1,1330 +200000,3,1,1200 +430000,3,2.25,2160 +360000,3,1,1120 +311000,4,2.5,2090 +615000,3,3.25,1470 +575000,3,1.75,2270 +2.03E+06,4,3.75,4100 +430000,3,1.75,1440 +400000,3,1.5,1200 +340000,3,1.75,1720 +351000,1,0.75,930 +440000,4,2.5,2400 +298000,4,2.5,1960 +300000,4,1.75,1890 +310000,3,2.25,1590 +500000,4,2.5,2590 +399900,3,1,860 +343000,3,2.5,1270 +415000,2,2.25,1130 +410000,3,2.5,1860 +320000,2,1,1802 +1.99E+06,5,3,4480 +253000,2,1,1310 +630000,3,2.5,2320 +216000,2,1,1130 +540000,3,2.5,2180 +212000,3,1.5,1830 +300000,3,2.75,2340 +969950,3,2.5,2830 +715000,3,1,1610 +1.32E+06,5,2.75,2410 +1.44E+06,4,2.75,2660 +305000,3,1,1030 +458000,3,4,1390 +275000,3,1.75,1580 +550000,3,2.75,2330 +742000,3,3.25,1540 +700000,3,1,1570 +640000,4,3,2940 +352000,3,0.75,1240 +301500,3,1,1410 +630000,4,2.5,2190 +340000,3,2.5,3040 +477500,4,1.75,1860 +285000,3,2.5,1690 +255000,3,2.75,1900 +315000,3,2.5,1600 +830000,6,3,2530 +539950,3,2.25,1860 +980000,3,2.25,2390 +735000,4,2.5,3100 +536000,5,2.25,2650 +575000,3,2,1520 +500000,2,1,1510 +285500,4,1.75,1960 +498000,4,2.75,2270 +412000,2,1,910 +607000,4,2.5,2100 +199000,3,1,1000 +492500,4,2.75,2760 +585000,4,2.5,2840 +326995,3,2.5,1860 +372500,4,2.25,1920 +528000,2,0.75,840 +400000,3,1.5,2390 +344000,4,2.5,2100 +409950,4,3,2430 +625000,3,2,1880 +304950,3,1.75,1350 +381500,2,2,2160 +215000,3,1.75,1430 +345000,5,1.75,2840 +363000,3,0.75,2510 +240000,3,1,1690 +548050,2,2,1930 +314000,2,1,720 +800000,4,2.5,2990 +400000,5,1.75,2300 +247000,1,1,460 +540000,2,1.75,1240 +410000,4,2.5,1900 +525000,3,1.75,2120 +820000,4,2.5,2440 +1.25E+06,4,2.25,3300 +244000,2,1,1180 +275000,1,1,520 +577000,2,1.75,2070 +446950,5,2.5,2250 +457000,3,2.5,2050 +320000,4,1.5,1310 +210000,3,1.5,1250 +220000,4,2.5,2130 +589000,3,2,2250 +435000,4,2,1880 +375000,3,1,1520 +1.74E+06,4,3.5,4010 +545000,2,1.75,1660 +970000,3,2.25,3400 +705000,2,1.75,2320 +915557,5,3.25,3740 +259000,4,1.5,1810 +1.70E+06,2,2.25,3170 +427000,3,1.75,1680 +390000,2,1,930 +363000,3,2.5,2390 +612000,4,2.5,2680 +380000,4,1.75,1790 +230000,4,3,1680 +580000,3,1.75,1570 +770000,3,1,2230 +207200,4,2,1260 +525000,3,2,1790 +925000,3,2.5,2440 +883000,4,2.25,2410 +455000,4,2.5,1780 +343500,3,2.5,1900 +244000,2,1,960 +397000,3,1.75,1640 +180500,2,1,850 +310000,3,2.75,2150 +315000,4,2.5,2780 +718000,3,1,1030 +279950,3,1.75,1930 +689000,3,2.5,2080 +828000,4,2.5,3520 +150000,2,1,890 +505400,3,1.75,1640 +1.68E+06,5,3.25,4860 +217450,3,1,1040 +677000,4,2.5,2820 +361000,2,2.5,1320 +620000,3,2.5,2590 +176000,3,2.25,1540 +330000,3,1,960 +290000,3,2.5,1190 +711000,4,2.5,2770 +295000,3,1.75,1060 +1.10E+06,5,3.25,4010 +257500,3,2,1140 +240000,4,1,1910 +645000,4,2.5,2340 +499000,2,1.75,1170 +321000,3,1,1290 +449000,3,2.5,1810 +515000,3,2.5,1820 +456000,4,1.5,2220 +865000,3,3.75,3830 +515500,4,2.5,2920 +576925,4,2.5,2630 +243000,3,1.75,1320 +253400,3,2,1400 +292000,3,2.5,1600 +271500,3,2.5,1490 +765000,2,2.5,2170 +375000,3,3.25,1280 +382880,3,2,1620 +852500,3,2.5,2630 +475000,3,1.5,1240 +462000,3,1.75,1300 +762400,3,1.75,2430 +330000,4,1.5,1890 +473000,3,2.25,1890 +550000,3,1.5,2440 +449500,3,2.25,1780 +744000,4,2.75,2830 +700000,4,2,2490 +511100,4,2.5,1560 +317950,3,2.5,1980 +542950,3,2.5,2070 +490000,3,1.75,1490 +760000,4,3.5,3090 +475000,3,2.25,1580 +1.70E+06,5,4.5,5190 +435000,3,2.75,2692 +399000,3,2.5,1740 +627000,3,2,1940 +346500,4,2.5,2150 +412000,3,1.5,1320 +845000,4,2.5,3360 +373000,3,1.75,1850 +725000,4,2.25,2880 +376000,6,2.5,2420 +552500,3,1,2020 +365000,5,2,2280 +700000,4,2.5,3010 +315000,4,2.25,2550 +262500,4,2,1540 +660000,3,2.25,2280 +340000,4,2.5,2450 +660500,5,2.5,2950 +280000,1,1,690 +267000,1,1,800 +230000,2,1,1470 +417000,3,2.25,1840 +252000,3,1,1170 +791000,5,1.75,2344 +415000,1,1,1230 +339000,3,1.75,1150 +158000,3,1,1140 +535000,3,1,1660 +818900,3,1,1080 +550000,4,2,1720 +240000,2,1,590 +590000,3,3.25,1290 +369300,3,1.5,1480 +510000,4,2.5,2600 +542500,3,2.5,2040 +262500,3,1,970 +900000,6,3,2620 +1.10E+06,4,3.5,4560 +368000,3,1.75,1750 +825000,4,3.5,3620 +343500,3,2,1660 +273500,4,1,1360 +1.00E+06,3,2.5,2044 +770000,5,3,2370 +400000,3,2,1170 +225000,3,1,1660 +345000,4,1,2020 +450000,3,2.5,2530 +334850,2,1,870 +605000,5,3,3670 +760000,5,3.5,3180 +390000,2,1.5,1870 +488000,3,2.5,1940 +3.30E+06,3,3.25,4220 +1.06E+06,5,4.5,4820 +608000,3,2,2400 +1.39E+06,3,2.25,2930 +299950,2,1,800 +818000,3,3.25,2200 +355000,3,2.5,2400 +1.86E+06,5,3.25,5570 +660000,3,3.25,1980 +2.37E+06,3,2.25,3530 +1.21E+06,4,2.5,3430 +255950,3,2.5,1720 +475000,3,1.5,1930 +362950,4,1.75,2140 +452000,3,1.75,1110 +315000,3,1.75,1970 +330950,3,2.5,1630 +535000,5,2.25,2520 +479000,4,2.25,2270 +340000,3,2.5,1212 +312000,4,2,1890 +305000,3,2.25,1370 +270000,3,2.5,1770 +529999,3,2.5,1710 +587100,2,1,1190 +459800,3,2,1690 +451000,4,1.75,1680 +2.48E+06,3,3.25,4340 +525000,3,2.25,2040 +250000,2,1,1110 +475000,5,2,2040 +235000,4,1.5,1920 +230000,3,1.5,1330 +581000,4,1,1630 +415000,3,1,1520 +522500,3,1,1520 +383000,3,1.5,1340 +315000,3,1.75,2500 +591000,3,2,1460 +750000,4,2.25,3140 +430000,3,1.75,2150 +712000,4,2.5,3140 +510000,3,2.5,2310 +480000,2,1,710 +538000,3,1,1460 +464000,2,2.75,730 +476000,3,2.5,1440 +349500,3,2,1130 +270000,3,2.25,1810 +740000,3,2.5,2710 +395000,4,2.5,2740 +498000,3,2.5,1690 +339900,3,2.5,1470 +539000,3,2.5,2830 +400000,3,1,1410 +225000,3,2.5,2170 +330000,3,2.25,1340 +1.39E+06,3,3,2480 +490000,3,2.75,1990 +260000,4,2.75,2240 +469900,4,2.5,2990 +493000,6,1.75,2120 +740000,4,2.25,2920 +148900,4,1.75,1700 +475000,2,2.5,1620 +415000,2,1,760 +229500,3,1,1230 +1.36E+06,5,3.75,4960 +385000,4,2.5,2030 +230000,3,2.25,1830 +425000,2,1,970 +189900,2,1,1000 +238000,2,1,750 +968060,4,2.5,2620 +921000,4,1.5,2220 +380000,5,1.75,3000 +285000,1,1,1060 +449000,4,2.5,1980 +625000,4,1,1600 +318989,4,2.25,2000 +445000,3,1.5,1310 +750000,3,1,1120 +959000,3,2.5,3320 +330000,3,2.5,2370 +425000,2,1.5,830 +280000,3,1,940 +476500,4,2.5,2250 +556000,3,2.25,2020 +1.86E+06,4,5.25,5240 +637000,4,3.5,4083 +405000,3,2,1450 +397000,5,1,1170 +895990,4,2.75,3555 +259000,3,2,1610 +420000,2,1,960 +518000,3,2.5,1680 +425000,3,1.75,1380 +182500,2,1,1040 +549900,3,1.5,1380 +445000,3,1.75,1850 +452000,2,1.75,1740 +715000,5,1.75,1920 +559000,3,2.5,2010 +3.30E+06,5,6.25,8020 +250000,4,1.75,1860 +1.23E+06,5,4,4390 +276500,4,2.25,2380 +440000,4,2.5,2880 +543200,6,2.25,2820 +250000,1,1,750 +625000,4,2.5,1750 +530100,3,1,1540 +549900,2,1.75,1140 +430000,4,1.5,1560 +835000,3,2.5,2960 +409500,4,2.75,2140 +329000,4,2.5,1600 +940000,4,2.75,2080 +539950,3,2,1560 +579950,4,2.5,2880 +881000,5,3,2510 +362500,3,1,960 +243950,2,1,1120 +658000,4,2.75,3310 +218250,3,1.5,1080 +655000,4,2.5,2860 +255000,3,2,1490 +215000,3,1,1210 +1.27E+06,3,1.75,2240 +2.92E+06,4,4.75,4575 +424305,3,2.5,1600 +494000,4,1.75,2090 +560000,4,2.5,2260 +130000,3,1,1200 +468000,4,2.5,2480 +480000,5,3,2240 +475000,3,1.75,1550 +285000,4,1.75,2130 +765000,5,3,2870 +208000,2,1,1160 +372000,3,2.5,2430 +470000,2,1,900 +451000,5,2.75,2830 +442200,4,1.75,1620 +330000,4,2.5,2510 +335000,3,1.75,1790 +280000,3,2,1640 +625000,3,1.75,2240 +345000,3,2.5,1870 +255950,4,1,1500 +570000,4,1,1490 +685000,3,1.5,2230 +273148,3,1.75,1710 +246500,3,2.5,1620 +349950,5,2.5,2250 +545000,4,2,1700 +403000,3,2.5,1502 +299950,4,2.5,1900 +792000,3,2.5,3320 +418000,5,2.5,1980 +332500,4,1,1670 +337000,3,2.5,2235 +212000,2,1,1070 +542000,2,2.25,1800 +622500,4,2.5,2980 +260000,3,1.75,1670 +525000,3,1.75,2620 +975000,5,3.5,5470 +1.14E+06,4,1.75,3080 +500000,3,1,940 +554000,5,2.25,1870 +343000,4,2.5,2070 +515000,2,1.75,950 +492000,2,1,1290 +655000,4,3,2570 +290000,3,2.5,1600 +952500,4,1.5,2550 +235000,2,1,1010 +323000,3,1.5,1720 +1.05E+06,3,2.5,2200 +265000,0,0.75,384 +200000,2,1,1400 +419995,3,2.25,1830 +1.50E+06,3,3,3110 +455000,3,2.5,1600 +660000,3,3.5,3600 +319000,3,1,1390 +390000,3,1.75,2092 +718500,3,1.5,1200 +474000,2,1,1090 +615750,4,2,2140 +551000,3,2.5,2010 +230000,3,2.25,1500 +790000,4,2.5,3500 +1.23E+06,3,2.5,2660 +325000,3,2.25,1440 +705000,4,2.75,2780 +259000,4,1.75,1580 +306000,3,1.5,1250 +315000,3,1,970 +392500,3,1,1100 +1.07E+06,4,2.25,3240 +350500,2,2.5,1290 +825000,4,3.5,3810 +235000,4,1,1500 +650000,3,2,2660 +675000,4,3,2400 +265000,4,1,1860 +822500,2,1,1450 +705000,3,2.75,2260 +2.63E+06,6,4.75,5540 +685000,2,1.5,1300 +630000,4,2,1610 +1.25E+06,4,3.25,3820 +359000,4,2.5,1820 +784500,4,5,5820 +850000,3,2,2470 +410000,3,2.5,3040 +252000,4,1.75,1120 +618000,5,1.75,1880 +265000,3,1,1070 +465000,3,2,1560 +240000,2,1,870 +217000,3,1,1000 +415000,4,2.25,2520 +274000,2,2,1700 +420000,5,3,2150 +1.06E+06,4,2.75,1590 +1.42E+06,4,5.25,4670 +618500,3,2,1800 +295000,3,1.5,1670 +400000,3,2,1010 +595000,3,2.5,2550 +1.73E+06,4,3,3700 +261000,3,1.75,1350 +780000,5,2.5,1660 +589000,3,1.5,1390 +230000,3,1.75,1720 +690000,4,3.5,2980 +524000,4,2.25,2190 +380000,2,2.5,1230 +357500,3,1,1000 +330000,3,2,2500 +635000,5,1.75,2240 +934000,9,3,2820 +358500,2,1.75,1400 +401000,3,1.5,1470 +270000,3,2,1820 +705000,4,2,2060 +325000,3,2,1670 +384950,3,1,1540 +310000,3,1,1210 +829950,4,2.5,3430 +353000,3,2.5,2550 +170500,2,1,1060 +885250,4,2.5,3670 +2.70E+06,4,3.25,4420 +245000,3,1.5,1550 +469000,3,2.5,1190 +455000,3,1,1300 +305000,4,2.5,2430 +840000,7,4.5,4290 +905000,5,3.5,3500 +219200,3,2,1680 +455000,3,1.5,1250 +195000,2,1,1020 +799000,3,1,1510 +285000,2,1,910 +300000,3,1.5,1320 +83000,2,1,900 +220000,2,1,890 +174500,2,2.5,1240 +695000,4,2.5,2960 +255000,3,1.5,1020 +539000,5,2.25,2590 +552700,2,1,1100 +571500,3,1,1300 +263700,3,1,1200 +3.30E+06,8,4,7710 +186950,2,2,1390 +520000,3,1.75,1430 +358000,3,1.5,1250 +210000,2,0.75,840 +3.65E+06,5,3.75,5020 +543000,4,2.25,2060 +330000,4,2.25,2000 +529000,3,2,1530 +295000,1,1,700 +365000,3,1,950 +473000,3,3,1380 +403500,3,1,1830 +544000,3,1.5,1790 +621000,3,1,1340 +672600,3,2.25,1520 +689800,2,1.75,1370 +613000,3,1.5,1470 +808000,4,2.25,2500 +301000,3,1,1060 +340000,3,1.75,1210 +206000,3,1,920 +550000,3,1.5,1340 +325000,2,1,960 +475000,3,2.5,1630 +432100,3,1.75,1840 +359000,3,2,3085 +490000,3,1,920 +648360,4,1.75,2260 +340000,3,1.75,1730 +545000,3,2,1610 +115000,2,0.75,550 +705640,3,2.25,2400 +300000,3,2.25,1960 +1.65E+06,4,2.75,3190 +1.14E+06,4,3.5,3160 +280000,3,1.75,1550 +245000,4,1.75,1930 +564000,4,1,1170 +849000,3,1.75,2520 +698000,3,1.75,1220 +319000,3,1,960 +1.45E+06,3,3.5,4110 +695000,4,3.5,3310 +680000,4,2.75,2220 +287500,4,2.25,2250 +465000,3,3.25,1510 +335000,3,1,1350 +602000,4,1.75,2420 +482000,3,2.5,2950 +220000,5,1,1260 +206000,4,2,1700 +1.10E+06,4,3,3320 +491150,3,2.5,1470 +390000,4,2.75,2500 +393000,4,2.5,2641 +635000,4,2,2260 +490000,2,1,1160 +770000,4,3.5,3680 +665000,2,2,1615 +287000,3,1,1250 +410000,3,1,1230 +562000,3,2,2510 +475000,2,2,1540 +387500,3,3.25,1860 +580000,5,2,2700 +930000,3,2.5,3290 +625000,3,1.75,2700 +325000,3,2,1570 +235000,3,1.75,1950 +450000,2,1,1380 +745000,4,2.75,2410 +223000,4,2,1200 +630000,4,1.75,1770 +413450,3,2.5,1540 +720000,5,2.75,2860 +339000,3,1.5,1740 +1.12E+06,4,3.5,2830 +839000,5,4,4280 +2.95E+06,4,3.25,3890 +568000,4,2,2340 +269000,3,2,1410 +382000,2,2,1350 +574000,2,2.25,1100 +405000,3,2.5,2070 +572000,3,2.5,2360 +675000,4,2.25,2760 +165000,4,1,1220 +260000,4,1,1220 +196000,3,1,1220 +515000,3,2.5,3020 +810000,4,3.5,3470 +365650,4,2.25,2380 +651000,3,3,2260 +240000,2,1,720 +299000,3,2,1730 +768000,3,2.5,2660 +397380,2,1,1030 +476000,4,3,2890 +315000,3,1,890 +240000,3,2.25,1410 +325000,2,1,810 +160000,3,1.75,1370 +435000,3,2.5,2260 +427500,3,1.75,1430 +450000,5,2.5,2510 +688000,3,1.5,1760 +285000,4,1,1430 +530000,3,3.25,1510 +195000,4,1.75,1320 +250200,3,1.5,1180 +1.10E+06,3,2.25,1560 +732500,3,2.5,2470 +194250,3,2.25,2190 +526000,4,2,1610 +520000,4,2.75,2700 +526000,3,1.75,1530 +1.14E+06,5,4,7320 +202000,2,1,920 +645500,4,2.5,2990 +570000,1,1,720 +325000,3,2,1750 +725000,2,1,2410 +192000,3,1.75,1240 +560000,2,1,1010 +283450,5,2.75,2770 +863000,4,1.75,2800 +815000,4,2,1400 +245000,2,1,1020 +1.32E+06,4,3,2860 +1.16E+06,4,3.5,4270 +480000,3,2.5,2270 +600000,4,2.5,2560 +329950,2,1,900 +299500,4,2.5,2010 +460000,3,2.5,1690 +515000,5,3.5,2310 +405000,3,2.25,1520 +483000,4,1.5,1220 +377000,4,2.5,2170 +568000,4,1.75,2790 +355000,2,1.75,1760 +640000,4,1.75,2100 +270000,4,1,1430 +559950,5,3.5,2450 +515000,4,3,1820 +352000,4,1.75,1850 +595888,3,1.75,1870 +588000,4,2.25,2580 +1.05E+06,4,3.25,3680 +260000,3,1.5,1750 +1.60E+06,4,3.5,3890 +380000,2,1,1000 +802000,2,2.5,2210 +1.33E+06,4,3.25,2850 +710000,4,2.75,2460 +600000,3,2.5,2630 +707900,3,1,1750 +179950,2,1,1100 +683000,4,2.5,2620 +222400,3,2,1200 +517000,2,1.5,1920 +410000,3,2.75,1690 +480000,3,1.75,1680 +430000,3,1.75,3440 +439950,5,1.75,2190 +797500,4,2.5,3270 +379000,4,1.5,1280 +575000,1,1,1310 +247500,3,1,1660 +385000,4,2.75,2700 +423000,4,1.75,1940 +550000,3,1.75,1520 +415000,4,1,1620 +693000,3,2.25,2090 +543000,2,1,1070 +465000,5,1.75,2000 +280000,3,2.5,1020 +1.39E+06,3,1.25,2400 +665000,6,3,2480 +237950,3,1.75,1310 +440000,4,2.75,2420 +618000,2,1,1890 +572000,3,2.25,1860 +725000,3,1.5,2500 +454000,3,1,1970 +535000,4,1,1660 +249000,3,2.5,1850 +395000,4,2.75,1970 +690000,3,2,1890 +526500,3,1.5,1310 +325000,4,1.5,1870 +495000,3,3,1520 +825000,5,3,3070 +383000,3,1.5,1400 +320000,3,1.75,1960 +475000,3,2.5,2680 +275000,3,2.5,2030 +1.15E+06,2,2.25,2320 +455000,3,1.75,1760 +262000,5,1,1870 +390000,4,1,1280 +300000,3,2.25,1730 +746300,3,1.75,2060 +267000,3,1.5,1030 +525000,3,2.5,1720 +570000,3,1.75,1210 +360000,4,2.25,2620 +1.05E+06,3,1,1860 +699950,3,2.5,2510 +375000,4,2.5,2040 +625000,4,1.75,2410 +464050,2,1,780 +470000,5,2.5,2210 +330000,4,2,1590 +537000,4,1.75,2230 +250000,3,2,1560 +835000,4,2.5,2950 +770000,4,1,1480 +650000,4,2,2850 +335000,3,1.75,2390 +350000,3,1.75,1740 +415000,5,2.75,2060 +788000,4,2.5,2680 +640000,4,2.75,3150 +388000,4,2.5,2440 +360000,6,1.75,2230 +692500,6,1.75,2230 +425000,4,1.5,1600 +645000,4,1.5,1600 +340000,3,1,1580 +713000,4,3.25,2840 +430000,3,2.75,2550 +280000,3,2.25,1700 +215000,3,2,1470 +306000,3,2.5,1680 +299900,3,1,1110 +534000,5,1.75,2120 +1.16E+06,3,2.75,2380 +1.17E+06,3,2.5,2670 +199990,2,1,890 +946000,4,3,3140 +295000,4,1,1260 +475000,2,1,920 +750000,5,3.5,2990 +1.23E+06,4,2.5,3120 +183500,3,1,1010 +450000,2,1,1010 +180000,3,1,1020 +707000,5,4.5,3540 +230000,2,0.75,900 +192500,3,1,1100 +309000,3,2.5,1990 +759000,3,1.5,1980 +1.12E+06,4,3.75,4040 +462000,5,1.75,1250 +229000,4,1.5,1820 +399950,2,2.25,1140 +325000,5,2,1730 +512000,2,2.25,1170 +410000,5,2.75,2910 +210000,2,1,970 +325000,4,2.25,2130 +685000,3,2.5,2520 +488000,2,2,1360 +247500,3,2.25,1620 +489000,4,2,2120 +725000,4,1.75,2700 +199950,3,1.5,1370 +670000,5,3,2520 +275000,3,2,1540 +1.00E+06,3,1.75,2610 +255000,3,2,1490 +465000,3,1.75,2760 +259000,3,1.75,1260 +695000,3,3.5,2630 +505000,3,1.75,1800 +631500,2,1,1130 +630500,3,1,1180 +999000,4,2.75,2800 +740000,3,1.5,1830 +650000,3,2.5,2220 +554000,2,2,1870 +400000,3,2.5,2580 +529941,3,2,1660 +310000,3,1,1330 +389000,3,1,1330 +731781,3,3,2630 +502501,2,1,1100 +443000,3,1.75,1810 +607000,3,2,2060 +2.15E+06,3,3.5,4660 +585000,4,2.5,2370 +1.03E+06,3,2.5,2430 +315000,3,2.5,1880 +180000,2,1,1150 +322500,3,2,1350 +568500,3,2.75,2180 +813000,4,2.75,3370 +1.09E+06,5,2.25,3650 +424000,4,2,2100 +235000,2,1,670 +740000,3,3.5,2420 +415000,1,1,760 +432000,3,2.75,2200 +1.27E+06,5,3.25,4410 +676500,3,1.75,1300 +419000,2,1,720 +650000,3,2.5,2180 +239000,2,1,1130 +900000,4,2.5,2230 +330000,5,1.75,2100 +510000,3,1.75,2060 +465000,4,2.5,3060 +1.70E+06,3,2.75,2810 +490000,3,2.25,2550 +2.68E+06,5,3,4290 +1.00E+06,3,2.25,3040 +469950,4,2.75,2530 +536000,3,1.75,1300 +244950,4,2.5,1790 +575000,3,1,1530 +361000,5,2.75,2380 +650000,5,2.25,2400 +230005,2,1,1030 +293000,4,2.5,3250 +445000,3,3,1970 +280000,4,1.5,1940 +520000,3,2.25,1850 +780000,4,3.25,3900 +625000,3,1.75,3160 +239950,3,1.75,1440 +335000,3,1.5,2040 +612000,3,2.5,2120 +200000,2,1,830 +345000,3,1.75,3140 +520000,4,2.5,2410 +855000,4,2.25,2190 +567500,4,1.75,2190 +208000,3,1.5,1210 +452000,3,1.75,1880 +555000,3,3,2410 +519000,5,2.75,2620 +474950,3,2.25,1850 +419000,3,2.25,1760 +390000,2,1,860 +539000,7,2.25,2620 +569000,4,1.75,2400 +611000,3,1,1850 +760000,3,2.5,4040 +732000,3,2,1940 +1.68E+06,3,2.5,3490 +919950,5,2.75,3170 +400000,4,2.5,2530 +785000,4,2.5,3230 +835000,3,2.25,2120 +640500,2,1.75,1640 +310000,4,2.5,2130 +355000,4,1,1440 +685000,3,1.75,1940 +202500,3,1,1120 +540000,3,2.5,2400 +295000,4,2.5,1810 +518000,3,1,1270 +250000,2,1.75,1350 +330000,2,2,1550 +481000,2,1,1620 +898000,3,2.25,2650 +570000,5,1.75,2510 +475000,4,2.5,2040 +265000,3,2.5,1660 +380000,3,2.5,1980 +790000,4,2.5,2690 +620000,2,2.25,2910 +709050,4,3.5,2720 +296500,3,1,1280 +475000,3,2.5,2160 +440000,3,2.25,1760 +405000,2,1,800 +269500,2,1,930 +520000,5,1.75,2040 +229500,1,1,1180 +335000,4,1.75,2000 +680000,4,2.75,3310 +1.39E+06,4,3.5,3130 +740000,4,2.5,2300 +270000,3,2.25,2140 +510000,4,2,2210 +300000,2,1,970 +1.30E+06,5,2.25,2690 +675000,4,2,1890 +925850,6,3.25,3140 +255500,2,1,1440 +450000,3,2.5,2910 +280000,3,1,1310 +245000,4,2.25,2140 +344950,3,1,1090 +381000,3,1.75,1330 +1.95E+06,4,4,4690 +1.50E+06,3,1.5,1910 +232603,3,1.75,1750 +220000,5,2.5,1760 +600000,4,1.75,1810 +239000,3,2.5,1360 +400000,3,1.75,1730 +2.18E+06,6,2.75,4710 +350000,3,1,1010 +562000,3,2.5,2400 +380000,3,1.5,1540 +511200,4,1.75,1480 +680000,4,2.5,2520 +350000,3,3.25,1210 +410000,5,2.5,2670 +1.05E+06,4,2.5,3030 +391265,3,2,1440 +1.41E+06,4,2.25,3250 +575000,3,2,1750 +316000,4,1.5,2120 +165000,3,1,1050 +850000,3,2.25,1950 +210000,3,1,1020 +325000,4,2.5,1820 +682000,4,2.5,2390 +430000,3,2.5,1400 +325500,3,1.5,1540 +385000,3,1.75,2370 +435000,1,1,670 +550000,4,1,2420 +400000,3,1,1000 +503000,4,2.75,2100 +676000,4,2.5,2800 +180000,3,1,940 +234000,3,2,1640 +734200,4,2.5,2760 +920000,3,3.25,3660 +1.92E+06,4,2.5,3070 +224000,3,1.75,1100 +1.40E+06,3,2.75,3130 +185000,3,1,1320 +554600,3,1.75,1470 +268000,3,1.75,1480 +675000,4,2.25,2260 +620000,4,2.25,2210 +396450,3,1.75,1540 +565000,5,1.75,1910 +410000,3,1.75,1760 +1.19E+06,4,3,2240 +716125,3,2.25,2110 +225000,2,1,1396 +640000,4,2.75,3040 +374000,2,1,1140 +415000,4,2,1780 +592500,4,2.5,3370 +365000,3,2.5,1484 +600000,4,2.5,2230 +465000,4,2.5,2820 +254999,3,1,1580 +279000,4,2.5,2040 +460000,3,2.5,2720 +507000,4,2.25,1490 +291000,3,1.75,1560 +350000,2,1.5,830 +90000,3,1,980 +329000,3,1.75,1980 +909000,4,2.5,3680 +187000,2,1,860 +580000,3,1.75,1850 +345000,3,2.5,1620 +497000,4,2.5,2240 +345000,3,1,1010 +313500,3,1.75,1610 +910000,3,2.5,2720 +399950,3,1.5,2080 +268000,4,2,1930 +559000,4,1.75,2250 +309000,3,2.25,1980 +410000,3,2.5,1960 +259000,3,1,1320 +950000,5,2,2940 +320000,4,1,1460 +1.15E+06,4,2.5,2330 +394250,3,2,2620 +315000,1,1,700 +480000,2,2,1140 +556000,3,2.5,2750 +450000,3,2.5,2480 +420000,3,1.5,1130 +890000,6,3.75,2770 +295000,4,2,1710 +410000,4,2.25,2150 +308900,3,2.5,2250 +1.16E+06,4,2.5,2960 +665000,2,2.5,2300 +577000,3,1.75,1740 +959000,3,2.5,2830 +471000,2,1.75,1240 +560000,3,2.5,2180 +955000,5,2.25,2510 +1.24E+06,7,5.5,6630 +579000,3,2.5,2300 +335000,4,2.25,3220 +485000,3,2.5,2270 +552000,3,2.5,1840 +950000,4,3.25,3820 +203700,3,2,1660 +412000,4,3.5,3360 +237500,3,2,1350 +866800,4,3.5,2970 +425000,3,1,1000 +200000,3,2,1190 +280000,3,1.75,1670 +140000,3,1.5,1200 +370000,5,2.5,2250 +550000,2,0.75,1040 +1.41E+06,2,2.5,3180 +1.51E+06,2,2.5,3180 +510000,4,1.5,2040 +351000,3,1,1160 +210000,3,1,880 +449999,4,1.75,2290 +137000,3,1,950 +270000,3,1,1010 +540000,3,2.5,3100 +565000,5,3,2560 +940000,4,1.5,2430 +385000,2,1,830 +400000,3,3,2090 +365000,3,2,2030 +353250,2,1,1060 +455000,2,1.5,1090 +475000,4,3.5,3400 +571500,4,1.75,1920 +441000,2,1,1150 +810000,6,2.75,3970 +550000,3,2.25,1880 +736000,2,1,1500 +375000,3,1.75,2190 +717500,3,2.5,2530 +581000,2,1.75,1930 +629000,3,2,1510 +3.80E+06,3,4.25,5510 +225000,3,2,1100 +315000,3,2.5,1730 +425000,3,2.5,1480 +346500,3,1,1150 +550000,3,2.25,1950 +565000,3,1.75,2380 +1.00E+06,4,2,3100 +400000,2,2,2010 +724950,4,2,2270 +623000,3,1.75,2050 +295000,2,1,650 +700000,4,3.25,2780 +482000,2,1.5,1300 +770000,3,2.5,2730 +310000,4,2.5,3140 +720000,4,2.25,2410 +355000,3,1,1180 +512000,4,2.5,2600 +303000,2,1.5,1400 +299000,5,2.5,2220 +285000,3,2.5,1660 +680000,3,1.75,2330 +285000,4,1.75,1440 +707000,4,2.25,2920 +690000,3,2,1760 +872000,4,2.25,2860 +290000,4,1.75,2090 +425000,4,1.75,1910 +925000,3,2.75,3280 +340500,3,1,1770 +365000,2,1,920 +725000,3,1.75,1690 +811000,3,3,2470 +299000,3,1,1040 +287500,4,2,1220 +879950,4,2.25,3500 +135900,2,1,760 +1.23E+06,4,2.25,3070 +522500,4,1.75,2100 +399500,4,1.5,1660 +450000,3,1,1430 +218000,4,1,1620 +289999,3,2,1490 +540000,2,1,1170 +324950,3,1,1240 +718500,3,2,2910 +495000,3,2,2660 +260000,6,2,2220 +430000,4,1.5,1920 +402500,3,3.25,2780 +1.42E+06,4,3,3110 +275000,3,2.25,1820 +250000,3,2.25,1765 +665000,3,2.75,1800 +425000,3,2.5,2650 +760000,2,1,1410 +447000,3,2.5,1650 +205000,3,1,1180 +191000,3,1.5,800 +350000,2,1.75,1430 +789888,5,3.5,3300 +443000,2,1,1220 +695000,4,3.5,3530 +560000,4,2,1380 +550000,3,1.75,1410 +850000,2,2.5,3360 +352750,4,2.75,2270 +550000,4,2.5,2890 +774900,5,1,1750 +250000,3,1,1010 +962800,4,2.5,3780 +299500,3,1.75,1880 +250000,2,1,800 +745000,5,4,4720 +279475,2,1,1060 +450000,3,2.25,2530 +307700,5,2.25,1980 +665000,3,1,1650 +375000,3,2.75,1890 +420000,4,2.5,3360 +148000,2,1,630 +707000,3,1.5,1980 +399000,3,1,990 +570000,4,2.5,3420 +853000,4,2.25,3440 +400000,3,1,1300 +615000,2,1.75,2040 +463000,3,1,1250 +600000,4,2.5,1960 +429000,5,2.5,2720 +980000,4,4.25,3250 +359500,6,3.75,3190 +715000,4,2.5,2570 +240000,3,1.75,1420 +455000,4,2,2120 +610000,3,2.5,2080 +675000,3,2.75,2740 +283500,3,1.75,1250 +235000,2,1,2150 +827000,4,2.5,3230 +353000,2,1,860 +747500,4,2.5,2810 +341000,2,1,1040 +182000,3,1,1160 +250000,3,2,1470 +655000,4,3.5,2350 +405000,3,2.25,1660 +390000,4,1.75,2020 +275400,2,1,890 +791000,3,2.25,2430 +424500,3,1.75,1460 +430000,3,1,980 +865000,4,2.5,2580 +163000,2,2,1250 +920000,4,2.75,3140 +1.03E+06,5,3.25,2680 +325000,3,1.75,1810 +315000,5,2.5,2090 +227000,4,1,1120 +179000,4,1.75,1790 +276000,2,1,870 +335000,4,1.5,3160 +430000,3,2,2350 +266490,3,2.5,1810 +655000,4,2.75,3160 +635500,3,2,1660 +235000,5,2.5,2500 +885000,3,2.5,2880 +352500,3,1,1470 +450000,3,2.5,1460 +3.64E+06,5,6,5490 +1.05E+06,3,2.25,2480 +476000,2,2.25,1140 +375000,3,2.5,1830 +600600,4,3.5,3110 +567000,4,1.75,2630 +650000,4,1.75,2390 +190000,5,2,1750 +858000,4,3.5,4370 +435500,1,1.75,1020 +685000,3,2,2500 +252000,3,2,1540 +512500,4,2.25,2200 +423800,3,2.5,1940 +460000,3,2.25,1453 +434000,3,2.75,1830 +244000,3,1,2000 +348125,3,1,1400 +585000,4,3.25,2400 +230000,3,1,1390 +450000,3,2,1680 +393000,5,2,1820 +517000,2,1,1140 +400000,3,1,1060 +890000,2,1.75,3050 +205950,3,1,970 +209000,3,1,1320 +430000,4,1.75,1890 +534000,4,1.75,2040 +735000,4,3,2370 +873000,3,2.25,2720 +475000,4,2.25,1970 +325000,3,1.75,2180 +500000,3,2.25,2990 +279000,4,2.75,2180 +350000,3,2,1440 +660000,4,2.25,3180 +324950,2,1.5,1643 +500000,4,2,1530 +187300,2,1,1310 +345600,5,3.5,2800 +400000,3,1.5,1510 +935000,5,3,2700 +374000,4,1.75,2220 +328000,3,1.75,1440 +257500,3,2,1300 +1.00E+06,4,2.5,2230 +216500,2,1.75,1390 +1.19E+06,3,2.25,2760 +360000,4,2.5,3200 +699999,3,0.75,1240 +535000,3,2.5,1960 +464950,3,2,2190 +925000,4,2.5,3540 +930000,3,3.25,2640 +727500,3,2,2660 +325000,4,1.75,1670 +695000,3,3.25,3080 +585000,4,2.75,2890 +319000,3,2.25,1800 +265000,6,2.5,2000 +359000,5,1.75,1940 +390000,5,1.75,1940 +374500,3,1,960 +661000,2,1.5,1750 +900000,3,2.5,2320 +600000,5,2.5,2380 +2.00E+06,5,4.25,6490 +512500,4,1.75,1620 +229500,3,1.75,1770 +589000,3,2.5,2320 +539950,3,2.5,1330 +640000,4,2.5,3420 +218250,3,1,1270 +675000,4,3.5,2550 +338000,5,2,1860 +231750,3,1,1020 +199900,1,1,720 +1.06E+06,4,3.5,4460 +263000,4,2.75,1830 +279950,3,1.5,1520 +395000,3,1.5,1080 +252500,3,2,1900 +1.15E+06,4,3.75,5300 +205000,3,1,1370 +654000,5,2.5,2960 +200000,3,1,960 +700000,3,2.5,2190 +2.72E+06,4,3.25,3990 +306000,2,1.75,1200 +270000,3,2.5,1780 +340000,3,2.25,2630 +450000,4,2.5,2300 +580000,4,2.75,3210 +435000,4,1.75,2290 +690000,4,2.5,2780 +720000,4,2.5,2650 +403000,3,2.25,1840 +440000,3,2.75,1560 +178500,3,1,1200 +270000,4,2.5,1900 +129888,2,1,710 +260000,3,1.75,1360 +339950,5,2.5,2990 +250000,3,1,1640 +680000,3,3.5,3650 +660000,10,3,2920 +1.23E+06,3,3.5,3680 +550000,3,2,1830 +675000,5,2.75,2570 +981000,3,3.25,2730 +168000,3,1,1150 +1.00E+06,4,3,4260 +320000,3,1,1260 +959000,6,3.25,4440 +372000,4,1,2300 +391500,3,2.5,1920 +390000,2,1,1080 +302000,2,1,890 +495000,3,3.5,1650 +504500,3,2.5,1820 +555000,4,1.75,2320 +1.55E+06,4,3.5,3260 +550000,3,1.5,1730 +1.80E+06,4,2.5,3320 +655000,1,1,1660 +685000,3,2.5,3290 +721000,4,2,2280 +1.52E+06,4,4.25,3650 +365000,4,2.5,1620 +458000,3,2,2020 +280000,2,1,1150 +628000,4,1.75,1940 +781500,4,2.5,3440 +295000,3,1.75,2000 +435000,2,1,750 +300000,3,1.75,1420 +208500,2,1,880 +930000,2,2.5,2680 +316000,2,2,860 +249900,3,2,1310 +675000,3,2.25,1780 +447000,3,2.25,1440 +675000,3,2,1510 +546000,4,2.5,2100 +310000,3,2,1310 +190000,3,1,1280 +650000,3,1.5,1320 +585000,3,2.5,1740 +1.43E+06,4,2.5,2910 +565000,4,2.5,2500 +174900,3,1,1100 +360000,3,2.25,1381 +234000,3,1,960 +575000,8,3,3840 +315000,3,2.5,2200 +225000,3,1,1250 +370000,3,1.5,2380 +606000,3,1,1500 +272500,3,2,1410 +475000,3,1.75,1680 +270000,3,1,1500 +624000,4,1.75,2710 +355000,3,1.75,1730 +345000,3,1,960 +342000,4,2.5,2380 +316000,3,1.75,1120 +539950,4,2.5,2960 +221347,3,2,1580 +330000,3,2.5,1870 +279000,4,2.5,1810 +850000,4,3,2550 +746000,3,1.75,1910 +478000,2,2,1200 +820000,4,2.75,2420 +2.16E+06,3,3.5,3080 +820000,3,3,3850 +887000,3,2,3000 +159000,3,1,1360 +824000,7,4.25,3670 +812000,4,2.5,2270 +242000,4,2.5,1750 +625000,4,2.5,3550 +399888,4,1,2370 +289000,3,2.25,1670 +400000,3,2,1860 +1.55E+06,3,2.5,4460 +345000,2,1,1080 +874950,2,1,1080 +875000,3,2.75,2280 +628990,4,2.5,2540 +535000,2,3.5,2560 +770126,4,2.75,2390 +710000,4,2.5,2870 +465000,3,1.75,1510 +359000,3,1.75,2200 +151000,2,0.75,720 +820000,3,2.5,2970 +160000,3,1.5,960 +535000,4,1.75,1420 +365000,3,2.25,1800 +708000,4,2.5,3090 +215000,3,1,1200 +1.95E+06,4,3.5,4065 +390000,4,2.5,2570 +570000,3,2,1530 +383000,3,1.75,1500 +370000,4,3,2490 +454000,4,2.5,3040 +1.40E+06,5,3.25,4140 +371000,4,1.75,1690 +530000,3,1.75,1430 +608000,4,2.75,2490 +450000,3,1.75,1350 +780000,4,2.5,3140 +290000,4,2.5,2340 +225000,3,1.75,1610 +805000,4,2.5,3320 +660000,3,2.5,2390 +299000,3,1.75,1180 +530000,2,2.25,1260 +680000,3,2.5,1800 +199900,4,1.75,1790 +224000,3,1.75,1760 +244000,3,1.75,1540 +485000,4,1.75,1260 +330000,4,2.5,2240 +509000,4,2,1630 +440000,4,2.5,2350 +244000,3,2,1350 +399700,4,1.75,1320 +519000,4,2.5,1950 +211000,4,1,2100 +950000,3,2.5,3480 +410000,3,2.5,1830 +750000,4,2,2640 +133400,3,1,900 +240000,3,2,1553 +539000,3,2.5,1710 +688000,4,3,3400 +465000,3,1.5,1270 +936000,3,1.75,2960 +620000,4,2.5,3040 +429950,3,1.75,1430 +296475,3,2.5,1520 +330000,4,2,1820 +445000,3,2.25,1800 +846000,4,3.25,2720 +725000,4,1.75,1980 +369000,4,2.5,2550 +625000,3,1.75,2210 +535000,3,2,2120 +229950,4,1.5,1570 +229999,3,1.75,1310 +850000,5,3.5,3150 +589900,4,4.5,3870 +513000,2,1,1840 +401000,3,1,1120 +260000,3,2.5,1440 +525000,4,2.75,2300 +470000,3,3.5,2070 +205000,4,1.5,1420 +620000,3,2.25,2010 +229000,3,1.5,1200 +445000,2,2,1150 +215000,2,1,1240 +504975,2,2.5,1900 +495000,4,2.25,2350 +205000,3,1,1120 +152275,1,1,1020 +586000,4,2.25,1930 +779950,2,2.5,2680 +557000,4,1.75,2660 +610000,4,2.25,2200 +405000,3,1.5,1010 +320000,4,2.25,2310 +356000,3,1,920 +794500,5,3,3030 +349000,3,1.75,1590 +549000,4,2.25,2740 +193000,3,1,960 +700000,3,1.5,2240 +523000,3,2.5,2400 +565000,5,3.25,2860 +500000,4,2.5,2960 +1.45E+06,4,3.25,3770 +710000,6,3.5,3830 +333000,4,2,2750 +580000,3,1.75,2100 +289950,4,1.75,1500 +375000,2,1,710 +505000,2,3,2770 +324950,3,1.75,2050 +490000,4,2.25,1960 +630000,4,2,1770 +595000,3,2.75,3290 +872500,4,2,1990 +490000,2,1,1760 +1.90E+06,4,3.25,5080 +310000,2,1,1020 +450000,3,1,1350 +539000,3,1.5,1740 +888550,3,2.5,3540 +269950,3,2.5,1520 +142000,0,0,290 +300000,3,1.75,1310 +780000,2,3.25,3000 +545000,3,2.5,2660 +278000,3,2.25,2120 +342000,3,2.25,1200 +190000,4,1.75,1900 +387000,2,1.5,1010 +279950,3,2.25,1850 +550000,6,4.5,4520 +439000,3,2,2010 +774888,3,2.25,2420 +480000,5,2.5,2732 +835000,4,2,1910 +1.50E+06,5,3.5,3520 +771000,4,2,2220 +1.23E+06,4,2.25,2020 +600000,4,2.5,2090 +305000,3,1,1580 +1.39E+06,5,1.75,2650 +216500,3,1,1020 +370000,3,2.5,1070 +492650,4,1.75,2120 +431200,5,1.75,1360 +277500,4,2,1700 +278000,5,1.5,1820 +351000,4,1,1430 +850000,4,3.5,4140 +885000,2,2,1313 +399950,3,2,1590 +185000,3,1.75,1080 +440000,5,3,2730 +2.40E+06,4,3.25,3800 +299000,3,2.25,2540 +299500,3,1.75,1810 +420000,3,1.5,1540 +234000,4,1,1390 +540000,2,1.75,1460 +649950,4,2.5,2350 +330000,3,1,1160 +840000,4,3.25,3500 +370000,3,2.5,1980 +410000,3,1.5,1250 +257000,2,1,770 +350000,3,1,1920 +380000,2,1,1120 +344000,3,1,1150 +488000,3,2.5,1590 +465000,3,1,910 +229500,2,1.75,1870 +445000,5,3,2420 +246000,4,1.5,2120 +545000,5,2.5,2730 +518000,4,2.5,2560 +565000,4,2.5,2620 +445000,4,2.5,2760 +968000,5,2.5,2900 +725000,3,2,1820 +315500,3,1.75,1870 +487585,4,1.75,2010 +246500,2,1,940 +819000,3,1.75,1850 +349900,5,2.5,2530 +267000,3,1,940 +480000,3,2.25,1820 +525000,2,1,1510 +578000,4,2.5,2070 +345000,3,2.5,1380 +499000,3,1,1270 +425000,3,1.5,1390 +268000,4,3,1840 +240000,3,1,1600 +147000,3,1.5,1480 +500000,4,2,2120 +1.01E+06,4,2.75,2940 +991500,4,3,3820 +510000,5,2,2740 +1.98E+06,4,4,4360 +484998,4,2.5,1540 +1.28E+06,4,3.5,4660 +210000,3,1.75,1590 +450000,2,1,1180 +875000,4,1.75,2360 +529950,4,2.75,1860 +415000,3,1.75,1470 +590000,4,2,2990 +379950,3,1.5,1690 +385000,1,1,660 +588000,3,1.75,2310 +252500,2,1,770 +530000,3,3.5,2320 +385000,2,1.5,1370 +419000,3,2.25,1700 +175000,2,1,960 +515000,2,1,1150 +945000,4,2.5,2910 +359900,5,2.25,2290 +419950,4,2.5,2260 +460000,3,1.75,1300 +255000,3,2.25,1850 +481000,4,1.75,1920 +719521,4,1.75,1920 +1.08E+06,3,3,4910 +334000,4,2.5,2210 +675000,4,2.75,2280 +556000,3,1.75,1640 +900000,4,2,1980 +400000,3,1,900 +724950,4,1.75,1960 +321000,4,2.25,1800 +1.36E+06,4,3.5,4270 +171000,4,2,1520 +1.36E+06,4,3,5430 +323000,3,1.75,1950 +491500,4,1.75,2190 +226000,4,1.5,1200 +580000,6,1.75,2180 +640000,4,2.5,2320 +619790,3,1.75,1040 +383962,4,2.5,2700 +373000,3,2,1400 +541338,3,2.5,2060 +254922,2,1,780 +575000,3,2.25,2400 +650000,4,3,2900 +269950,3,1.5,1740 +270950,2,1,780 +495000,3,2.75,2430 +794154,4,2,2210 +340768,3,1.5,1510 +375000,2,1,900 +820000,4,2.5,3670 +555000,2,2.25,1160 +312500,2,1.5,1070 +450000,2,1,950 +739000,3,2.75,2950 +320000,3,2,1420 +235000,3,1,1590 +275500,4,1,1290 +564000,2,2,1690 +263000,4,1.75,1340 +257000,3,1.75,1397 +725000,4,2.5,3750 +300000,3,2.25,2000 +328000,3,2,2250 +187500,3,1,840 +400000,3,1,1100 +515000,3,1.5,1660 +1.41E+06,2,2,2180 +235000,3,1,1460 +669000,4,2.5,2470 +282000,3,1,1250 +663000,3,2,1480 +279900,3,3.25,2240 +335000,3,2,1570 +689000,4,2.75,3250 +413100,3,2.25,1790 +506950,3,2.5,2080 +500000,3,2.5,1480 +540000,5,3,3610 +812000,3,2.5,2040 +1.20E+06,4,3.25,3850 +370000,3,2.25,3230 +338000,3,2,2440 +185000,4,1,1490 +450000,3,1,1150 +451000,2,1,900 +785000,4,2.5,3210 +850000,5,3,3900 +235000,3,1,1240 +1.15E+06,3,1.75,1760 +377500,3,2.25,1410 +825500,3,2.5,2780 +1.06E+06,5,3.25,3230 +880000,5,3.5,4600 +413800,3,2,1440 +504200,2,1.5,1200 +421500,4,3,2793 +855169,4,2.5,2970 +380000,3,2,1440 +580000,3,2.25,1480 +377000,3,2.5,1870 +329900,4,2.75,2475 +921800,4,2.5,2950 +529500,3,2.25,1410 +363990,4,2.5,2240 +834950,5,2.75,3230 +399000,3,2,2100 +338900,3,2.25,1936 +419950,3,2.5,3120 +493000,4,2.5,2070 +650000,4,2.5,3700 +456000,3,2.5,2130 +425000,3,2.25,1620 +348000,3,2.5,1490 +1.04E+06,5,4,4180 +299000,2,2.5,1400 +1.26E+06,4,3.75,3490 +155000,3,1,1300 +319500,4,2.5,2730 +274000,3,2.5,1830 +429000,5,2.5,2340 +267800,3,1.75,1410 +369950,3,2.5,1930 +480000,6,5,3028 +440000,4,3.5,3180 +839704,4,3.25,2950 +535000,3,3.25,1430 +290000,2,1.5,1020 +370000,3,2.5,1650 +405000,3,2,1060 +499431,4,2.75,2620 +275000,4,2.5,1830 +320000,3,2.25,998 +425000,4,2.5,2070 +1.45E+06,4,3.5,2860 +340000,3,2,1920 +299900,3,2.5,1210 +865950,5,3.5,4890 +720000,4,2.5,3420 +460000,4,3.5,2870 +375000,3,2.5,1600 +386180,2,1.5,960 +280000,3,2.75,1740 +359000,4,2.5,2575 +785000,5,3.25,3660 +425000,3,2.25,1420 +575000,5,2.5,3070 +465000,3,2.5,1920 +1.85E+06,4,3.25,4160 +720000,4,3.25,3276 +390000,5,3.75,2890 +2.21E+06,3,2.5,3430 +1.05E+06,4,3.5,3390 +915000,6,3.75,2930 +562000,2,2.25,1300 +349000,2,1.75,1250 +375000,4,2.5,2310 +479950,2,2.25,1360 +319000,4,2.5,2020 +325000,3,1.5,1270 +505657,4,2.75,2790 +340000,4,2.5,2320 +250000,3,2.5,1750 +349500,4,2.5,2030 +290750,3,2.5,1270 +715000,5,3.25,2710 +689950,4,2.75,2520 +425000,2,2.5,1340 +657000,2,3,1570 +359950,4,3.5,2690 +319900,4,2.75,2475 +532000,3,3.75,2260 +291000,2,1,840 +675000,3,3.25,1720 +885000,3,2.25,2940 +1.45E+06,5,3.5,4170 +780000,6,4.25,4310 +839950,4,2.75,3010 +645000,3,2.5,2170 +263000,3,2.5,1584 +345000,2,2.25,1110 +505000,4,2.5,2420 +522500,2,2.25,1430 +400000,3,2.5,2393 +543000,3,2.25,1240 +495000,4,2.5,2980 +549995,4,3.5,2970 +327555,3,2.5,2329 +690000,5,3.25,3340 +673000,4,2.25,2580 +384435,3,2.5,2029 +780000,4,2.75,3430 +1.38E+06,5,3.75,3330 +950968,5,3.5,3220 +334950,2,2.25,1240 +489000,3,3.5,1500 +600000,3,3,3530 +282000,3,2.25,1260 +442000,4,4,4168 +220000,2,1.5,1030 +489000,3,2.5,3080 +250000,3,1.5,1072 +484259,4,2.75,2790 +1.68E+06,3,2.5,4090 +450000,3,2.5,1800 +299000,2,1.5,830 +450000,3,2.5,2280 +585000,4,3,2110 +660000,3,2.25,1570 +301500,2,1.5,830 +949950,4,3.75,4120 +759990,4,2.5,2540 +355000,4,2.75,2050 +889950,4,2.75,3080 +629800,3,2.5,2390 +745000,4,2.5,3170 +379900,2,1.5,1240 +335000,3,2.5,1090 +809000,5,4.5,4630 +569950,4,2.5,3230 +723000,4,3.5,3510 +282000,4,2.5,1785 +569900,5,3.25,2360 +385000,4,2,2340 +420000,3,2.25,1620 +2.25E+06,3,3.25,3890 +1.21E+06,4,3.5,3590 +292000,4,3,1984 +645000,3,2.25,1640 +304500,4,2,1350 +489500,4,3.5,2730 +1.58E+06,4,4,5610 +390000,2,1,962 +815000,4,3.5,3040 +719000,3,3.5,2540 +331210,4,2.5,2240 +245000,3,1.5,1260 +465000,5,4,3210 +580000,3,2.5,1620 +540000,3,2,1580 +399000,3,2.5,1430 +328000,4,2.5,1850 +701000,4,2.5,3340 +408000,3,2.75,2670 +2.64E+06,5,4.25,4660 +445000,3,2.5,1550 +672500,4,2.5,3470 +538000,3,2.5,3010 +450000,5,3.5,3931 +362500,3,2.5,1800 +414950,3,2.5,1570 +679950,3,2.5,2230 +290000,4,2.5,2423 +230000,3,2,1160 +439950,2,2,1440 +349900,4,2.5,2052 +550000,5,2.5,2780 +1.05E+06,4,4.25,3720 +655000,2,2.25,1460 +385000,3,3.5,1370 +729999,6,4.5,3600 +523950,3,2.25,1420 +369000,2,2.5,980 +509900,3,2.5,1790 +282000,3,2.5,2010 +387865,3,2.5,2370 +385000,4,2.5,2560 +536000,3,2.5,1900 +395000,2,2.25,1350 +545000,4,2.75,2650 +715000,4,2.5,3020 +348000,3,2.5,1500 +455000,3,1.75,1320 +575000,4,2.75,3120 +449950,3,2.25,1540 +364000,3,2.5,1800 +932990,4,2.5,3640 +710000,3,2.5,2440 +949990,4,4,3970 +326989,3,2.5,2060 +335606,3,2.5,2538 +1.53E+06,5,4.5,4270 +299950,3,2.5,1320 +962000,4,2.75,3340 +395825,2,2.5,1590 +419354,5,2.75,2710 +920000,4,2.75,3140 +366000,3,2.25,1445 +480000,4,2.5,2430 +388000,3,3.25,1370 +2.32E+06,4,3.5,5050 +730000,3,2.5,1860 +950000,5,3.75,5330 +358990,3,3.25,1710 +398651,4,2.5,2650 +530000,4,2.5,2590 +610360,4,2.5,2610 +436110,3,2.5,1770 +925000,4,2.75,3730 +449950,4,2.5,2420 +760000,4,2.5,3330 +293000,3,2.25,1910 +695000,2,2.5,2170 +285000,3,2.5,2437 +1.26E+06,5,4,4180 +379900,3,2.5,1800 +472000,5,2.5,2570 +300000,4,2.5,2090 +272000,4,2.5,2789 +418395,4,2.5,2906 +465000,5,2.5,2550 +659950,4,2.75,3550 +484950,3,2.25,1590 +359000,3,2.25,1950 +519000,4,2.5,3250 +1.71E+06,5,4.5,4590 +535000,4,2.75,3070 +622950,4,3.25,3030 +515000,3,2.5,2610 +330000,4,3.5,3150 +318000,3,1.5,1240 +439000,3,2.5,1680 +540000,3,2.5,2220 +1.08E+06,4,3.25,4800 +435000,4,2.5,3100 +2.70E+06,4,4,7850 +1.10E+06,4,2.75,3590 +293467,4,2,1590 +328000,3,2.5,2242 +550000,3,3.5,2490 +649000,3,2,1530 +435000,4,2.5,2150 +625000,3,2.5,2440 +415000,3,1.5,1270 +400000,3,2.25,1450 +979000,3,2.5,2690 +625250,4,2.5,2755 +665000,4,3.5,2650 +589500,3,3.25,2310 +437000,2,3,1460 +320000,3,1,1400 +333500,3,2.5,2196 +430000,3,2.25,2020 +995500,5,4.5,4280 +427874,3,3,2340 +334990,4,2.5,2220 +909500,4,4,4420 +210000,3,2,1580 +952990,4,2.75,3550 +622500,2,1.75,1510 +515000,3,3.5,1360 +350000,3,2.5,2040 +310000,1,1.5,1120 +700000,4,3.5,4490 +907687,4,2.5,3560 +741500,2,2.5,2150 +395000,3,2.5,2130 +559950,5,2.75,2990 +215000,4,2.5,1847 +390000,4,2.5,2610 +425000,3,2.25,1670 +472000,3,2.5,1860 +1.33E+06,4,3.5,3440 +695000,4,3.5,3510 +545000,3,2.5,1740 +389950,4,2.5,2240 +380000,3,2.25,1550 +288790,4,2,1390 +432500,3,3,2500 +615000,3,3.5,2710 +500000,3,2.5,1720 +615000,3,2.25,1760 +500000,4,2.25,2270 +622000,3,3.5,1690 +802945,5,3.5,4000 +1.26E+06,4,2.5,2880 +598950,3,2.5,1480 +430000,3,2.5,1950 +515000,4,2.75,2700 +1.26E+06,2,3,2210 +400000,4,3.5,2370 +390000,3,2.5,1310 +450000,3,2.5,2410 +804995,5,1.5,3360 +825000,4,3.25,3040 +435000,4,2.25,2140 +398000,3,2.5,1720 +411605,4,2.5,2658 +315000,3,3.25,1480 +455000,2,2,1350 +452950,3,2.5,1150 +380000,3,1.75,1690 +340000,2,1.75,1270 +409950,3,2.5,2655 +360000,2,1,880 +1.60E+06,4,4.25,4645 +440000,3,1.5,1270 +730000,2,1.75,1728 +408000,3,2.25,1950 +820000,4,2.5,3170 +360000,2,2.5,1233 +339990,3,2.5,2570 +515000,3,2,1560 +541000,3,1.75,1630 +375000,4,2.5,2510 +320000,4,2.5,2223 +325000,2,2.25,1230 +740000,5,2.75,3050 +450000,5,2.75,2710 +455000,4,2.5,2090 +292500,3,2.5,1440 +650000,3,2.5,2500 +530000,4,2.75,2740 +829995,5,3.25,3360 +395000,4,2.75,2280 +859990,4,2.75,3520 +342500,2,1.5,1320 +743000,4,2.75,3410 +345000,3,2.25,2730 +443000,3,2.5,1780 +260000,3,2.5,1427 +810000,4,2.5,2910 +570000,4,2.75,3250 +1.56E+06,5,3.5,3630 +840000,2,2.5,1680 +950000,3,2.5,2280 +572800,3,2.5,3310 +305000,3,3,1290 +1.70E+06,5,4.75,3940 +445000,4,2.5,2170 +801000,4,3.5,3290 +711000,3,2.5,2550 +268500,3,2.25,1140 +320000,4,2.5,2300 +500000,4,3.25,2670 +631625,4,2.5,2440 +850000,2,2.5,1611 +600000,3,3.5,2710 +988500,3,2.75,2015 +430236,4,3.25,3444 +1.27E+06,3,2.5,3060 +689500,4,2.5,2050 +175003,3,1.5,1390 +459000,2,2.5,1240 +1.18E+06,4,3.25,3750 +358000,3,3.25,1410 +447055,4,2.5,2448 +415000,3,2.75,2600 +1.21E+06,4,3.25,3330 +495000,2,2.25,1160 +479000,2,2.25,1330 +1.90E+06,3,2.5,2830 +249900,3,2.5,1610 +1.47E+06,4,2.5,2800 +1.04E+06,5,3.75,4570 +897000,4,2.5,2820 +1.10E+06,4,2.5,2570 +685000,3,2.25,1710 +295000,3,1.5,1220 +619000,3,2.25,1650 +439108,2,1.5,1130 +260000,3,2.25,1489 +279000,5,2.5,2690 +380000,3,2.25,1530 +287000,3,2.5,1600 +377000,2,1.5,1000 +649950,4,3.5,2440 +445000,3,2.5,1260 +605000,3,2.5,1660 +475000,3,2.25,1190 +399000,3,3,1520 +718000,5,2.75,3250 +1.40E+06,4,3.25,4700 +341000,3,2.5,1480 +818000,2,2.5,2380 +759000,3,2.25,1640 +547500,3,3.5,1650 +2.70E+06,5,4.75,5305 +358000,2,2.5,1278 +412000,3,2.5,1200 +245000,2,1.5,690 +460940,4,2.5,3202 +321000,3,2.25,1347 +633634,4,3.5,2960 +290000,1,0.75,740 +445000,2,2.25,1200 +887250,5,3.5,4320 +739000,3,2.5,2310 +429900,3,2,1490 +459000,3,2,1480 +240000,3,2.25,1481 +566950,3,3,1730 +1.04E+06,4,3.5,3900 +343000,3,3.5,1130 +572115,4,3.25,3230 +918000,5,3.5,3920 +555000,2,1.5,1190 +399440,4,2.5,2311 +450000,3,2.5,1810 +648000,4,2.5,3290 +580000,4,2.5,3250 +415000,4,2.5,2544 +527500,3,2.5,1380 +384000,3,2.25,1430 +692000,3,2.5,3490 +455000,2,1.5,910 +1.28E+06,4,3.25,3080 +415000,3,2.5,2280 +975000,3,2.5,1660 +799950,4,2.5,3320 +545000,5,4,1680 +429900,4,3.5,2584 +275000,3,2.5,2217 +498000,3,2.5,2480 +754950,3,2.5,2610 +895000,4,3,3240 +580000,4,3.25,3569 +379900,4,2.5,3181 +245000,4,2.5,1921 +417000,3,2.5,1570 +555000,3,2.5,1940 +555000,3,2.5,1940 +353000,4,2.5,2210 +539000,3,2.25,1280 +434900,3,2,1520 +325000,2,2.25,1230 +650000,3,2.5,1480 +379950,4,2.5,2612 +700000,3,2.5,2350 +675000,3,2.5,1300 +379000,4,1.5,2020 +571000,3,2.5,2140 +475000,3,2.25,1380 +769900,4,3.5,2730 +633000,4,3.5,4220 +635000,3,2.5,1570 +1.24E+06,4,3.5,4670 +524000,3,2.25,1370 +485000,4,3.5,3273 +1.03E+06,3,4,3880 +650000,3,3.5,1494 +754842,3,2.5,2930 +428900,4,2.5,2598 +329900,3,2.5,2242 +1.04E+06,4,2.5,2830 +544999,4,2.5,2710 +449950,4,2.75,2320 +635000,4,2.5,2720 +599000,3,1.75,1650 +478000,3,3.25,1430 +388000,4,2.5,2090 +809950,4,3.5,3660 +1.06E+06,4,3.5,4220 +659000,2,2.5,1450 +971971,4,3.75,3460 +389000,3,2.5,1350 +355000,4,2.75,3000 +551500,4,2.5,2950 +417838,4,2.5,2530 +1.75E+06,4,4.5,4650 +399950,2,1,710 +740000,4,2.5,3050 +335000,3,2.5,1150 +2.25E+06,5,5.25,3410 +667000,3,1.75,1370 +920000,4,2.5,3540 +368000,3,2.5,1370 +307000,4,2.5,1714 +550000,4,2.75,3650 +594491,4,2.5,2990 +460458,4,2.5,3284 +859000,4,2.25,3550 +399950,3,3,1860 +547500,3,3.25,1720 +310000,3,2.5,2540 +939000,4,2.75,3270 +329900,2,2.5,980 +436000,3,2.5,1150 +320000,3,2.5,1820 +375000,3,2.5,1580 +392137,3,2,1460 +520000,4,2.5,2900 +535000,5,2.75,2620 +407000,2,2.5,1340 +424950,4,3.25,3266 +290000,2,1.5,1076 +399000,3,3.25,1680 +439990,3,2.5,1930 +635000,4,2.5,2880 +635000,4,2.25,2240 +351000,3,2.5,2594 +437500,2,1.5,1210 +919204,4,3.5,3760 +923990,4,2.5,3600 +639888,4,2.5,2050 +675000,3,3.25,1510 +899900,4,2.5,2580 +252000,3,2.5,1670 +925000,4,2.5,3190 +552000,3,2.5,1280 +388500,4,2.5,2718 +548000,2,2,1370 +254950,3,2.5,1794 +1.24E+06,4,4.5,5120 +629000,3,2.5,2160 +734000,4,2.5,2180 +309000,3,2.25,1490 +554950,3,2.5,2950 +785000,3,2.75,2990 +550000,4,2.5,2700 +1.01E+06,4,3.5,3130 +1.58E+06,3,2,3620 +309000,5,2.75,2481 +328423,3,2.5,1730 +345000,3,1.5,1420 +660000,5,3.5,3160 +385000,3,3.25,1320 +459000,2,2.25,1010 +248000,3,2.5,1870 +1.48E+06,4,3.5,5220 +379000,4,2.5,2260 +2.95E+06,5,4.5,4340 +395000,2,2.25,1620 +535000,3,2.5,2280 +970000,5,3.5,3400 +205000,2,1.5,830 +310000,4,2.5,2310 +334500,2,1.5,830 +995000,5,3.25,4130 +370228,4,3,2050 +383000,4,2.5,2050 +384500,3,2.5,1600 +865000,5,2.5,3190 +1.05E+06,4,3.75,3860 +502000,4,2.5,2040 +1.75E+06,4,3.5,3845 +569995,4,2.5,2650 +749950,4,2.5,3430 +550000,3,2.5,2430 +525000,3,3.5,2876 +516000,4,3.5,2550 +1.35E+06,4,3.75,4100 +440000,4,2.5,2730 +660000,3,2.5,1780 +261950,3,2.5,1880 +551000,5,3.75,3090 +665000,3,3.5,2460 +610000,4,3.5,2910 +645000,4,3.5,2910 +536751,3,1.75,1930 +260000,3,2.25,1413 +1.31E+06,3,3.25,4030 +429900,4,3.25,2880 +535000,4,2.75,2360 +462550,2,1.75,1070 +602000,3,3.25,1460 +730000,4,2.75,3800 +300500,2,1.5,1190 +675000,5,2.5,3200 +415000,3,2.25,1970 +614000,3,2.5,2830 +385000,4,2.5,2630 +594000,4,2.75,2720 +860000,4,2.75,3160 +1.10E+06,4,4,3770 +775000,4,2.75,3500 +430760,5,2.75,2710 +755000,2,2.5,2170 +640000,2,2.25,1540 +613500,3,3.25,1876 +780000,4,3.5,3720 +550000,4,2.5,3148 +789500,4,3.25,3240 +592000,5,3.5,3340 +454950,4,2.5,2413 +475000,4,2.5,2500 +659000,2,1.75,1180 +570000,4,2.5,2890 +347500,5,3,2230 +205000,4,2.5,1767 +380000,3,3.25,1450 +718000,5,2.75,2930 +515805,5,2.75,2710 +1.03E+06,4,3.25,3600 +437718,3,2.5,1800 +450000,4,2.5,2290 +515000,3,2.5,1510 +204000,2,2.5,1090 +360000,3,2,1270 +550000,3,2.25,1540 +650880,3,2.5,2930 +1.79E+06,5,3.75,4360 +895900,4,3.5,3640 +585000,4,2.5,2430 +380000,3,2.25,1520 +565997,5,2.75,2730 +459000,3,3,2440 +550000,3,3.75,1580 +500000,3,2.25,1420 +461500,5,3.25,2820 +2.15E+06,4,5.5,5060 +790000,4,2.5,2650 +735000,3,2.25,1490 +588000,4,2.5,3060 +724500,3,3.25,3240 +749000,3,2.75,2820 +720000,5,3.5,4140 +250000,2,1.5,982 +790000,3,2.75,2460 +392440,4,2.5,2547 +280000,4,2.25,1834 +1.33E+06,4,4.5,3130 +649000,4,2.5,2730 +457000,2,2.5,1380 +2.23E+06,4,4.25,4700 +453000,3,3,2330 +329780,3,2.5,1730 +1.05E+06,2,2.5,2350 +771005,5,4.5,4000 +1.30E+06,3,2.5,3350 +607500,3,3.25,1530 +278000,2,2.25,1610 +475000,4,2.75,2620 +270000,3,2,1300 +1.30E+06,4,3.5,3590 +778983,4,2.5,2490 +221000,3,2.5,1320 +338800,4,2.25,1800 +834995,5,1.5,3360 +550000,4,2.5,3220 +575000,3,3.5,2514 +649000,4,2.75,3130 +545000,4,2.5,2720 +625000,2,2.25,1390 +1.04E+06,4,4.5,4920 +611000,3,2.5,2134 +300000,3,2.5,1741 +577000,3,2.5,2560 +349990,4,2.5,2220 +650000,3,2.5,1910 +378000,2,1.5,980 +313200,3,2.5,1950 +1.21E+06,5,4.25,4150 +252500,2,1.5,1110 +308000,3,2.5,1250 +803100,4,2.5,3310 +415000,4,2.5,2020 +785000,4,3.5,3310 +499950,4,2.5,2798 +216000,4,2.5,1847 +380000,4,2.5,2420 +345000,4,2.5,2020 +456500,4,2.5,2400 +382495,3,2.5,1760 +324950,4,2.5,2110 +436472,4,2.5,2692 +365250,3,2.25,1490 +919990,5,3.25,3960 +316475,4,2.5,1740 +425000,4,2.5,1940 +302860,2,1,970 +298000,3,2.5,1852 +3.20E+06,4,4,4810 +950000,4,4,5635 +333000,3,2.5,1520 +289950,3,2.5,2099 +419950,3,2.25,1250 +306000,2,1.5,1090 +498445,4,2.5,3216 +775950,4,2.5,2970 +605000,3,2.5,2610 +520000,2,1.75,1340 +849990,4,2.75,3300 +767450,3,2,1630 +665000,3,2.25,1590 +525000,2,2.75,1310 +870515,4,3.5,3600 +390000,4,2.5,2154 +500000,3,1.75,1530 +399950,3,2.25,1360 +305000,3,2.5,1320 +255000,4,2.5,1660 +415000,4,2.5,2891 +716500,3,2.5,2340 +425000,3,2.5,2320 +540000,4,2.5,2190 +324747,3,2.5,2060 +385000,3,2.5,1740 +270000,3,2.25,1400 +1.24E+06,5,4,4410 +672000,3,2.5,1780 +310000,3,2.5,1760 +3.00E+06,3,3.5,4410 +2.35E+06,6,4.25,5550 +427000,3,2.5,2432 +389950,3,2.5,2283 +309620,3,2.5,1860 +399895,4,2.5,2701 +442515,4,2.5,2930 +375000,3,2.25,1540 +309780,3,2.5,2242 +425000,3,2.5,1950 +405000,2,3,1160 +356250,3,2.5,2060 +550000,3,2.25,1230 +340000,2,1.5,1160 +362865,4,2.5,2245 +1.36E+06,4,3.5,4120 +830000,4,2.5,3400 +1.60E+06,5,3.75,4270 +855000,4,3.5,2890 +1.21E+06,5,3.5,3220 +1.39E+06,4,3.5,4010 +400200,4,3.5,2260 +235000,2,1,1140 +349950,3,2,1640 +659950,4,2.75,3510 +785000,3,2.75,3010 +475000,2,2.25,1060 +263900,3,2.5,1658 +342000,3,2.5,1960 +367899,3,2.5,2420 +657044,3,3.5,3420 +359950,2,1.5,893 +879950,4,2.75,3020 +550000,4,2.5,2470 +279000,4,2.5,2009 +255000,3,2.5,1530 +609500,3,1.75,1590 +420000,5,3,2630 +570000,4,2.5,3230 +439000,3,2.25,1430 +310000,3,2.5,2242 +635000,4,2.5,2500 +399950,3,2.5,1230 +805000,4,2.5,3020 +1.80E+06,4,3.5,3480 +1.21E+06,4,3,3330 +745000,4,2.5,3400 +329445,2,1.5,830 +588000,5,3,3110 +494815,3,2.5,1910 +591975,3,2.75,3230 +600000,5,2.75,3380 +673000,3,2.75,2830 +889950,5,3.5,3700 +500000,4,3,2520 +500000,3,2.25,1530 +890000,4,4.25,4420 +437000,3,3,1460 +419700,3,2.25,1450 +394000,3,2,1160 +342000,3,2,1640 +420000,3,1.75,1444 +580000,3,2.5,1620 +343000,2,1.5,1100 +390000,2,1.5,1340 +274000,3,1.5,1450 +700000,4,2.5,3040 +838000,4,2.5,2560 +300000,6,3,2744 +467000,3,2.25,1420 +395000,2,1,700 +734000,5,4.25,4110 +480000,5,2.75,2670 +539000,3,2.75,2130 +459950,5,2.75,3078 +306500,2,1,840 +408474,3,2.5,1800 +437000,3,2.75,2580 +160797,3,1.5,1270 +729000,4,3.5,3065 +499000,3,2.5,1861 +359950,4,2.75,2260 +929000,5,3.25,4150 +529950,2,2.5,1500 +461000,3,2.25,1620 +271115,2,1.5,830 +653000,4,2.5,3120 +565000,3,2.5,1870 +529950,3,2.25,1240 +585000,4,2.5,2820 +609000,3,1.75,1630 +267000,3,2.25,1584 +557000,4,2.5,2840 +709950,4,3.25,3910 +625000,3,2.5,1730 +599000,3,2.75,1840 +920000,4,3.75,4030 +1.29E+06,4,3.5,3440 +324500,4,2.5,2110 +471500,3,2.5,2430 +1.02E+06,4,3.75,4690 +998000,4,3.5,3500 +262000,4,2.5,2070 +844000,4,3.5,3350 +745641,4,2.5,2440 +659950,5,3,3010 +339989,3,2.5,2060 +352500,2,2.5,1570 +525000,3,2.5,1580 +1.14E+06,5,3.5,4280 +491000,5,3.5,2815 +675000,4,2.5,2620 +344000,3,2.25,1250 +530000,4,2.5,3250 +290500,4,3.25,2510 +335000,2,1.75,1270 +3.00E+06,5,4,6670 +379000,3,2.5,1580 +385000,3,1.5,1360 +500012,4,2.5,2400 +366750,3,3,1571 +405000,2,2,1405 +356999,3,1.5,1010 +590000,2,2.5,1450 +294000,3,1.75,1420 +731500,4,2.5,2650 +837219,5,2.75,3030 +1.60E+06,4,5.5,6530 +798800,3,2.75,2670 +482500,2,2.5,1170 +820000,4,2.5,3260 +319000,3,1.5,1480 +950000,3,2.5,2700 +1.27E+06,4,3.5,4640 +378000,3,2.5,1601 +3.35E+06,5,3.75,5350 +489950,3,2.5,2540 +345000,2,1.75,1030 +510000,3,2.5,2730 +432500,4,2.5,3172 +650000,4,2.5,3160 +750000,4,2.5,2850 +870000,4,3.5,2780 +900000,4,3.5,3860 +664950,2,1.75,1180 +391000,3,2.25,1410 +1.80E+06,4,3.5,6370 +479349,5,3,3223 +661000,4,3.25,2600 +379000,3,3.25,1380 +415000,3,2.25,1620 +375000,3,3.25,1370 +355000,3,2,1220 +540000,3,2.5,1280 +290000,2,1.5,770 +500000,3,2.5,1210 +416000,4,2.5,2890 +349900,3,2.5,1580 +465000,3,2.25,1530 +950000,4,2.5,3670 +496800,4,2.25,1850 +680000,4,2.5,2440 +920000,4,3.25,2190 +1.29E+06,5,4,4360 +825000,4,2.75,3990 +292000,3,2.5,1270 +576000,4,2.5,3340 +670000,2,2,1500 +953007,4,3.5,3120 +399000,4,2.5,2480 +399000,2,2,1110 +847093,4,2.75,2760 +599950,3,2.5,1510 +499000,3,2.5,1460 +760000,4,2.75,3980 +1.70E+06,4,3.75,3320 +1.03E+06,4,3.25,3270 +515000,4,2.5,2670 +355000,3,2.25,1410 +319900,4,2.75,2475 +460000,3,3.5,1600 +305000,2,1,1290 +280000,3,2.5,1608 +394950,2,2.25,1300 +382000,4,3.5,2530 +560000,3,2.5,1390 +772000,3,2.25,1640 +324950,4,2.5,2229 +530000,3,2.5,1790 +384000,3,2.25,990 +719950,5,2.75,3240 +319950,2,2.5,1280 +292000,3,2.5,1610 +1.50E+06,6,3.5,3670 +425000,2,2.5,1150 +799950,5,3.75,3760 +499000,2,2.5,1320 +572000,4,2.75,2700 +459000,2,2,1480 +529500,3,2.25,1410 +374500,4,2.5,3135 +584000,3,2.5,1480 +1.90E+06,4,4.5,4020 +505000,2,2.25,1060 +565000,2,2.5,1950 +799000,4,2.75,3340 +547000,3,2.5,1570 +550000,3,2.5,1930 +250000,3,2,1590 +960000,4,4.5,3720 +2.95E+06,4,4.25,4470 +441000,2,1,1290 +265000,3,2.25,1489 +430000,3,2.5,2075 +286800,3,2.5,1413 +375000,3,2.5,1300 +312500,3,3.25,1480 +850000,4,2.75,3320 +390500,3,2.25,1530 +455000,3,2.5,1180 +455000,2,2,1190 +515000,3,2.25,1300 +362500,3,3.5,1710 +460000,3,2.5,2390 +540000,4,3.5,3510 +230000,3,1.75,1140 +425000,2,2.5,1320 +298450,5,3,2100 +344000,4,2.5,2400 +416286,3,2.5,1408 +379500,4,2.5,2560 +350000,2,2.5,1260 +258800,2,1.75,1290 +620000,4,2.5,2730 +295000,2,2.5,1630 +908990,4,2.75,3530 +485230,4,2.5,2714 +475000,3,2.25,1630 +1.24E+06,5,3.25,5790 +635000,3,3,2230 +350000,3,2.5,1380 +345000,3,3.5,1320 +700000,2,2,1490 +490000,3,2.25,1280 +1.30E+06,5,4,3870 +579000,2,2.5,1280 +552500,3,1.5,1300 +467000,4,2.75,2170 +305000,4,2.25,1763 +212000,2,1.5,1020 +429000,4,2.5,1840 +479950,3,2,1820 +825000,3,3.5,2670 +1.18E+06,6,6.5,6260 +250000,3,2.25,1400 +289000,2,1.5,1160 +265000,3,2.5,1400 +344000,3,2.5,1232 +749000,4,2.75,2700 +492000,4,2.5,2550 +552500,4,2.5,3260 +653500,2,2.5,1680 +855000,4,3.25,2630 +333000,3,1.5,1260 +415000,4,2.5,2550 +445000,4,3.25,3450 +273500,3,2.5,1550 +969990,4,2.5,4150 +1.20E+06,5,3.5,3900 +430000,3,3.25,1550 +392000,4,2.5,2130 +795000,4,2.5,2890 +457000,3,2.5,1220 +453000,4,2.5,2502 +376000,3,2,1340 +469995,4,2.5,2350 +540000,3,2.5,1810 +555000,4,2.5,3310 +445000,3,2,1620 +256950,2,2,1070 +297000,4,2.5,2230 +320000,4,2.5,1970 +805000,5,4.5,4600 +799990,4,2.75,3110 +680000,4,2.5,3490 +395000,3,2.5,1600 +732000,3,2.5,1960 +163800,2,2.5,1000 +220000,2,2.5,1000 +308625,2,2,1500 +375000,3,2.5,2424 +300000,4,2.5,2303 +284000,3,2.5,1880 +610000,2,2,1210 +955000,4,3.25,3720 +982000,4,2.75,3610 +359000,3,1.5,1360 +779380,5,2.5,2590 +1.51E+06,5,3.25,4390 +635000,3,3,2290 +1.06E+06,4,3.75,3880 +389500,3,2.5,1350 +359800,5,2.5,2170 +399950,3,3,1296 +320000,3,3.25,1530 +255900,3,2.5,1489 +380000,4,2.5,2130 +580000,3,2.75,1430 +545000,5,3.75,2380 +451300,3,2.5,1420 +852880,4,3.25,3450 +305000,4,2.5,1914 +295000,2,1.5,988 +261000,3,2.25,1584 +560000,4,2.5,2630 +795000,4,3.25,3520 +384950,4,2.5,2380 +500000,3,1.75,1410 +640000,4,3.5,3220 +418000,4,3.25,3266 +799000,3,2,2550 +552900,4,3.5,3828 +539950,3,2.25,1670 +524225,4,2.5,3056 +424950,2,1.5,1000 +560000,3,3.25,1530 +715000,5,3,3490 +300000,5,2.5,2760 +405000,3,2.5,1440 +327000,3,3,1370 +859950,6,4,3180 +560000,4,3,2720 +379900,3,2.5,1800 +625000,3,2.5,3220 +398096,3,2.5,2370 +315000,3,2.5,1410 +939000,4,3.5,3640 +674000,3,2.5,1920 +306000,4,2.5,2267 +2.32E+06,5,4.75,5780 +394950,2,1,1131 +914154,3,3.5,2940 +496000,3,2.5,2180 +430100,3,2.25,1400 +449990,4,2.5,2680 +502000,4,2.5,2680 +310000,3,2.5,1300 +349950,4,3.5,2796 +625000,2,1.75,1460 +1.05E+06,4,3.5,4210 +680000,4,2.75,2330 +828950,4,3.5,3930 +274950,3,2.5,1608 +293000,2,2.25,1610 +795000,4,3.5,3200 +282900,4,2.5,1710 +909950,5,3.75,3050 +922755,4,3.5,3560 +424000,4,2.5,2650 +630000,3,2.5,3490 +810000,4,3.25,4140 +256703,3,2,1670 +386380,3,2.5,1720 +485000,2,2,1510 +275000,3,2.25,1450 +370000,4,2.5,1812 +499950,2,2.25,1060 +502000,3,2.5,1600 +654000,3,3.25,1530 +575000,4,2.25,2070 +500000,4,2.5,3630 +554000,3,2.5,2140 +360000,4,1.75,2010 +619990,4,2.75,2630 +317500,4,2.5,2233 +564950,4,2.75,2990 +545000,2,1.25,1240 +333700,3,2.5,2230 +1.48E+06,3,3.25,3700 +530000,4,3,2290 +396000,2,1.5,950 +305000,2,1.75,1120 +380000,5,3.5,2420 +305000,4,2.5,1714 +440000,4,2.5,2230 +459000,4,3,2530 +530000,3,3.5,1550 +600000,4,2.75,3110 +515000,3,3,2100 +275000,4,2.5,2150 +540000,3,1.75,1630 +445000,3,2.5,2230 +285000,3,2.5,1320 +480000,3,2.5,1590 +440000,5,3.25,2610 +287450,3,2.5,1440 +507950,4,2.5,2630 +750000,3,3.5,3390 +425000,3,1.5,1400 +420000,3,3.5,1900 +394950,3,2.5,1350 +635000,4,3.25,3420 +513000,3,2.5,2150 +380000,4,2.5,2110 +1.13E+06,4,3.25,3810 +540000,5,3,2870 +352499,2,2.25,1240 +603000,4,3.5,3610 +685000,4,2.5,2310 +330675,4,3,1930 +275000,3,3,1390 +259950,3,2.5,1578 +441000,3,2,1720 +1.14E+06,5,3.75,4700 +590000,3,3.5,1970 +497000,3,2.25,1460 +345500,3,2.5,1930 +562500,3,2.25,1300 +355000,3,2.25,1445 +345000,2,2.25,860 +478000,3,2.5,3040 +391500,3,2.5,2424 +265000,2,1.5,1084 +395000,3,2.5,2510 +286308,2,1.5,1220 +370000,2,2.25,1280 +1.08E+06,5,3.5,3740 +298900,3,2.5,1852 +775000,4,2.5,2580 +790000,4,3.5,3190 +1.05E+06,3,2.5,3400 +249000,2,1.5,1090 +348000,3,2,2360 +358000,5,2.5,2460 +260000,5,2.5,2025 +765000,4,3,4410 +739000,3,2.5,2810 +890000,5,3.5,4490 +462000,4,2.5,3070 +380000,4,2.5,1984 +770000,5,3.5,4750 +641000,4,3.25,2760 +2.30E+06,4,4,4360 +369000,4,2.5,3060 +1.11E+06,4,3,2770 +357000,5,2.5,2990 +650000,3,2.75,1540 +563500,3,2.5,1400 +345000,3,2.5,1680 +479950,3,2,2260 +660000,4,3.5,3400 +800000,4,2.5,2930 +253101,3,2,1239 +555000,3,3.5,2100 +240000,4,1,1200 +380000,4,1,1200 +239000,2,1.5,680 +760000,4,3.25,2690 +430000,4,2.5,2750 +660000,3,2.5,2450 +399963,4,2.5,2620 +411000,2,2,1130 +483453,4,2.75,2790 +469950,3,2,1820 +504058,4,2.75,2910 +425996,4,2.5,2568 +760005,4,2.75,3090 +699999,2,2,1460 +749950,3,2.5,2010 +674600,4,2.5,2610 +450000,2,1.5,960 +272000,3,2.5,1528 +450000,2,1.5,1310 +643950,3,2.25,1760 +290000,3,2.5,1420 +378000,3,2.5,1650 +728050,3,2.5,2320 +499160,4,2.5,2628 +536000,4,2.5,2520 +419900,5,3.5,2880 +469000,3,2.25,1440 +374000,3,2.5,2185 +182568,4,1.5,1500 +334888,3,2.5,1769 +799900,4,4,3650 +383000,4,2.5,2160 +580000,3,2.5,1820 +351999,3,2.5,2370 +1.33E+06,3,3,3180 +312000,3,2.5,1780 +674950,4,3.5,2650 +1.11E+06,5,2.75,3300 +415000,2,2.5,1160 +1.25E+06,3,3,3460 +208800,3,2.5,1390 +452000,2,2.5,1260 +837000,5,2.75,2940 +780000,5,3.5,3190 +1.49E+06,4,3.5,3930 +1.60E+06,5,3.75,3570 +369946,3,2.5,2420 +530000,3,2.75,3400 +386000,4,2.5,2478 +1.90E+06,4,2.5,3070 +735000,4,3.5,3200 +1.75E+06,5,3.25,5790 +489950,3,2.25,1590 +357500,3,3,1730 +329995,4,2.5,2303 +414000,3,2.5,1790 +533500,3,3.5,2490 +402395,4,2.5,2669 +725000,4,3.25,2610 +1.28E+06,6,5.25,6160 +239800,2,1.75,1290 +616950,5,3.5,3560 +1.26E+06,4,3.25,4360 +435000,3,2.25,1230 +925000,4,3.25,3640 +631500,2,2.5,1780 +399995,3,1.5,1140 +369950,3,2,1270 +475000,5,3.5,2780 +353000,4,2.5,1912 +329950,4,2.5,2300 +367000,3,2.5,2828 +447500,4,2.5,2425 +595000,4,3.25,3730 +325000,1,1,730 +690000,2,2.5,1990 +329950,3,2.5,1300 +399500,4,2.5,2560 +555000,5,2.5,2450 +427000,2,1.5,1440 +375000,3,2.25,1140 +499000,2,1.5,1110 +750000,3,2.5,2620 +336900,3,2.5,1690 +555000,2,2.75,1950 +1.28E+06,4,3.5,3530 +999950,4,3.5,3310 +975000,5,3,2620 +299000,3,2.25,1350 +479000,2,2.5,1741 +428000,3,2.5,1650 +409000,3,2.5,1890 +798500,3,3,1950 +689000,4,3.5,4490 +375000,6,2.25,3206 +775000,4,3.5,4130 +639983,5,3,2800 +300000,4,3,1984 +627000,4,2.5,2750 +275000,3,2.75,1740 +352800,4,2.25,1800 +565000,3,2.25,1540 +765000,4,2.25,2030 +644000,4,2.5,3310 +461000,3,1.5,1270 +270500,5,2.5,2406 +640000,2,2.25,1540 +457000,4,2.5,2820 +355000,5,2.5,2540 +356000,2,2.25,1230 +425000,4,2.5,1900 +562500,5,2.75,2920 +460000,3,2.5,1450 +790000,4,3,5370 +401000,3,2,1270 +1.10E+06,3,2.5,2550 +850000,4,3,3070 +274500,3,2.25,1450 +1.94E+06,5,3.5,4230 +808000,4,2.5,3480 +312000,3,2.25,1490 +320000,3,2.25,1200 +410000,3,2.5,2150 +725000,3,3.5,3690 +335000,4,2.5,1900 +519990,4,3.25,1690 +533112,4,2.75,2790 +274900,3,2,1936 +325000,2,2.25,1150 +350000,4,2.5,2040 +550000,4,2.5,2470 +311850,4,2.5,1890 +526000,3,2.5,1626 +375000,4,2.5,2250 +299999,3,2.25,1350 +436000,3,2.5,1460 +303000,3,2.5,2056 +525000,2,2.5,1160 +575000,3,3,1384 +420000,2,1.5,1100 +329950,3,2.5,2456 +1.83E+06,4,4.25,4500 +1.18E+06,4,3.25,3780 +499950,2,2.5,1320 +1.15E+06,4,3,5940 +400000,3,2,1650 +246950,3,3,1670 +630000,3,3.25,1610 +561000,5,2.75,3370 +287000,4,2.5,2660 +600000,3,3.25,1690 +490000,3,2.25,1620 +330000,3,1.75,1300 +286950,4,2.5,1610 +1.55E+06,3,3.25,3530 +880000,4,2.5,3550 +577450,3,3,1730 +405000,5,2.75,2400 +510000,3,2.5,1420 +465000,2,1.5,1220 +1.30E+06,4,2.25,2360 +609000,4,3.5,3990 +336000,3,2.5,1260 +375000,3,2.5,1580 +294500,3,2.5,1760 +925000,5,3.5,3420 +730000,5,2.75,2870 +280000,4,2.5,1934 +500000,3,1.5,1220 +605000,3,2.75,2450 +379950,3,3.25,1860 +605000,3,2.5,1500 +720000,2,1.75,1570 +549900,3,2,1280 +427000,3,2.5,3192 +492000,3,2.5,1690 +419190,2,2.5,1590 +650000,3,2.5,2870 +379950,4,2.5,2580 +269800,4,2.75,1830 +407000,4,2.5,2927 +580000,3,1.5,1320 +389700,3,2.5,1720 +110000,2,1,828 +230000,3,1.5,1040 +533380,4,2.75,2790 +295500,3,2.5,1410 +860000,4,4.5,4040 +812000,4,3.5,3370 +324500,3,2.5,1660 +193000,2,1.75,910 +355000,3,2.25,1280 +525000,4,2.75,2360 +370950,3,2.5,2529 +1.24E+06,4,3.5,4700 +950000,3,2.5,2780 +888990,4,2.75,3540 +705000,3,2.5,1580 +268000,3,2.5,1700 +305450,3,2.5,1600 +399900,2,1.75,1410 +495000,3,1.5,1580 +857326,3,3.5,3940 +845950,5,2.75,4450 +303210,4,2.5,2009 +343000,6,5,2732 +300000,3,2.5,2090 +334900,2,2.5,980 +477500,5,3.5,2815 +820000,4,2.5,3170 +580000,5,3.25,3030 +350000,2,2.5,1280 +910000,3,2.5,2030 +414000,3,2.5,2490 +525000,3,2.5,3030 +650000,2,2.5,1470 +450000,3,2.25,1620 +1.27E+06,4,3,5520 +699000,3,3.5,3200 +899000,4,2.5,2580 +353500,4,3,2050 +485000,3,2.5,2430 +782900,4,3.25,3060 +529000,2,2,1540 +514700,3,3.25,1310 +409316,3,2.5,1800 +388598,3,2.5,2370 +415000,3,2.25,1445 +521500,3,2.25,1450 +580000,3,2.5,1740 +882566,4,2.5,3560 +525000,3,2.75,2130 +515000,5,2.75,2980 +589410,3,3,2840 +757500,4,2.5,3420 +284000,3,2.5,1660 +338500,2,2.25,1150 +379500,3,2.25,1410 +550000,3,2,1420 +294900,3,2.5,1860 +345000,2,1.5,1340 +450000,2,1.5,1530 +420000,3,2.5,1509 +740000,3,2.5,2350 +286000,2,1.5,1010 +870000,5,3.5,4495 +727000,3,2.5,1580 +395000,4,3,2750 +535000,4,2.25,1890 +255000,3,2.25,1320 +260000,4,2.5,2150 +810000,4,2.5,3340 +359782,3,2.5,1850 +500000,2,2.5,1950 +1.05E+06,5,3.25,4240 +810000,4,3.5,2700 +605000,5,4,3040 +730000,4,2.5,2460 +327000,4,2.5,2110 +370000,2,1,780 +459000,5,3.5,2640 +2.90E+06,5,4,5190 +365000,4,2.5,2420 +255000,4,2.5,1987 +375000,1,1,720 +375000,2,1.5,1130 +518380,4,2.5,2810 +346000,3,3.25,1500 +302059,4,2,1390 +575000,4,2.5,2500 +549950,4,3.5,3906 +900000,5,6,7120 +397500,3,2.5,1470 +1.08E+06,5,3.5,3230 +775900,3,2.5,2700 +510000,4,2.5,4073 +471275,4,2.5,3361 +288000,4,2.25,1610 +989990,4,3.5,3830 +300000,3,3.25,1470 +664950,5,3,3190 +699188,4,3.25,3250 +390000,3,2.25,1490 +670000,5,2.75,2900 +487000,4,2.5,2540 +769995,5,2.75,3360 +321950,2,1.25,860 +613500,4,2.5,3020 +300000,3,2.5,1330 +400950,4,2.5,2578 +389517,4,2.5,2640 +255000,3,1.75,1260 +1.08E+06,3,2.5,1990 +637850,5,3.25,3340 +636230,4,2.5,2840 +375000,3,2.5,1530 +586500,3,2.5,1780 +544000,4,2.5,2340 +425000,4,2.5,2390 +374950,4,2.5,2090 +294570,3,1,1140 +300000,3,2.5,1960 +395950,5,3.5,2738 +800000,4,2.5,3691 +439990,3,2.5,2340 +680000,4,3.5,2510 +677790,6,3,2800 +424950,3,2.5,1650 +223990,2,2.25,1061 +498000,4,2.5,3402 +359950,4,2.5,2542 +720000,3,2.5,3150 +530000,4,2.5,3010 +295000,3,2.5,1660 +255500,3,2.5,1770 +556000,3,3,1960 +277950,4,2.5,1889 +431000,4,2.5,3040 +780000,4,2.75,3420 +649000,3,3.25,1720 +447000,3,2.5,1740 +712198,4,2.5,2450 +277140,3,1.5,1190 +363000,4,2.5,3753 +598992,5,3.5,3440 +585000,3,2.5,2160 +1.27E+06,4,2.75,3820 +380950,2,2,1120 +333490,4,2.5,2250 +520000,3,3.25,1540 +315000,2,2.25,1240 +487000,2,1.5,1160 +424950,5,3.5,2760 +542300,3,2.25,1580 +320000,3,3.25,1480 +1.14E+06,4,3.25,3740 +425000,4,2.5,1950 +474950,3,3,1530 +307635,3,2.5,1820 +834538,3,2.5,2760 +769995,5,2.75,3010 +820875,5,3.25,3860 +595500,4,2.5,2490 +450000,4,2.5,3236 +695000,4,2.5,2830 +300000,3,2,1451 +515000,5,3.25,2910 +545000,3,2.5,1280 +365000,3,2.25,1110 +718500,4,2.75,2840 +279800,3,1.75,1410 +486940,4,2.5,3250 +525000,4,2.75,3030 +345000,4,2.5,1983 +613000,3,3.25,2440 +370000,3,2.5,2313 +449500,3,2.25,1260 +515000,3,2.5,2000 +346100,2,1.75,1150 +398500,4,2.5,2820 +310000,2,1.75,1160 +250000,3,2.25,1481 +1.88E+06,5,3.5,4390 +695000,2,1.75,1570 +1.09E+06,4,3,3410 +864327,5,3.25,3480 +749995,4,3.25,3430 +525000,5,2.75,2880 +659950,3,2.5,2990 +1.80E+06,5,5,4490 +950000,5,4,4100 +1.40E+06,4,2.75,3870 +265050,2,1.5,800 +450000,3,2.25,1620 +915000,4,2.5,2910 +963000,4,3.25,3530 +270000,4,2.5,2701 +294000,2,2.5,1380 +700000,3,2.5,2050 +1.07E+06,3,4,3370 +494900,3,2.5,2040 +415000,3,2.5,1610 +459990,3,2.5,2680 +882990,4,3.5,3560 +620000,4,3.5,3880 +375900,3,2,1824 +654000,3,2.5,2220 +1.84E+06,4,3.25,4140 +215000,3,2.5,1322 +630500,3,2.5,1909 +855000,4,3.5,3460 +235245,4,2.5,1954 +770000,5,2.5,3000 +734990,4,2.5,2650 +880000,4,2.5,2580 +525000,4,3,2650 +775000,4,3.5,3390 +687015,3,1.75,1470 +663000,3,2.5,1910 +815000,4,2.5,3030 +1.05E+06,4,3.25,2930 +433190,3,2.5,1650 +725000,4,2.5,2870 +279950,3,2.5,1608 +272167,2,2.5,1620 +468500,3,2.5,1350 +298000,3,2.5,1950 +303500,6,4.5,3390 +308000,3,1.75,1300 +646800,3,3,2230 +530200,4,2.5,1880 +405000,5,2.5,3370 +529000,2,2.5,1320 +675900,3,2.5,2920 +570000,3,3.25,1550 +375500,4,2.5,2301 +445000,3,3.25,1710 +1.10E+06,4,3.75,2890 +477000,3,2.5,2100 +450000,3,2.75,2240 +427005,3,3,1460 +720000,3,1.75,1370 +2.23E+06,3,3.5,3760 +450800,4,3.25,2510 +461100,2,2.25,1210 +1.06E+06,4,3,2990 +590000,3,2.5,1710 +478830,4,2.5,3274 +760000,4,2.25,3300 +1.03E+06,4,3.5,4370 +385000,4,2.5,2050 +500000,2,2.5,1310 +425000,3,1.5,1680 +552100,3,3,1330 +785000,3,3,1950 +615000,5,3.25,3090 +309000,3,2.5,1950 +369500,3,2,1108 +391000,4,2.25,2190 +465000,3,1.75,1590 +879950,4,2.75,3010 +372000,3,2,1330 +259000,3,2.5,1550 +374000,2,1.5,1260 +561000,4,2.5,2550 +610000,3,2.5,1300 +635000,3,3,2230 +235000,1,1.5,1170 +623300,4,3.5,4170 +412500,3,2,1680 +380000,4,3.25,2864 +497000,3,2.25,1630 +452000,4,2.5,2716 +312000,3,2.5,1750 +469950,5,3,3223 +775000,5,2.5,2600 +679990,4,2.75,3320 +288790,4,2,1350 +800000,5,2.5,3410 +299000,3,2.5,1572 +332000,4,2.5,2300 +525000,1,1.5,1030 +620000,3,1.75,1458 +452000,4,2.5,2190 +630000,4,3,3640 +485000,4,2.75,2790 +349950,4,2.5,2632 +499990,4,2.75,2910 +510000,2,2.25,1470 +1.08E+06,3,2.5,2240 +494000,3,2.5,2310 +429900,3,2.5,2370 +505000,4,2.75,2980 +272000,4,2,1870 +671500,3,2.5,1770 +729950,4,3.5,3510 +471835,4,2.5,3281 +249950,3,2,1670 +424950,5,3.5,2760 +1.24E+06,5,3.5,5430 +440000,4,2.5,2990 +495000,4,3.5,3170 +870000,4,2.5,3520 +559000,2,3,1650 +495000,4,2.75,2656 +722000,3,2.5,2230 +567500,3,2.5,2280 +440000,4,2.5,2798 +400000,4,2.5,2398 +459995,4,2.5,2350 +365000,5,2.75,2410 +389950,3,2.25,1580 +320000,3,3.25,1450 +415500,4,2.5,1750 +775000,3,2.5,3020 +590000,3,3,1740 +950000,2,2.25,2200 +378950,4,2.5,1867 +441750,2,1.5,1020 +335900,4,2.75,2475 +229800,2,1.75,1110 +645000,3,2.5,1900 +448000,3,3.25,1560 +706000,4,2.5,2510 +988990,4,4.75,4150 +716000,3,3,1660 +319000,2,1.5,1090 +300000,4,2.5,1914 +625000,4,3.25,2730 +773000,3,2.75,2470 +392000,5,2.5,2340 +549995,4,3.5,2660 +480000,3,2.5,2410 +355000,3,2.25,1430 +208400,2,2.5,1570 +831548,5,2.75,3010 +279500,4,2.5,1613 +445000,3,2.5,2380 +492500,5,2.5,2570 +435000,4,2.5,2550 +325000,3,2.25,1330 +453000,2,1.5,1160 +612995,5,3.5,3240 +540000,4,2.5,2710 +465000,3,1,1150 +799950,3,2.25,1860 +495000,3,2.25,1280 +579950,3,2.5,1810 +331000,2,2.25,1240 +580000,4,3.5,1460 +669000,2,2.5,1640 +2.35E+06,4,4.25,5010 +539900,3,3.25,1300 +490000,4,2.5,2510 +627000,3,3.5,2710 +458000,4,3.5,3217 +440000,3,2.5,1650 +1.70E+06,4,3.5,3950 +935000,2,2.5,1680 +641000,5,3.5,3420 +452000,3,2.75,2300 +625000,4,2.75,3010 +1.35E+06,4,3.5,4680 +834950,5,3.5,3630 +1.50E+06,3,3.5,3530 +305000,4,2.5,2280 +659000,3,2.5,3090 +353000,1,1,550 +535000,4,3.25,2840 +999000,4,2.5,3130 +375000,3,2.5,1440 +685000,4,3.5,2840 +333000,4,2.5,2623 +245000,1,1,390 +2.00E+06,4,3.25,5640 +329950,2,2.25,1260 +403000,2,1,894 +559630,4,2.5,3370 +344000,3,2.25,1250 +435000,3,1.5,1180 +430000,2,2.5,1520 +417000,3,2.5,2000 +895950,5,2.75,3180 +563950,4,2.75,3050 +332220,3,1.5,2580 +1.49E+06,5,6,6880 +680000,3,2.5,2570 +825750,4,3.5,2950 +338000,3,2.5,1690 +535365,4,2.75,2790 +608000,3,2.25,1720 +930000,3,2.25,2890 +565000,2,1.75,1130 +495000,2,2.25,1460 +667000,3,2.5,2510 +495000,4,2.5,3390 +928990,4,2.5,3570 +345000,4,2.5,2280 +1.07E+06,5,3.5,2920 +519995,4,3,2590 +924000,5,2.75,3210 +295000,3,2,1230 +472000,3,2.5,3800 +405000,3,2.5,1500 +410000,4,2.25,2510 +419500,3,1.5,1400 +382000,3,2.25,1450 +370000,2,2.5,1390 +553000,3,2.75,3160 +2.07E+06,4,3.75,4350 +455950,4,2.5,2720 +331000,3,3.25,1290 +417250,3,2.25,1606 +490000,5,3.5,4460 +325000,4,3.25,2800 +705000,5,3.5,3250 +1.17E+06,6,3.5,4310 +365000,3,2.25,1310 +403000,2,1.5,1240 +409000,3,2.5,1950 +391000,3,2.5,1800 +542525,4,2.5,2650 +339950,2,1,820 +499990,4,2.75,2620 +1.77E+06,4,3.25,3980 +608000,3,3.5,1660 +392000,4,2.5,2130 +320000,3,1.75,1790 +274800,3,1.75,1410 +325000,3,2.25,1330 +418500,4,2.5,2190 +300000,3,2.5,2540 +269950,3,2.5,2244 +358000,3,2.5,2026 +350000,3,2.5,1730 +782000,4,3.5,3910 +779000,3,2.5,1580 +685000,4,2.5,2510 +305000,2,2.25,1000 +350000,4,2.5,1660 +775000,4,3.5,3060 +317750,3,2.5,1980 +438000,2,1,980 +325000,2,2.5,1050 +830000,4,3.25,3080 +353000,3,2.25,1900 +460000,4,2.5,2200 +370000,3,1.5,1360 +330000,3,2.5,2238 +569888,4,2.5,2590 +353900,3,2.5,2517 +695000,4,3.5,3510 +288790,3,1.75,1290 +334950,5,3,2230 +869950,4,2.75,3140 +557500,3,3.5,3350 +389990,4,2.5,2245 +455000,3,1.75,1420 +598500,3,3,1560 +750000,4,2.75,2810 +729999,2,2.25,1630 +299950,3,2.5,1740 +374950,3,2.25,1390 +386950,3,2.5,1070 +535000,5,3.25,2850 +890000,5,3.25,4100 +1.05E+06,4,2.5,3260 +1.11E+06,4,3.5,3660 +436952,4,2.5,2708 +365000,3,2.5,1800 +288000,3,2.5,1150 +700000,3,2.5,2230 +800000,4,3.25,3540 +899000,4,3.5,2490 +465750,3,2.5,2670 +485000,2,2.5,1430 +494995,5,2.75,2670 +255000,3,2.5,2555 +530000,3,2.5,1970 +435000,3,2,1980 +639000,3,2.5,2010 +440000,3,1.5,1270 +914500,4,2.5,3950 +580000,3,2,1870 +250000,1,1.5,1180 +410000,3,2.5,1420 +531155,4,2.75,2810 +358000,3,2.5,1400 +425000,3,2.5,1950 +326000,3,2.25,1930 +650000,4,2.5,2210 +749950,4,3.5,2630 +239950,3,1.75,1600 +315000,3,2.5,1480 +375000,2,2.5,750 +375000,3,1.5,1290 +349000,3,3.25,1340 +450000,2,1.5,1020 +669950,3,3,2330 +504600,5,3,2360 +400000,3,2.5,1495 +1.02E+06,4,3.5,3770 +518000,5,2.5,2890 +535000,3,2.75,1320 +337500,4,2.5,2330 +380000,4,2.5,3120 +875000,5,3,2960 +385000,3,2.25,1630 +1.99E+06,5,3.5,5230 +649500,4,3,3150 +1.05E+06,4,3.75,3280 +249000,3,1,1030 +525000,4,2.5,3130 +402000,3,3.5,1240 +1.75E+06,4,2.75,3560 +359800,5,2.5,2170 +330000,3,2.5,1520 +433000,3,2.5,1270 +1.01E+06,4,3.25,3610 +599832,3,2.75,3230 +312891,5,3,2300 +449000,2,2.5,1460 +495000,3,2.5,1750 +819995,5,2.75,3030 +407500,3,3.5,1522 +850000,4,3.75,3890 +1.72E+06,5,4,4590 +1.46E+06,4,4,4620 +579000,4,2.75,3220 +890776,5,2.75,3170 +352500,2,2.5,980 +529000,3,1.75,2340 +484000,3,2.25,1620 +400000,3,2.5,1910 +649950,3,2.5,2420 +915000,3,4.5,3850 +534950,5,2.5,3220 +776000,4,2.5,3040 +370000,3,1.75,1496 +610000,3,1.75,1630 +850000,5,3.5,4200 +443000,3,2.5,2430 +1.15E+06,5,4.25,4010 +453000,3,2.5,1510 +735000,4,3.5,2340 +810000,2,2.75,2700 +1.56E+06,3,3.5,4360 +2.24E+06,5,6.5,7270 +377500,3,2.5,1350 +482000,3,3.25,1380 +600000,2,2.5,1830 +420000,3,2.5,1470 +480000,4,2.5,2940 +406000,2,2,1110 +505000,4,2.5,2790 +1.87E+06,4,3.75,3790 +942990,4,2.5,3570 +440000,3,2.25,1230 +390000,3,3.25,1370 +475000,3,3.25,1380 +420000,1,2,1070 +1.41E+06,4,4,4920 +1.38E+06,5,3.5,5150 +462500,6,3,2390 +579950,4,2.75,2460 +861111,4,2.5,3650 +1.45E+06,4,3.5,4300 +290000,3,2.25,1610 +535000,4,2.5,2610 +585000,3,2.5,1750 +670000,3,2.5,3310 +3.00E+06,4,3.75,5090 +346000,3,2,1060 +1.33E+06,4,4,4420 +999999,3,2.5,2100 +599000,3,1.75,1650 +332000,4,2.5,2380 +336750,2,2.25,1170 +370000,4,2.5,2531 +324000,3,2.25,998 +338500,3,2.25,1333 +1.88E+06,5,3.5,4410 +402723,3,2.75,1160 +715000,4,3.25,2630 +459000,3,1.5,1160 +589999,3,2.5,2140 +405000,4,2.5,1980 +509900,3,2.5,3030 +327000,2,2,1490 +1.06E+06,2,1.5,2370 +327500,3,2.5,1820 +249000,3,2,1260 +1.38E+06,5,4.5,4350 +516500,1,1.25,1100 +465000,3,2.5,2050 +388000,3,2.5,2198 +549000,3,2.25,1230 +553000,2,2,1400 +530000,3,2.5,1410 +747450,3,2.5,2110 +305000,2,2.5,1590 +540000,5,2.5,3370 +750000,5,4,4500 +422000,4,2.5,2930 +337000,4,2.5,2470 +579950,5,2.75,3080 +341780,4,2.75,2260 +710200,4,3,1670 +690000,3,3.25,1540 +1.70E+06,4,3.5,3830 +329000,2,2.5,980 +330000,3,2.5,1450 +608500,4,3.5,2850 +230000,3,1.75,1140 +785000,4,3.5,3070 +610950,3,3,1680 +399950,3,2.5,3087 +3.57E+06,5,4.5,4850 +579000,4,3.25,1900 +362500,2,1.5,940 +645000,3,3.25,1730 +594866,3,3,2780 +625000,3,3,2780 +490000,3,2.25,1500 +399950,2,1,710 +380000,3,2.5,1260 +270000,3,2.5,1870 +505000,2,2.5,1430 +385000,3,2.5,1520 +414500,2,1.5,1210 +347500,3,2.5,2540 +1.22E+06,4,3.5,4910 +572000,4,2.75,2770 +475000,3,2.25,1190 +1.09E+06,5,3.75,4170 +350000,4,2.75,2500 +520000,2,2.25,1530 +679950,5,2.75,3600 +1.58E+06,4,3.25,3410 +541800,4,2.5,3118 +810000,4,3,3990 +1.54E+06,5,3.75,4470 +467000,3,2.5,1425 +224000,3,1.75,1500 +507250,3,2.5,2270 +429000,3,2,1490 +610685,4,2.5,2520 +1.01E+06,4,3.5,3510 +475000,3,2.5,1310 +360000,3,2.5,1530 +400000,4,2.5,2310 +402101,2,0.75,1020 +400000,3,2.5,1600 +325000,2,0.75,1020 \ No newline at end of file diff --git a/references.bib b/references.bib index 873c5dab1..4b1315f75 100644 --- a/references.bib +++ b/references.bib @@ -1,30 +1,329 @@ -@Manual{R-base, - title = {R: A Language and Environment for Statistical - Computing}, - author = {{R Core Team}}, - organization = {R Foundation for Statistical Computing}, - address = {Vienna, Austria}, - year = {2019}, - url = {https://www.R-project.org}, -} - -@book{efr2008, - title={Nonparametric Curve Estimation: Methods, Theory, and Applications}, - author={Efromovich, S.}, - isbn={9780387226385}, - lccn={99013253}, - series={Springer Series in Statistics}, - url={https://books.google.com/books?id=mdoLBwAAQBAJ}, +@article{alr2021, + title={Study on the Missing Data Mechanisms and Imputation Methods}, + author={Alruhaymi, A.Z. and Kim, C.J.}, + journal={Open Journal of Statistics}, + volume={11}, + number={4}, + pages={477-492}, + year={2021}, + publisher={Scientific Research Publishing}, + url={https://doi.org/10.4236/ojs.2021.114030} +} + +@book{arn2017, + title={Survey Sampling Theory and Applications}, + author={Arnab, R.}, + isbn={9780128118481}, + url={https://www.sciencedirect.com/topics/mathematics/imputation-method}, + year={2017}, + publisher={Academic Press} +} + +@article{azu2011, + title={Multiple imputation by chained equations: what is it and how does it work?}, + author={Azur, M. J. and Stuart, E. A. and Frangakis, C. and Leaf, P. J.}, + journal={Int J Methods Psychiatr Res.}, + volume={20}, + number={1}, + pages={40-49}, + year={2011}, + publisher={Wiley Online Library}, + url={https://onlinelibrary.wiley.com/doi/epdf/10.1002/mpr.329} +} + +@article{cao2021, + title={Review and evaluation of imputation methods for multivariate longitudinal data with mixed-type incomplete variables}, + author={Cao, Y. and Allore, H. and Wyk, B. V. and Gutman R.}, + journal={Statistics in Medicine}, + volume={41}, + number={30}, + pages={5844-5876}, + year={2021}, + publisher={John Wiley & Sons, Ltd}, + url={https://doi-org.ezproxy.lib.uwf.edu/10.1002/sim.9592} +} + +@article{car2021, + title={Missing data: A statistical framework for practice}, + author={Carpenter, J. R. and Smuk, M.}, + journal={Biometrical Journal}, + volume={63}, + number={5}, + pages={915-947}, + year={2021}, + publisher={John Wiley & Sons, Ltd}, + url={https://doi.org/10.1002/bimj.202000196} +} + +@article{cha2023, + title={Binned Data Provide Better Imputation of Missing Time Series Data from Wearables}, + author={Chakrabarti, S. and Biswas, N. and Karnani, K. and Padul, V. and Jones, L. D. and Kesari, S. and Ashili, S.}, + journal={Sensors}, + volume={23}, + number={3}, + pages={1454}, + year={2023}, + publisher={MDPI}, + url={https://doi.org/10.3390/s23031454} +} + +@article{don2006, + title={Review: A gentle introduction to imputation of missing values}, + author={Donders, A. R. and van der Heijden, G. J. and Stijnen, T. and Moons, K. G.}, + journal={Journal of Clinical Epidemiology}, + volume={59}, + number={10}, + pages={1087-1091}, + year={2006}, + url={https://doi.org/10.1016/j.jclinepi.2006.01.014} +} + +@article{don2013, + title={Principled missing data methods for researchers}, + author={Dong, Y. and Peng, C. J.}, + journal={SpringerPlus}, + volume={2}, + number={222}, + year={2013}, + url={https://doi.org/10.1186/2193-1801-2-222} +} + +@article{end2001, + title={The Performance of the Full Information Maximum Likelihood Estimator in Multiple Regression Models with Missing Data}, + author={Enders, C. K.}, + journal={Sage Journals}, + volume={61}, + number={5}, + year={2001}, + publisher={Educational and Psychological Measurement (EPM)}, + url={https://doi.org/10.1177/0013164401615001} +} + +@article{fan2021, + title={Imputation and likelihood methods for matrix-variate logistic regression with response misclassification}, + author={Fang, J. and Yi, G. Y.}, + journal={The Canadian Journal of Statistics}, + volume={49}, + number={4}, + pages={1298-1316}, + year={2021}, + publisher={John Wiley & Sons, Ltd}, + url={https://doi.org/10.1002/cjs.11620} +} + +@article{fie2008, + title={A review of RCTs in four medical journals to assess the use of imputation to overcome missing data in quality of life outcomes}, + author={Fielding, S. and Maclennan, G. and Cook, J. A. and Ramsay, C. R.}, + journal={Trials}, + volume={9}, + number={51}, + pages={1-6}, year={2008}, - publisher={Springer New York} + publisher={BioMed Central}, + url={https://doi.org/10.1186/1745-6215-9-51} } -@article{bro2014principal, - title={Principal component analysis}, - author={Bro, Rasmus and Smilde, Age K}, - journal={Analytical methods}, - volume={6}, + +@article{ham2021, + title={A Comparison of Multiple Imputation Methods for Recovering Missing Data in Hydrological Studies}, + author={Hamzah, F. B. and Hamzah, F. M. and Razali, S. R. and Samad, H.}, + journal={Civil Engineering Journal}, + volume={7}, number={9}, - pages={2812--2831}, - year={2014}, - publisher={Royal Society of Chemistry} + pages={1608-1619}, + year={2021}, + url={https://pdfs.semanticscholar.org/e875/5b85e63669c6b3fd9ba6f380400f087b39fc.pdf} +} + +@book{hey2019, + title={Applied Missing Data Analysis With SPSS and (R) Studio}, + author={Heymans, M. W. and Eekhout, I.}, + url={https://bookdown.org/mwheymans/bookmi/}, + year={2019}, + publisher={Heymans & Eekhout} +} + +@article{hug2019, + title={Accounting for missing data in statistical analyses: multiple imputation is not always the answer}, + author={Hughes, R. A. and Heron, J. and Sterne, J. A. and Tilling, K.}, + journal={International Journal of Epidemiology}, + volume={48}, + number={4}, + pages={1294-1304}, + year={2019}, + url={https://doi.org/10.1093/ije/dyz032} +} + +@article{jav2021, + title={Evaluation of Four Multiple Imputation Methods for Handling Missing Binary Outcome Data in the Presence of an Interaction between a Dummy and a Continuous Variable}, + author={Javadi, S. and Bahrampour, A. and Saber, M. M. and Garrusi, B. and Baneshi, M. R.}, + journal={Journal of Probability and Statistic}, + volume={2021}, + number={6668822}, + pages={1-14}, + year={2021}, + publisher={Hindawi}, + url={https://doi.org/10.1155/2021/6668822} +} + +@article{kan2013, + title={The prevention and handling of the missing data}, + author={Kang, H.}, + journal={Korean Journal of Anesthesiology}, + volume={64}, + number={5}, + pages={402-406}, + year={2013}, + url={https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3668100/} +} + +@article{mai2023, + title={Handling of missing data with multiple imputation in observational studies that address causal questions: protocol for a scoping review}, + author={Mainzer, R. and Moreno-Betancur, M. and Nguyen, C. and Simpson, J. and Carlin, J. and Lee, K.}, + journal={BMJ Open}, + volume={13}, + pages={1-6}, + year={2023}, + url={http://dx.doi.org/10.1136/bmjopen-2022-065576} } + +@article{mip2019, + title={MI Procedure}, + year={2019}, + publisher={SAS}, + url={https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_mi_details03.htm} +} + +@article{oli2003, + title={The comparative efficacy of imputation methods for missing data in structural equation modeling}, + author={Olinsky, A. and Chen, S. and Harlow, L.}, + journal={European Journal of Operational Research}, + volume={151}, + number={1}, + pages={53-79}, + year={2003}, + url={https://doi.org/10.1016/S0377-2217(02)00578-7} +} + +@article{pam2016, + title={Handling missing data: analysis of a challenging data set using multiple imputation}, + author={Pampka, M. and Hutcheson, G. and Williams, J.}, + journal={International Journal of Research & Method in Education}, + volume={39}, + number={1}, + pages={19-37}, + year={2016}, + url={https://doi.org/10.1080/1743727X.2014.979146} +} + +@article{ped2017, + title={Missing data and multiple imputation in clinical epidemiological research}, + author={Pedersen, A. B. and Mikkelsen, E. M. and Cronin-Fenton, D. and Kristensen, N. R. and Pham, T. M. and Pedersen, L. and Petersen, I.}, + journal={Clinical Epidemiology}, + volume={9}, + pages={157-166}, + year={2017}, + url={https://www.tandfonline.com/doi/full/10.2147/CLEP.S129785} +} + +@article{sch2002, + title={Missing Data: Our View of the State of the Art}, + author={Schafer, J. L. and Graham, J. W.}, + journal={Psychological Methods}, + volume={7}, + number={2}, + pages={147-177}, + year={2002}, + publisher={American Psychological Association, Inc.}, + url={https://psycnet.apa.org/doi/10.1037/1082-989X.7.2.147} +} + +@article{str2008, + title={Missing data and the trouble with LOCF}, + author={Streiner, D. L.}, + journal={EBMH}, + volume={11}, + number={1}, + pages={1-5}, + year={2008}, + publisher={BMJ}, + url={http://dx.doi.org/10.1136/ebmh.11.1.3-a} +} + +@article{tho2022, + title={Composite Imputation Method for the Multiple Linear Regression with Missing at Random Data}, + author={Thongsri, T. and Samart, K.}, + journal={International Journal of Mathematics and Mathematics and Computer Science}, + volume={17}, + number={1}, + pages={51-62}, + year={2022}, + url={http://ijmcs.future-in-tech.net/17.1/R-Samart.pdf} +} + +@article{ura2020, + title={A multiple regression imputation method with application to sensitivity analysis under intermittent missingness}, + author={Uranga, R. and Molenberghs, G. and Allende, S.}, + journal={Communications in Statistics - Theory and Methods}, + volume={51}, + number={15}, + pages={5146-5161}, + year={2020}, + publisher={Taylor & Francis Online}, + url={https://doi.org/10.1080/03610926.2020.1834581} +} + +@article{van2011, + title={mice: Multivariate Imputation by Chained Equations in R}, + author={van_Buuren, Groothuis-Oudshoorn, K.}, + journal={Journal of Statistical Software}, + volume={45}, + pages={1–67}, + year={2011}, + url={https://doi.org/10.18637/jss.v045.i03} +} + +@article{van2020, + title={Rebutting Existing Misconceptions About Multiple Imputation as a Method for Handling Missing Data}, + author={van_Ginkel, J. R. and Linting, M. and Rippe, R. C. and van der Voort, A.}, + journal={Journal of Personality Assessment}, + volume={102}, + number={3}, + pages={2812-2831}, + year={2020}, + url={https://doi.org/10.1080/00223891.2018.1530680}, +} + +@article{won2023, + title={A Comparative Study of Imputation Methods for Multivariate Ordinal Data}, + author={Wongkamthong, C. and Akande, O.}, + journal={Journal of Survey Statistics and Methodology}, + volume={11}, + number={1}, + pages={189-212}, + year={2023}, + url={https://doi.org/10.1093/jssam/smab028} +} + +@article{wul2017, + title={Multiple imputation by chained equations in praxis: guidelines and review}, + author={Wulff, J. N. and Jeppesen, L. E.}, + journal={Electronics Journal of Business Research Methods}, + volume={15}, + number={1}, + pages={41-56}, + year={2017}, + url={https://vbn.aau.dk/ws/files/257318283/ejbrm_volume15_issue1_article450.pdf} +} + +@article{yan2005, + title={Imputation and Variable Selection in Linear Regression Models with Missing Covariates}, + author={Yang, W. and Belin, T. R. and Boscardin, W. J.}, + journal={Biometrics}, + volume={61}, + pages={498-506}, + year={2005}, + publisher={Blackwell Publishing Limited}, + url={https://web-s-ebscohost-com.ezproxy.lib.uwf.edu/ehost/pdfviewer/pdfviewer?vid=0&sid=a4db468b-e77f-45ae-958e-935ed046e8be%40redis} +} + +