PKLفpygam/__init__.py""" GAM toolkit """ from __future__ import absolute_import from pygam.pygam import GAM from pygam.pygam import LinearGAM from pygam.pygam import LogisticGAM from pygam.pygam import GammaGAM from pygam.pygam import PoissonGAM from pygam.pygam import InvGaussGAM __all__ = ['GAM', 'LinearGAM', 'LogisticGAM', 'GammaGAM', 'PoissonGAM', 'InvGaussGAM'] __version__ = '0.5.3' PK*L%pygam/callbacks.py""" CallBacks """ from __future__ import absolute_import from functools import wraps import numpy as np from pygam.core import Core def validate_callback_data(method): """ wraps a callback's method to pull the desired arguments from the vars dict also checks to ensure the method's arguments are in the vars dict Parameters ---------- method : callable Returns ------- validated callable """ @wraps(method) def method_wrapper(*args, **kwargs): """ Parameters ---------- *args **kwargs Returns ------- method's output """ expected = method.__code__.co_varnames # rename curret gam object if 'self' in kwargs: gam = kwargs['self'] del(kwargs['self']) kwargs['gam'] = gam # loop once to check any missing missing = [] for e in expected: if e == 'self': continue if e not in kwargs: missing.append(e) assert len(missing) == 0, 'CallBack cannot reference: {}'.\ format(', '.join(missing)) # loop again to extract desired kwargs_subset = {} for e in expected: if e == 'self': continue kwargs_subset[e] = kwargs[e] return method(*args, **kwargs_subset) return method_wrapper def validate_callback(callback): """ validates a callback's on_loop_start and on_loop_end methods Parameters ---------- callback : Callback object Returns ------- validated callback """ if not(hasattr(callback, '_validated')) or callback._validated == False: assert hasattr(callback, 'on_loop_start') \ or hasattr(callback, 'on_loop_end'), \ 'callback must have `on_loop_start` or `on_loop_end` method' if hasattr(callback, 'on_loop_start'): setattr(callback, 'on_loop_start', validate_callback_data(callback.on_loop_start)) if hasattr(callback, 'on_loop_end'): setattr(callback, 'on_loop_end', validate_callback_data(callback.on_loop_end)) setattr(callback, '_validated', True) return callback class CallBack(Core): """CallBack class""" def __init__(self, name=None): """ creates a CallBack instance Parameters ---------- None Returns ------- None """ super(CallBack, self).__init__(name=name) @validate_callback class Deviance(CallBack): """Deviance CallBack class""" def __init__(self): """ creates a Deviance CallBack instance useful for capturing the Deviance of a model on training data at each iteration Parameters ---------- None Returns ------- None """ super(Deviance, self).__init__(name='deviance') def on_loop_start(self, gam, y, mu): """ runs the method at loop start Parameters ---------- gam : GAM instance y : array-like of length n target data mu : array-like of length n expected value data Returns ------- deviance : np.array of length n """ return gam.distribution.deviance(y=y, mu=mu, scaled=False).sum() @validate_callback class Accuracy(CallBack): def __init__(self): """ creates an Accuracy CallBack instance useful for capturing the accuracy of a model on training data at each iteration Parameters ---------- None Returns ------- None """ super(Accuracy, self).__init__(name='accuracy') def on_loop_start(self, y, mu): """ runs the method at start of each optimization loop Parameters ---------- y : array-like of length n target data mu : array-like of length n expected value data Returns ------- accuracy : np.array of length n """ return np.mean(y == (mu>0.5)) @validate_callback class Diffs(CallBack): def __init__(self): """ creates a Diffs CallBack instance useful for capturing the differences in model coefficient norms between iterations Parameters ---------- None Returns ------- None """ super(Diffs, self).__init__(name='diffs') def on_loop_end(self, diff): """ runs the method at end of each optimization loop Parameters ---------- diff : float Returns ------- diff : float """ return diff @validate_callback class Coef(CallBack): def __init__(self): """ creates a Coef CallBack instance useful for capturing the models coefficients at each iteration Parameters ---------- None Returns ------- None """ super(Coef, self).__init__(name='coef') def on_loop_start(self, gam): """ runs the method at start of each optimization loop Parameters ---------- gam : float Returns ------- coef_ : list of floats """ return gam.coef_ PK*LV7,MM pygam/core.py""" Core classes """ from __future__ import absolute_import import numpy as np from pygam.utils import round_to_n_decimal_places def nice_repr(name, param_kvs, line_width=30, line_offset=5, decimals=3): """ tool to do a nice repr of a class. Parameters ---------- name : str class name param_kvs : dict dict containing class parameters names as keys, and the corresponding values as values line_width : int desired maximum line width. default: 30 line_offset : int desired offset for new lines default: 5 decimals : int number of decimal places to keep for float values default: 3 Returns ------- out : str nicely formatted repr of class instance """ if len(param_kvs) == 0: # if the object has no params it's easy return '{}()'.format(name) # sort keys and values ks = list(param_kvs.keys()) vs = list(param_kvs.values()) idxs = np.argsort(ks) param_kvs = [(ks[i],vs[i]) for i in idxs] param_kvs = param_kvs[::-1] out = '' current_line = name + '(' while len(param_kvs) > 0: k, v = param_kvs.pop() if issubclass(v.__class__, (float, np.ndarray)): # round the floats first v = round_to_n_decimal_places(v, n=decimals) param = '{}={},'.format(k, str(v)) else: param = '{}={},'.format(k, repr(v)) if len(current_line + param) <= line_width: current_line += param else: out += current_line + '\n' current_line = ' '*line_offset + param if len(current_line) < line_width and len(param_kvs) > 0: current_line += ' ' out += current_line[:-1] # remove trailing comma out += ')' return out class Core(object): def __init__(self, name=None, line_width=70, line_offset=3): """ creates an instance of the Core class comes loaded with useful methods Parameters ---------- name : str, default: None line_width : int, default: 70 number of characters to print on a line line_offset : int, default: 3 number of characters to indent after the first line Returns ------- self """ self._name = name self._line_width = line_width self._line_offset = line_offset self._exclude = [] def __str__(self): """__str__ method""" if self._name is None: return self.__repr__() return self._name def __repr__(self): """__repr__ method""" name = self.__class__.__name__ return nice_repr(name, self.get_params(), line_width=self._line_width, line_offset=self._line_offset, decimals=4) def get_params(self, deep=False): """ returns a dict of all of the object's user-facing parameters Parameters ---------- deep : boolean, default: False when True, also gets non-user-facing paramters Returns ------- dict """ if deep is True: return self.__dict__ return dict([(k,v) for k,v in list(self.__dict__.items()) \ if (k[0] != '_') \ and (k[-1] != '_') and (k not in self._exclude)]) def set_params(self, deep=False, force=False, **parameters): """ sets an object's paramters Parameters ---------- deep : boolean, default: False when True, also sets non-user-facing paramters force : boolean, default: False when True, also sets parameters that the object does not already have **parameters : paramters to set Returns ------ self """ param_names = self.get_params(deep=deep).keys() for parameter, value in parameters.items(): if (parameter in param_names) or force: setattr(self, parameter, value) return self PK}L'AApygam/distributions.py""" Distributions """ from __future__ import division, absolute_import from functools import wraps import scipy as sp import numpy as np from abc import ABCMeta from abc import abstractmethod from pygam.core import Core from pygam.utils import ylogydu def multiply_weights(deviance): @wraps(deviance) def multiplied(self, y, mu, weights=None, **kwargs): if weights is None: weights = np.ones_like(mu) return deviance(self, y, mu, **kwargs) * weights return multiplied def divide_weights(V): @wraps(V) def divided(self, mu, weights=None, **kwargs): if weights is None: weights = np.ones_like(mu) return V(self, mu, **kwargs) / weights return divided class Distribution(Core): __metaclass__ = ABCMeta """ base distribution class """ def __init__(self, name=None, scale=None): """ creates an instance of the Distribution class Parameters ---------- name : str, default: None scale : float or None, default: None scale/standard deviation of the distribution Returns ------- self """ self.scale = scale self._known_scale = self.scale is not None super(Distribution, self).__init__(name=name) if not self._known_scale: self._exclude += ['scale'] def phi(self, y, mu, edof, weights): """ GLM scale parameter. for Binomial and Poisson families this is unity for Normal family this is variance Parameters ---------- y : array-like of length n target values mu : array-like of length n expected values edof : float estimated degrees of freedom weights : array-like shape (n,) or None, default: None sample weights if None, defaults to array of ones Returns ------- scale : estimated model scale """ if self._known_scale: return self.scale else: return (np.sum(weights * self.V(mu)**-1 * (y - mu)**2) / (len(mu) - edof)) @abstractmethod def sample(self, mu): """ Return random samples from this distribution. Parameters ---------- mu : array-like of shape n_samples or shape (n_simulations, n_samples) expected values Returns ------- random_samples : np.array of same shape as mu """ pass class NormalDist(Distribution): """ Normal Distribution """ def __init__(self, scale=None): """ creates an instance of the NormalDist class Parameters ---------- scale : float or None, default: None scale/standard deviation of the distribution Returns ------- self """ super(NormalDist, self).__init__(name='normal', scale=scale) def log_pdf(self, y, mu, weights=None): """ computes the log of the pdf or pmf of the values under the current distribution Parameters ---------- y : array-like of length n target values mu : array-like of length n expected values weights : array-like shape (n,) or None, default: None sample weights if None, defaults to array of ones Returns ------- pdf/pmf : np.array of length n """ if weights is None: weights = np.ones_like(mu) scale = self.scale / weights return sp.stats.norm.logpdf(y, loc=mu, scale=scale) @divide_weights def V(self, mu): """ glm Variance function. if Y ~ ExpFam(theta, scale=phi) such that E[Y] = mu = b'(theta) and Var[Y] = b''(theta) * phi / w then we seek V(mu) such that we can represent Var[y] as a fn of mu: Var[Y] = V(mu) * phi ie V(mu) = b''(theta) / w Parameters ---------- mu : array-like of length n expected values Returns ------- V(mu) : np.array of length n """ return np.ones_like(mu) @multiply_weights def deviance(self, y, mu, scaled=True): """ model deviance for a gaussian linear model, this is equal to the SSE Parameters ---------- y : array-like of length n target values mu : array-like of length n expected values scaled : boolean, default: True whether to divide the deviance by the distribution scaled Returns ------- deviances : np.array of length n """ dev = (y - mu)**2 if scaled: dev /= self.scale return dev def sample(self, mu): """ Return random samples from this Normal distribution. Samples are drawn independently from univariate normal distributions with means given by the values in `mu` and with standard deviations equal to the `scale` attribute if it exists otherwise 1.0. Parameters ---------- mu : array-like of shape n_samples or shape (n_simulations, n_samples) expected values Returns ------- random_samples : np.array of same shape as mu """ standard_deviation = self.scale**0.5 if self.scale else 1.0 return np.random.normal(loc=mu, scale=standard_deviation, size=None) class BinomialDist(Distribution): """ Binomial Distribution """ def __init__(self, levels=1): """ creates an instance of the Binomial class Parameters ---------- levels : int of None, default: 1 number of trials in the binomial distribution Returns ------- self """ if levels is None: levels = 1 self.levels = levels super(BinomialDist, self).__init__(name='binomial', scale=1.) self._exclude.append('scale') def log_pdf(self, y, mu, weights=None): """ computes the log of the pdf or pmf of the values under the current distribution Parameters ---------- y : array-like of length n target values mu : array-like of length n expected values weights : array-like shape (n,) or None, default: None sample weights if None, defaults to array of ones Returns ------- pdf/pmf : np.array of length n """ if weights is None: weights = np.ones_like(mu) n = self.levels p = mu / self.levels return sp.stats.binom.logpmf(y, n, p) @divide_weights def V(self, mu): """ glm Variance function computes the variance of the distribution Parameters ---------- mu : array-like of length n expected values Returns ------- variance : np.array of length n """ return mu * (1 - mu / self.levels) @multiply_weights def deviance(self, y, mu, scaled=True): """ model deviance for a bernoulli logistic model, this is equal to the twice the negative loglikelihod. Parameters ---------- y : array-like of length n target values mu : array-like of length n expected values scaled : boolean, default: True whether to divide the deviance by the distribution scaled Returns ------- deviances : np.array of length n """ dev = 2 * (ylogydu(y, mu) + ylogydu(self.levels - y, self.levels - mu)) if scaled: dev /= self.scale return dev def sample(self, mu): """ Return random samples from this Normal distribution. Parameters ---------- mu : array-like of shape n_samples or shape (n_simulations, n_samples) expected values Returns ------- random_samples : np.array of same shape as mu """ number_of_trials = self.levels success_probability = mu / number_of_trials return np.random.binomial(n=number_of_trials, p=success_probability, size=None) class PoissonDist(Distribution): """ Poisson Distribution """ def __init__(self): """ creates an instance of the PoissonDist class Parameters ---------- None Returns ------- self """ super(PoissonDist, self).__init__(name='poisson', scale=1.) self._exclude.append('scale') def log_pdf(self, y, mu, weights=None): """ computes the log of the pdf or pmf of the values under the current distribution Parameters ---------- y : array-like of length n target values mu : array-like of length n expected values weights : array-like shape (n,) or None, default: None containing sample weights if None, defaults to array of ones Returns ------- pdf/pmf : np.array of length n """ if weights is None: weights = np.ones_like(mu) # in Poisson regression weights are proportional to the exposure # so we want to pump up all our predictions # NOTE: we assume the targets are unchanged mu = mu * weights return sp.stats.poisson.logpmf(y, mu=mu) @divide_weights def V(self, mu): """ glm Variance function computes the variance of the distribution Parameters ---------- mu : array-like of length n expected values Returns ------- variance : np.array of length n """ return mu @multiply_weights def deviance(self, y, mu, scaled=True): """ model deviance for a bernoulli logistic model, this is equal to the twice the negative loglikelihod. Parameters ---------- y : array-like of length n target values mu : array-like of length n expected values scaled : boolean, default: True whether to divide the deviance by the distribution scaled Returns ------- deviances : np.array of length n """ dev = 2 * (ylogydu(y, mu) - (y - mu)) if scaled: dev /= self.scale return dev def sample(self, mu): """ Return random samples from this Poisson distribution. Parameters ---------- mu : array-like of shape n_samples or shape (n_simulations, n_samples) expected values Returns ------- random_samples : np.array of same shape as mu """ return np.random.poisson(lam=mu, size=None) class GammaDist(Distribution): """ Gamma Distribution """ def __init__(self, scale=None): """ creates an instance of the GammaDist class Parameters ---------- scale : float or None, default: None scale/standard deviation of the distribution Returns ------- self """ super(GammaDist, self).__init__(name='gamma', scale=scale) def log_pdf(self, y, mu, weights=None): """ computes the log of the pdf or pmf of the values under the current distribution Parameters ---------- y : array-like of length n target values mu : array-like of length n expected values weights : array-like shape (n,) or None, default: None containing sample weights if None, defaults to array of ones Returns ------- pdf/pmf : np.array of length n """ if weights is None: weights = np.ones_like(mu) nu = weights / self.scale return sp.stats.gamma.logpdf(x=y, a=nu, scale=mu / nu) @divide_weights def V(self, mu): """ glm Variance function computes the variance of the distribution Parameters ---------- mu : array-like of length n expected values Returns ------- variance : np.array of length n """ return mu**2 @multiply_weights def deviance(self, y, mu, scaled=True): """ model deviance for a bernoulli logistic model, this is equal to the twice the negative loglikelihod. Parameters ---------- y : array-like of length n target values mu : array-like of length n expected values scaled : boolean, default: True whether to divide the deviance by the distribution scaled Returns ------- deviances : np.array of length n """ dev = 2 * ((y - mu) / mu - np.log(y / mu)) if scaled: dev /= self.scale return dev def sample(self, mu): """ Return random samples from this Gamma distribution. Parameters ---------- mu : array-like of shape n_samples or shape (n_simulations, n_samples) expected values Returns ------- random_samples : np.array of same shape as mu """ # in numpy.random.gamma, `shape` is the parameter sometimes denoted by # `k` that corresponds to `nu` in S. Wood (2006) Table 2.1 shape = 1. / self.scale # in numpy.random.gamma, `scale` is the parameter sometimes denoted by # `theta` that corresponds to mu / nu in S. Wood (2006) Table 2.1 scale = mu / shape return np.random.gamma(shape=shape, scale=scale, size=None) class InvGaussDist(Distribution): """ Inverse Gaussian (Wald) Distribution """ def __init__(self, scale=None): """ creates an instance of the InvGaussDist class Parameters ---------- scale : float or None, default: None scale/standard deviation of the distribution Returns ------- self """ super(InvGaussDist, self).__init__(name='inv_gauss', scale=scale) def log_pdf(self, y, mu, weights=None): """ computes the log of the pdf or pmf of the values under the current distribution Parameters ---------- y : array-like of length n target values mu : array-like of length n expected values weights : array-like shape (n,) or None, default: None containing sample weights if None, defaults to array of ones Returns ------- pdf/pmf : np.array of length n """ if weights is None: weights = np.ones_like(mu) gamma = weights / self.scale return sp.stats.invgauss.logpdf(y, mu, scale=1./gamma) @divide_weights def V(self, mu): """ glm Variance function computes the variance of the distribution Parameters ---------- mu : array-like of length n expected values Returns ------- variance : np.array of length n """ return mu**3 @multiply_weights def deviance(self, y, mu, scaled=True): """ model deviance for a bernoulli logistic model, this is equal to the twice the negative loglikelihod. Parameters ---------- y : array-like of length n target values mu : array-like of length n expected values scaled : boolean, default: True whether to divide the deviance by the distribution scaled Returns ------- deviances : np.array of length n """ dev = ((y - mu)**2) / (mu**2 * y) if scaled: dev /= self.scale return dev def sample(self, mu): """ Return random samples from this Inverse Gaussian (Wald) distribution. Parameters ---------- mu : array-like of shape n_samples or shape (n_simulations, n_samples) expected values Returns ------- random_samples : np.array of same shape as mu """ return np.random.wald(mean=mu, scale=self.scale, size=None) PKFL'pygam/links.py""" Link functions """ from __future__ import division, absolute_import import numpy as np from pygam.core import Core class Link(Core): def __init__(self, name=None): """ creates an instance of a Link object Parameters ---------- name : str, default: None Returns ------- self """ super(Link, self).__init__(name=name) class IdentityLink(Link): def __init__(self): """ creates an instance of an IdentityLink object Parameters ---------- None Returns ------- self """ super(IdentityLink, self).__init__(name='identity') def link(self, mu, dist): """ glm link function this is useful for going from mu to the linear prediction Parameters ---------- mu : array-like of legth n dist : Distribution instance Returns ------- lp : np.array of length n """ return mu def mu(self, lp, dist): """ glm mean function, ie inverse of link function this is useful for going from the linear prediction to mu Parameters ---------- lp : array-like of legth n dist : Distribution instance Returns ------- mu : np.array of length n """ return lp def gradient(self, mu, dist): """ derivative of the link function wrt mu Parameters ---------- mu : array-like of legth n dist : Distribution instance Returns ------- grad : np.array of length n """ return np.ones_like(mu) class LogitLink(Link): def __init__(self): """ creates an instance of a LogitLink object Parameters ---------- None Returns ------- self """ super(LogitLink, self).__init__(name='logit') def link(self, mu, dist): """ glm link function this is useful for going from mu to the linear prediction Parameters ---------- mu : array-like of legth n dist : Distribution instance Returns ------- lp : np.array of length n """ return np.log(mu) - np.log(dist.levels - mu) def mu(self, lp, dist): """ glm mean function, ie inverse of link function this is useful for going from the linear prediction to mu Parameters ---------- lp : array-like of legth n dist : Distribution instance Returns ------- mu : np.array of length n """ elp = np.exp(lp) return dist.levels * elp / (elp + 1) def gradient(self, mu, dist): """ derivative of the link function wrt mu Parameters ---------- mu : array-like of legth n dist : Distribution instance Returns ------- grad : np.array of length n """ return dist.levels/(mu*(dist.levels - mu)) class LogLink(Link): def __init__(self): """ creates an instance of a LogitLink object Parameters ---------- None Returns ------- self """ super(LogLink, self).__init__(name='log') def link(self, mu, dist): """ glm link function this is useful for going from mu to the linear prediction Parameters ---------- mu : array-like of legth n dist : Distribution instance Returns ------- lp : np.array of length n """ return np.log(mu) def mu(self, lp, dist): """ glm mean function, ie inverse of link function this is useful for going from the linear prediction to mu Parameters ---------- lp : array-like of legth n dist : Distribution instance Returns ------- mu : np.array of length n """ return np.exp(lp) def gradient(self, mu, dist): """ derivative of the link function wrt mu Parameters ---------- mu : array-like of legth n dist : Distribution instance Returns ------- grad : np.array of length n """ return 1. / mu class InverseLink(Link): def __init__(self): """ creates an instance of a InverseLink object Parameters ---------- None Returns ------- self """ super(InverseLink, self).__init__(name='inverse') def link(self, mu, dist): """ glm link function this is useful for going from mu to the linear prediction Parameters ---------- mu : array-like of legth n dist : Distribution instance Returns ------- lp : np.array of length n """ return mu ** -1. def mu(self, lp, dist): """ glm mean function, ie inverse of link function this is useful for going from the linear prediction to mu Parameters ---------- lp : array-like of legth n dist : Distribution instance Returns ------- mu : np.array of length n """ return lp ** -1. def gradient(self, mu, dist): """ derivative of the link function wrt mu Parameters ---------- mu : array-like of legth n dist : Distribution instance Returns ------- grad : np.array of length n """ return -1 * mu**-2. class InvSquaredLink(Link): def __init__(self): """ creates an instance of an InverseLink object Parameters ---------- name : str, default: None Returns ------- self """ super(InvSquaredLink, self).__init__(name='inv_squared') def link(self, mu, dist): """ glm link function this is useful for going from mu to the linear prediction Parameters ---------- mu : array-like of legth n dist : Distribution instance Returns ------- lp : np.array of length n """ return mu ** -2. def mu(self, lp, dist): """ glm mean function, ie inverse of link function this is useful for going from the linear prediction to mu Parameters ---------- lp : array-like of legth n dist : Distribution instance Returns ------- mu : np.array of length n """ return lp ** -0.5 def gradient(self, mu, dist): """ derivative of the link function wrt mu Parameters ---------- mu : array-like of legth n dist : Distribution instance Returns ------- grad : np.array of length n """ return -2 * mu**-3. PK´LϫI!I!pygam/penalties.py""" Penalty matrix generators """ import scipy as sp import numpy as np def derivative(n, coef, derivative=2): """ Builds a penalty matrix for P-Splines with continuous features. Penalizes the squared differences between basis coefficients. Parameters ---------- n : int number of splines coef : unused for compatibility with constraints derivative: int, default: 2 which derivative do we penalize. derivative is 1, we penalize 1st order derivatives, derivative is 2, we penalize 2nd order derivatives, etc Returns ------- penalty matrix : sparse csc matrix of shape (n,n) """ if n==1: # no derivative for constant functions return sp.sparse.csc_matrix(0.) D = sparse_diff(sp.sparse.identity(n).tocsc(), n=derivative) return D.dot(D.T).tocsc() def l2(n, coef): """ Builds a penalty matrix for P-Splines with categorical features. Penalizes the squared value of each basis coefficient. Parameters ---------- n : int number of splines coef : unused for compatibility with constraints Returns ------- penalty matrix : sparse csc matrix of shape (n,n) """ return sp.sparse.eye(n).tocsc() def monotonicity_(n, coef, increasing=True): """ Builds a penalty matrix for P-Splines with continuous features. Penalizes violation of monotonicity in the feature function. Parameters ---------- n : int number of splines coef : array-like coefficients of the feature function increasing : bool, default: True whether to enforce monotic increasing, or decreasing functions Returns ------- penalty matrix : sparse csc matrix of shape (n,n) """ if n != len(coef.ravel()): raise ValueError('dimension mismatch: expected n equals len(coef), '\ 'but found n = {}, coef.shape = {}.'\ .format(n, coef.shape)) if n==1: # no monotonic penalty for constant functions return sp.sparse.csc_matrix(0.) if increasing: # only penalize the case where coef_i-1 > coef_i mask = sp.sparse.diags((np.diff(coef.ravel()) < 0).astype(float)) else: # only penalize the case where coef_i-1 < coef_i mask = sp.sparse.diags((np.diff(coef.ravel()) > 0).astype(float)) derivative = 1 D = sparse_diff(sp.sparse.identity(n).tocsc(), n=derivative) * mask return D.dot(D.T).tocsc() def monotonic_inc(n, coef): """ Builds a penalty matrix for P-Splines with continuous features. Penalizes violation of a monotonic increasing feature function. Parameters ---------- n : int number of splines coef : array-like, coefficients of the feature function Returns ------- penalty matrix : sparse csc matrix of shape (n,n) """ return monotonicity_(n, coef, increasing=True) def monotonic_dec(n, coef): """ Builds a penalty matrix for P-Splines with continuous features. Penalizes violation of a monotonic decreasing feature function. Parameters ---------- n : int number of splines coef : array-like coefficients of the feature function Returns ------- penalty matrix : sparse csc matrix of shape (n,n) """ return monotonicity_(n, coef, increasing=False) def convexity_(n, coef, convex=True): """ Builds a penalty matrix for P-Splines with continuous features. Penalizes violation of convexity in the feature function. Parameters ---------- n : int number of splines coef : array-like coefficients of the feature function convex : bool, default: True whether to enforce convex, or concave functions Returns ------- penalty matrix : sparse csc matrix of shape (n,n) """ if n != len(coef.ravel()): raise ValueError('dimension mismatch: expected n equals len(coef), '\ 'but found n = {}, coef.shape = {}.'\ .format(n, coef.shape)) if n==1: # no convex penalty for constant functions return sp.sparse.csc_matrix(0.) if convex: mask = sp.sparse.diags((np.diff(coef.ravel(), n=2) < 0).astype(float)) else: mask = sp.sparse.diags((np.diff(coef.ravel(), n=2) > 0).astype(float)) derivative = 2 D = sparse_diff(sp.sparse.identity(n).tocsc(), n=derivative) * mask return D.dot(D.T).tocsc() def convex(n, coef): """ Builds a penalty matrix for P-Splines with continuous features. Penalizes violation of a convex feature function. Parameters ---------- n : int number of splines coef : array-like coefficients of the feature function Returns ------- penalty matrix : sparse csc matrix of shape (n,n) """ return convexity_(n, coef, convex=True) def concave(n, coef): """ Builds a penalty matrix for P-Splines with continuous features. Penalizes violation of a concave feature function. Parameters ---------- n : int number of splines coef : array-like coefficients of the feature function Returns ------- penalty matrix : sparse csc matrix of shape (n,n) """ return convexity_(n, coef, convex=False) def circular(n, coef): """ Builds a penalty matrix for P-Splines with continuous features. Penalizes violation of a circular feature function. Parameters ---------- n : int number of splines coef : unused for compatibility with constraints Returns ------- penalty matrix : sparse csc matrix of shape (n,n) """ if n != len(coef.ravel()): raise ValueError('dimension mismatch: expected n equals len(coef), '\ 'but found n = {}, coef.shape = {}.'\ .format(n, coef.shape)) if n==1: # no first circular penalty for constant functions return sp.sparse.csc_matrix(0.) row = np.zeros(n) row[0] = 1 row[-1] = -1 P = sp.sparse.vstack([row, sp.sparse.csc_matrix((n-2, n)), row[::-1]]) return P.tocsc() def none(n, coef): """ Build a matrix of zeros for features that should go unpenalized Parameters ---------- n : int number of splines coef : unused for compatibility with constraints Returns ------- penalty matrix : sparse csc matrix of shape (n,n) """ return sp.sparse.csc_matrix(np.zeros((n, n))) def wrap_penalty(p, fit_linear, linear_penalty=0.): """ tool to account for unity penalty on the linear term of any feature. Parameters ---------- p : callable. penalty-matrix-generating function. fit_linear : boolean. whether the current feature has a linear term or not. linear_penalty : float, default: 0. penalty on the linear term Returns ------- wrapped_p : callable modified penalty-matrix-generating function """ def wrapped_p(n, *args): if fit_linear: if n == 1: return sp.sparse.block_diag([linear_penalty], format='csc') return sp.sparse.block_diag([linear_penalty, p(n-1, *args)], format='csc') else: return p(n, *args) return wrapped_p def sparse_diff(array, n=1, axis=-1): """ A ported sparse version of np.diff. Uses recursion to compute higher order differences Parameters ---------- array : sparse array n : int, default: 1 differencing order axis : int, default: -1 axis along which differences are computed Returns ------- diff_array : sparse array same shape as input array, but 'axis' dimension is smaller by 'n'. """ if (n < 0) or (int(n) != n): raise ValueError('Expected order is non-negative integer, '\ 'but found: {}'.format(n)) if not sp.sparse.issparse(array): warnings.warn('Array is not sparse. Consider using numpy.diff') if n == 0: return array nd = array.ndim slice1 = [slice(None)]*nd slice2 = [slice(None)]*nd slice1[axis] = slice(1, None) slice2[axis] = slice(None, -1) slice1 = tuple(slice1) slice2 = tuple(slice2) A = sparse_diff(array, n-1, axis=axis) return A[slice1] - A[slice2] PKғLKKpygam/pygam.py# -*- coding: utf-8 -*- from __future__ import division, absolute_import from collections import defaultdict from collections import OrderedDict from copy import deepcopy from progressbar import ProgressBar import warnings import numpy as np import scipy as sp from scipy import stats from pygam.core import Core from pygam.penalties import derivative from pygam.penalties import l2 from pygam.penalties import monotonic_inc from pygam.penalties import monotonic_dec from pygam.penalties import convex from pygam.penalties import concave from pygam.penalties import circular from pygam.penalties import none from pygam.penalties import wrap_penalty from pygam.distributions import Distribution from pygam.distributions import NormalDist from pygam.distributions import BinomialDist from pygam.distributions import PoissonDist from pygam.distributions import GammaDist from pygam.distributions import InvGaussDist from pygam.links import Link from pygam.links import IdentityLink from pygam.links import LogitLink from pygam.links import LogLink from pygam.links import InverseLink from pygam.links import InvSquaredLink from pygam.callbacks import CallBack from pygam.callbacks import Deviance from pygam.callbacks import Diffs from pygam.callbacks import Accuracy from pygam.callbacks import Coef from pygam.callbacks import validate_callback from pygam.utils import check_dtype from pygam.utils import check_y from pygam.utils import check_X from pygam.utils import check_X_y from pygam.utils import make_2d from pygam.utils import check_array from pygam.utils import check_lengths from pygam.utils import load_diagonal from pygam.utils import TablePrinter from pygam.utils import space_row from pygam.utils import sig_code from pygam.utils import gen_edge_knots from pygam.utils import b_spline_basis from pygam.utils import combine from pygam.utils import cholesky from pygam.utils import check_param from pygam.utils import isiterable from pygam.utils import NotPositiveDefiniteError from pygam.utils import OptimizationError EPS = np.finfo(np.float64).eps # machine epsilon DISTRIBUTIONS = {'normal': NormalDist, 'poisson': PoissonDist, 'binomial': BinomialDist, 'gamma': GammaDist, 'inv_gauss': InvGaussDist } LINK_FUNCTIONS = {'identity': IdentityLink, 'log': LogLink, 'logit': LogitLink, 'inverse': InverseLink, 'inv_squared': InvSquaredLink } CALLBACKS = {'deviance': Deviance, 'diffs': Diffs, 'accuracy': Accuracy, 'coef': Coef } PENALTIES = {'auto': 'auto', 'derivative': derivative, 'l2': l2, 'none': none, } CONSTRAINTS = {'convex': convex, 'concave': concave, 'monotonic_inc': monotonic_inc, 'monotonic_dec': monotonic_dec, 'circular': circular, 'none': none } class GAM(Core): """Generalized Additive Model Parameters ---------- callbacks : list of strings or list of CallBack objects, default: ['deviance', 'diffs'] Names of callback objects to call during the optimization loop. constraints : str or callable, or iterable of str or callable, default: None Names of constraint functions to call during the optimization loop. Must be in {'convex', 'concave', 'monotonic_inc', 'monotonic_dec', 'circular', 'none'} If None, then the model will apply no constraints. If only one str or callable is specified, then is it copied for all features. distribution : str or Distribution object, default: 'normal' Distribution to use in the model. link : str or Link object, default: 'identity' Link function to use in the model. dtype : str in {'auto', 'numerical', 'categorical'}, or list of str, default: 'auto' String describing the data-type of each feature. 'numerical' is used for continuous-valued data-types, like in regression. 'categorical' is used for discrete-valued data-types, like in classification. If only one str is specified, then is is copied for all features. lam : float or iterable of floats > 0, default: 0.6 Smoothing strength; must be a positive float, or one positive float per feature. Larger values enforce stronger smoothing. If only one float is specified, then it is copied for all features. fit_intercept : bool, default: True Specifies if a constant (a.k.a. bias or intercept) should be added to the decision function. NOTE: the intercept receives no smoothing penalty. fit_linear : bool or iterable of bools, default: False Specifies if a linear term should be added to any of the feature functions. Useful for including pre-defined feature transformations in the model. If only one bool is specified, then it is copied for all features. NOTE: Many constraints are incompatible with an additional linear fit. eg. if a non-zero linear function is added to a periodic spline function, it will cease to be periodic. this is also possible for a monotonic spline function. fit_splines : bool or iterable of bools, default: True Specifies if a smoother should be added to any of the feature functions. Useful for defining feature transformations a-priori that should not have splines fitted to them. If only one bool is specified, then it is copied for all features. NOTE: fit_splines supercedes n_splines. ie. if n_splines > 0 and fit_splines = False, no splines will be fitted. max_iter : int, default: 100 Maximum number of iterations allowed for the solver to converge. penalties : str or callable, or iterable of str or callable, default: 'auto' Type of penalty to use for each feature. penalty should be in {'auto', 'none', 'derivative', 'l2', } If 'auto', then the model will use 2nd derivative smoothing for features of dtype 'numerical', and L2 smoothing for features of dtype 'categorical'. If only one str or callable is specified, then is it copied for all features. n_splines : int, or iterable of ints, default: 25 Number of splines to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features. Note: this value is set to 0 if fit_splines is False spline_order : int, or iterable of ints, default: 3 Order of spline to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features Note: if a feature is of type categorical, spline_order will be set to 0. tol : float, default: 1e-4 Tolerance for stopping criteria. verbose : bool, default: False whether to show pyGAM warnings Attributes ---------- coef_ : array, shape (n_classes, m_features) Coefficient of the features in the decision function. If fit_intercept is True, then self.coef_[0] will contain the bias. statistics_ : dict Dictionary containing model statistics like GCV/UBRE scores, AIC/c, parameter covariances, estimated degrees of freedom, etc. logs_ : dict Dictionary containing the outputs of any callbacks at each optimization loop. The logs are structured as `{callback: [...]}` References ---------- Simon N. Wood, 2006 Generalized Additive Models: an introduction with R Hastie, Tibshirani, Friedman The Elements of Statistical Learning http://statweb.stanford.edu/~tibs/ElemStatLearn/printings/ESLII_print10.pdf Paul Eilers & Brian Marx, 2015 International Biometric Society: A Crash Course on P-splines http://www.ibschannel2015.nl/project/userfiles/Crash_course_handout.pdf """ def __init__(self, lam=0.6, max_iter=100, n_splines=25, spline_order=3, penalties='auto', tol=1e-4, distribution='normal', link='identity', callbacks=['deviance', 'diffs'], fit_intercept=True, fit_linear=False, fit_splines=True, dtype='auto', constraints=None, verbose=False): self.max_iter = max_iter self.tol = tol self.lam = lam self.n_splines = n_splines self.spline_order = spline_order self.penalties = penalties self.distribution = distribution self.link = link self.callbacks = callbacks self.constraints = constraints self.fit_intercept = fit_intercept self.fit_linear = fit_linear self.fit_splines = fit_splines self.dtype = dtype self.verbose = verbose # created by other methods self._n_coeffs = [] # useful for indexing into model coefficients self._edge_knots = [] self._lam = [] self._n_splines = [] self._spline_order = [] self._penalties = [] self._constraints = [] self._dtype = [] self._fit_linear = [] self._fit_splines = [] self._fit_intercept = None # internal settings self._constraint_lam = 1e9 # regularization intensity for constraints self._constraint_l2 = 1e-3 # diagononal loading to improve conditioning self._constraint_l2_max = 1e-1 # maximum loading self._opt = 0 # use 0 for numerically stable optimizer, 1 for naive # call super and exclude any variables super(GAM, self).__init__() def _expand_attr(self, attr, n, dt_alt=None, msg=None): """ tool to parse and duplicate initialization arguments into model parameters. typically we use this tool to take a single attribute like: self.lam = 0.6 and make one copy per feature, ie: self._lam = [0.6, 0.6, 0.6] for a model with 3 features. if self.attr is an iterable of values of length n, then copy it verbatim to self._attr. otherwise extend the single value to a list of length n, and copy that to self._attr dt_alt is an alternative value for dtypes of type categorical (ie discrete). so if our 3-feature dataset is of types ['numerical', 'numerical', 'categorical'], we could use this method to turn self.lam = 0.6 into self.lam = [0.6, 0.6, 0.3] by calling self._expand_attr('lam', 3, dt_alt=0.3) Parameters ---------- attr : string name of the attribute to expand n : int number of time to repeat the attribute dt_alt : object, deafult: None object to subsitute attribute for categorical features. if dt_alt is None, categorical features are treated the same as numerical features. msg: string, default: None custom error message to report if self.attr is iterable BUT len(self.attr) != n if msg is None, default message is used: 'expected "attr" to have length X.shape[1], but found {}'.format(len(self.attr)) Returns ------- None """ data = deepcopy(getattr(self, attr)) _attr = '_' + attr if isiterable(data): if not (len(data) == n): if msg is None: msg = 'expected {} to have length X.shape[1], '\ 'but found {}'.format(attr, len(data)) raise ValueError(msg) else: data = [data] * n if dt_alt is not None: data = [d if dt != 'categorical' else dt_alt for d,dt in zip(data, self._dtype)] setattr(self, _attr, data) @property def _is_fitted(self): """ simple way to check if the GAM has been fitted Parameters --------- None Returns ------- bool : whether or not the model is fitted """ return hasattr(self, 'coef_') def _validate_params(self): """ method to sanitize model parameters Parameters --------- None Returns ------- None """ # fit_intercep if not isinstance(self.fit_intercept, bool): raise ValueError('fit_intercept must be type bool, but found {}'\ .format(self.fit_intercept.__class__)) # max_iter self.max_iter = check_param(self.max_iter, param_name='max_iter', dtype='int', constraint='>=1', iterable=False) # lam self.lam = check_param(self.lam, param_name='lam', dtype='float', constraint='>0') # n_splines self.n_splines = check_param(self.n_splines, param_name='n_splines', dtype='int', constraint='>=0') # spline_order self.spline_order = check_param(self.spline_order, param_name='spline_order', dtype='int', constraint='>=0') # n_splines + spline_order if not (np.atleast_1d(self.n_splines) > np.atleast_1d(self.spline_order)).all(): raise ValueError('n_splines must be > spline_order. '\ 'found: n_splines = {} and spline_order = {}'\ .format(self.n_splines, self.spline_order)) # distribution if not ((self.distribution in DISTRIBUTIONS) or isinstance(self.distribution, Distribution)): raise ValueError('unsupported distribution {}'.format(self.distribution)) if self.distribution in DISTRIBUTIONS: self.distribution = DISTRIBUTIONS[self.distribution]() # link if not ((self.link in LINK_FUNCTIONS) or isinstance(self.link, Link)): raise ValueError('unsupported link {}'.format(self.link)) if self.link in LINK_FUNCTIONS: self.link = LINK_FUNCTIONS[self.link]() # callbacks if not isiterable(self.callbacks): raise ValueError('Callbacks must be iterable, but found {}'\ .format(self.callbacks)) if not all([c in CALLBACKS or isinstance(c, CallBack) for c in self.callbacks]): raise ValueError('unsupported callback(s) {}'.format(self.callbacks)) callbacks = list(self.callbacks) for i, c in enumerate(self.callbacks): if c in CALLBACKS: callbacks[i] = CALLBACKS[c]() self.callbacks = [validate_callback(c) for c in callbacks] # penalties if not (isiterable(self.penalties) or hasattr(self.penalties, '__call__') or self.penalties in PENALTIES or self.penalties is None): raise ValueError('penalties must be iterable or callable, '\ 'but found {}'.format(self.penalties)) if isiterable(self.penalties): for i, p in enumerate(self.penalties): if not (hasattr(p, '__call__') or (p in PENALTIES) or (p is None)): raise ValueError("penalties must be callable or in "\ "{}, but found {} for {}th penalty"\ .format(list(PENALTIES.keys()), p, i)) # constraints if not (isiterable(self.constraints) or hasattr(self.constraints, '__call__') or self.constraints in CONSTRAINTS or self.constraints is None): raise ValueError('constraints must be iterable or callable, '\ 'but found {}'.format(self.constraints)) if isiterable(self.constraints): for i, c in enumerate(self.constraints): if not (hasattr(c, '__call__') or (c in CONSTRAINTS) or (c is None)): raise ValueError("constraints must be callable or in "\ "{}, but found {} for {}th constraint"\ .format(list(CONSTRAINTS.keys()), c, i)) # dtype if not (self.dtype in ['auto', 'numerical', 'categorical'] or isiterable(self.dtype)): raise ValueError("dtype must be in ['auto', 'numerical', "\ "'categorical'] or iterable of those strings, "\ "but found dtype = {}".format(self.dtype)) if isiterable(self.dtype): for dt in self.dtype: if dt not in ['auto', 'numerical', 'categorical']: raise ValueError("elements of iterable dtype must be in "\ "['auto', 'numerical', 'categorical], "\ "but found dtype = {}".format(self.dtype)) def _validate_data_dep_params(self, X): """ method to validate and prepare data-dependent parameters Parameters --------- X : array-like containing the input dataset Returns ------- None """ n_samples, m_features = X.shape # set up dtypes and check types if 'auto' self._expand_attr('dtype', m_features) for i, (dt, x) in enumerate(zip(self._dtype, X.T)): if dt == 'auto': dt = check_dtype(x)[0] if dt == 'categorical' and self.verbose: warnings.warn('detected catergorical data for feature {}'\ .format(i), stacklevel=2) self._dtype[i] = dt assert len(self._dtype) == m_features # sanity check # set up lambdas self._expand_attr('lam', m_features) # add intercept term if self.fit_intercept: self._lam = [0.] + self._lam # set up penalty matrices self._expand_attr('penalties', m_features) # set up constraints self._expand_attr('constraints', m_features, dt_alt=None) # set up fit_linear and fit_splines, copy fit_intercept self._fit_intercept = self.fit_intercept self._expand_attr('fit_linear', m_features, dt_alt=False) self._expand_attr('fit_splines', m_features) for i, (fl, c) in enumerate(zip(self._fit_linear, self._constraints)): if bool(c) and (c is not 'none'): if fl and self.verbose: warnings.warn('cannot do fit_linear with constraints. '\ 'setting fit_linear=False for feature {}'\ .format(i)) self._fit_linear[i] = False line_or_spline = [bool(line + spline) for line, spline in \ zip(self._fit_linear, self._fit_splines)] # problems if not all(line_or_spline): bad = [i for i, l_or_s in enumerate(line_or_spline) if not l_or_s] raise ValueError('a line or a spline must be fit on each feature. '\ 'Neither were found on feature(s): {}' \ .format(bad)) # expand spline_order, n_splines, and prepare edge_knots self._expand_attr('spline_order', X.shape[1], dt_alt=0) self._expand_attr('n_splines', X.shape[1], dt_alt=0) self._edge_knots = [gen_edge_knots(feat, dtype, verbose=self.verbose) for feat, dtype in \ zip(X.T, self._dtype)] # update our n_splines correcting for categorical features, no splines for i, (fs, dt, ek) in enumerate(zip(self._fit_splines, self._dtype, self._edge_knots)): if fs: if dt == 'categorical': self._n_splines[i] = len(ek) - 1 if not fs: self._n_splines[i] = 0 # compute number of model coefficients self._n_coeffs = [] for n_splines, fit_linear, fit_splines in zip(self._n_splines, self._fit_linear, self._fit_splines): self._n_coeffs.append(n_splines * fit_splines + fit_linear) if self._fit_intercept: self._n_coeffs = [1] + self._n_coeffs def loglikelihood(self, X, y, weights=None): """ compute the log-likelihood of the dataset using the current model Parameters --------- X : array-like of shape (n_samples, m_features) containing the input dataset y : array-like of shape (n,) containing target values weights : array-like of shape (n,) containing sample weights Returns ------- log-likelihood : np.array of shape (n,) containing log-likelihood scores """ y = check_y(y, self.link, self.distribution, verbose=self.verbose) mu = self.predict_mu(X) if weights is not None: weights = check_array(weights, name='sample weights', verbose=self.verbose) check_lengths(y, weights) else: weights = np.ones_like(y).astype('float64') return self._loglikelihood(y, mu, weights=weights) def _loglikelihood(self, y, mu, weights=None): """ compute the log-likelihood of the dataset using the current model Parameters --------- y : array-like of shape (n,) containing target values mu : array-like of shape (n_samples,) expected value of the targets given the model and inputs weights : array-like of shape (n,) containing sample weights Returns ------- log-likelihood : np.array of shape (n,) containing log-likelihood scores """ return self.distribution.log_pdf(y=y, mu=mu, weights=weights).sum() def _linear_predictor(self, X=None, modelmat=None, b=None, feature=-1): """linear predictor compute the linear predictor portion of the model ie multiply the model matrix by the spline basis coefficients Parameters --------- at least 1 of (X, modelmat) and at least 1 of (b, feature) X : array-like of shape (n_samples, m_features), default: None containing the input dataset if None, will attempt to use modelmat modelmat : array-like, default: None contains the spline basis for each feature evaluated at the input values for each feature, ie model matrix if None, will attempt to construct the model matrix from X b : array-like, default: None contains the spline coefficients if None, will use current model coefficients feature : int, deafult: -1 feature for which to compute the linear prediction if -1, will compute for all features Returns ------- lp : np.array of shape (n_samples,) """ if modelmat is None: modelmat = self._modelmat(X, feature=feature) if b is None: b = self.coef_[self._select_feature(feature)] return modelmat.dot(b).flatten() def predict_mu(self, X): """ preduct expected value of target given model and input X Parameters --------- X : array-like of shape (n_samples, m_features), default: None containing the input dataset Returns ------- y : np.array of shape (n_samples,) containing expected values under the model """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') X = check_X(X, n_feats=len(self._n_coeffs) - self._fit_intercept, edge_knots=self._edge_knots, dtypes=self._dtype, verbose=self.verbose) lp = self._linear_predictor(X) return self.link.mu(lp, self.distribution) def predict(self, X): """ preduct expected value of target given model and input X often this is done via expected value of GAM given input X Parameters --------- X : array-like of shape (n_samples, m_features), default: None containing the input dataset Returns ------- y : np.array of shape (n_samples,) containing predicted values under the model """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') X = check_X(X, n_feats=len(self._n_coeffs) - self._fit_intercept, edge_knots=self._edge_knots, dtypes=self._dtype, verbose=self.verbose) return self.predict_mu(X) def _modelmat(self, X, feature=-1): """ Builds a model matrix, B, out of the spline basis for each feature B = [B_0, B_1, ..., B_p] Parameters --------- X : array-like of shape (n_samples, m_features), default: None containing the input dataset feature : int, default: -1 feature index for which to compute the model matrix if -1, will create the model matrix for all features Returns ------- modelmat : sparse matrix of len n_samples containing model matrix of the spline basis for selected features """ X = check_X(X, n_feats=len(self._n_coeffs) - self._fit_intercept, edge_knots=self._edge_knots, dtypes=self._dtype, verbose=self.verbose) if feature >= len(self._n_coeffs) or feature < -1: raise ValueError('feature {} out of range for X with shape {}'\ .format(feature, X.shape)) # for all features, build matrix recursively if feature == -1: modelmat = [] for feat in range(X.shape[1] + self._fit_intercept): modelmat.append(self._modelmat(X, feature=feat)) return sp.sparse.hstack(modelmat, format='csc') # intercept if (feature == 0) and self._fit_intercept: return sp.sparse.csc_matrix(np.ones((X.shape[0], 1))) # return only the basis functions for 1 feature feature = feature - self._fit_intercept featuremat = [] if self._fit_linear[feature]: featuremat.append(sp.sparse.csc_matrix(X[:, feature][:,None])) if self._fit_splines[feature]: featuremat.append(b_spline_basis(X[:,feature], edge_knots=self._edge_knots[feature], spline_order=self._spline_order[feature], n_splines=self._n_splines[feature], sparse=True, verbose=self.verbose)) return sp.sparse.hstack(featuremat, format='csc') def _cholesky(self, A, **kwargs): """ method to handle potential problems with the cholesky decomposition. will try to increase L2 regularization of the penalty matrix to do away with non-positive-definite errors Parameters ---------- A : np.array Returns ------- np.array """ # create appropriate-size diagonal matrix if sp.sparse.issparse(A): diag = sp.sparse.eye(A.shape[0]) else: diag = np.eye(A.shape[0]) constraint_l2 = self._constraint_l2 while constraint_l2 <= self._constraint_l2_max: try: L = cholesky(A, verbose=self.verbose, **kwargs) self._constraint_l2 = constraint_l2 return L except NotPositiveDefiniteError: if self.verbose: warnings.warn('Matrix is not positive definite. \n'\ 'Increasing l2 reg by factor of 10.', stacklevel=2) A -= constraint_l2 * diag constraint_l2 *= 10 A += constraint_l2 * diag raise NotPositiveDefiniteError('Matrix is not positive \n' 'definite.') def _C(self): """ builds the GAM block-diagonal constraint matrix in quadratic form out of constraint matrices specified for each feature. behaves like a penalty, but with a very large lambda value, ie 1e6. Parameters --------- None Returns ------- C : sparse CSC matrix containing the model constraints in quadratic form """ Cs = [] if self._fit_intercept: Cs.append(np.array(0.)) for i, c in enumerate(self._constraints): fit_linear = self._fit_linear[i] dtype = self._dtype[i] n = self._n_coeffs[i + self._fit_intercept] coef = self.coef_[self._select_feature(i + self._fit_intercept)] coef = coef[fit_linear:] if c is None: c = 'none' if c in CONSTRAINTS: c = CONSTRAINTS[c] c = wrap_penalty(c, fit_linear)(n, coef) * self._constraint_lam Cs.append(c) Cs = sp.sparse.block_diag(Cs) # improve condition if Cs.nnz > 0: Cs += sp.sparse.diags(self._constraint_l2 * np.ones(Cs.shape[0])) return Cs def _P(self): """ builds the GAM block-diagonal penalty matrix in quadratic form out of penalty matrices specified for each feature. each feature penalty matrix is multiplied by a lambda for that feature. the first feature is the intercept. so for m features: P = block_diag[lam0 * P0, lam1 * P1, lam2 * P2, ... , lamm * Pm] Parameters --------- None Returns ------- P : sparse CSC matrix containing the model penalties in quadratic form """ Ps = [] if self._fit_intercept: Ps.append(np.array(0.)) for i, p in enumerate(self._penalties): fit_linear = self._fit_linear[i] dtype = self._dtype[i] n = self._n_coeffs[i + self._fit_intercept] coef = self.coef_[self._select_feature(i + self._fit_intercept)] coef = coef[fit_linear:] if p == 'auto': if dtype == 'numerical': p = derivative if dtype == 'categorical': p = l2 if p is None: p = 'none' if p in PENALTIES: p = PENALTIES[p] p = wrap_penalty(p, fit_linear)(n, coef) Ps.append(p) P_matrix = tuple([np.multiply(P, lam) for lam, P in zip(self._lam, Ps)]) P_matrix = sp.sparse.block_diag(P_matrix) return P_matrix def _pseudo_data(self, y, lp, mu): """ compute the pseudo data for a PIRLS iterations Parameters --------- y : array-like of shape (n,) containing target data lp : array-like of shape (n,) containing linear predictions by the model mu : array-like of shape (n_samples,) expected value of the targets given the model and inputs Returns ------- pseudo_data : np.array of shape (n,) """ return lp + (y - mu) * self.link.gradient(mu, self.distribution) def _W(self, mu, weights): """ compute the PIRLS weights for model predictions. TODO lets verify the formula for this. if we use the square root of the mu with the stable opt, we get the same results as when we use non-sqrt mu with naive opt. this makes me think that they are equivalent. also, using non-sqrt mu with stable opt gives very small edofs for even lam=0.001 and the parameter variance is huge. this seems strange to me. computed [V * d(link)/d(mu)] ^(-1/2) by hand and the math checks out as hoped. ive since moved the square to the naive pirls method to make the code modular. Parameters --------- mu : array-like of shape (n_samples,) expected value of the targets given the model and inputs weights : array-like of shape (n_samples,) containing sample weights Returns ------- weights : sp..sparse array of shape (n_samples, n_samples) """ return sp.sparse.diags((self.link.gradient(mu, self.distribution)**2 * self.distribution.V(mu=mu) * weights ** -1)**-0.5) def _mask(self, weights): """ identifies the mask at which the weights are greater than sqrt(machine epsilon) and not NaN and not Inf Parameters --------- weights : array-like of shape (n,) containing weights in [0,1] Returns ------- mask : boolean np.array of shape (n,) of good weight values """ mask = (np.abs(weights) >= np.sqrt(EPS)) * np.isfinite(weights) if mask.sum() == 0: raise OptimizationError('PIRLS optimization has diverged.\n' + 'Try increasing regularization, or specifying an initial value for self.coef_') return mask def _initial_estimate(self, y, modelmat): """ Makes an inital estimate for the model coefficients. For a LinearGAM we simply initialize to small coefficients. For other GAMs we transform the problem to the linear space and solve an unpenalized version. Parameters --------- y : array-like of shape (n,) containing target data modelmat : sparse matrix of shape (n, m) containing model matrix of the spline basis Returns ------- coef : array of shape (m,) containing the initial estimate for the model coefficients Notes ----- This method implements the suggestions in Wood, section 2.2.2 Geometry and IRLS convergence, pg 80 """ # do a simple initialization for LinearGAMs if isinstance(self, LinearGAM): n, m = modelmat.shape return np.ones(m) * np.sqrt(EPS) # transform the problem to the linear scale y = deepcopy(y) y[y == 0] += .01 # edge case for log link, inverse link, and logit link y[y == 1] -= .01 # edge case for logit link y_ = self.link.link(y, self.distribution) y_ = make_2d(y_) assert np.isfinite(y_).all(), "transformed response values should be well-behaved." # solve the linear problem modelmat = modelmat.A return np.linalg.solve(load_diagonal(modelmat.T.dot(modelmat)), modelmat.T.dot(y_)) # not sure if this is faster... # return np.linalg.pinv(modelmat.T.dot(modelmat)).dot(modelmat.T.dot(y_)) def _pirls(self, X, Y, weights): """ Performs stable PIRLS iterations to estimate GAM coefficients Parameters --------- X : array-like of shape (n_samples, m_features) containing input data Y : array-like of shape (n,) containing target data weights : array-like of shape (n,) containing sample weights Returns ------- None """ modelmat = self._modelmat(X) # build a basis matrix for the GLM n, m = modelmat.shape # initialize GLM coefficients if model is not yet fitted if (not self._is_fitted or len(self.coef_) != sum(self._n_coeffs) or not np.isfinite(self.coef_).all()): # initialize the model self.coef_ = self._initial_estimate(Y, modelmat) assert np.isfinite(self.coef_).all(), "coefficients should be well-behaved, but found: {}".format(self.coef_) # do our penalties require recomputing cholesky? chol_pen = np.ravel([np.ravel(p) for p in self._penalties]) chol_pen = any([cp in ['convex', 'concave', 'monotonic_inc', 'monotonic_dec', 'circular']for cp in chol_pen]) P = self._P() # create penalty matrix # base penalty S = sp.sparse.diags(np.ones(m) * np.sqrt(EPS)) # improve condition # S += self._H # add any user-chosen minumum penalty to the diagonal # if we dont have any constraints, then do cholesky now if not any(self._constraints) and not chol_pen: E = self._cholesky(S + P, sparse=False) min_n_m = np.min([m,n]) Dinv = np.zeros((min_n_m + m, m)).T for _ in range(self.max_iter): # recompute cholesky if needed if any(self._constraints) or chol_pen: P = self._P() C = self._C() E = self._cholesky(S + P + C, sparse=False) # forward pass y = deepcopy(Y) # for simplicity lp = self._linear_predictor(modelmat=modelmat) mu = self.link.mu(lp, self.distribution) W = self._W(mu, weights) # create pirls weight matrix # check for weghts == 0, nan, and update mask = self._mask(W.diagonal()) y = y[mask] # update lp = lp[mask] # update mu = mu[mask] # update W = sp.sparse.diags(W.diagonal()[mask]) # update # PIRLS Wood pg 183 pseudo_data = W.dot(self._pseudo_data(y, lp, mu)) # log on-loop-start stats self._on_loop_start(vars()) WB = W.dot(modelmat[mask,:]) # common matrix product Q, R = np.linalg.qr(WB.todense()) if not np.isfinite(Q).all() or not np.isfinite(R).all(): raise ValueError('QR decomposition produced NaN or Inf. '\ 'Check X data.') # need to recompute the number of singular values min_n_m = np.min([m, n, mask.sum()]) Dinv = np.zeros((min_n_m + m, m)).T # SVD U, d, Vt = np.linalg.svd(np.vstack([R, E.T])) svd_mask = d <= (d.max() * np.sqrt(EPS)) # mask out small singular values np.fill_diagonal(Dinv, d**-1) # invert the singular values U1 = U[:min_n_m,:] # keep only top portion of U # update coefficients B = Vt.T.dot(Dinv).dot(U1.T).dot(Q.T) coef_new = B.dot(pseudo_data).A.flatten() diff = np.linalg.norm(self.coef_ - coef_new)/np.linalg.norm(coef_new) self.coef_ = coef_new # update # log on-loop-end stats self._on_loop_end(vars()) # check convergence if diff < self.tol: break # estimate statistics even if not converged self._estimate_model_statistics(Y, modelmat, inner=None, BW=WB.T, B=B, weights=weights) if diff < self.tol: return print('did not converge') return def _pirls_naive(self, X, y): """ Performs naive PIRLS iterations to estimate GAM coefficients Parameters --------- X : array-like of shape (n_samples, m_features) containing input data y : array-like of shape (n,) containing target data Returns ------- None """ modelmat = self._modelmat(X) # build a basis matrix for the GLM m = modelmat.shape[1] # initialize GLM coefficients if not self._is_fitted or len(self.coef_) != sum(self._n_coeffs): self.coef_ = np.ones(m) * np.sqrt(EPS) # allow more training P = self._P() # create penalty matrix P += sp.sparse.diags(np.ones(m) * np.sqrt(EPS)) # improve condition for _ in range(self.max_iter): lp = self._linear_predictor(modelmat=modelmat) mu = self.link.mu(lp, self.distribution) mask = self._mask(mu) mu = mu[mask] # update lp = lp[mask] # update if self.family == 'binomial': self.acc.append(self.accuracy(y=y[mask], mu=mu)) # log the training accuracy self.dev.append(self.deviance_(y=y[mask], mu=mu, scaled=False)) # log the training deviance weights = self._W(mu)**2 # PIRLS, added square for modularity pseudo_data = self._pseudo_data(y, lp, mu) # PIRLS BW = modelmat.T.dot(weights).tocsc() # common matrix product inner = sp.sparse.linalg.inv(BW.dot(modelmat) + P) # keep for edof coef_new = inner.dot(BW).dot(pseudo_data).flatten() diff = np.linalg.norm(self.coef_ - coef_new)/np.linalg.norm(coef_new) self.diffs.append(diff) self.coef_ = coef_new # update # check convergence if diff < self.tol: self.edof_ = self._estimate_edof(modelmat, inner, BW) self.aic_ = self._estimate_AIC(X, y, mu) self.aicc_ = self._estimate_AICc(X, y, mu) return print('did not converge') def _on_loop_start(self, variables): """ performs on-loop-start actions like callbacks variables contains local namespace variables. Parameters --------- variables : dict of available variables Returns ------- None """ for callback in self.callbacks: if hasattr(callback, 'on_loop_start'): self.logs_[str(callback)].append(callback.on_loop_start(**variables)) def _on_loop_end(self, variables): """ performs on-loop-end actions like callbacks variables contains local namespace variables. Parameters --------- variables : dict of available variables Returns ------- None """ for callback in self.callbacks: if hasattr(callback, 'on_loop_end'): self.logs_[str(callback)].append(callback.on_loop_end(**variables)) def fit(self, X, y, weights=None): """Fit the generalized additive model. Parameters ---------- X : array-like, shape (n_samples, m_features) Training vectors, where n_samples is the number of samples and m_features is the number of features. y : array-like, shape (n_samples,) Target values (integers in classification, real numbers in regression) For classification, labels must correspond to classes. weights : array-like shape (n_samples,) or None, default: None containing sample weights if None, defaults to array of ones Returns ------- self : object Returns fitted GAM object """ # validate parameters self._validate_params() # validate data y = check_y(y, self.link, self.distribution, verbose=self.verbose) X = check_X(X, verbose=self.verbose) check_X_y(X, y) if weights is not None: weights = check_array(weights, name='sample weights', verbose=self.verbose) check_lengths(y, weights) else: weights = np.ones_like(y).astype('float64') # validate data-dependent parameters self._validate_data_dep_params(X) # set up logging if not hasattr(self, 'logs_'): self.logs_ = defaultdict(list) # optimize if self._opt == 0: self._pirls(X, y, weights) if self._opt == 1: self._pirls_naive(X, y) return self def deviance_residuals(self, X, y, weights=None, scaled=False): """ method to compute the deviance residuals of the model these are analogous to the residuals of an OLS. Parameters ---------- X : array-like input data array of shape (n_saples, m_features) y : array-like output data vector of shape (n_samples,) weights : array-like shape (n_samples,) or None, default: None containing sample weights if None, defaults to array of ones scaled : bool, default: False whether to scale the deviance by the (estimated) distribution scale Returns ------- deviance_residuals : np.array with shape (n_samples,) """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') y = check_y(y, self.link, self.distribution, verbose=self.verbose) X = check_X(X, n_feats=len(self._n_coeffs) - self._fit_intercept, edge_knots=self._edge_knots, dtypes=self._dtype, verbose=self.verbose) check_X_y(X, y) if weights is not None: weights = check_array(weights, name='sample weights', verbose=self.verbose) check_lengths(y, weights) else: weights = np.ones_like(y).astype('float64') mu = self.predict_mu(X) sign = np.sign(y-mu) return sign * self.distribution.deviance(y, mu, weights=weights, scaled=scaled) ** 0.5 def _estimate_model_statistics(self, y, modelmat, inner=None, BW=None, B=None, weights=None): """ method to compute all of the model statistics results are stored in the 'statistics_' attribute of the model, as a dictionary keyed by: - edof: estimated degrees freedom - scale: distribution scale, if applicable - cov: coefficient covariances - se: standarrd errors - AIC: Akaike Information Criterion - AICc: corrected Akaike Information Criterion - pseudo_r2: dict of Pseudo R-squared metrics - GCV: generailized cross-validation or - UBRE: Un-Biased Risk Estimator - n_samples: number of samples used in estimation Parameters ---------- y : array-like output data vector of shape (n_samples,) modelmat : array-like, default: None contains the spline basis for each feature evaluated at the input inner : array of intermediate computations from naive optimization BW : array of intermediate computations from either optimization B : array of intermediate computations from stable optimization weights : array-like shape (n_samples,) or None, default: None containing sample weights Returns ------- None """ self.statistics_ = {} lp = self._linear_predictor(modelmat=modelmat) mu = self.link.mu(lp, self.distribution) self.statistics_['n_samples'] = len(y) self.statistics_['edof'] = self._estimate_edof(BW=BW, B=B) # self.edof_ = np.dot(U1, U1.T).trace().A.flatten() # this is wrong? if not self.distribution._known_scale: self.distribution.scale = self.distribution.phi(y=y, mu=mu, edof=self.statistics_['edof'], weights=weights) self.statistics_['scale'] = self.distribution.scale self.statistics_['cov'] = (B.dot(B.T)).A * self.distribution.scale # parameter covariances. no need to remove a W because we are using W^2. Wood pg 184 self.statistics_['se'] = self.statistics_['cov'].diagonal()**0.5 self.statistics_['AIC']= self._estimate_AIC(y=y, mu=mu, weights=weights) self.statistics_['AICc'] = self._estimate_AICc(y=y, mu=mu, weights=weights) self.statistics_['pseudo_r2'] = self._estimate_r2(y=y, mu=mu, weights=weights) self.statistics_['GCV'], self.statistics_['UBRE'] = self._estimate_GCV_UBRE(modelmat=modelmat, y=y, weights=weights) self.statistics_['loglikelihood'] = self._loglikelihood(y, mu, weights=weights) self.statistics_['deviance'] = self.distribution.deviance(y=y, mu=mu, weights=weights).sum() self.statistics_['p_values'] = self._estimate_p_values() def _estimate_edof(self, modelmat=None, inner=None, BW=None, B=None, limit=50000): """ estimate effective degrees of freedom. computes the only diagonal of the influence matrix and sums. allows for subsampling when the number of samples is very large. Parameters ---------- modelmat : array-like, default: None contains the spline basis for each feature evaluated at the input inner : array of intermediate computations from naive optimization BW : array of intermediate computations from either optimization B : array of intermediate computations from stable optimization limit : int, default: 50000 number of samples required before subsampling the model matrix. this requires less computation. Returns ------- None """ size = BW.shape[1] # number of samples max_ = np.min([limit, size]) # since we only compute the diagonal, we can afford larger matrices if max_ == limit: # subsampling scale = np.float(size)/max_ idxs = list(range(size)) np.random.shuffle(idxs) if B is None: return scale * modelmat.dot(inner).tocsr()[idxs[:max_]].T.multiply(BW[:,idxs[:max_]]).sum() else: return scale * BW[:,idxs[:max_]].multiply(B[:,idxs[:max_]]).sum() else: # no subsampling if B is None: return modelmat.dot(inner).T.multiply(BW).sum() else: return BW.multiply(B).sum() def _estimate_AIC(self, y, mu, weights=None): """ estimate the Akaike Information Criterion Parameters ---------- y : array-like of shape (n_samples,) output data vector mu : array-like of shape (n_samples,) expected value of the targets given the model and inputs Returns ------- None """ estimated_scale = not(self.distribution._known_scale) # if we estimate the scale, that adds 2 dof return -2*self._loglikelihood(y=y, mu=mu, weights=weights) + \ 2*self.statistics_['edof'] + 2*estimated_scale def _estimate_AICc(self, y, mu, weights=None): """ estimate the corrected Akaike Information Criterion relies on the estimated degrees of freedom, which must be computed before. Parameters ---------- y : array-like of shape (n_samples,) output data vector mu : array-like of shape (n_samples,) expected value of the targets given the model and inputs Returns ------- None """ edof = self.statistics_['edof'] if self.statistics_['AIC'] is None: self.statistics_['AIC'] = self._estimate_AIC(y, mu, weights) return self.statistics_['AIC'] + 2*(edof + 1)*(edof + 2)/(y.shape[0] - edof -2) def _estimate_r2(self, X=None, y=None, mu=None, weights=None): """ estimate some pseudo R^2 values currently only computes explained deviance. results are stored Parameters ---------- y : array-like of shape (n_samples,) output data vector mu : array-like of shape (n_samples,) expected value of the targets given the model and inputs weights : array-like shape (n_samples,) or None, default: None containing sample weights if None, defaults to array of ones Returns ------- None """ if mu is None: mu = self.predict_mu_(X=X) if weights is None: weights = np.ones_like(y).astype('float64') null_mu = y.mean() * np.ones_like(y).astype('float64') null_d = self.distribution.deviance(y=y, mu=null_mu, weights=weights) full_d = self.distribution.deviance(y=y, mu=mu, weights=weights) null_ll = self._loglikelihood(y=y, mu=null_mu, weights=weights) full_ll = self._loglikelihood(y=y, mu=mu, weights=weights) r2 = OrderedDict() r2['explained_deviance'] = 1. - full_d.sum()/null_d.sum() r2['McFadden'] = full_ll/null_ll r2['McFadden_adj'] = 1. - (full_ll - self.statistics_['edof'])/null_ll return r2 def _estimate_GCV_UBRE(self, X=None, y=None, modelmat=None, gamma=1.4, add_scale=True, weights=None): """ Generalized Cross Validation and Un-Biased Risk Estimator. UBRE is used when the scale parameter is known, like Poisson and Binomial families. Parameters ---------- y : array-like of shape (n_samples,) output data vector modelmat : array-like, default: None contains the spline basis for each feature evaluated at the input gamma : float, default: 1.4 serves as a weighting to increase the impact of the influence matrix on the score add_scale : boolean, default: True UBRE score can be negative because the distribution scale is subtracted. to keep things positive we can add the scale back. weights : array-like shape (n_samples,) or None, default: None containing sample weights if None, defaults to array of ones Returns ------- score : float Either GCV or UBRE, depending on if the scale parameter is known. Notes ----- Sometimes the GCV or UBRE selected model is deemed to be too wiggly, and a smoother model is desired. One way to achieve this, in a systematic way, is to increase the amount that each model effective degree of freedom counts, in the GCV or UBRE score, by a factor γ ≥ 1 see Wood 2006 pg. 177-182, 220 for more details. """ if gamma < 1: raise ValueError('gamma scaling should be greater than 1, '\ 'but found gamma = {}',format(gamma)) if modelmat is None: modelmat = self._modelmat(X) if weights is None: weights = np.ones_like(y).astype('float64') lp = self._linear_predictor(modelmat=modelmat) mu = self.link.mu(lp, self.distribution) n = y.shape[0] edof = self.statistics_['edof'] GCV = None UBRE = None dev = self.distribution.deviance(mu=mu, y=y, scaled=False, weights=weights).sum() if self.distribution._known_scale: # scale is known, use UBRE scale = self.distribution.scale UBRE = 1./n * dev - (~add_scale)*(scale) + 2.*gamma/n * edof * scale else: # scale unkown, use GCV GCV = (n * dev) / (n - gamma * edof)**2 return (GCV, UBRE) def _estimate_p_values(self): """estimate the p-values for all features """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') p_values = [] for feature in range(len(self._n_coeffs)): p_values.append(self._compute_p_value(feature)) return p_values def _compute_p_value(self, feature): """compute the p-value of the desired feature Arguments --------- feature : int feature to select from the data. when fit_intercept=True, 0 corresponds to the intercept Returns ------- p_value : float Notes ----- Wood 2006, section 4.8.5: The p-values, calculated in this manner, behave correctly for un-penalized models, or models with known smoothing parameters, but when smoothing parameters have been estimated, the p-values are typically lower than they should be, meaning that the tests reject the null too readily. (...) In practical terms, if these p-values suggest that a term is not needed in a model, then this is probably true, but if a term is deemed ‘significant’ it is important to be aware that this significance may be overstated. based on equations from Wood 2006 section 4.8.5 page 191 and errata https://people.maths.bris.ac.uk/~sw15190/igam/iGAMerrata-12.pdf the errata shows a correction for the f-statisitc. """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') idxs = self._select_feature(feature) cov = self.statistics_['cov'][idxs][:, idxs] coef = self.coef_[idxs] # center non-intercept feature functions if feature > 0 or self.fit_intercept is False: fit_linear = self._fit_linear[feature - self.fit_intercept] n_splines = self._n_splines[feature - self.fit_intercept] # only do this if we even have splines if n_splines > 0: coef[fit_linear:]-= coef[fit_linear:].mean() inv_cov, rank = sp.linalg.pinv(cov, return_rank=True) score = coef.T.dot(inv_cov).dot(coef) # compute p-values if self.distribution._known_scale: # for known scale use chi-squared statistic return 1 - sp.stats.chi2.cdf(x=score, df=rank) else: # if scale has been estimated, prefer to use f-statisitc score = score / rank return 1 - sp.stats.f.cdf(score, rank, self.statistics_['n_samples'] - self.statistics_['edof']) def confidence_intervals(self, X, width=.95, quantiles=None): """ estimate confidence intervals for the model. Parameters ---------- X : array-like of shape (n_samples, m_features) input data matrix width : float on [0,1], default: 0.95 quantiles : array-like of floats in [0, 1], default: None instead of specifying the prediciton width, one can specify the quantiles. so width=.95 is equivalent to quantiles=[.025, .975] Returns ------- intervals: np.array of shape (n_samples, 2 or len(quantiles)) Notes ----- Wood 2006, section 4.9 Confidence intervals based on section 4.8 rely on large sample results to deal with non-Gaussian distributions, and treat the smoothing parameters as fixed, when in reality they are estimated from the data. """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') X = check_X(X, n_feats=len(self._n_coeffs) - self._fit_intercept, edge_knots=self._edge_knots, dtypes=self._dtype, verbose=self.verbose) return self._get_quantiles(X, width, quantiles, prediction=False) def _get_quantiles(self, X, width, quantiles, modelmat=None, lp=None, prediction=False, xform=True, feature=-1): """ estimate prediction intervals for LinearGAM Parameters ---------- X : array input data of shape (n_samples, m_features) y : array label data of shape (n_samples,) width : float on [0,1] quantiles : array-like of floats in [0, 1] instead of specifying the prediciton width, one can specify the quantiles. so width=.95 is equivalent to quantiles=[.025, .975] modelmat : array of shape Returns ------- intervals: np.array of shape (n_samples, 2 or len(quantiles)) Notes ----- when the scale parameter is known, then we can proceed with a large sample approximation to the distribution of the model coefficients where B_hat ~ Normal(B, cov) when the scale parameter is unknown, then we have to account for the distribution of the estimated scale parameter, which is Chi-squared. since we scale our estimate of B_hat by the sqrt of estimated scale, we get a t distribution: Normal / sqrt(Chi-squared) ~ t see Simon Wood section 1.3.2, 1.3.3, 1.5.5, 2.1.5 """ if quantiles is not None: quantiles = np.atleast_1d(quantiles) else: alpha = (1 - width)/2. quantiles = [alpha, 1 - alpha] for quantile in quantiles: if (quantile > 1) or (quantile < 0): raise ValueError('quantiles must be in [0, 1], but found {}'\ .format(quantiles)) if modelmat is None: modelmat = self._modelmat(X, feature=feature) if lp is None: lp = self._linear_predictor(modelmat=modelmat, feature=feature) idxs = self._select_feature(feature) cov = self.statistics_['cov'][idxs][:, idxs] var = (modelmat.dot(cov) * modelmat.todense().A).sum(axis=1) if prediction: var += self.distribution.scale lines = [] for quantile in quantiles: if self.distribution._known_scale: q = sp.stats.norm.ppf(quantile) else: q = sp.stats.t.ppf(quantile, df=self.statistics_['n_samples'] - self.statistics_['edof']) lines.append(lp + q * var**0.5) lines = np.vstack(lines).T if xform: lines = self.link.mu(lines, self.distribution) return lines def _select_feature(self, feature): """ tool for indexing by feature function. many coefficients and parameters are organized by feature. this tool returns all of the indices for a given feature. GAM intercept is considered the 0th feature. Parameters ---------- feature : int feature to select from the data. when fit_intercept=True, 0 corresponds to the intercept when feature=-1, all features are selected Returns ------- np.array indices into self.coef_ corresponding to the chosen feature """ if feature >= len(self._n_coeffs) or feature < -1: raise ValueError('feature {} out of range for {}-dimensional data'\ .format(feature, len(self._n_splines))) if feature == -1: # special case for selecting all features return np.arange(np.sum(self._n_coeffs), dtype=int) a = np.sum(self._n_coeffs[:feature]) b = np.sum(self._n_coeffs[feature]) return np.arange(a, a+b, dtype=int) def partial_dependence(self, X, feature=-1, width=None, quantiles=None): """ Computes the feature functions for the GAM and possibly their confidence intervals. if both width=None and quantiles=None, then no confidence intervals are computed Parameters ---------- X : array input data of shape (n_samples, m_features) feature : array-like of ints, default: -1 feature for which to compute the partial dependence functions if feature == -1, then all features are selected, excluding the intercept if feature == 0 and gam.fit_intercept is True, then the intercept's patial dependence is returned width : float in [0, 1], default: None width of the confidence interval if None, defaults to 0.95 quantiles : array-like of floats in [0, 1], default: None instead of specifying the prediciton width, one can specify the quantiles. so width=.95 is equivalent to quantiles=[.025, .975] if None, defaults to width Returns ------- pdeps : np.array of shape (n_samples, len(feature)) conf_intervals : list of length len(feature) containing np.arrays of shape (n_samples, 2 or len(quantiles)) """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') m = len(self._n_coeffs) - self._fit_intercept X = check_X(X, n_feats=m, edge_knots=self._edge_knots, dtypes=self._dtype, verbose=self.verbose) p_deps = [] compute_quantiles = (width is not None) or (quantiles is not None) conf_intervals = [] if feature == -1: feature = np.arange(m) + self._fit_intercept # convert to array feature = np.atleast_1d(feature) # ensure feature exists if (feature >= len(self._n_coeffs)).any() or (feature < -1).any(): raise ValueError('feature {} out of range for X with shape {}'\ .format(feature, X.shape)) for i in feature: modelmat = self._modelmat(X, feature=i) lp = self._linear_predictor(modelmat=modelmat, feature=i) p_deps.append(lp) if compute_quantiles: conf_intervals.append(self._get_quantiles(X, width=width, quantiles=quantiles, modelmat=modelmat, lp=lp, feature=i, xform=False)) pdeps = np.vstack(p_deps).T if compute_quantiles: return (pdeps, conf_intervals) return pdeps def summary(self): """ produce a summary of the model statistics #TODO including feature significance via F-Test Parameters ---------- None Returns ------- None """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') # high-level model summary width_details = 47 width_results = 58 model_fmt = [ (self.__class__.__name__, 'model_details', width_details), ('', 'model_results', width_results) ] model_details = [] if self.distribution._known_scale: objective = 'UBRE' else: objective = 'GCV' model_details.append({'model_details': space_row('Distribution:', self.distribution.__class__.__name__, total_width=width_details), 'model_results': space_row('Effective DoF:', str(np.round(self.statistics_['edof'], 4)), total_width=width_results)}) model_details.append({'model_details': space_row('Link Function:', self.link.__class__.__name__, total_width=width_details), 'model_results': space_row('Log Likelihood:', str(np.round(self.statistics_['loglikelihood'], 4)), total_width=width_results)}) model_details.append({'model_details': space_row('Number of Samples:', str(self.statistics_['n_samples']), total_width=width_details), 'model_results': space_row('AIC: ', str(np.round(self.statistics_['AIC'], 4)), total_width=width_results)}) model_details.append({'model_results': space_row('AICc: ', str(np.round(self.statistics_['AICc'], 4)), total_width=width_results)}) model_details.append({'model_results': space_row(objective + ':', str(np.round(self.statistics_[objective], 4)), total_width=width_results)}) model_details.append({'model_results': space_row('Scale:', str(np.round(self.statistics_['scale'], 4)), total_width=width_results)}) model_details.append({'model_results': space_row('Pseudo R-Squared:', str(np.round(self.statistics_['pseudo_r2']['explained_deviance'], 4)), total_width=width_results)}) # feature summary data = [] for i in np.arange(len(self._n_splines)): data.append({ 'feature_func': 'feature {}'.format(i + self.fit_intercept), 'n_splines': self._n_splines[i], 'spline_order': self._spline_order[i], 'fit_linear': self._fit_linear[i], 'dtype': self._dtype[i], 'lam': np.round(self._lam[i + self.fit_intercept], 4), 'p_value': '%.2e'%(self.statistics_['p_values'][i + self.fit_intercept]), 'sig_code': sig_code(self.statistics_['p_values'][i + self.fit_intercept]) }) if self.fit_intercept: data.append({ 'feature_func': 'intercept', 'n_splines': '', 'spline_order': '', 'fit_linear': '', 'dtype': '', 'lam': '', 'p_value': '%.2e'%(self.statistics_['p_values'][0]), 'sig_code': sig_code(self.statistics_['p_values'][0]) }) fmt = [ ('Feature Function', 'feature_func', 18), ('Data Type', 'dtype', 14), ('Num Splines', 'n_splines', 13), ('Spline Order', 'spline_order', 13), ('Linear Fit', 'fit_linear', 11), ('Lambda', 'lam', 10), ('P > x', 'p_value', 10), ('Sig. Code', 'sig_code', 10) ] print( TablePrinter(model_fmt, ul='=', sep=' ')(model_details) ) print("="*106) print( TablePrinter(fmt, ul='=')(data) ) print("="*106) print("Significance codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1") print() print("WARNING: Fitting splines and a linear function to a feature introduces a model identifiability problem\n" \ " which can cause p-values to appear significant when they are not.") print() print("WARNING: p-values calculated in this manner behave correctly for un-penalized models or models with\n" \ " known smoothing parameters, but when smoothing parameters have been estimated, the p-values\n" \ " are typically lower than they should be, meaning that the tests reject the null too readily.") def gridsearch(self, X, y, weights=None, return_scores=False, keep_best=True, objective='auto', progress=True, **param_grids): """ performs a grid search over a space of parameters for a given objective NOTE: gridsearch method is lazy and will not remove useless combinations from the search space, eg. n_splines=np.arange(5,10), fit_splines=[True, False] will result in 10 loops, of which 5 are equivalent because even though fit_splines==False it is not recommended to search over a grid that alternates between known scales and unknown scales, as the scores of the cadidate models will not be comparable. Parameters ---------- X : array input data of shape (n_samples, m_features) y : array label data of shape (n_samples,) weights : array-like shape (n_samples,) or None, default: None containing sample weights if None, defaults to array of ones return_scores : boolean, default False whether to return the hyperpamaters and score for each element in the grid keep_best : boolean whether to keep the best GAM as self. default: True objective : string, default: 'auto' metric to optimize. must be in ['AIC', 'AICc', 'GCV', 'UBRE', 'auto'] if 'auto', then grid search will optimize GCV for models with unknown scale and UBRE for models with known scale. progress : bool, default: True whether to display a progress bar **kwargs : dict, default {'lam': np.logspace(-3, 3, 11)} pairs of parameters and iterables of floats, or parameters and iterables of iterables of floats. if iterable of iterables of floats, the outer iterable must have length m_features. the method will make a grid of all the combinations of the parameters and fit a GAM to each combination. Returns ------- if return_scores == True: model_scores : dict Contains each fitted model as keys and corresponding objective scores as values else: self, ie possibly the newly fitted model """ # check if model fitted if not self._is_fitted: self._validate_params() y = check_y(y, self.link, self.distribution, verbose=self.verbose) X = check_X(X, verbose=self.verbose) check_X_y(X, y) if weights is not None: weights = check_array(weights, name='sample weights', verbose=self.verbose) check_lengths(y, weights) else: weights = np.ones_like(y).astype('float64') # validate objective if objective not in ['auto', 'GCV', 'UBRE', 'AIC', 'AICc']: raise ValueError("objective mut be in "\ "['auto', 'GCV', 'UBRE', 'AIC', 'AICc'], '\ 'but found objective = {}".format(objective)) # check objective if self.distribution._known_scale: if objective == 'GCV': raise ValueError('GCV should be used for models with'\ 'unknown scale') if objective == 'auto': objective = 'UBRE' else: if objective == 'UBRE': raise ValueError('UBRE should be used for models with '\ 'known scale') if objective == 'auto': objective = 'GCV' # if no params, then set up default gridsearch if not bool(param_grids): param_grids['lam'] = np.logspace(-3, 3, 11) # validate params admissible_params = self.get_params() params = [] grids = [] for param, grid in list(param_grids.items()): if param not in (admissible_params): raise ValueError('unknown parameter: {}'.format(param)) if not (isiterable(grid) and (len(grid) > 1)): \ raise ValueError('{} grid must either be iterable of ' 'iterables, or an iterable of lengnth > 1, '\ 'but found {}'.format(param, grid)) # prepare grid if any(isiterable(g) for g in grid): # cast to np.array grid = [np.atleast_1d(g) for g in grid] # set grid to combination of all grids grid = combine(*grid) # save param name and grid params.append(param) grids.append(grid) # build a list of dicts of candidate model params param_grid_list = [] for candidate in combine(*grids): param_grid_list.append(dict(zip(params,candidate))) # set up data collection best_model = None # keep the best model best_score = np.inf scores = [] models = [] # check if our model has been fitted already and store it if self._is_fitted: models.append(self) scores.append(self.statistics_[objective]) # our model is currently the best best_model = models[-1] best_score = scores[-1] # make progressbar optional if progress: pbar = ProgressBar() else: pbar = lambda x: x # loop through candidate model params for param_grid in pbar(param_grid_list): # define new model gam = deepcopy(self) gam.set_params(self.get_params()) gam.set_params(**param_grid) # warm start with parameters from previous build if models: coef = models[-1].coef_ gam.set_params(coef_=coef, force=True) try: # try fitting gam.fit(X, y, weights) except ValueError as error: msg = str(error) + '\non model:\n' + str(gam) msg += '\nskipping...\n' if self.verbose: warnings.warn(msg) continue # record results models.append(gam) scores.append(gam.statistics_[objective]) # track best if scores[-1] < best_score: best_model = models[-1] best_score = scores[-1] # problems if len(models) == 0: msg = 'No models were fitted.' if self.verbose: warnings.warn(msg) return self # copy over the best if keep_best: self.set_params(deep=True, force=True, **best_model.get_params(deep=True)) if return_scores: return OrderedDict(zip(models, scores)) else: return self def sample(self, X, y, quantity='y', sample_at_X=None, weights=None, n_draws=100, n_bootstraps=1, objective='auto'): """Simulate from the posterior of the coefficients and smoothing params. Samples are drawn from the posterior of the coefficients and smoothing parameters given the response in an approximate way. The GAM must already be fitted before calling this method; if the model has not been fitted, then an exception is raised. Moreover, it is recommended that the model and its hyperparameters be chosen with `gridsearch` (with the parameter `keep_best=True`) before calling `sample`, so that the result of that gridsearch can be used to generate useful response data and so that the model's coefficients (and their covariance matrix) can be used as the first bootstrap sample. These samples are drawn as follows. Details are in the reference below. 1. `n_bootstraps` many "bootstrap samples" of the response (`y`) are simulated by drawing random samples from the model's distribution evaluated at the expected values (`mu`) for each sample in `X`. 2. A copy of the model is fitted to each of those bootstrap samples of the response. The result is an approximation of the distribution over the smoothing parameter `lam` given the response data `y`. 3. Samples of the coefficients are simulated from a multivariate normal using the bootstrap samples of the coefficients and their covariance matrices. NOTE: A `gridsearch` is done `n_bootstraps` many times, so keep `n_bootstraps` small. Make `n_bootstraps < n_draws` to take advantage of the expensive bootstrap samples of the smoothing parameters. NOTE: For now, the grid of `lam` values is the default of `gridsearch`. Until randomized grid search is implemented, it is not worth setting `n_bootstraps` to a value greater than one because the smoothing parameters will be identical in each bootstrap sample. Parameters ----------- X : array of shape (n_samples, m_features) empirical input data y : array of shape (n_samples,) empirical response vector quantity : {'y', 'coef', 'mu'}, default: 'y' What quantity to return pseudorandom samples of. If `sample_at_X` is not None and `quantity` is either `'y'` or `'mu'`, then samples are drawn at the values of `X` specified in `sample_at_X`. sample_at_X : array of shape (n_samples_to_simulate, m_features) or None, default: None Input data at which to draw new samples. Only applies for `quantity` equal to `'y'` or to `'mu`'. If `None`, then `sample_at_X` is replaced by `X`. weights : np.array of shape (n_samples,) sample weights n_draws : positive int, default: 100 The number of samples to draw from the posterior distribution of the coefficients and smoothing parameters n_bootstraps : positive int, default: 1 The number of bootstrap samples to draw from simulations of the response (from the already fitted model) to estimate the distribution of the smoothing parameters given the response data. If `n_bootstraps` is 1, then only the already fitted model's smoothing parameter is used, and the distribution over the smoothing parameters is not estimated using bootstrap sampling. objective : string, default: 'auto' metric to optimize in grid search. must be in ['AIC', 'AICc', 'GCV', 'UBRE', 'auto'] if 'auto', then grid search will optimize GCV for models with unknown scale and UBRE for models with known scale. Returns ------- draws : 2D array of length n_draws Simulations of the given `quantity` using samples from the posterior distribution of the coefficients and smoothing parameter given the response data. Each row is a pseudorandom sample. If `quantity == 'coef'`, then the number of columns of `draws` is the number of coefficients (`len(self.coef_)`). Otherwise, the number of columns of `draws` is the number of rows of `sample_at_X` if `sample_at_X` is not `None` or else the number of rows of `X`. References ---------- Simon N. Wood, 2006. Generalized Additive Models: an introduction with R. Section 4.9.3 (pages 198–199) and Section 5.4.2 (page 256–257). """ if quantity not in {'mu', 'coef', 'y'}: raise ValueError("`quantity` must be one of 'mu', 'coef', 'y';" " got {}".format(quantity)) coef_draws = self._sample_coef( X, y, weights=weights, n_draws=n_draws, n_bootstraps=n_bootstraps, objective=objective) if quantity == 'coef': return coef_draws if sample_at_X is None: sample_at_X = X linear_predictor = self._modelmat(sample_at_X).dot(coef_draws.T) mu_shape_n_draws_by_n_samples = self.link.mu( linear_predictor, self.distribution).T if quantity == 'mu': return mu_shape_n_draws_by_n_samples else: return self.distribution.sample(mu_shape_n_draws_by_n_samples) def _sample_coef(self, X, y, weights=None, n_draws=100, n_bootstraps=1, objective='auto'): """Simulate from the posterior of the coefficients. NOTE: A `gridsearch` is done `n_bootstraps` many times, so keep `n_bootstraps` small. Make `n_bootstraps < n_draws` to take advantage of the expensive bootstrap samples of the smoothing parameters. For now, the grid of `lam` values is the default of `gridsearch`. Parameters ----------- X : array of shape (n_samples, m_features) input data y : array of shape (n_samples,) response vector weights : np.array of shape (n_samples,) sample weights n_draws : positive int, default: 100 The number of samples to draw from the posterior distribution of the coefficients and smoothing parameters n_bootstraps : positive int, default: 1 The number of bootstrap samples to draw from simulations of the response (from the already fitted model) to estimate the distribution of the smoothing parameters given the response data. If `n_bootstraps` is 1, then only the already fitted model's smoothing parameters is used. objective : string, default: 'auto' metric to optimize in grid search. must be in ['AIC', 'AICc', 'GCV', 'UBRE', 'auto'] if 'auto', then grid search will optimize GCV for models with unknown scale and UBRE for models with known scale. Returns ------- coef_samples : array of shape (n_draws, n_samples) Approximate simulations of the coefficients drawn from the posterior distribution of the coefficients and smoothing parameters given the response data References ---------- Simon N. Wood, 2006. Generalized Additive Models: an introduction with R. Section 4.9.3 (pages 198–199) and Section 5.4.2 (page 256–257). """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') if n_bootstraps < 1: raise ValueError('n_bootstraps must be >= 1;' ' got {}'.format(n_bootstraps)) if n_draws < 1: raise ValueError('n_draws must be >= 1;' ' got {}'.format(n_draws)) coef_bootstraps, cov_bootstraps = ( self._bootstrap_samples_of_smoothing(X, y, weights=weights, n_bootstraps=n_bootstraps, objective=objective)) coef_draws = self._simulate_coef_from_bootstraps( n_draws, coef_bootstraps, cov_bootstraps) return coef_draws def _bootstrap_samples_of_smoothing(self, X, y, weights=None, n_bootstraps=1, objective='auto'): """Sample the smoothing parameters using simulated response data.""" mu = self.predict_mu(X) # Wood pg. 198 step 1 coef_bootstraps = [self.coef_] cov_bootstraps = [ load_diagonal(self.statistics_['cov'])] for _ in range(n_bootstraps - 1): # Wood pg. 198 step 2 # generate response data from fitted model (Wood pg. 198 step 3) y_bootstrap = self.distribution.sample(mu) # fit smoothing parameters on the bootstrap data # (Wood pg. 198 step 4) # TODO: Either enable randomized searches over hyperparameters # (like in sklearn's RandomizedSearchCV), or draw enough samples of # `lam` so that each of these bootstrap samples get different # values of `lam`. Right now, each bootstrap sample uses the exact # same grid of values for `lam`, so it is not worth setting # `n_bootstraps > 1`. gam = deepcopy(self) gam.set_params(self.get_params()) gam.gridsearch(X, y_bootstrap, weights=weights, objective=objective) lam = gam.lam # fit coefficients on the original data given the smoothing params # (Wood pg. 199 step 5) gam = deepcopy(self) gam.set_params(self.get_params()) gam.lam = lam gam.fit(X, y, weights=weights) coef_bootstraps.append(gam.coef_) cov = load_diagonal(gam.statistics_['cov']) cov_bootstraps.append(cov) return coef_bootstraps, cov_bootstraps def _simulate_coef_from_bootstraps( self, n_draws, coef_bootstraps, cov_bootstraps): """Simulate coefficients using bootstrap samples.""" # Sample indices uniformly from {0, ..., n_bootstraps - 1} # (Wood pg. 199 step 6) random_bootstrap_indices = np.random.choice( np.arange(len(coef_bootstraps)), size=n_draws, replace=True) # Simulate `n_draws` many random coefficient vectors from a # multivariate normal distribution with mean and covariance given by # the bootstrap samples (indexed by `random_bootstrap_indices`) of # `coef_bootstraps` and `cov_bootstraps`. Because it's faster to draw # many samples from a certain distribution all at once, we make a dict # mapping bootstrap indices to draw indices and use the `size` # parameter of `np.random.multivariate_normal` to sample the draws # needed from that bootstrap sample all at once. bootstrap_index_to_draw_indices = defaultdict(list) for draw_index, bootstrap_index in enumerate(random_bootstrap_indices): bootstrap_index_to_draw_indices[bootstrap_index].append(draw_index) coef_draws = np.empty((n_draws, len(self.coef_))) for bootstrap, draw_indices in bootstrap_index_to_draw_indices.items(): coef_draws[[draw_indices]] = np.random.multivariate_normal( coef_bootstraps[bootstrap], cov_bootstraps[bootstrap], size=len(draw_indices)) return coef_draws class LinearGAM(GAM): """Linear GAM This is a GAM with a Normal error distribution, and an identity link. Parameters ---------- callbacks : list of strings or list of CallBack objects, default: ['deviance', 'diffs'] Names of callback objects to call during the optimization loop. constraints : str or callable, or iterable of str or callable, default: None Names of constraint functions to call during the optimization loop. Must be in {'convex', 'concave', 'monotonic_inc', 'monotonic_dec', 'circular', 'none'} If None, then the model will apply no constraints. If only one str or callable is specified, then is it copied for all features. dtype : str in {'auto', 'numerical', 'categorical'}, or list of str, default: 'auto' String describing the data-type of each feature. 'numerical' is used for continuous-valued data-types, like in regression. 'categorical' is used for discrete-valued data-types, like in classification. If only one str is specified, then is is copied for all features. lam : float or iterable of floats > 0, default: 0.6 Smoothing strength; must be a positive float, or one positive float per feature. Larger values enforce stronger smoothing. If only one float is specified, then it is copied for all features. fit_intercept : bool, default: True Specifies if a constant (a.k.a. bias or intercept) should be added to the decision function. NOTE: the intercept receives no smoothing penalty. fit_linear : bool or iterable of bools, default: False Specifies if a linear term should be added to any of the feature functions. Useful for including pre-defined feature transformations in the model. If only one bool is specified, then it is copied for all features. NOTE: It is NOT recommended to use both 'fit_splines = True' and 'fit_linear = True' for two reasons: (1) This introduces a model identifiabiilty problem, which can cause p-values to appear significant. (2) Many constraints are incompatible with an additional linear fit. eg. if a non-zero linear function is added to a periodic spline function, it will cease to be periodic. This is also possible for a monotonic spline function. fit_splines : bool or iterable of bools, default: True Specifies if a smoother should be added to any of the feature functions. Useful for defining feature transformations a-priori that should not have splines fitted to them. If only one bool is specified, then it is copied for all features. NOTE: fit_splines supercedes n_splines. ie. if n_splines > 0 and fit_splines = False, no splines will be fitted. NOTE: It is NOT recommended to use both 'fit_splines = True' and 'fit_linear = True'. Please see 'fit_linear' max_iter : int, default: 100 Maximum number of iterations allowed for the solver to converge. penalties : str or callable, or iterable of str or callable, default: 'auto' Type of penalty to use for each feature. penalty should be in {'auto', 'none', 'derivative', 'l2', } If 'auto', then the model will use 2nd derivative smoothing for features of dtype 'numerical', and L2 smoothing for features of dtype 'categorical'. If only one str or callable is specified, then is it copied for all features. n_splines : int, or iterable of ints, default: 25 Number of splines to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features. Note: this value is set to 0 if fit_splines is False scale : float or None, default: None scale of the distribution, if known a-priori. if None, scale is estimated. spline_order : int, or iterable of ints, default: 3 Order of spline to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features Note: if a feature is of type categorical, spline_order will be set to 0. tol : float, default: 1e-4 Tolerance for stopping criteria. Attributes ---------- coef_ : array, shape (n_classes, m_features) Coefficient of the features in the decision function. If fit_intercept is True, then self.coef_[0] will contain the bias. statistics_ : dict Dictionary containing model statistics like GCV/UBRE scores, AIC/c, parameter covariances, estimated degrees of freedom, etc. logs_ : dict Dictionary containing the outputs of any callbacks at each optimization loop. The logs are structured as `{callback: [...]}` References ---------- Simon N. Wood, 2006 Generalized Additive Models: an introduction with R Hastie, Tibshirani, Friedman The Elements of Statistical Learning http://statweb.stanford.edu/~tibs/ElemStatLearn/printings/ESLII_print10.pdf Paul Eilers & Brian Marx, 2015 International Biometric Society: A Crash Course on P-splines http://www.ibschannel2015.nl/project/userfiles/Crash_course_handout.pdf """ def __init__(self, lam=0.6, max_iter=100, n_splines=25, spline_order=3, penalties='auto', dtype='auto', tol=1e-4, scale=None, callbacks=['deviance', 'diffs'], fit_intercept=True, fit_linear=False, fit_splines=True, constraints=None): self.scale = scale super(LinearGAM, self).__init__(distribution=NormalDist(scale=self.scale), link='identity', lam=lam, dtype=dtype, max_iter=max_iter, n_splines=n_splines, spline_order=spline_order, penalties=penalties, tol=tol, callbacks=callbacks, fit_intercept=fit_intercept, fit_linear=fit_linear, fit_splines=fit_splines, constraints=constraints) self._exclude += ['distribution', 'link'] def _validate_params(self): """ method to sanitize model parameters Parameters --------- None Returns ------- None """ self.distribution = NormalDist(scale=self.scale) super(LinearGAM, self)._validate_params() def prediction_intervals(self, X, width=.95, quantiles=None): """ estimate prediction intervals for LinearGAM Parameters ---------- X : array-like of shape (n_samples, m_features) input data matrix width : float on [0,1], default: 0.95 quantiles : array-like of floats in [0, 1], default: None instead of specifying the prediciton width, one can specify the quantiles. so width=.95 is equivalent to quantiles=[.025, .975] Returns ------- intervals: np.array of shape (n_samples, 2 or len(quantiles)) """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') X = check_X(X, n_feats=len(self._n_coeffs) - self._fit_intercept, edge_knots=self._edge_knots, dtypes=self._dtype, verbose=self.verbose) return self._get_quantiles(X, width, quantiles, prediction=True) class LogisticGAM(GAM): """Logistic GAM This is a GAM with a Binomial error distribution, and a logit link. Parameters ---------- callbacks : list of strings or list of CallBack objects, default: ['deviance', 'diffs'] Names of callback objects to call during the optimization loop. constraints : str or callable, or iterable of str or callable, default: None Names of constraint functions to call during the optimization loop. Must be in {'convex', 'concave', 'monotonic_inc', 'monotonic_dec', 'circular', 'none'} If None, then the model will apply no constraints. If only one str or callable is specified, then is it copied for all features. dtype : str in {'auto', 'numerical', 'categorical'}, or list of str, default: 'auto' String describing the data-type of each feature. 'numerical' is used for continuous-valued data-types, like in regression. 'categorical' is used for discrete-valued data-types, like in classification. If only one str is specified, then is is copied for all features. lam : float or iterable of floats > 0, default: 0.6 Smoothing strength; must be a positive float, or one positive float per feature. Larger values enforce stronger smoothing. If only one float is specified, then it is copied for all features. fit_intercept : bool, default: True Specifies if a constant (a.k.a. bias or intercept) should be added to the decision function. NOTE: the intercept receives no smoothing penalty. fit_linear : bool or iterable of bools, default: False Specifies if a linear term should be added to any of the feature functions. Useful for including pre-defined feature transformations in the model. If only one bool is specified, then it is copied for all features. NOTE: Many constraints are incompatible with an additional linear fit. eg. if a non-zero linear function is added to a periodic spline function, it will cease to be periodic. this is also possible for a monotonic spline function. fit_splines : bool or iterable of bools, default: True Specifies if a smoother should be added to any of the feature functions. Useful for defining feature transformations a-priori that should not have splines fitted to them. If only one bool is specified, then it is copied for all features. NOTE: fit_splines supercedes n_splines. ie. if n_splines > 0 and fit_splines = False, no splines will be fitted. max_iter : int, default: 100 Maximum number of iterations allowed for the solver to converge. penalties : str or callable, or iterable of str or callable, default: 'auto' Type of penalty to use for each feature. penalty should be in {'auto', 'none', 'derivative', 'l2', } If 'auto', then the model will use 2nd derivative smoothing for features of dtype 'numerical', and L2 smoothing for features of dtype 'categorical'. If only one str or callable is specified, then is it copied for all features. n_splines : int, or iterable of ints, default: 25 Number of splines to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features. Note: this value is set to 0 if fit_splines is False spline_order : int, or iterable of ints, default: 3 Order of spline to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features Note: if a feature is of type categorical, spline_order will be set to 0. tol : float, default: 1e-4 Tolerance for stopping criteria. Attributes ---------- coef_ : array, shape (n_classes, m_features) Coefficient of the features in the decision function. If fit_intercept is True, then self.coef_[0] will contain the bias. statistics_ : dict Dictionary containing model statistics like GCV/UBRE scores, AIC/c, parameter covariances, estimated degrees of freedom, etc. logs_ : dict Dictionary containing the outputs of any callbacks at each optimization loop. The logs are structured as `{callback: [...]}` References ---------- Simon N. Wood, 2006 Generalized Additive Models: an introduction with R Hastie, Tibshirani, Friedman The Elements of Statistical Learning http://statweb.stanford.edu/~tibs/ElemStatLearn/printings/ESLII_print10.pdf Paul Eilers & Brian Marx, 2015 International Biometric Society: A Crash Course on P-splines http://www.ibschannel2015.nl/project/userfiles/Crash_course_handout.pdf """ def __init__(self, lam=0.6, max_iter=100, n_splines=25, spline_order=3, penalties='auto', dtype='auto', tol=1e-4, callbacks=['deviance', 'diffs', 'accuracy'], fit_intercept=True, fit_linear=False, fit_splines=True, constraints=None): # call super super(LogisticGAM, self).__init__(distribution='binomial', link='logit', lam=lam, dtype=dtype, max_iter=max_iter, n_splines=n_splines, spline_order=spline_order, penalties=penalties, tol=tol, callbacks=callbacks, fit_intercept=fit_intercept, fit_linear=fit_linear, fit_splines=fit_splines, constraints=constraints) # ignore any variables self._exclude += ['distribution', 'link'] def accuracy(self, X=None, y=None, mu=None): """ computes the accuracy of the LogisticGAM Parameters ---------- note: X or mu must be defined. defaults to mu X : array-like of shape (n_samples, m_features), default: None containing input data y : array-like of shape (n,) containing target data mu : array-like of shape (n_samples,), default: None expected value of the targets given the model and inputs Returns ------- float in [0, 1] """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') y = check_y(y, self.link, self.distribution, verbose=self.verbose) if X is not None: X = check_X(X, n_feats=len(self._n_coeffs) - self._fit_intercept, edge_knots=self._edge_knots, dtypes=self._dtype, verbose=self.verbose) if mu is None: mu = self.predict_mu(X) check_X_y(mu, y) return ((mu > 0.5).astype(int) == y).mean() def predict(self, X): """ preduct binary targets given model and input X Parameters --------- X : array-like of shape (n_samples, m_features), default: None containing the input dataset Returns ------- y : np.array of shape (n_samples,) containing binary targets under the model """ return self.predict_mu(X) > 0.5 def predict_proba(self, X): """ preduct targets given model and input X Parameters --------- X : array-like of shape (n_samples, m_features), default: None containing the input dataset Returns ------- y : np.array of shape (n_samples,) containing expected values under the model """ return self.predict_mu(X) class PoissonGAM(GAM): """Poisson GAM This is a GAM with a Poisson error distribution, and a log link. Parameters ---------- callbacks : list of strings or list of CallBack objects, default: ['deviance', 'diffs'] Names of callback objects to call during the optimization loop. constraints : str or callable, or iterable of str or callable, default: None Names of constraint functions to call during the optimization loop. Must be in {'convex', 'concave', 'monotonic_inc', 'monotonic_dec', 'circular', 'none'} If None, then the model will apply no constraints. If only one str or callable is specified, then is it copied for all features. dtype : str in {'auto', 'numerical', 'categorical'}, or list of str, default: 'auto' String describing the data-type of each feature. 'numerical' is used for continuous-valued data-types, like in regression. 'categorical' is used for discrete-valued data-types, like in classification. If only one str is specified, then is is copied for all features. lam : float or iterable of floats > 0, default: 0.6 Smoothing strength; must be a positive float, or one positive float per feature. Larger values enforce stronger smoothing. If only one float is specified, then it is copied for all features. fit_intercept : bool, default: True Specifies if a constant (a.k.a. bias or intercept) should be added to the decision function. NOTE: the intercept receives no smoothing penalty. fit_linear : bool or iterable of bools, default: False Specifies if a linear term should be added to any of the feature functions. Useful for including pre-defined feature transformations in the model. If only one bool is specified, then it is copied for all features. NOTE: Many constraints are incompatible with an additional linear fit. eg. if a non-zero linear function is added to a periodic spline function, it will cease to be periodic. this is also possible for a monotonic spline function. fit_splines : bool or iterable of bools, default: True Specifies if a smoother should be added to any of the feature functions. Useful for defining feature transformations a-priori that should not have splines fitted to them. If only one bool is specified, then it is copied for all features. NOTE: fit_splines supercedes n_splines. ie. if n_splines > 0 and fit_splines = False, no splines will be fitted. max_iter : int, default: 100 Maximum number of iterations allowed for the solver to converge. penalties : str or callable, or iterable of str or callable, default: 'auto' Type of penalty to use for each feature. penalty should be in {'auto', 'none', 'derivative', 'l2', } If 'auto', then the model will use 2nd derivative smoothing for features of dtype 'numerical', and L2 smoothing for features of dtype 'categorical'. If only one str or callable is specified, then is it copied for all features. n_splines : int, or iterable of ints, default: 25 Number of splines to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features. Note: this value is set to 0 if fit_splines is False spline_order : int, or iterable of ints, default: 3 Order of spline to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features Note: if a feature is of type categorical, spline_order will be set to 0. tol : float, default: 1e-4 Tolerance for stopping criteria. Attributes ---------- coef_ : array, shape (n_classes, m_features) Coefficient of the features in the decision function. If fit_intercept is True, then self.coef_[0] will contain the bias. statistics_ : dict Dictionary containing model statistics like GCV/UBRE scores, AIC/c, parameter covariances, estimated degrees of freedom, etc. logs_ : dict Dictionary containing the outputs of any callbacks at each optimization loop. The logs are structured as `{callback: [...]}` References ---------- Simon N. Wood, 2006 Generalized Additive Models: an introduction with R Hastie, Tibshirani, Friedman The Elements of Statistical Learning http://statweb.stanford.edu/~tibs/ElemStatLearn/printings/ESLII_print10.pdf Paul Eilers & Brian Marx, 2015 International Biometric Society: A Crash Course on P-splines http://www.ibschannel2015.nl/project/userfiles/Crash_course_handout.pdf """ def __init__(self, lam=0.6, max_iter=100, n_splines=25, spline_order=3, penalties='auto', dtype='auto', tol=1e-4, callbacks=['deviance', 'diffs'], fit_intercept=True, fit_linear=False, fit_splines=True, constraints=None): # call super super(PoissonGAM, self).__init__(distribution='poisson', link='log', lam=lam, dtype=dtype, max_iter=max_iter, n_splines=n_splines, spline_order=spline_order, penalties=penalties, tol=tol, callbacks=callbacks, fit_intercept=fit_intercept, fit_linear=fit_linear, fit_splines=fit_splines, constraints=constraints) # ignore any variables self._exclude += ['distribution', 'link'] def _loglikelihood(self, y, mu, weights=None, rescale_y=True): """ compute the log-likelihood of the dataset using the current model Parameters --------- y : array-like of shape (n,) containing target values mu : array-like of shape (n_samples,) expected value of the targets given the model and inputs weights : array-like of shape (n,) containing sample weights rescale_y : boolean, defaul: True whether to scale the targets back up by Returns ------- log-likelihood : np.array of shape (n,) containing log-likelihood scores """ if rescale_y: y = y * weights return self.distribution.log_pdf(y=y, mu=mu, weights=weights).sum() def loglikelihood(self, X, y, exposure=None, weights=None): """ compute the log-likelihood of the dataset using the current model Parameters --------- X : array-like of shape (n_samples, m_features) containing the input dataset y : array-like of shape (n,) containing target values exposure : array-like shape (n_samples,) or None, default: None containing exposures if None, defaults to array of ones weights : array-like of shape (n,) containing sample weights Returns ------- log-likelihood : np.array of shape (n,) containing log-likelihood scores """ y = check_y(y, self.link, self.distribution, verbose=self.verbose) mu = self.predict_mu(X) if weights is not None: weights = check_array(weights, name='sample weights', verbose=self.verbose) check_lengths(y, weights) else: weights = np.ones_like(y).astype('float64') y, weights = self._exposure_to_weights(y, exposure, weights) return self._loglikelihood(y, mu, weights=weights, rescale_y=True) def _exposure_to_weights(self, y, exposure=None, weights=None): """simple tool to create a common API Parameters ---------- y : array-like, shape (n_samples,) Target values (integers in classification, real numbers in regression) For classification, labels must correspond to classes. exposure : array-like shape (n_samples,) or None, default: None containing exposures if None, defaults to array of ones weights : array-like shape (n_samples,) or None, default: None containing sample weights if None, defaults to array of ones Returns ------- y : y normalized by exposure weights : array-like shape (n_samples,) """ if exposure is not None: exposure = np.array(exposure).astype('f') else: exposure = np.ones_like(y).astype('float64') check_lengths(y, exposure) # normalize response y = y / exposure if weights is not None: weights = np.array(weights).astype('f') else: weights = np.ones_like(y).astype('float64') check_lengths(weights, exposure) # set exposure as the weight weights = weights * exposure return y, weights def fit(self, X, y, exposure=None, weights=None): """Fit the generalized additive model. Parameters ---------- X : array-like, shape (n_samples, m_features) Training vectors, where n_samples is the number of samples and m_features is the number of features. y : array-like, shape (n_samples,) Target values (integers in classification, real numbers in regression) For classification, labels must correspond to classes. exposure : array-like shape (n_samples,) or None, default: None containing exposures if None, defaults to array of ones weights : array-like shape (n_samples,) or None, default: None containing sample weights if None, defaults to array of ones Returns ------- self : object Returns fitted GAM object """ y, weights = self._exposure_to_weights(y, exposure, weights) return super(PoissonGAM, self).fit(X, y, weights) def predict(self, X, exposure=None): """ preduct expected value of target given model and input X often this is done via expected value of GAM given input X Parameters --------- X : array-like of shape (n_samples, m_features), default: None containing the input dataset exposure : array-like shape (n_samples,) or None, default: None containing exposures if None, defaults to array of ones Returns ------- y : np.array of shape (n_samples,) containing predicted values under the model """ if not self._is_fitted: raise AttributeError('GAM has not been fitted. Call fit first.') X = check_X(X, n_feats=len(self._n_coeffs) - self._fit_intercept, edge_knots=self._edge_knots, dtypes=self._dtype, verbose=self.verbose) if exposure is not None: exposure = np.array(exposure).astype('f') else: exposure = np.ones(X.shape[0]).astype('f') check_lengths(X, exposure) return self.predict_mu(X) * exposure def gridsearch(self, X, y, exposure=None, weights=None, return_scores=False, keep_best=True, objective='auto', **param_grids): """ performs a grid search over a space of parameters for a given objective NOTE: gridsearch method is lazy and will not remove useless combinations from the search space, eg. n_splines=np.arange(5,10), fit_splines=[True, False] will result in 10 loops, of which 5 are equivalent because even though fit_splines==False it is not recommended to search over a grid that alternates between known scales and unknown scales, as the scores of the cadidate models will not be comparable. Parameters ---------- X : array input data of shape (n_samples, m_features) y : array label data of shape (n_samples,) exposure : array-like shape (n_samples,) or None, default: None containing exposures if None, defaults to array of ones weights : array-like shape (n_samples,) or None, default: None containing sample weights if None, defaults to array of ones return_scores : boolean, default False whether to return the hyperpamaters and score for each element in the grid keep_best : boolean whether to keep the best GAM as self. default: True objective : string, default: 'auto' metric to optimize. must be in ['AIC', 'AICc', 'GCV', 'UBRE', 'auto'] if 'auto', then grid search will optimize GCV for models with unknown scale and UBRE for models with known scale. **kwargs : dict, default {'lam': np.logspace(-3, 3, 11)} pairs of parameters and iterables of floats, or parameters and iterables of iterables of floats. if iterable of iterables of floats, the outer iterable must have length m_features. the method will make a grid of all the combinations of the parameters and fit a GAM to each combination. Returns ------- if return_values == True: model_scores : dict Contains each fitted model as keys and corresponding objective scores as values else: self, ie possibly the newly fitted model """ y, weights = self._exposure_to_weights(y, exposure, weights) return super(PoissonGAM, self).gridsearch(X, y, weights=weights, return_scores=return_scores, keep_best=keep_best, objective=objective, **param_grids) class GammaGAM(GAM): """Gamma GAM This is a GAM with a Gamma error distribution, and a log link. NB Although canonical link function for the Gamma GLM is the inverse link, this function can create problems for numerical software because it becomes difficult to enforce the requirement that the mean of the Gamma distribution be positive. The log link guarantees this. If you need to use the inverse link function, simply construct a custom GAM: ``` from pygam import GAM gam = GAM(distribution='gamma', link='inverse') ``` Parameters ---------- callbacks : list of strings or list of CallBack objects, default: ['deviance', 'diffs'] Names of callback objects to call during the optimization loop. constraints : str or callable, or iterable of str or callable, default: None Names of constraint functions to call during the optimization loop. Must be in {'convex', 'concave', 'monotonic_inc', 'monotonic_dec', 'circular', 'none'} If None, then the model will apply no constraints. If only one str or callable is specified, then is it copied for all features. dtype : str in {'auto', 'numerical', 'categorical'}, or list of str, default: 'auto' String describing the data-type of each feature. 'numerical' is used for continuous-valued data-types, like in regression. 'categorical' is used for discrete-valued data-types, like in classification. If only one str is specified, then is is copied for all features. lam : float or iterable of floats > 0, default: 0.6 Smoothing strength; must be a positive float, or one positive float per feature. Larger values enforce stronger smoothing. If only one float is specified, then it is copied for all features. fit_intercept : bool, default: True Specifies if a constant (a.k.a. bias or intercept) should be added to the decision function. NOTE: the intercept receives no smoothing penalty. fit_linear : bool or iterable of bools, default: False Specifies if a linear term should be added to any of the feature functions. Useful for including pre-defined feature transformations in the model. If only one bool is specified, then it is copied for all features. NOTE: Many constraints are incompatible with an additional linear fit. eg. if a non-zero linear function is added to a periodic spline function, it will cease to be periodic. this is also possible for a monotonic spline function. fit_splines : bool or iterable of bools, default: True Specifies if a smoother should be added to any of the feature functions. Useful for defining feature transformations a-priori that should not have splines fitted to them. If only one bool is specified, then it is copied for all features. NOTE: fit_splines supercedes n_splines. ie. if n_splines > 0 and fit_splines = False, no splines will be fitted. max_iter : int, default: 100 Maximum number of iterations allowed for the solver to converge. penalties : str or callable, or iterable of str or callable, default: 'auto' Type of penalty to use for each feature. penalty should be in {'auto', 'none', 'derivative', 'l2', } If 'auto', then the model will use 2nd derivative smoothing for features of dtype 'numerical', and L2 smoothing for features of dtype 'categorical'. If only one str or callable is specified, then is it copied for all features. n_splines : int, or iterable of ints, default: 25 Number of splines to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features. Note: this value is set to 0 if fit_splines is False scale : float or None, default: None scale of the distribution, if known a-priori. if None, scale is estimated. spline_order : int, or iterable of ints, default: 3 Order of spline to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features Note: if a feature is of type categorical, spline_order will be set to 0. tol : float, default: 1e-4 Tolerance for stopping criteria. Attributes ---------- coef_ : array, shape (n_classes, m_features) Coefficient of the features in the decision function. If fit_intercept is True, then self.coef_[0] will contain the bias. statistics_ : dict Dictionary containing model statistics like GCV/UBRE scores, AIC/c, parameter covariances, estimated degrees of freedom, etc. logs_ : dict Dictionary containing the outputs of any callbacks at each optimization loop. The logs are structured as `{callback: [...]}` References ---------- Simon N. Wood, 2006 Generalized Additive Models: an introduction with R Hastie, Tibshirani, Friedman The Elements of Statistical Learning http://statweb.stanford.edu/~tibs/ElemStatLearn/printings/ESLII_print10.pdf Paul Eilers & Brian Marx, 2015 International Biometric Society: A Crash Course on P-splines http://www.ibschannel2015.nl/project/userfiles/Crash_course_handout.pdf """ def __init__(self, lam=0.6, max_iter=100, n_splines=25, spline_order=3, penalties='auto', dtype='auto', tol=1e-4, scale=None, callbacks=['deviance', 'diffs'], fit_intercept=True, fit_linear=False, fit_splines=True, constraints=None): self.scale = scale super(GammaGAM, self).__init__(distribution=GammaDist(scale=self.scale), link='log', lam=lam, dtype=dtype, max_iter=max_iter, n_splines=n_splines, spline_order=spline_order, penalties=penalties, tol=tol, callbacks=callbacks, fit_intercept=fit_intercept, fit_linear=fit_linear, fit_splines=fit_splines, constraints=constraints) self._exclude += ['distribution', 'link'] def _validate_params(self): """ method to sanitize model parameters Parameters --------- None Returns ------- None """ self.distribution = GammaDist(scale=self.scale) super(GammaGAM, self)._validate_params() class InvGaussGAM(GAM): """Inverse Gaussian GAM This is a GAM with a Inverse Gaussian error distribution, and a log link. NB Although canonical link function for the Inverse Gaussian GLM is the inverse squared link, this function can create problems for numerical software because it becomes difficult to enforce the requirement that the mean of the Inverse Gaussian distribution be positive. The log link guarantees this. If you need to use the inverse squared link function, simply construct a custom GAM: ``` from pygam import GAM gam = GAM(distribution='inv_gauss', link='inv_squared') ``` Parameters ---------- callbacks : list of strings or list of CallBack objects, default: ['deviance', 'diffs'] Names of callback objects to call during the optimization loop. constraints : str or callable, or iterable of str or callable, default: None Names of constraint functions to call during the optimization loop. Must be in {'convex', 'concave', 'monotonic_inc', 'monotonic_dec', 'circular', 'none'} If None, then the model will apply no constraints. If only one str or callable is specified, then is it copied for all features. dtype : str in {'auto', 'numerical', 'categorical'}, or list of str, default: 'auto' String describing the data-type of each feature. 'numerical' is used for continuous-valued data-types, like in regression. 'categorical' is used for discrete-valued data-types, like in classification. If only one str is specified, then is is copied for all features. lam : float or iterable of floats > 0, default: 0.6 Smoothing strength; must be a positive float, or one positive float per feature. Larger values enforce stronger smoothing. If only one float is specified, then it is copied for all features. fit_intercept : bool, default: True Specifies if a constant (a.k.a. bias or intercept) should be added to the decision function. NOTE: the intercept receives no smoothing penalty. fit_linear : bool or iterable of bools, default: False Specifies if a linear term should be added to any of the feature functions. Useful for including pre-defined feature transformations in the model. If only one bool is specified, then it is copied for all features. NOTE: Many constraints are incompatible with an additional linear fit. eg. if a non-zero linear function is added to a periodic spline function, it will cease to be periodic. this is also possible for a monotonic spline function. fit_splines : bool or iterable of bools, default: True Specifies if a smoother should be added to any of the feature functions. Useful for defining feature transformations a-priori that should not have splines fitted to them. If only one bool is specified, then it is copied for all features. NOTE: fit_splines supercedes n_splines. ie. if n_splines > 0 and fit_splines = False, no splines will be fitted. max_iter : int, default: 100 Maximum number of iterations allowed for the solver to converge. penalties : str or callable, or iterable of str or callable, default: 'auto' Type of penalty to use for each feature. penalty should be in {'auto', 'none', 'derivative', 'l2', } If 'auto', then the model will use 2nd derivative smoothing for features of dtype 'numerical', and L2 smoothing for features of dtype 'categorical'. If only one str or callable is specified, then is it copied for all features. n_splines : int, or iterable of ints, default: 25 Number of splines to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features. Note: this value is set to 0 if fit_splines is False scale : float or None, default: None scale of the distribution, if known a-priori. if None, scale is estimated. spline_order : int, or iterable of ints, default: 3 Order of spline to use in each feature function; must be non-negative. If only one int is specified, then it is copied for all features Note: if a feature is of type categorical, spline_order will be set to 0. tol : float, default: 1e-4 Tolerance for stopping criteria. Attributes ---------- coef_ : array, shape (n_classes, m_features) Coefficient of the features in the decision function. If fit_intercept is True, then self.coef_[0] will contain the bias. statistics_ : dict Dictionary containing model statistics like GCV/UBRE scores, AIC/c, parameter covariances, estimated degrees of freedom, etc. logs_ : dict Dictionary containing the outputs of any callbacks at each optimization loop. The logs are structured as `{callback: [...]}` References ---------- Simon N. Wood, 2006 Generalized Additive Models: an introduction with R Hastie, Tibshirani, Friedman The Elements of Statistical Learning http://statweb.stanford.edu/~tibs/ElemStatLearn/printings/ESLII_print10.pdf Paul Eilers & Brian Marx, 2015 International Biometric Society: A Crash Course on P-splines http://www.ibschannel2015.nl/project/userfiles/Crash_course_handout.pdf """ def __init__(self, lam=0.6, max_iter=100, n_splines=25, spline_order=3, penalties='auto', dtype='auto', tol=1e-4, scale=None, callbacks=['deviance', 'diffs'], fit_intercept=True, fit_linear=False, fit_splines=True, constraints=None): self.scale = scale super(InvGaussGAM, self).__init__(distribution=InvGaussDist(scale=self.scale), link='log', lam=lam, dtype=dtype, max_iter=max_iter, n_splines=n_splines, spline_order=spline_order, penalties=penalties, tol=tol, callbacks=callbacks, fit_intercept=fit_intercept, fit_linear=fit_linear, fit_splines=fit_splines, constraints=constraints) self._exclude += ['distribution', 'link'] def _validate_params(self): """ method to sanitize model parameters Parameters --------- None Returns ------- None """ self.distribution = InvGaussDist(scale=self.scale) super(InvGaussGAM, self)._validate_params() PKғLm?``pygam/utils.py""" Pygam utilities """ from __future__ import division from copy import deepcopy import sys import warnings import scipy as sp from scipy import sparse import numpy as np from numpy.linalg import LinAlgError try: from sksparse.cholmod import cholesky as spcholesky from sksparse.test_cholmod import CholmodNotPositiveDefiniteError SKSPIMPORT = True except ImportError: SKSPIMPORT = False class NotPositiveDefiniteError(ValueError): """Exception class to raise if a matrix is not positive definite """ class OptimizationError(ValueError): """Exception class to raise if PIRLS optimization fails """ def cholesky(A, sparse=True, verbose=True): """ Choose the best possible cholesky factorizor. if possible, import the Scikit-Sparse sparse Cholesky method. Permutes the output L to ensure A = L . L.H otherwise defaults to numpy's non-sparse version Parameters ---------- A : array-like array to decompose sparse : boolean, default: True whether to return a sparse array verbose : bool, default: True whether to print warnings """ if SKSPIMPORT: A = sp.sparse.csc_matrix(A) F = spcholesky(A) # permutation matrix P P = sp.sparse.lil_matrix(A.shape) p = F.P() P[np.arange(len(p)), p] = 1 # permute try: L = F.L() L = P.T.dot(L) except CholmodNotPositiveDefiniteError as e: raise NotPositiveDefiniteError('Matrix is not positive definite') if sparse: return L return L.todense() else: msg = 'Could not import Scikit-Sparse or Suite-Sparse.\n'\ 'This will slow down optimization for models with '\ 'monotonicity/convexity penalties and many splines.\n'\ 'See installation instructions for installing '\ 'Scikit-Sparse and Suite-Sparse via Conda.' if verbose: warnings.warn(msg) if sp.sparse.issparse(A): A = A.todense() try: L = np.linalg.cholesky(A) except LinAlgError as e: raise NotPositiveDefiniteError('Matrix is not positive definite') if sparse: return sp.sparse.csc_matrix(L) return L def generate_X_grid(gam, n=500): """ tool to create a nice grid of X data if no X data is supplied array is sorted by feature and uniformly spaced, so the marginal and joint distributions are likely wrong Parameters ---------- gam : GAM instance n : int, default: 500 number of data points to create Returns ------- np.array of shape (n, n_features) """ X = [] for ek in gam._edge_knots: X.append(np.linspace(ek[0], ek[-1], num=n)) return np.vstack(X).T def check_dtype(X, ratio=.95): """ tool to identify the data-types of the features in data matrix X. checks for float and int data-types. Parameters ---------- X : array of shape (n_samples, n_features) ratio : float in [0, 1], default: 0.95 minimum ratio of unique values to samples before a feature is considered categorical. Returns ------- dtypes : list of types of length n_features """ if X.ndim == 1: X = X[:,None] dtypes = [] for feat in X.T: dtype = feat.dtype.kind if dtype not in ['f', 'i']: raise ValueError('Data must be type int or float, '\ 'but found type: {}'.format(feat.dtype)) if dtype == 'f': if not(np.isfinite(feat).all()): raise ValueError('Data must not contain Inf nor NaN') # if issubclass(dtype, np.int) or \ # (len(np.unique(feat))/len(feat) < ratio): if (len(np.unique(feat))/len(feat) < ratio) and \ ((np.min(feat)) == 0) and (np.max(feat) == len(np.unique(feat)) - 1): dtypes.append('categorical') continue dtypes.append('numerical') return dtypes def make_2d(array, verbose=True): """ tiny tool to expand 1D arrays the way i want Parameters ---------- array : array-like verbose : bool, default: True whether to print warnings Returns ------- np.array of with ndim = 2 """ array = np.asarray(array) if array.ndim < 2: msg = 'Expected 2D input data array, but found {}D. '\ 'Expanding to 2D.'.format(array.ndim) if verbose: warnings.warn(msg) array = np.atleast_1d(array)[:,None] return array def check_array(array, force_2d=False, n_feats=None, n_dims=None, min_samples=1, name='Input data', verbose=True): """ tool to perform basic data validation. called by check_X and check_y. ensures that data: - is n_dims dimensional - contains float-compatible data-types - has at least min_samples - has n_feats - is finite Parameters ---------- array : array-like force_2d : boolean, default: False whether to force a 2d array. Setting to True forces n_dims = 2 n_feats : int, default: None represents number of features that the array should have. not enforced if n_feats is None. n_dims : int default: None number of dimensions expected in the array min_samples : int, default: 1 name : str, default: 'Input data' name to use when referring to the array verbose : bool, default: True whether to print warnings Returns ------- array : validated array """ # make array if force_2d: array = make_2d(array, verbose=verbose) n_dims = 2 else: array = np.array(array) # cast to float dtype = array.dtype if dtype.kind not in ['i', 'f']: try: array = array.astype('float') except ValueError as e: raise ValueError('{} must be type int or float, '\ 'but found type: {}\n'\ 'Try transforming data with a LabelEncoder first.'\ .format(name, dtype.type)) # check finite if not(np.isfinite(array).all()): raise ValueError('{} must not contain Inf nor NaN'.format(name)) # check n_dims if n_dims is not None: if array.ndim != n_dims: raise ValueError('{} must have {} dimensions. '\ 'found shape {}'.format(name, n_dims, array.shape)) # check n_feats if n_feats is not None: m = array.shape[1] if m != n_feats: raise ValueError('{} must have {} features, '\ 'but found {}'.format(name, n_feats, m)) # minimum samples n = array.shape[0] if n < min_samples: raise ValueError('{} should have at least {} samples, '\ 'but found {}'.format(name, min_samples, n)) return array def check_y(y, link, dist, min_samples=1, verbose=True): """ tool to ensure that the targets: - are in the domain of the link function - are numerical - have at least min_samples - is finite Parameters ---------- y : array-like link : Link object dist : Distribution object min_samples : int, default: 1 verbose : bool, default: True whether to print warnings Returns ------- y : array containing validated y-data """ y = np.ravel(y) y = check_array(y, force_2d=False, min_samples=min_samples, n_dims=1, name='y data', verbose=verbose) warnings.filterwarnings('ignore', 'divide by zero encountered in log') warnings.filterwarnings('ignore', 'invalid value encountered in log') if np.any(np.isnan(link.link(y, dist))): raise ValueError('y data is not in domain of {} link function. ' \ 'Expected domain: {}, but found {}' \ .format(link, get_link_domain(link, dist), [float('%.2f'%np.min(y)), float('%.2f'%np.max(y))])) warnings.resetwarnings() return y def check_X(X, n_feats=None, min_samples=1, edge_knots=None, dtypes=None, verbose=True): """ tool to ensure that X: - is 2 dimensional - contains float-compatible data-types - has at least min_samples - has n_feats - has caegorical features in the right range - is finite Parameters ---------- X : array-like n_feats : int. default: None represents number of features that X should have. not enforced if n_feats is None. min_samples : int, default: 1 edge_knots : list of arrays, default: None dtypes : list of strings, default: None verbose : bool, default: True whether to print warnings Returns ------- X : array with ndims == 2 containing validated X-data """ X = check_array(X, force_2d=True, n_feats=n_feats, min_samples=min_samples, name='X data', verbose=verbose) if (edge_knots is not None) and (dtypes is not None): for i, (dt, ek, feat) in enumerate(zip(dtypes, edge_knots, X.T)): if dt == 'categorical': min_ = ek[0] max_ = ek[-1] if (np.unique(feat) < min_).any() or \ (np.unique(feat) > max_).any(): min_ += .5 max_ -= 0.5 feat_min = feat.min() feat_max = feat.max() raise ValueError('X data is out of domain for categorical '\ 'feature {}. Expected data in [{}, {}], '\ 'but found data in [{}, {}]'\ .format(i, min_, max_, feat_min, feat_max)) return X def check_X_y(X, y): """ tool to ensure input and output data have the same number of samples Parameters ---------- X : array-like y : array-like Returns ------- None """ if len(X) != len(y): raise ValueError('Inconsistent input and output data shapes. '\ 'found X: {} and y: {}'.format(X.shape, y.shape)) def check_lengths(*arrays): """ tool to ensure input and output data have the same number of samples Parameters ---------- *arrays : iterable of arrays to be checked Returns ------- None """ lengths = [len(array) for array in arrays] if len(np.unique(lengths)) > 1: raise ValueError('Inconsistent data lengths: {}'.format(lengths)) def check_param(param, param_name, dtype, iterable=True, constraint=None): """ checks the dtype of a parameter, and whether it satisfies a numerical contraint Parameters --------- param : object param_name : str, name of the parameter dtype : str, desired dtype of the parameter iterable : bool, default: True whether to allow iterable param contraint : str, default: None numerical constraint of the parameter. if None, no constraint is enforced Returns ------- list of validated and converted parameter(s) """ msg = [] msg.append(param_name + " must be "+ dtype) if iterable: msg.append(" or iterable of " + dtype + "s") msg.append(", but found " + param_name + " = {}".format(repr(param))) if constraint is not None: msg = (" " + constraint).join(msg) else: msg = ''.join(msg) # check param is numerical try: param_dt = np.array(param).astype(dtype) except ValueError: raise ValueError(msg) # check iterable if (not iterable) and (param_dt.size != 1): raise ValueError(msg) # check param is correct dtype if not (param_dt == np.array(param).astype(float)).all(): raise ValueError(msg) # check constraint if constraint is not None: if not (eval('np.' + repr(param_dt) + constraint)).all(): raise ValueError(msg) return param_dt.tolist() def get_link_domain(link, dist): """ tool to identify the domain of a given monotonic link function Parameters ---------- link : Link object dist : Distribution object Returns ------- domain : list of length 2, representing the interval of the domain. """ domain = np.array([-np.inf, -1, 0, 1, np.inf]) domain = domain[~np.isnan(link.link(domain, dist))] return [domain[0], domain[-1]] def load_diagonal(cov, load=None): """Return the given square matrix with a small amount added to the diagonal to make it positive semi-definite. """ n, m = cov.shape assert n == m, "matrix must be square, but found shape {}".format((n, m)) if load is None: load = np.sqrt(np.finfo(np.float64).eps) # machine epsilon return cov + np.eye(n) * load def round_to_n_decimal_places(array, n=3): """ tool to keep round a float to n decimal places. n=3 by default Parameters ---------- array : np.array n : int. number of decimal places to keep Returns ------- array : rounded np.array """ # check if in scientific notation if issubclass(array.__class__, float) and '%.e'%array == str(array): return array # do nothing shape = np.shape(array) out = ((np.atleast_1d(array) * 10**n).round().astype('int') / (10.**n)) return out.reshape(shape) # Credit to Hugh Bothwell from http://stackoverflow.com/questions/5084743/how-to-print-pretty-string-output-in-python class TablePrinter(object): "Print a list of dicts as a table" def __init__(self, fmt, sep=' ', ul=None): """ @param fmt: list of tuple(heading, key, width) heading: str, column label key: dictionary key to value to print width: int, column width in chars @param sep: string, separation between columns @param ul: string, character to underline column label, or None for no underlining """ super(TablePrinter,self).__init__() self.fmt = str(sep).join('{lb}{0}:{1}{rb}'.format(key, width, lb='{', rb='}') for heading,key,width in fmt) self.head = {key:heading for heading,key,width in fmt} self.ul = {key:str(ul)*width for heading,key,width in fmt} if ul else None self.width = {key:width for heading,key,width in fmt} def row(self, data): if sys.version_info < (3,): return self.fmt.format(**{ k:str(data.get(k,''))[:w] for k,w in self.width.iteritems() }) else: return self.fmt.format(**{ k:str(data.get(k,''))[:w] for k,w in self.width.items() }) def __call__(self, dataList): _r = self.row res = [_r(data) for data in dataList] res.insert(0, _r(self.head)) if self.ul: res.insert(1, _r(self.ul)) return '\n'.join(res) def space_row(left, right, filler=' ', total_width=-1): """space the data in a row with optional filling Arguments --------- left : str, to be aligned left right : str, to be aligned right filler : str, default ' '. must be of length 1 total_width : int, width of line. if negative number is specified, then that number of spaces is used between the left and right text Returns ------- str """ left = str(left) right = str(right) filler = str(filler)[:1] if total_width < 0: spacing = - total_width else: spacing = total_width - len(left) - len(right) return left + filler * spacing + right def sig_code(p_value): """create a significance code in the style of R's lm Arguments --------- p_value : float on [0, 1] Returns ------- str """ assert 0 <= p_value <= 1, 'p_value must be on [0, 1]' if p_value < 0.001: return '***' if p_value < 0.01: return '**' if p_value < 0.05: return '*' if p_value < 0.1: return '.' return ' ' def gen_edge_knots(data, dtype, verbose=True): """ generate uniform knots from data including the edges of the data for discrete data, assumes k categories in [0, k-1] interval Parameters ---------- data : array-like with one dimension dtype : str in {'categorical', 'numerical'} verbose : bool, default: True whether to print warnings Returns ------- np.array containing ordered knots """ if dtype not in ['categorical', 'numerical']: raise ValueError('unsupported dtype: {}'.format(dtype)) if dtype == 'categorical': return np.r_[np.min(data) - 0.5, np.unique(data) + 0.5] else: knots = np.r_[np.min(data), np.max(data)] if knots[0] == knots[1] and verbose: warnings.warn('Data contains constant feature. '\ 'Consider removing and setting fit_intercept=True', stacklevel=2) return knots def b_spline_basis(x, edge_knots, n_splines=20, spline_order=3, sparse=True, clamped=False, verbose=True): """ tool to generate b-spline basis using vectorized De Boor recursion the basis functions extrapolate linearly past the end-knots. Parameters ---------- x : array-like, with ndims == 1. edge_knots : array-like contaning locations of the 2 edge knots. n_splines : int. number of splines to generate. must be >= spline_order+1 default: 20 spline_order : int. order of spline basis to create default: 3 sparse : boolean. whether to return a sparse basis matrix or not. default: True clamped : boolean, default: False whether to force repeated knots at the ends of the domain. NOTE: when Flase this results in interpretable basis functions where creating a linearly incrasing function ammounts to assigning linearly increasing coefficients. when clamped, this is no longer true and constraints that depend on this property, like monotonicity and convexity are no longer valid. verbose : bool, default: True whether to print warnings Returns ------- basis : sparse csc matrix or array containing b-spline basis functions with shape (len(x), n_splines) """ if np.ravel(x).ndim != 1: raise ValueError('Data must be 1-D, but found {}'\ .format(np.ravel(x).ndim)) if (n_splines < 1) or (type(n_splines) is not int): raise ValueError('n_splines must be int >= 1') if (spline_order < 0) or (type(spline_order) is not int): raise ValueError('spline_order must be int >= 1') if n_splines < spline_order + 1: raise ValueError('n_splines must be >= spline_order + 1. '\ 'found: n_splines = {} and spline_order = {}'\ .format(n_splines, spline_order)) if n_splines == 0 and verbose: warnings.warn('Requested 1 spline. This is equivalent to '\ 'fitting an intercept', stacklevel=2) # rescale edge_knots to [0,1], and generate boundary knots edge_knots = np.sort(deepcopy(edge_knots)) offset = edge_knots[0] scale = edge_knots[-1] - edge_knots[0] if scale == 0: scale = 1 boundary_knots = np.linspace(0, 1, 1 + n_splines - spline_order) diff = np.diff(boundary_knots[:2])[0] # rescale x as well x = (np.ravel(deepcopy(x)) - offset) / scale # append 0 and 1 in order to get derivatives for extrapolation x = np.r_[x, 0., 1.] # determine extrapolation indices x_extrapolte_l = (x < 0) x_extrapolte_r = (x > 1) x_interpolate = ~(x_extrapolte_r + x_extrapolte_l) # formatting x = np.atleast_2d(x).T n = len(x) # augment knots if clamped: aug_knots = np.r_[np.zeros(spline_order), boundary_knots, np.ones(spline_order)] else: aug = np.arange(1, spline_order + 1) * diff aug_knots = np.r_[-aug[::-1], boundary_knots, 1 + aug] aug_knots[-1] += 1e-9 # want last knot inclusive # prepare Haar Basis bases = (x >= aug_knots[:-1]).astype(np.int) * \ (x < aug_knots[1:]).astype(np.int) bases[-1] = bases[-2][::-1] # force symmetric bases at 0 and 1 # do recursion from Hastie et al. vectorized maxi = len(aug_knots) - 1 for m in range(2, spline_order + 2): maxi -= 1 # bookkeeping to avoid div by 0 mask_l = aug_knots[m - 1 : maxi + m - 1] != aug_knots[:maxi] mask_r = aug_knots[m : maxi + m] != aug_knots[1 : maxi + 1] # left sub-basis num = (x - aug_knots[:maxi][mask_l]) * bases[:, :maxi][:, mask_l] denom = aug_knots[m-1 : maxi+m-1][mask_l] - aug_knots[:maxi][mask_l] left = np.zeros((n, maxi)) left[:, mask_l] = num/denom # right sub-basis num = (aug_knots[m : maxi+m][mask_r]-x) * bases[:, 1:maxi+1][:, mask_r] denom = aug_knots[m:maxi+m][mask_r] - aug_knots[1 : maxi+1][mask_r] right = np.zeros((n, maxi)) right[:, mask_r] = num/denom # track previous bases and update prev_bases = bases[-2:] bases = left + right # extrapolate # since we have repeated end-knots, only the last 2 basis functions are # non-zero at the end-knots, and they have equal and opposite gradient. if (any(x_extrapolte_r) or any(x_extrapolte_l)) and spline_order>0: bases[~x_interpolate] = 0. if not clamped: denom = (aug_knots[spline_order:-1] - aug_knots[: -spline_order - 1]) left = prev_bases[:, :-1] / denom denom = (aug_knots[spline_order+1:] - aug_knots[1: -spline_order]) right = prev_bases[:, 1:] / denom grads = (spline_order) * (left - right) if any(x_extrapolte_l): val = grads[0] * x[x_extrapolte_l] + bases[-2] bases[x_extrapolte_l] = val if any(x_extrapolte_r): val = grads[1] * (x[x_extrapolte_r] - 1) + bases[-1] bases[x_extrapolte_r] = val else: grad = -spline_order/diff if any(x_extrapolte_l): bases[x_extrapolte_l, :1] = grad * x[x_extrapolte_l] + 1 bases[x_extrapolte_l, 1:2] = -grad * x[x_extrapolte_l] if any(x_extrapolte_r): bases[x_extrapolte_r, -1:] = -grad * (x[x_extrapolte_r] - 1) + 1 bases[x_extrapolte_r, -2:-1] = grad * (x[x_extrapolte_r] - 1) # get rid of the added values at 0, and 1 bases = bases[:-2] if sparse: return sp.sparse.csc_matrix(bases) return bases def ylogydu(y, u): """ tool to give desired output for the limit as y -> 0, which is 0 Parameters ---------- y : array-like of len(n) u : array-like of len(n) Returns ------- np.array len(n) """ mask = (np.atleast_1d(y)!=0.) out = np.zeros_like(u) out[mask] = y[mask] * np.log(y[mask] / u[mask]) return out def combine(*args): """ tool to perform tree search via recursion useful for developing the grid in a grid search Parameters ---------- args : list of lists Returns ------- list of all the combinations of the elements in the input lists """ if hasattr(args, '__iter__') and (len(args) > 1): subtree = combine(*args[:-1]) tree = [] for leaf in subtree: for node in args[-1]: if hasattr(leaf, '__iter__'): tree.append(leaf + [node]) else: tree.append([leaf] + [node]) return tree else: return [[arg] for arg in args[0]] def isiterable(obj, reject_string=True): """ convenience tool to detect if something is iterable. in python3, strings count as iterables to we have the option to exclude them Parameters: ----------- obj : object to analyse reject_string : bool, whether to ignore strings Returns: -------- bool, if the object is itereable. """ iterable = hasattr(obj, '__iter__') if reject_string: iterable *= not isinstance(obj, str) return iterable PKL(q:UUpygam/datasets/__init__.py""" GAM datasets """ # -*- coding: utf-8 -*- from pygam.datasets.load_datasets import mcycle from pygam.datasets.load_datasets import coal from pygam.datasets.load_datasets import faithful from pygam.datasets.load_datasets import wage from pygam.datasets.load_datasets import trees from pygam.datasets.load_datasets import default from pygam.datasets.load_datasets import cake from pygam.datasets.load_datasets import hepatitis __all__ = ['mcycle', 'coal', 'faithful', 'trees', 'wage', 'default', 'cake', 'hepatitis'] PKLrapygam/datasets/blood1.csv"","SystolicBP","Smoke","Overwt" "1",133,0,2 "2",115,1,0 "3",140,1,1 "4",132,0,2 "5",133,0,1 "6",138,0,1 "7",133,0,2 "8",67,0,0 "9",138,0,0 "10",130,1,0 "11",103,1,2 "12",137,1,2 "13",140,0,1 "14",131,1,2 "15",134,1,0 "16",107,0,0 "17",131,0,1 "18",120,0,1 "19",113,0,2 "20",127,1,0 "21",117,1,0 "22",139,0,0 "23",132,0,1 "24",124,0,0 "25",116,1,0 "26",115,0,0 "27",131,1,2 "28",130,0,2 "29",124,1,0 "30",139,1,0 "31",130,0,0 "32",103,1,2 "33",114,0,2 "34",135,1,1 "35",126,0,1 "36",133,1,2 "37",125,0,2 "38",138,0,2 "39",138,0,2 "40",132,1,2 "41",114,0,1 "42",130,0,1 "43",127,0,0 "44",131,1,0 "45",101,0,2 "46",130,1,2 "47",130,1,0 "48",115,0,1 "49",135,1,2 "50",134,1,2 "51",131,0,0 "52",112,1,2 "53",86,0,0 "54",132,0,0 "55",134,0,0 "56",122,1,2 "57",122,1,0 "58",137,0,1 "59",137,1,1 "60",105,1,0 "61",136,1,0 "62",119,1,1 "63",139,0,2 "64",131,1,2 "65",125,0,0 "66",121,1,1 "67",114,1,2 "68",100,0,0 "69",135,1,0 "70",129,1,0 "71",120,1,0 "72",137,0,1 "73",132,1,1 "74",113,0,1 "75",135,1,1 "76",128,0,0 "77",135,0,1 "78",127,1,0 "79",133,1,2 "80",131,0,1 "81",135,0,0 "82",132,1,0 "83",137,1,0 "84",138,0,0 "85",116,1,2 "86",139,0,2 "87",137,1,2 "88",128,0,1 "89",134,0,1 "90",138,1,1 "91",134,1,0 "92",111,1,1 "93",139,0,1 "94",100,1,1 "95",135,0,2 "96",139,1,2 "97",125,0,0 "98",111,0,0 "99",113,1,2 "100",131,1,1 "101",104,0,0 "102",134,1,2 "103",109,0,0 "104",102,1,1 "105",130,1,1 "106",139,1,2 "107",77,0,0 "108",100,0,0 "109",135,1,2 "110",139,0,1 "111",127,1,2 "112",110,0,1 "113",132,0,2 "114",136,0,2 "115",135,1,1 "116",139,1,2 "117",123,1,2 "118",138,1,0 "119",123,1,0 "120",134,1,1 "121",121,1,0 "122",139,1,2 "123",133,1,0 "124",137,1,2 "125",77,0,0 "126",105,0,0 "127",106,0,0 "128",102,1,0 "129",139,1,2 "130",130,0,0 "131",135,0,0 "132",135,1,2 "133",125,0,0 "134",134,1,2 "135",109,1,0 "136",132,0,2 "137",134,0,0 "138",125,1,2 "139",124,1,1 "140",125,0,2 "141",138,0,1 "142",138,1,2 "143",113,0,1 "144",111,0,0 "145",112,0,2 "146",130,1,0 "147",114,0,1 "148",108,0,0 "149",101,1,0 "150",134,0,1 "151",135,1,0 "152",109,1,2 "153",128,0,1 "154",137,0,2 "155",130,1,0 "156",135,1,2 "157",102,0,0 "158",137,1,1 "159",128,1,2 "160",112,0,2 "161",140,0,2 "162",138,1,2 "163",132,0,2 "164",130,0,0 "165",88,0,0 "166",95,0,0 "167",130,1,1 "168",138,1,0 "169",138,1,0 "170",133,1,1 "171",122,0,1 "172",120,0,1 "173",135,1,2 "174",114,0,1 "175",133,1,1 "176",132,0,2 "177",137,0,0 "178",120,0,0 "179",137,0,2 "180",130,1,0 "181",93,0,0 "182",139,0,1 "183",122,1,2 "184",115,1,0 "185",135,1,1 "186",112,0,0 "187",72,0,0 "188",104,0,2 "189",126,0,2 "190",100,0,0 "191",139,1,0 "192",112,0,0 "193",139,1,2 "194",128,0,0 "195",130,0,0 "196",109,0,0 "197",132,0,2 "198",136,0,1 "199",138,0,2 "200",113,0,1 "201",131,1,0 "202",133,0,2 "203",80,0,0 "204",131,1,0 "205",112,0,1 "206",120,1,0 "207",107,1,2 "208",133,0,1 "209",138,0,1 "210",134,0,0 "211",121,1,1 "212",121,1,2 "213",118,1,0 "214",84,0,0 "215",117,1,0 "216",84,0,0 "217",135,0,0 "218",132,1,0 "219",132,1,0 "220",111,0,1 "221",114,0,0 "222",134,1,1 "223",132,0,1 "224",138,1,1 "225",109,1,0 "226",114,0,1 "227",104,1,0 "228",130,1,1 "229",136,1,2 "230",130,0,0 "231",111,1,2 "232",102,1,0 "233",120,0,2 "234",137,1,2 "235",131,1,2 "236",113,0,0 "237",131,1,2 "238",137,1,1 "239",119,0,0 "240",137,1,2 "241",138,1,2 "242",105,0,2 "243",73,0,0 "244",126,0,0 "245",107,1,0 "246",124,1,0 "247",80,0,0 "248",135,1,2 "249",136,1,0 "250",134,1,2 "251",154,1,2 "252",151,0,2 "253",174,1,2 "254",146,1,2 "255",148,1,0 "256",172,1,2 "257",153,0,2 "258",172,0,2 "259",171,1,0 "260",146,0,0 "261",174,1,0 "262",180,0,2 "263",165,0,0 "264",154,0,2 "265",142,1,0 "266",177,0,1 "267",152,1,0 "268",213,1,1 "269",191,0,1 "270",150,0,0 "271",159,1,2 "272",144,0,0 "273",146,0,0 "274",145,0,0 "275",196,0,1 "276",172,1,2 "277",178,1,0 "278",150,0,0 "279",222,1,2 "280",161,1,2 "281",144,0,1 "282",148,1,0 "283",166,0,1 "284",154,1,0 "285",141,1,0 "286",148,1,0 "287",205,1,1 "288",144,1,0 "289",143,0,1 "290",203,1,2 "291",156,1,0 "292",176,0,1 "293",174,1,0 "294",161,1,2 "295",152,0,0 "296",169,1,0 "297",209,1,2 "298",201,0,2 "299",148,0,2 "300",194,1,2 "301",155,0,0 "302",176,0,0 "303",145,0,0 "304",142,0,0 "305",182,1,0 "306",168,1,2 "307",165,1,0 "308",141,1,0 "309",197,1,1 "310",191,1,2 "311",196,0,2 "312",149,0,1 "313",180,0,0 "314",174,0,2 "315",160,0,1 "316",169,0,1 "317",147,1,2 "318",149,0,0 "319",178,0,2 "320",155,0,1 "321",143,0,2 "322",203,1,2 "323",187,1,1 "324",168,1,0 "325",179,1,1 "326",169,1,1 "327",153,0,1 "328",173,1,1 "329",188,1,0 "330",153,1,2 "331",163,1,0 "332",142,1,2 "333",170,0,0 "334",179,0,1 "335",160,1,2 "336",176,0,0 "337",143,1,1 "338",162,0,1 "339",221,1,2 "340",142,1,0 "341",169,1,0 "342",212,0,1 "343",201,0,0 "344",175,1,2 "345",149,0,2 "346",141,0,0 "347",149,1,2 "348",154,0,0 "349",147,0,1 "350",141,0,2 "351",175,1,2 "352",164,1,0 "353",168,1,2 "354",148,1,2 "355",224,1,2 "356",210,1,2 "357",148,1,0 "358",198,1,2 "359",144,1,2 "360",159,0,1 "361",206,1,2 "362",154,1,1 "363",144,1,1 "364",149,0,0 "365",142,0,2 "366",207,1,0 "367",192,1,2 "368",182,0,2 "369",183,0,0 "370",148,1,2 "371",147,1,2 "372",146,0,2 "373",151,1,2 "374",144,0,2 "375",211,0,2 "376",141,0,0 "377",147,0,2 "378",164,0,1 "379",193,1,1 "380",169,0,2 "381",172,1,0 "382",187,0,0 "383",142,0,0 "384",194,0,2 "385",149,1,2 "386",143,0,2 "387",184,0,2 "388",198,1,1 "389",143,1,0 "390",161,1,0 "391",188,0,2 "392",148,0,2 "393",167,0,0 "394",181,0,1 "395",144,0,1 "396",150,0,2 "397",157,1,0 "398",165,1,2 "399",175,1,0 "400",162,1,2 "401",199,1,2 "402",192,1,2 "403",216,1,2 "404",199,1,2 "405",174,1,2 "406",141,1,2 "407",146,1,1 "408",192,0,2 "409",164,1,1 "410",162,0,2 "411",178,1,2 "412",168,1,0 "413",141,0,2 "414",186,1,2 "415",145,0,0 "416",142,1,2 "417",175,1,1 "418",145,1,1 "419",147,1,2 "420",179,0,2 "421",191,1,2 "422",184,1,2 "423",144,1,2 "424",178,0,2 "425",182,1,2 "426",168,0,0 "427",214,1,2 "428",148,0,2 "429",181,1,0 "430",142,0,0 "431",163,1,2 "432",173,1,2 "433",181,1,1 "434",184,1,0 "435",147,0,0 "436",176,1,2 "437",151,1,2 "438",142,0,2 "439",147,0,2 "440",185,1,2 "441",203,1,2 "442",142,0,2 "443",168,0,0 "444",147,1,1 "445",148,1,2 "446",198,1,0 "447",158,1,2 "448",165,1,2 "449",145,1,1 "450",148,1,2 "451",172,1,1 "452",162,1,2 "453",182,1,1 "454",148,0,2 "455",148,1,2 "456",150,0,0 "457",143,1,1 "458",209,1,2 "459",151,1,2 "460",152,0,0 "461",163,1,0 "462",212,0,2 "463",159,1,2 "464",188,0,0 "465",169,1,0 "466",145,0,0 "467",188,1,2 "468",142,0,2 "469",197,1,2 "470",142,0,2 "471",175,1,0 "472",141,1,0 "473",148,1,0 "474",215,0,2 "475",151,0,2 "476",159,0,2 "477",160,1,2 "478",167,0,2 "479",142,1,0 "480",144,1,1 "481",143,0,2 "482",173,0,2 "483",148,0,0 "484",142,0,1 "485",144,0,2 "486",188,1,0 "487",147,0,0 "488",158,1,0 "489",179,1,2 "490",167,0,0 "491",148,0,2 "492",162,1,2 "493",165,0,0 "494",181,1,2 "495",142,0,1 "496",146,0,0 "497",181,1,1 "498",145,1,2 "499",180,1,2 "500",174,1,2 PKL\pygam/datasets/cake.csv"","replicate","recipe","temperature","angle","temp" "1","1","A","175",42,175 "2","1","A","185",46,185 "3","1","A","195",47,195 "4","1","A","205",39,205 "5","1","A","215",53,215 "6","1","A","225",42,225 "7","1","B","175",39,175 "8","1","B","185",46,185 "9","1","B","195",51,195 "10","1","B","205",49,205 "11","1","B","215",55,215 "12","1","B","225",42,225 "13","1","C","175",46,175 "14","1","C","185",44,185 "15","1","C","195",45,195 "16","1","C","205",46,205 "17","1","C","215",48,215 "18","1","C","225",63,225 "19","2","A","175",47,175 "20","2","A","185",29,185 "21","2","A","195",35,195 "22","2","A","205",47,205 "23","2","A","215",57,215 "24","2","A","225",45,225 "25","2","B","175",35,175 "26","2","B","185",46,185 "27","2","B","195",47,195 "28","2","B","205",39,205 "29","2","B","215",52,215 "30","2","B","225",61,225 "31","2","C","175",43,175 "32","2","C","185",43,185 "33","2","C","195",43,195 "34","2","C","205",46,205 "35","2","C","215",47,215 "36","2","C","225",58,225 "37","3","A","175",32,175 "38","3","A","185",32,185 "39","3","A","195",37,195 "40","3","A","205",43,205 "41","3","A","215",45,215 "42","3","A","225",45,225 "43","3","B","175",34,175 "44","3","B","185",30,185 "45","3","B","195",42,195 "46","3","B","205",35,205 "47","3","B","215",42,215 "48","3","B","225",35,225 "49","3","C","175",33,175 "50","3","C","185",24,185 "51","3","C","195",40,195 "52","3","C","205",37,205 "53","3","C","215",41,215 "54","3","C","225",38,225 "55","4","A","175",26,175 "56","4","A","185",32,185 "57","4","A","195",35,195 "58","4","A","205",24,205 "59","4","A","215",39,215 "60","4","A","225",26,225 "61","4","B","175",25,175 "62","4","B","185",26,185 "63","4","B","195",28,195 "64","4","B","205",46,205 "65","4","B","215",37,215 "66","4","B","225",37,225 "67","4","C","175",38,175 "68","4","C","185",41,185 "69","4","C","195",38,195 "70","4","C","205",30,205 "71","4","C","215",36,215 "72","4","C","225",35,225 "73","5","A","175",28,175 "74","5","A","185",30,185 "75","5","A","195",31,195 "76","5","A","205",37,205 "77","5","A","215",41,215 "78","5","A","225",47,225 "79","5","B","175",31,175 "80","5","B","185",30,185 "81","5","B","195",29,195 "82","5","B","205",35,205 "83","5","B","215",40,215 "84","5","B","225",36,225 "85","5","C","175",21,175 "86","5","C","185",25,185 "87","5","C","195",31,195 "88","5","C","205",35,205 "89","5","C","215",33,215 "90","5","C","225",23,225 "91","6","A","175",24,175 "92","6","A","185",22,185 "93","6","A","195",22,195 "94","6","A","205",29,205 "95","6","A","215",35,215 "96","6","A","225",26,225 "97","6","B","175",24,175 "98","6","B","185",29,185 "99","6","B","195",29,195 "100","6","B","205",29,205 "101","6","B","215",24,215 "102","6","B","225",35,225 "103","6","C","175",24,175 "104","6","C","185",33,185 "105","6","C","195",30,195 "106","6","C","205",30,205 "107","6","C","215",37,215 "108","6","C","225",35,225 "109","7","A","175",26,175 "110","7","A","185",23,185 "111","7","A","195",25,195 "112","7","A","205",27,205 "113","7","A","215",33,215 "114","7","A","225",35,225 "115","7","B","175",22,175 "116","7","B","185",25,185 "117","7","B","195",26,195 "118","7","B","205",26,205 "119","7","B","215",29,215 "120","7","B","225",36,225 "121","7","C","175",20,175 "122","7","C","185",21,185 "123","7","C","195",31,195 "124","7","C","205",24,205 "125","7","C","215",30,215 "126","7","C","225",33,225 "127","8","A","175",24,175 "128","8","A","185",33,185 "129","8","A","195",23,195 "130","8","A","205",32,205 "131","8","A","215",31,215 "132","8","A","225",34,225 "133","8","B","175",26,175 "134","8","B","185",23,185 "135","8","B","195",24,195 "136","8","B","205",31,205 "137","8","B","215",27,215 "138","8","B","225",37,225 "139","8","C","175",24,175 "140","8","C","185",23,185 "141","8","C","195",21,195 "142","8","C","205",24,205 "143","8","C","215",21,215 "144","8","C","225",35,225 "145","9","A","175",24,175 "146","9","A","185",27,185 "147","9","A","195",28,195 "148","9","A","205",33,205 "149","9","A","215",34,215 "150","9","A","225",23,225 "151","9","B","175",27,175 "152","9","B","185",26,185 "153","9","B","195",32,195 "154","9","B","205",28,205 "155","9","B","215",32,215 "156","9","B","225",33,225 "157","9","C","175",24,175 "158","9","C","185",18,185 "159","9","C","195",21,195 "160","9","C","205",26,205 "161","9","C","215",28,215 "162","9","C","225",28,225 "163","10","A","175",24,175 "164","10","A","185",33,185 "165","10","A","195",27,195 "166","10","A","205",31,205 "167","10","A","215",30,215 "168","10","A","225",33,225 "169","10","B","175",21,175 "170","10","B","185",24,185 "171","10","B","195",24,195 "172","10","B","205",27,205 "173","10","B","215",37,215 "174","10","B","225",30,225 "175","10","C","175",26,175 "176","10","C","185",28,185 "177","10","C","195",27,195 "178","10","C","205",27,205 "179","10","C","215",35,215 "180","10","C","225",35,225 "181","11","A","175",33,175 "182","11","A","185",39,185 "183","11","A","195",33,195 "184","11","A","205",28,205 "185","11","A","215",33,215 "186","11","A","225",30,225 "187","11","B","175",20,175 "188","11","B","185",27,185 "189","11","B","195",33,195 "190","11","B","205",31,205 "191","11","B","215",28,215 "192","11","B","225",33,225 "193","11","C","175",28,175 "194","11","C","185",25,185 "195","11","C","195",26,195 "196","11","C","205",25,205 "197","11","C","215",38,215 "198","11","C","225",28,225 "199","12","A","175",28,175 "200","12","A","185",31,185 "201","12","A","195",27,195 "202","12","A","205",39,205 "203","12","A","215",35,215 "204","12","A","225",43,225 "205","12","B","175",23,175 "206","12","B","185",28,185 "207","12","B","195",31,195 "208","12","B","205",34,205 "209","12","B","215",31,215 "210","12","B","225",29,225 "211","12","C","175",24,175 "212","12","C","185",30,185 "213","12","C","195",28,195 "214","12","C","205",35,205 "215","12","C","215",33,215 "216","12","C","225",28,225 "217","13","A","175",29,175 "218","13","A","185",28,185 "219","13","A","195",31,195 "220","13","A","205",29,205 "221","13","A","215",37,215 "222","13","A","225",33,225 "223","13","B","175",32,175 "224","13","B","185",35,185 "225","13","B","195",30,195 "226","13","B","205",27,205 "227","13","B","215",35,215 "228","13","B","225",30,225 "229","13","C","175",28,175 "230","13","C","185",29,185 "231","13","C","195",43,195 "232","13","C","205",28,205 "233","13","C","215",33,215 "234","13","C","225",37,225 "235","14","A","175",24,175 "236","14","A","185",40,185 "237","14","A","195",29,195 "238","14","A","205",40,205 "239","14","A","215",40,215 "240","14","A","225",31,225 "241","14","B","175",23,175 "242","14","B","185",25,185 "243","14","B","195",22,195 "244","14","B","205",19,205 "245","14","B","215",21,215 "246","14","B","225",35,225 "247","14","C","175",19,175 "248","14","C","185",22,185 "249","14","C","195",27,195 "250","14","C","205",25,205 "251","14","C","215",25,215 "252","14","C","225",35,225 "253","15","A","175",26,175 "254","15","A","185",28,185 "255","15","A","195",32,195 "256","15","A","205",25,205 "257","15","A","215",37,215 "258","15","A","225",33,225 "259","15","B","175",21,175 "260","15","B","185",21,185 "261","15","B","195",28,195 "262","15","B","205",26,205 "263","15","B","215",27,215 "264","15","B","225",20,225 "265","15","C","175",21,175 "266","15","C","185",28,185 "267","15","C","195",25,195 "268","15","C","205",25,205 "269","15","C","215",31,215 "270","15","C","225",25,225 PKLS'Ԗrrpygam/datasets/chicago.csv"","city","tmpd","dptp","date","pm25tmean2","pm10tmean2","o3tmean2","no2tmean2" "1","chic",31.5,31.5,1987-01-01,NA,34,4.25,19.988095238 "2","chic",33,29.875,1987-01-02,NA,NA,3.3043478261,23.190993789 "3","chic",33,27.375,1987-01-03,NA,34.166666667,3.3333333333,23.81547619 "4","chic",29,28.625,1987-01-04,NA,47,4.375,30.43452381 "5","chic",32,28.875,1987-01-05,NA,NA,4.75,30.333333333 "6","chic",40,35.125,1987-01-06,NA,48,5.8333333333,25.772330671 "7","chic",34.5,26.75,1987-01-07,NA,41,9.2916666667,20.581709957 "8","chic",29,22,1987-01-08,NA,36,11.291666667,17.037230861 "9","chic",26.5,29,1987-01-09,NA,33.285714286,4.5,23.388888889 "10","chic",32.5,27.75,1987-01-10,NA,NA,4.9583333333,19.541666667 "11","chic",29.5,20.125,1987-01-11,NA,22,17.541666667,13.701388889 "12","chic",34.5,26,1987-01-12,NA,26,8,33.020833333 "13","chic",34,32.25,1987-01-13,NA,53,4.9583333333,38.061417749 "14","chic",37.5,36.375,1987-01-14,NA,43,4.2083333333,32.194444444 "15","chic",32.5,24.25,1987-01-15,NA,28.833333333,4.4583333333,18.871309524 "16","chic",25,21.5,1987-01-16,NA,19,7.9166666667,19.466666667 "17","chic",27,24.75,1987-01-17,NA,NA,5.8333333333,20.708333333 "18","chic",17.5,11.125,1987-01-18,NA,39,6.375,21.033333333 "19","chic",23,15.75,1987-01-19,NA,32,14.875,17.174094203 "20","chic",20.5,11.5,1987-01-20,NA,38,7.25,21.610210804 "21","chic",22,20.625,1987-01-21,NA,32.857142857,8.9130434783,24.520833333 "22","chic",19.5,7.375,1987-01-22,NA,52,10.5,16.987977602 "23","chic",2.5,-12.25,1987-01-23,NA,55,14.625,14.6625 "24","chic",2,-5.625,1987-01-24,NA,38,10.083333333,18.691666667 "25","chic",9.5,-5.25,1987-01-25,NA,NA,6.6666666667,26.304166667 "26","chic",16,4.75,1987-01-26,NA,71,4.5833333333,32.421428571 "27","chic",17.5,17.75,1987-01-27,NA,39.333333333,6,30.693055556 "28","chic",29.5,18.25,1987-01-28,NA,47,6.875,29.129428341 "29","chic",29.5,32.875,1987-01-29,NA,35,2.9166666667,28.145289855 "30","chic",32.5,24.125,1987-01-30,NA,59,8.7916666667,19.798611111 "31","chic",27.5,26.5,1987-01-31,NA,36,10.375,25.267361111 "32","chic",41,32.25,1987-02-01,NA,NA,8.0416666667,21.701388889 "33","chic",36.5,34,1987-02-02,NA,41.166666667,6.0416666667,30.784722222 "34","chic",34,26.25,1987-02-03,NA,59,8.0416666667,20.14614899 "35","chic",31.5,24.25,1987-02-04,NA,37,10.5,29.999275362 "36","chic",29.5,27.25,1987-02-05,NA,70,5.7291666667,38.909090909 "37","chic",37,30.375,1987-02-06,NA,63,6.4148550725,27.994708995 "38","chic",40.5,35.75,1987-02-07,NA,44,5.75,25.090277778 "39","chic",32.5,3.5,1987-02-08,NA,18.25,24.9375,10.646825397 "40","chic",24.5,17.375,1987-02-09,NA,42,9.2083333333,25.579861111 "41","chic",35,27.375,1987-02-10,NA,36,8.3125,31.327459376 "42","chic",39.5,29.375,1987-02-11,NA,83,8.121541502,42.001125384 "43","chic",34,24.75,1987-02-12,NA,84,7.6875,34.993055556 "44","chic",34.5,30.875,1987-02-13,NA,39,10.369565217,33.430857488 "45","chic",31.5,22,1987-02-14,NA,24.857142857,11.166666667,21.243055556 "46","chic",23.5,10.125,1987-02-15,NA,12,28.104166667,10.490972222 "47","chic",24,18.125,1987-02-16,NA,14,24.1875,15.854166667 "48","chic",31.5,20.25,1987-02-17,NA,23,24.9375,19.180555556 "49","chic",31.5,20,1987-02-18,NA,27,24.170289855,29.860119048 "50","chic",34,19.625,1987-02-19,NA,49,15.501811594,44.480676329 "51","chic",32.5,17,1987-02-20,NA,69.857142857,8.5,51.253246753 "52","chic",38,24.5,1987-02-21,NA,59,4.5833333333,41.381944444 "53","chic",35.5,25.125,1987-02-22,NA,46,10.833333333,21.861111111 "54","chic",35.5,24.75,1987-02-23,NA,47,13.041666667,32.5625 "55","chic",31.5,25.25,1987-02-24,NA,48,13.229166667,36.477437418 "56","chic",34.5,21.875,1987-02-25,NA,48,17.125,38.13771645 "57","chic",36,18.5,1987-02-26,NA,29,16,32.854166667 "58","chic",39.5,28.25,1987-02-27,NA,56,14.208333333,33.691964286 "59","chic",40,38.375,1987-02-28,NA,31,6.875,23.458333333 "60","chic",39,28.375,1987-03-01,NA,15,15.620833333,18.614583333 "61","chic",41,27.875,1987-03-02,NA,36,20.8125,21.631944444 "62","chic",36.5,14.875,1987-03-03,NA,32,19.75,28.578208429 "63","chic",38,26.75,1987-03-04,NA,39.428571429,5.5,38.409722222 "64","chic",44,34.375,1987-03-05,NA,30,13.583333333,29.388888889 "65","chic",48.5,39.5,1987-03-06,NA,76,9.0760869565,47.169987923 "66","chic",59.5,36.875,1987-03-07,NA,49,25.416666667,41.743055556 "67","chic",54.5,33.625,1987-03-08,NA,61,31.166666667,39.045138889 "68","chic",31,14,1987-03-09,NA,25,29.833333333,12.469381313 "69","chic",25.5,13.625,1987-03-10,NA,19.571428571,28.375,19.747163358 "70","chic",28.5,17,1987-03-11,NA,38,19.770833333,29.906099034 "71","chic",33.5,22.375,1987-03-12,NA,72,20.4375,41.127525253 "72","chic",34,33.125,1987-03-13,NA,47,22.479166667,31.555555556 "73","chic",37,33,1987-03-14,NA,49,17.729166667,27.652777778 "74","chic",35,24.5,1987-03-15,NA,NA,36.895833333,18.034722222 "75","chic",37.5,17.875,1987-03-16,NA,27,36.372282609,22.423611111 "76","chic",38.5,19.375,1987-03-17,NA,55,27.8125,25.986111111 "77","chic",39.5,30.25,1987-03-18,NA,63,18.666666667,32.207799145 "78","chic",41.5,26.125,1987-03-19,NA,32,31.675595238,33.296014493 "79","chic",43,16.625,1987-03-20,NA,28,36.625,45.958333333 "80","chic",43.5,22.5,1987-03-21,NA,40,38.208333333,43.90307971 "81","chic",48,32.375,1987-03-22,NA,37.857142857,37.666666667,36.239583333 "82","chic",53.5,35.25,1987-03-23,NA,70,31.454166667,33.738647343 "83","chic",57.5,46.125,1987-03-24,NA,58,25.625,30.555555556 "84","chic",45,40.125,1987-03-25,NA,14,14.875,23.204545455 "85","chic",45,40.25,1987-03-26,NA,43,15.117424242,23.493686869 "86","chic",43,38.5,1987-03-27,NA,47,16.4375,32.315025253 "87","chic",46,35,1987-03-28,NA,34.5,20.104166667,31.180555556 "88","chic",39.5,30.125,1987-03-29,NA,37,20.972222222,22.340277778 "89","chic",29,12.875,1987-03-30,NA,27,30.4375,19.655676329 "90","chic",30,19,1987-03-31,NA,43,24.044871795,24.611111111 "91","chic",41.5,22.875,1987-04-01,NA,36,21.453125,19.298611111 "92","chic",29.5,14.625,1987-04-02,NA,44,22.566349638,22.036533816 "93","chic",28,17.375,1987-04-03,NA,22.428571429,16.869791667,35.481432597 "94","chic",35.5,17.125,1987-04-04,NA,26,28.390625,21.28125 "95","chic",43.5,33,1987-04-05,NA,18,36.03125,12.190972222 "96","chic",50,21.25,1987-04-06,NA,19,31.802083333,19.855744949 "97","chic",49.5,30.875,1987-04-07,NA,28,25.494791667,28.246212121 "98","chic",40,31.375,1987-04-08,NA,19,21.010416667,28.991243961 "99","chic",50,28.5,1987-04-09,NA,78.285714286,15.401041667,57.525422705 "100","chic",59.5,44.875,1987-04-10,NA,69,21.859375,39.354166667 "101","chic",51,45.625,1987-04-11,NA,24,28.973958333,23.145833333 "102","chic",49.5,43.125,1987-04-12,NA,37,25.678571429,26.020833333 "103","chic",48,47.25,1987-04-13,NA,47,17.767857143,37.932449495 "104","chic",52.5,51.5,1987-04-14,NA,33,13.244047619,35.722222222 "105","chic",51.5,50.125,1987-04-15,NA,30,17.142857143,32.020064778 "106","chic",54,49.25,1987-04-16,NA,28,22.107142857,30.75 "107","chic",57.5,47,1987-04-17,NA,43,19.30952381,44.208333333 "108","chic",61.5,49.875,1987-04-18,NA,106,31.529761905,55.416666667 "109","chic",64,53,1987-04-19,NA,NA,32.839285714,45.159722222 "110","chic",71,55.75,1987-04-20,NA,55,41.390625,40.534722222 "111","chic",56,39,1987-04-21,NA,36.2,20.46875,19.177838164 "112","chic",47,45.625,1987-04-22,NA,28,9.078125,23.234217172 "113","chic",52,43.75,1987-04-23,NA,26,10.094655797,23.493055556 "114","chic",49,30.75,1987-04-24,NA,16,27.572916667,20.661156401 "115","chic",51,32.5,1987-04-25,NA,30,28.0625,27.766666667 "116","chic",57,33.875,1987-04-26,NA,58,33.145833333,33.458333333 "117","chic",56.5,31.625,1987-04-27,NA,37.333333333,35.927604167,27.052083333 "118","chic",53.5,28.625,1987-04-28,NA,72,22.645833333,32.036533816 "119","chic",64.5,34.625,1987-04-29,NA,61,34.852272727,24.106060606 "120","chic",46,16.625,1987-04-30,NA,19,35.489583333,18.320571789 "121","chic",53.5,39,1987-05-01,NA,66,19.561594203,45.944444444 "122","chic",53,47.375,1987-05-02,NA,30,24.18452381,31.508333333 "123","chic",45,35,1987-05-03,NA,20.285714286,27.202380952,22.116666667 "124","chic",48,29.375,1987-05-04,NA,26,31.224358974,23.026175214 "125","chic",50.5,32.625,1987-05-05,NA,60,23.4375,39.609217172 "126","chic",58,40.125,1987-05-06,NA,NA,32.370573946,51.285353535 "127","chic",59.5,40.875,1987-05-07,NA,41,30.189311594,29.518280632 "128","chic",59,33.375,1987-05-08,NA,54,16.804824561,38.774122807 "129","chic",69.5,43.75,1987-05-09,NA,56.166666667,42.796875,22.152777778 "130","chic",74.5,51.5,1987-05-10,NA,NA,43.0125,20.173611111 "131","chic",71,58,1987-05-11,NA,81,44.98627451,24.222222222 "132","chic",51.5,32.75,1987-05-12,NA,12,25.338541667,18.017676768 "133","chic",59,53,1987-05-13,NA,20,26.559103261,35.523358586 "134","chic",69,53.375,1987-05-14,NA,NA,38.848958333,29.545138889 "135","chic",56.5,33.875,1987-05-15,NA,21.571428571,24.020833333,19.023358586 "136","chic",62.5,42.625,1987-05-16,NA,47,31.67553593,28.1772343 "137","chic",70.5,63.625,1987-05-17,NA,63,50.448143116,22.879528986 "138","chic",66.5,57.625,1987-05-18,NA,NA,24.833673007,27.201388889 "139","chic",67.5,61.125,1987-05-19,NA,42,26.072172619,28.051771598 "140","chic",66.5,59.75,1987-05-20,NA,47,15.274728261,21.791982323 "141","chic",74,66.75,1987-05-21,NA,46.166666667,33.251811594,26.697916667 "142","chic",61.5,49.75,1987-05-22,NA,NA,12.320652174,12.742149758 "143","chic",51,45.625,1987-05-23,NA,13,10.578125,11.714015152 "144","chic",50.5,45.125,1987-05-24,NA,NA,18.984375,11.673611111 "145","chic",57.5,62.875,1987-05-25,NA,50,13.008928571,19.256944444 "146","chic",73,67.625,1987-05-26,NA,28,29.871212121,26.819444444 "147","chic",78.5,67.375,1987-05-27,NA,40.6,30.546875,25.158102767 "148","chic",78.5,65.75,1987-05-28,NA,49,28.912228261,32.130434783 "149","chic",78.5,67.125,1987-05-29,NA,50,26.130208333,36.056168831 "150","chic",76,65.625,1987-05-30,NA,35,21.859375,33.566666667 "151","chic",76,60.125,1987-05-31,NA,32,31.443452381,22.208333333 "152","chic",74.5,68.5,1987-06-01,NA,30,34.1875,28.341666667 "153","chic",72,64.75,1987-06-02,NA,33.666666667,18.338541667,37.35 "154","chic",69,47.25,1987-06-03,NA,42,23.313360507,21.743055556 "155","chic",63,45,1987-06-04,NA,45,20.427227437,25.611111111 "156","chic",70,54.875,1987-06-05,NA,61,33.192708333,35.627525253 "157","chic",71,54.625,1987-06-06,NA,57,43.744791667,34.167929293 "158","chic",77.5,58.125,1987-06-07,NA,46,50.791666667,15.739583333 "159","chic",74.5,60.25,1987-06-08,NA,51.5,49.212182971,23.107638889 "160","chic",57.5,41.125,1987-06-09,NA,15,29.611186594,15.299305556 "161","chic",61,51,1987-06-10,NA,50,28.733016304,29.298611111 "162","chic",72.5,68.75,1987-06-11,NA,46,27.746117424,32.455176768 "163","chic",80,62,1987-06-12,NA,41,29.290769104,24.245896465 "164","chic",77,62,1987-06-13,NA,73,39.651041667,35.425 "165","chic",83,68.5,1987-06-14,NA,43.666666667,45.421875,25.995833333 "166","chic",73.5,48.5,1987-06-15,NA,28,33.754076087,22.205917874 "167","chic",75,52.875,1987-06-16,NA,46,33.201388889,30.632638889 "168","chic",77,61,1987-06-17,NA,71,54.961891822,47.925422705 "169","chic",80.5,62.75,1987-06-18,NA,90,62.969655797,43.816666667 "170","chic",77.5,61.375,1987-06-19,NA,80,47.268914474,51.175 "171","chic",77,73.625,1987-06-20,NA,59.833333333,45.697916667,32.875 "172","chic",76,71.125,1987-06-21,NA,42,32.77827381,20.381944444 "173","chic",67,59,1987-06-22,NA,52,25.053934889,25.232434641 "174","chic",72.5,57.75,1987-06-23,NA,49,32.218452381,39.979166667 "175","chic",76,65.75,1987-06-24,NA,63,49.080208333,42.871221532 "176","chic",70.5,62,1987-06-25,NA,53,33.878658027,29.284905915 "177","chic",69,50.75,1987-06-26,NA,31.8,20.46875,20.697916667 "178","chic",64.5,48.25,1987-06-27,NA,36,21.619791667,15.802083333 "179","chic",72,53.625,1987-06-28,NA,34,31.963768116,15.935326087 "180","chic",72.5,66,1987-06-29,NA,43,27.78125,24.575 "181","chic",70.5,63,1987-06-30,NA,43,18.46875,28.152777778 "182","chic",68.5,60.625,1987-07-01,NA,22,32.296875,20.018578644 "183","chic",71,60.25,1987-07-02,NA,45.5,36.267045455,27.24611244 "184","chic",77.5,60.375,1987-07-03,NA,48,42.916666667,18.784722222 "185","chic",72.5,59.5,1987-07-04,NA,24,31.895833333,13.871527778 "186","chic",72.5,69.125,1987-07-05,NA,NA,22.630208333,16.260416667 "187","chic",80,69,1987-07-06,NA,33,31.111842105,22.660220627 "188","chic",80,69.125,1987-07-07,NA,NA,34.342617754,23.083333333 "189","chic",80.5,69.25,1987-07-08,NA,38,30.851675725,23.014794686 "190","chic",80.5,67.625,1987-07-09,NA,31,24.947916667,20.157828283 "191","chic",80,67.625,1987-07-10,NA,33,23.380208333,21.625 "192","chic",80,73.5,1987-07-11,NA,79,29.125,16.548611111 "193","chic",79.5,65.5,1987-07-12,NA,47,29.640625,13.017361111 "194","chic",64.5,58.75,1987-07-13,NA,33,9.6912202381,18.666666667 "195","chic",67,53,1987-07-14,NA,21.4,21.863839286,20.5625 "196","chic",63,54.375,1987-07-15,NA,17,23.182291667,20.879103535 "197","chic",65.5,58.625,1987-07-16,NA,28,31.520833333,19.961422258 "198","chic",78,67,1987-07-17,NA,39,42.872767857,25.000992063 "199","chic",79.5,68.375,1987-07-18,NA,51,47.791666667,19.190972222 "200","chic",84.5,73.625,1987-07-19,NA,72,47.052083333,13.371527778 "201","chic",81.5,67.625,1987-07-20,NA,65.428571429,40.498958333,18.458333333 "202","chic",81,71.25,1987-07-21,NA,58,58.167912138,36.628010697 "203","chic",80.5,69.625,1987-07-22,NA,98,45.282738095,36.354166667 "204","chic",82,70,1987-07-23,NA,117,59.15625,25.981060606 "205","chic",83,71.25,1987-07-24,NA,79,35.690217391,23.213224638 "206","chic",84.5,71.125,1987-07-25,NA,53,43.81547619,22.654166667 "207","chic",78.5,66.25,1987-07-26,NA,29.5,27.773809524,20.004166667 "208","chic",71,62.625,1987-07-27,NA,32,15.773809524,30.754166667 "209","chic",72.5,63.25,1987-07-28,NA,37,20.267857143,29.615909091 "210","chic",78,70.25,1987-07-29,NA,25,25.029011605,33.510714286 "211","chic",79.5,72.375,1987-07-30,NA,75,50.369047619,27.391666667 "212","chic",80.5,75.75,1987-07-31,NA,48,38.417184265,28.429498792 "213","chic",87,75.25,1987-08-01,NA,57.571428571,40.232142857,21.694444444 "214","chic",86,73.875,1987-08-02,NA,46,46.654761905,15.486111111 "215","chic",83,68.625,1987-08-03,NA,54,30.9745671,29.805555556 "216","chic",75,60.625,1987-08-04,NA,21,20.549278846,14.288194444 "217","chic",72,55.75,1987-08-05,NA,15,20.291666667,12.784722222 "218","chic",72,62.125,1987-08-06,NA,50,29.57664462,32.699206349 "219","chic",79.5,67.375,1987-08-07,NA,51.285714286,45.322916667,27.652777778 "220","chic",73.5,73.625,1987-08-08,NA,56,23.03125,24.600694444 "221","chic",72.5,64.125,1987-08-09,NA,29,26.755208333,10.305555556 "222","chic",71,63.125,1987-08-10,NA,24,29.410714286,20.023809524 "223","chic",74.5,61.875,1987-08-11,NA,41,33.84375,25.666666667 "224","chic",76,63.625,1987-08-12,NA,80,37.088541667,33.645833333 "225","chic",75.5,69.5,1987-08-13,NA,63.4,36.197916667,36.48218599 "226","chic",74,74.625,1987-08-14,NA,49.5,24.232843137,18.595734127 "227","chic",79.5,75.875,1987-08-15,NA,41,33.375,13.159269324 "228","chic",80,73.875,1987-08-16,NA,44.5,32.272959184,9.3382936508 "229","chic",73.5,60.25,1987-08-17,NA,39,26.676339286,14.927083333 "230","chic",69.5,64.25,1987-08-18,NA,48,14.058779762,31.393719807 "231","chic",70,56.75,1987-08-19,NA,31.666666667,18.388888889,23.345643939 "232","chic",70,62.625,1987-08-20,NA,49,30.51875,26.729166667 "233","chic",76,72.5,1987-08-21,NA,43,37.942708333,20.905934343 "234","chic",71.5,54.625,1987-08-22,NA,32,23.864583333,12.909722222 "235","chic",63,49,1987-08-23,NA,24,17.727807971,14.427777778 "236","chic",61.5,51.375,1987-08-24,NA,43,12.594983553,21.585416667 "237","chic",59,58,1987-08-25,NA,36,6.665625,30.631944444 "238","chic",62,63.25,1987-08-26,NA,50,8.207521645,22.983333333 "239","chic",63.5,61.375,1987-08-27,NA,20,13.71875,19.690025253 "240","chic",63.5,54.625,1987-08-28,NA,32,21.942708333,22.045833333 "241","chic",65.5,57,1987-08-29,NA,NA,18.15625,26.399305556 "242","chic",72,59.625,1987-08-30,NA,35,22.622735507,16.85940931 "243","chic",62,46.5,1987-08-31,NA,25,15.921875,18.118292788 "244","chic",64,49.5,1987-09-01,NA,38.5,17.932291667,22.520833333 "245","chic",61.5,50.125,1987-09-02,NA,17,21.161458333,15.746527778 "246","chic",60.5,49.25,1987-09-03,NA,24,20.302083333,22.481064527 "247","chic",69,59.125,1987-09-04,NA,NA,31.338541667,37.317234848 "248","chic",73,57.375,1987-09-05,NA,NA,46.057291667,36.465277778 "249","chic",75,66.25,1987-09-06,NA,60.666666667,38.197916667,32.510416667 "250","chic",70.5,65.625,1987-09-07,NA,NA,22.786911232,21.3125 "251","chic",72,63.5,1987-09-08,NA,NA,25.401041667,31.868055556 "252","chic",68.5,56.125,1987-09-09,NA,NA,18.833333333,22.885416667 "253","chic",67.5,57.75,1987-09-10,NA,NA,26.505208333,27.686896135 "254","chic",69,57,1987-09-11,NA,NA,22.440217391,31.030797101 "255","chic",68,50.375,1987-09-12,NA,33.5,15.8125,23.503472222 "256","chic",59,53.25,1987-09-13,NA,NA,12.359375,21.166666667 "257","chic",61.5,58,1987-09-14,NA,NA,18.895833333,27.961805556 "258","chic",72,66,1987-09-15,NA,NA,15.434782609,28.386171498 "259","chic",69,66.875,1987-09-16,NA,33,10.204710145,25.618055556 "260","chic",67.5,64.25,1987-09-17,NA,30,13.523809524,18.876262626 "261","chic",63.5,60.375,1987-09-18,NA,25.25,6.8928571429,17.644886364 "262","chic",61,50.25,1987-09-19,NA,NA,12.642857143,16.395833333 "263","chic",57,50.875,1987-09-20,NA,NA,7.4047619048,11.820833333 "264","chic",55.5,54.75,1987-09-21,NA,29,4.9523809524,16.641666667 "265","chic",61,52.5,1987-09-22,NA,NA,7.2639751553,15.906812692 "266","chic",63,51,1987-09-23,NA,38,13.136904762,20.427083333 "267","chic",59.5,46.25,1987-09-24,NA,23,16.130952381,16.267361111 "268","chic",56.5,43,1987-09-25,NA,55,14.017857143,30.210144928 "269","chic",65,53.375,1987-09-26,NA,42,22.494047619,35.895833333 "270","chic",75.5,54,1987-09-27,NA,49,27.547619048,30.091666667 "271","chic",69,61.125,1987-09-28,NA,57,30.017857143,33.758333333 "272","chic",61.5,52.375,1987-09-29,NA,34,12.732142857,16.118452381 "273","chic",55,35.625,1987-09-30,NA,26.8,10.909722222,18.558333333 "274","chic",55.5,46.375,1987-10-01,NA,44,17.303571429,20.9625 "275","chic",47,32.25,1987-10-02,NA,52,15.02820911,9.9668478261 "276","chic",42.5,29.875,1987-10-03,NA,52,15.392857143,19.545833333 "277","chic",52,30.75,1987-10-04,NA,50,19.148809524,19.566666667 "278","chic",60,41.25,1987-10-05,NA,48,14.813095238,18.313333333 "279","chic",45.5,38,1987-10-06,NA,24.166666667,6.9729437229,9.2583333333 "280","chic",39.5,26.875,1987-10-07,NA,36,13.31547619,13.863586957 "281","chic",41.5,26.875,1987-10-08,NA,41,10.518115942,27.595833333 "282","chic",53.5,31.25,1987-10-09,NA,38,11.563664596,19.609027778 "283","chic",42.5,32.625,1987-10-10,NA,28,8.7380952381,21.152777778 "284","chic",39,25.5,1987-10-11,NA,32,14.633333333,23.298611111 "285","chic",42.5,30.375,1987-10-12,NA,41.5,12.41468254,39.048611111 "286","chic",49.5,33.375,1987-10-13,NA,NA,15.115609287,40.270652174 "287","chic",55.5,38.125,1987-10-14,NA,41,10.79859335,40.230676329 "288","chic",63,36,1987-10-15,NA,52,24.447593168,43.208333333 "289","chic",62.5,55.125,1987-10-16,NA,58,28.56547619,35.803571429 "290","chic",48,42.125,1987-10-17,NA,19,9.2202380952,11.263888889 "291","chic",53.5,43.75,1987-10-18,NA,26.857142857,15.970238095,23.086805556 "292","chic",49.5,40.25,1987-10-19,NA,11,18.869047619,22.225694444 "293","chic",45.5,32.375,1987-10-20,NA,24,15.281099034,17.855654762 "294","chic",37,33.25,1987-10-21,NA,20.5,6.4679487179,14.982638889 "295","chic",43,34.25,1987-10-22,NA,25,6.7532467532,23.254227053 "296","chic",39,31.125,1987-10-23,NA,50,8.3148809524,25.238636364 "297","chic",38.5,33.5,1987-10-24,NA,28.4,7.5357142857,23.8125 "298","chic",42,31.125,1987-10-25,NA,NA,11.125,23.892361111 "299","chic",44.5,45.375,1987-10-26,NA,33,5.0714285714,27.041666667 "300","chic",44.5,34.5,1987-10-27,NA,31,10.175724638,19.588068182 "301","chic",38.5,28.875,1987-10-28,NA,31,5.0713364293,24.832054094 "302","chic",44.5,37.75,1987-10-29,NA,48,7.2569444444,33.360205314 "303","chic",54.5,42.875,1987-10-30,NA,50.666666667,16.93452381,31.461805556 "304","chic",52,49.375,1987-10-31,NA,60,12.571428571,22.510416667 "305","chic",58,58.5,1987-11-01,NA,30,9.7445652174,30.340277778 "306","chic",64,56.625,1987-11-02,NA,46,11.550865801,35.236111111 "307","chic",66,49.875,1987-11-03,NA,NA,29.458333333,32.503787879 "308","chic",56.5,38.25,1987-11-04,NA,47,19.166666667,19.04160401 "309","chic",40.5,19.875,1987-11-05,NA,25.5,20.166666667,19.131439394 "310","chic",39.5,25.75,1987-11-06,NA,43,9.5,27.254166667 "311","chic",45.5,29.5,1987-11-07,NA,46,2.75,31.6875 "312","chic",49.5,41.75,1987-11-08,NA,66,23.291666667,25.416666667 "313","chic",35,18.5,1987-11-09,NA,18,25.666666667,24.619791667 "314","chic",34,24.875,1987-11-10,NA,12,27.75,25.354166667 "315","chic",35,23.75,1987-11-11,NA,31.285714286,7.9583333333,27.569444444 "316","chic",43.5,31.125,1987-11-12,NA,47,7,31.238677536 "317","chic",48.5,31.375,1987-11-13,NA,55,2.875,29.825181159 "318","chic",47,31.125,1987-11-14,NA,18,9.875,28.666666667 "319","chic",50.5,32,1987-11-15,NA,51,19.25,36.916666667 "320","chic",56,56,1987-11-16,NA,34,17.666666667,30.385416667 "321","chic",50,35.375,1987-11-17,NA,18.333333333,12.708333333,10.67798913 "322","chic",38,29.25,1987-11-18,NA,NA,10.347826087,15.73336039 "323","chic",37.5,26,1987-11-19,NA,29,10.833333333,20.044642857 "324","chic",27.5,10.375,1987-11-20,NA,34,25.041666667,13.951893939 "325","chic",25.5,11.5,1987-11-21,NA,27,11.291666667,23.741666667 "326","chic",42,28.75,1987-11-22,NA,NA,11.333333333,18.966666667 "327","chic",43.5,31.75,1987-11-23,NA,30.333333333,8.7727272727,12.654166667 "328","chic",39.5,39.375,1987-11-24,NA,52,8.8333333333,14.596491228 "329","chic",40,36.875,1987-11-25,NA,10,13.125,14.988561077 "330","chic",40,35.875,1987-11-26,NA,15,23.583333333,7.8666666667 "331","chic",40.5,39.5,1987-11-27,NA,NA,11,13.041666667 "332","chic",47,45.5,1987-11-28,NA,NA,4.4583333333,17.491666667 "333","chic",39,34.625,1987-11-29,NA,12.142857143,2.125,11.645833333 "334","chic",37,35.5,1987-11-30,NA,NA,4.1666666667,13.620833333 "335","chic",32,24.125,1987-12-01,NA,28,13.47826087,16.891666667 "336","chic",30,26.375,1987-12-02,NA,23,9.25,15.241666667 "337","chic",30.5,26.25,1987-12-03,NA,30,6.625,19.433333333 "338","chic",27,19.625,1987-12-04,NA,35,12.541666667,21.457575758 "339","chic",27,24.625,1987-12-05,NA,24.666666667,13.875,24.675 "340","chic",31.5,29,1987-12-06,NA,22,15.291666667,21.966666667 "341","chic",38.5,36.25,1987-12-07,NA,25,6.4166666667,21.766666667 "342","chic",46.5,49.5,1987-12-08,NA,28,2.9583333333,22.649637681 "343","chic",49.5,34.375,1987-12-09,NA,21,9.0416666667,12.475 "344","chic",38,31.125,1987-12-10,NA,32,7.25,17.917934783 "345","chic",41,33.625,1987-12-11,NA,23,2.5833333333,23.375 "346","chic",35,23.75,1987-12-12,NA,29,11.041666667,9.2041666667 "347","chic",31.5,23.5,1987-12-13,NA,34,13.166666667,13.295833333 "348","chic",30,27.5,1987-12-14,NA,43,13,24.991666667 "349","chic",31,24.25,1987-12-15,NA,19,9.0526315789,11.124122807 "350","chic",27.5,16.625,1987-12-16,NA,36,12.083333333,11.2625 "351","chic",20.5,11.75,1987-12-17,NA,27.2,8.0869565217,23.483333333 "352","chic",23,25.75,1987-12-18,NA,36,2.8704710145,22.741666667 "353","chic",34,35,1987-12-19,NA,21.5,2.3958333333,21.945833333 "354","chic",34,21.25,1987-12-20,NA,25,9.8125,15.675 "355","chic",33,26.125,1987-12-21,NA,NA,6.875,21.953804348 "356","chic",35,29.125,1987-12-22,NA,NA,2.7391304348,29.456521739 "357","chic",35.5,31.25,1987-12-23,NA,36,3.5,24.966666667 "358","chic",41,39.75,1987-12-24,NA,NA,2.3958333333,21.675 "359","chic",33,25.5,1987-12-25,NA,16,15.145833333,11.133333333 "360","chic",27.5,23.75,1987-12-26,NA,NA,18.625,17.391666667 "361","chic",29,28.375,1987-12-27,NA,45,10.041666667,26.691666667 "362","chic",33.5,30.75,1987-12-28,NA,NA,18.229166667,15.641666667 "363","chic",24.5,20.25,1987-12-29,NA,20.666666667,19.416666667,23.804924242 "364","chic",25.5,27.625,1987-12-30,NA,NA,4.3458333333,31.690656566 "365","chic",23.5,7.25,1987-12-31,NA,21,16.083333333,16.770833333 "366","chic",3.5,-3.625,1988-01-01,NA,NA,19.958333333,14.138888889 "367","chic",15,15.375,1988-01-02,NA,NA,7.8125,25.736111111 "368","chic",24.5,16.75,1988-01-03,NA,25,8.6458333333,21.722222222 "369","chic",5,-15.875,1988-01-04,NA,26,18.211309524,12.665714286 "370","chic",-6.5,-15.75,1988-01-05,NA,24,13.166666667,17.220833333 "371","chic",-5.5,-15.125,1988-01-06,NA,75,7.1458333333,27.665942029 "372","chic",3,-1.875,1988-01-07,NA,74,2.5208333333,52.1 "373","chic",8.5,2.75,1988-01-08,NA,87,4.6594202899,42.885041408 "374","chic",0.5,-12.25,1988-01-09,NA,48,7.3958333333,26.45 "375","chic",1.5,-1.625,1988-01-10,NA,36.333333333,6.9166666667,31.175 "376","chic",24,22.25,1988-01-11,NA,39,6.4791666667,25.883333333 "377","chic",28.5,15.5,1988-01-12,NA,43,16.9375,16.528623188 "378","chic",12,-0.375,1988-01-13,NA,51,13.854166667,21.423484848 "379","chic",11,9.375,1988-01-14,NA,46,3.4583333333,32.825 "380","chic",28,22.75,1988-01-15,NA,28,4.2291666667,24.6 "381","chic",39,29.25,1988-01-16,NA,32,14.145833333,19.229166667 "382","chic",37,32.25,1988-01-17,NA,26,6.3541666667,24.820833333 "383","chic",33.5,32.375,1988-01-18,NA,NA,8.7171052632,28.923809524 "384","chic",35.5,34.625,1988-01-19,NA,39,13.125,23.518181818 "385","chic",34,27.375,1988-01-20,NA,23.5,6.5069444444,21.038043478 "386","chic",28.5,21.125,1988-01-21,NA,20,16.229166667,21.358333333 "387","chic",27,23.625,1988-01-22,NA,27.166666667,6.625,19.928113553 "388","chic",21,25.75,1988-01-23,NA,23,7,17.495833333 "389","chic",24.5,17,1988-01-24,NA,26,7.5,16.0375 "390","chic",14.5,-2.75,1988-01-25,NA,34,6.7083333333,18.766666667 "391","chic",9,-0.5,1988-01-26,NA,45,6.875,27.124729437 "392","chic",7,11.25,1988-01-27,NA,51,7.3043478261,33.983787879 "393","chic",21.5,19.25,1988-01-28,NA,46,9.3333333333,31.377536232 "394","chic",35.5,40.5,1988-01-29,NA,37,13.458333333,33.374848485 "395","chic",50.5,47.5,1988-01-30,NA,23,26.541666667,15.466666667 "396","chic",46,31.875,1988-01-31,NA,42,19.125,13.845833333 "397","chic",28,21.375,1988-02-01,NA,13,24.125,16.515909091 "398","chic",22.5,17.75,1988-02-02,NA,23,29.083333333,16.725 "399","chic",24,20.125,1988-02-03,NA,36,13.291666667,28.466666667 "400","chic",16.5,6.625,1988-02-04,NA,52,13.625,25.327536232 "401","chic",4,-10.75,1988-02-05,NA,37,18.208333333,16.566666667 "402","chic",3,-3.125,1988-02-06,NA,39,19.833333333,13.854166667 "403","chic",16.5,8.375,1988-02-07,NA,32,20.375,15.733333333 "404","chic",14.5,16.25,1988-02-08,NA,43,12.416666667,29.954761905 "405","chic",17.5,7.125,1988-02-09,NA,38.8,12.666666667,31.241666667 "406","chic",16,17.625,1988-02-10,NA,36,24.875,29.183333333 "407","chic",16,9,1988-02-11,NA,28,28.041666667,17.0625 "408","chic",9,0.25,1988-02-12,NA,44,20.375,26.8 "409","chic",7,3.5,1988-02-13,NA,42,13.083333333,37.966666667 "410","chic",27.5,38.625,1988-02-14,NA,NA,9.8333333333,30.766666667 "411","chic",26,11.875,1988-02-15,NA,29,20.666666667,20.625 "412","chic",26.5,27.125,1988-02-16,NA,34,6.4166666667,29.4875 "413","chic",31,23.125,1988-02-17,NA,60,9.9583333333,39.70936853 "414","chic",31.5,27,1988-02-18,NA,62,9.25,44.310606061 "415","chic",32,29.375,1988-02-19,NA,77,8.6666666667,49.018939394 "416","chic",21.5,-2.625,1988-02-20,NA,37,24.291666667,14.348958333 "417","chic",16.5,20.125,1988-02-21,NA,23.333333333,17.833333333,21.489583333 "418","chic",40,29,1988-02-22,NA,23,17.354166667,16.796875 "419","chic",27,13,1988-02-23,NA,44,23,13.645833333 "420","chic",22,7.875,1988-02-24,NA,65,22.25,24.922348485 "421","chic",20.5,9.75,1988-02-25,NA,NA,15,25.986111111 "422","chic",39.5,29.625,1988-02-26,NA,54,15.083333333,28.625 "423","chic",32,22.75,1988-02-27,NA,25.666666667,37.375,17.986111111 "424","chic",34.5,31.625,1988-02-28,NA,54,19.291666667,28.236111111 "425","chic",39.5,26.375,1988-02-29,NA,29,17,27.780208333 "426","chic",41,29.375,1988-03-01,NA,30,25.708333333,22.611567982 "427","chic",35.5,24.375,1988-03-02,NA,33,28.208333333,18.71875 "428","chic",27,17,1988-03-03,NA,17,37.375,13.806818182 "429","chic",28.5,16.25,1988-03-04,NA,24.2,34.291666667,20.513888889 "430","chic",31,19.25,1988-03-05,NA,40,11.833333333,44.027777778 "431","chic",36,32.5,1988-03-06,NA,NA,18.375,29.208333333 "432","chic",42,40,1988-03-07,NA,58,11.291666667,29.625 "433","chic",48.5,42.75,1988-03-08,NA,NA,15.956521739,27.222222222 "434","chic",34,27.625,1988-03-09,NA,NA,18.541666667,21.890625 "435","chic",38,21.375,1988-03-10,NA,44,22.041666667,35.458333333 "436","chic",46.5,35.125,1988-03-11,NA,36,10.583333333,32.836904762 "437","chic",43,28.25,1988-03-12,NA,23,22.541666667,12.145833333 "438","chic",26.5,17.625,1988-03-13,NA,NA,27.125,7.7333333333 "439","chic",24,17.5,1988-03-14,NA,27,26.125,15.423333333 "440","chic",23.5,19.5,1988-03-15,NA,37,21.708333333,19.515530303 "441","chic",32.5,23.5,1988-03-16,NA,27.833333333,19.958333333,21.863095238 "442","chic",34,26,1988-03-17,NA,NA,11.854166667,27.483333333 "443","chic",34.5,17.375,1988-03-18,NA,47,17.3125,21.675 "444","chic",32,29.5,1988-03-19,NA,30,22.083333333,18.654166667 "445","chic",28.5,15,1988-03-20,NA,8,35.354166667,12.125 "446","chic",30,15.75,1988-03-21,NA,24,36.5625,16.6625 "447","chic",46.5,35,1988-03-22,NA,59.666666667,18.805555556,26.064311594 "448","chic",56,36.25,1988-03-23,NA,84,30.388888889,24.815909091 "449","chic",56.5,54.75,1988-03-24,NA,52,24.28968254,30.02397892 "450","chic",53,35.5,1988-03-25,NA,25,22.002415459,16.995833333 "451","chic",39,18.5,1988-03-26,NA,59,20.396929825,12.273245614 "452","chic",40,28.25,1988-03-27,NA,55,22.638888889,15.5 "453","chic",48.5,42.625,1988-03-28,NA,31,9.619047619,31.729166667 "454","chic",45.5,35.75,1988-03-29,NA,29,13.56547619,23.291666667 "455","chic",40.5,27.25,1988-03-30,NA,33,18.636904762,25.26257764 "456","chic",42,32,1988-03-31,NA,43,17.017857143,32.191666667 "457","chic",42,34.25,1988-04-01,NA,30,37.826086957,23.333333333 "458","chic",54,56.625,1988-04-02,NA,40,9.4107142857,21.702380952 "459","chic",53.5,44.125,1988-04-03,NA,20.166666667,22.666666667,20.782142857 "460","chic",57.5,51.625,1988-04-04,NA,NA,27.466356108,23.115424431 "461","chic",69.5,57.5,1988-04-05,NA,42,30.666666667,26.653125 "462","chic",50,28.75,1988-04-06,NA,18,31.267857143,11.883605072 "463","chic",50,25.25,1988-04-07,NA,32,23.4373706,22.819180254 "464","chic",51.5,28.75,1988-04-08,NA,32,18.875,38.178571429 "465","chic",52.5,37.75,1988-04-09,NA,53.75,19.946428571,33.4375 "466","chic",43,33.75,1988-04-10,NA,35,17.464285714,16.663194444 "467","chic",46,22.875,1988-04-11,NA,31,28.87329932,11.940901361 "468","chic",47.5,23.25,1988-04-12,NA,38,27.69047619,20.755952381 "469","chic",53,38.5,1988-04-13,NA,NA,28.583333333,35.814588879 "470","chic",43,28.875,1988-04-14,NA,25,26.056122449,19.623717768 "471","chic",41.5,25.5,1988-04-15,NA,27,24.112338748,21.036092033 "472","chic",47.5,27.5,1988-04-16,NA,43,21.773809524,25.684895833 "473","chic",59,37.875,1988-04-17,NA,76,39,16.380208333 "474","chic",42.5,17.875,1988-04-18,NA,41,30.101190476,19.442708333 "475","chic",40.5,14.75,1988-04-19,NA,52,21.773809524,31.8046875 "476","chic",45.5,35.25,1988-04-20,NA,52,20.994047619,33.296875 "477","chic",37,28.75,1988-04-21,NA,35.6,18.494047619,39.934289749 "478","chic",45.5,30.375,1988-04-22,NA,51,25.55952381,21.323660714 "479","chic",44,34.375,1988-04-23,NA,44,21.31547619,15.732638889 "480","chic",45,30.125,1988-04-24,NA,34,24.886904762,17.963541667 "481","chic",54,36.375,1988-04-25,NA,44,21.535714286,28.177196558 "482","chic",48.5,35.875,1988-04-26,NA,19,22.383152174,21.613095238 "483","chic",39.5,34.625,1988-04-27,NA,16.8,24.959109731,10.976902174 "484","chic",48.5,28.375,1988-04-28,NA,33,26.31573499,19.777656221 "485","chic",49,25.375,1988-04-29,NA,48,22.346088435,31.223214286 "486","chic",54,26.5,1988-04-30,NA,33,22.958333333,35.923295455 "487","chic",53,29.625,1988-05-01,NA,33,32.273809524,32.911458333 "488","chic",57,27.75,1988-05-02,NA,50,35.321428571,31.283114035 "489","chic",56.5,39.125,1988-05-03,NA,46,35.291666667,26.319413635 "490","chic",52.5,31.875,1988-05-04,NA,48,33.438707729,26.079542687 "491","chic",54.5,34.875,1988-05-05,NA,53,28.108997585,26.427872475 "492","chic",61.5,38.125,1988-05-06,NA,60,26.469202899,29.361692584 "493","chic",62,40.875,1988-05-07,NA,83,34.0625,27.145833333 "494","chic",67.5,53.25,1988-05-08,NA,365,48.805555556,12.249547101 "495","chic",56,52.625,1988-05-09,NA,28,25.701388889,12.833333333 "496","chic",57,49.5,1988-05-10,NA,36,19.141666667,22.024056895 "497","chic",60.5,41.25,1988-05-11,NA,59,24.55,31.017494824 "498","chic",67,52.5,1988-05-12,NA,55,33.763888889,29.003633271 "499","chic",58,33.625,1988-05-13,NA,30,30.035714286,14.56335034 "500","chic",60,39.875,1988-05-14,NA,60,28.453571429,21.669642857 "501","chic",71,54.125,1988-05-15,NA,61.6,35.892857143,14.829174901 "502","chic",55.5,40.25,1988-05-16,NA,NA,23.875,13.097222222 "503","chic",52,34.375,1988-05-17,NA,29,26.870082816,12.298809524 "504","chic",55,44.875,1988-05-18,NA,35,27.672619048,16.979070205 "505","chic",60,36.625,1988-05-19,NA,43,30.523809524,23.405247721 "506","chic",63,51.75,1988-05-20,NA,63,29.46247412,27.585858586 "507","chic",64.5,50.25,1988-05-21,NA,48.25,41.470238095,25.908333333 "508","chic",66,53.625,1988-05-22,NA,NA,41.388888889,13.420833333 "509","chic",53.5,52.25,1988-05-23,NA,43,19.988095238,18.720082816 "510","chic",53,28,1988-05-24,NA,26,32.29484127,10.751893939 "511","chic",48.5,35.5,1988-05-25,NA,25,24.077380952,18.548913043 "512","chic",60.5,42.375,1988-05-26,NA,52,27.869047619,26.029389881 "513","chic",69.5,45.375,1988-05-27,NA,63.75,41.571428571,27.336309524 "514","chic",73,49.75,1988-05-28,NA,NA,41.755952381,29.535714286 "515","chic",74,51.875,1988-05-29,NA,NA,46.589285714,26.588029085 "516","chic",75.5,52,1988-05-30,NA,75,52.75,24.091636473 "517","chic",76,52.75,1988-05-31,NA,148,50.904761905,39.352175894 "518","chic",76.5,54,1988-06-01,NA,142,49.201680672,44.596638655 "519","chic",63,47,1988-06-02,NA,46.6,31.142006803,17.333928571 "520","chic",58.5,37.5,1988-06-03,NA,28,26.776397516,14.300724638 "521","chic",62.5,40.5,1988-06-04,NA,54,24.420918367,23.860679289 "522","chic",73,49.125,1988-06-05,NA,68,44.523809524,20 "523","chic",78,48.75,1988-06-06,NA,NA,50.436594203,26.053941549 "524","chic",79,51.125,1988-06-07,NA,139,54.178571429,34.679769845 "525","chic",63,46.125,1988-06-08,NA,70.8,31.017857143,26.31527915 "526","chic",56,32.375,1988-06-09,NA,NA,31.683488613,13.68736413 "527","chic",56,34.625,1988-06-10,NA,30,26.119047619,25.774621212 "528","chic",67,41.625,1988-06-11,NA,50,34.148809524,29.848958333 "529","chic",72,48.25,1988-06-12,NA,50,47.682291667,30.96875 "530","chic",78,48.5,1988-06-13,NA,75,49.35659585,33.522367013 "531","chic",82,53.625,1988-06-14,NA,88.25,54.108333333,26.758355978 "532","chic",81.5,53.625,1988-06-15,NA,78,47.442708333,23.693758544 "533","chic",71,47.125,1988-06-16,NA,39,28.702380952,19.099296537 "534","chic",68.5,53.25,1988-06-17,NA,46,32.328125,31.212121212 "535","chic",74.5,52.875,1988-06-18,NA,55,41.23139881,38.978940217 "536","chic",82,55.875,1988-06-19,NA,NA,59.125,20.114583333 "537","chic",88.5,70.25,1988-06-20,NA,88,61.677083333,25.640269151 "538","chic",86.5,66.125,1988-06-21,NA,81,52.875905797,33.124188312 "539","chic",82.5,67.25,1988-06-22,NA,84,54.641173246,19.838095238 "540","chic",70,50.75,1988-06-23,NA,26,28.845238095,16.159170486 "541","chic",77.5,63.25,1988-06-24,NA,NA,36.026041667,31.673654244 "542","chic",84.5,57.5,1988-06-25,NA,NA,59.067708333,15.276785714 "543","chic",63.5,44.875,1988-06-26,NA,20.6,25.416666667,7.8720238095 "544","chic",64,42.875,1988-06-27,NA,21,18.429315476,19.049319728 "545","chic",72.5,58.5,1988-06-28,NA,NA,36.018995098,25.195323393 "546","chic",63,44.375,1988-06-29,NA,17,26.982142857,14.285455487 "547","chic",61.5,46.125,1988-06-30,NA,11,23.619791667,13.523809524 "548","chic",66,47.375,1988-07-01,NA,19,22.765625,20.863095238 "549","chic",65,44.375,1988-07-02,NA,26.6,22.53125,21.625 "550","chic",69.5,47.875,1988-07-03,NA,NA,38.380208333,32.494047619 "551","chic",73,49.875,1988-07-04,NA,51,47.075860507,38.056603076 "552","chic",79.5,56.75,1988-07-05,NA,NA,57.748414855,51.448681006 "553","chic",82.5,60.625,1988-07-06,NA,116,55.086118538,62.479984064 "554","chic",85,58.375,1988-07-07,NA,116,58.886425395,46.273421325 "555","chic",83,59.875,1988-07-08,NA,106.8,48.890625,44.49702381 "556","chic",82.5,57.25,1988-07-09,NA,85,49.026041667,38.491071429 "557","chic",75.5,64.625,1988-07-10,NA,NA,41.422619048,21.700520833 "558","chic",76.5,57.5,1988-07-11,NA,42,34.872961957,24.445910973 "559","chic",71.5,60.375,1988-07-12,NA,14,27.541666667,21.947204969 "560","chic",80,65.875,1988-07-13,NA,50,32.609375,22.851785714 "561","chic",87,57.75,1988-07-14,NA,62,45.925724638,25.97979798 "562","chic",86.5,70.5,1988-07-15,NA,78,41.962009804,34.799719888 "563","chic",85,69.625,1988-07-16,NA,53,37.729166667,21.854166667 "564","chic",78,61,1988-07-17,NA,22,30.484375,18.9609375 "565","chic",71.5,66.25,1988-07-18,NA,NA,23.192708333,31.624900462 "566","chic",75,58.375,1988-07-19,NA,35,26.020833333,26.16991342 "567","chic",74,63.875,1988-07-20,NA,33.5,27.163949275,24.102613872 "568","chic",71.5,61.125,1988-07-21,NA,32,25.057291667,28.563923395 "569","chic",71,59.125,1988-07-22,NA,15,26.677083333,19.305735931 "570","chic",72,59.5,1988-07-23,NA,28,27.572916667,21.401785714 "571","chic",75.5,57.375,1988-07-24,NA,54,35.932291667,27.782738095 "572","chic",75.5,64.75,1988-07-25,NA,39,38.959753788,24.762269433 "573","chic",73.5,55.75,1988-07-26,NA,22,23.010416667,15.630952381 "574","chic",76,60.375,1988-07-27,NA,59,32.335371377,31.333333333 "575","chic",84,62.5,1988-07-28,NA,68,49.098958333,30.944047619 "576","chic",83,68.5,1988-07-29,NA,73,59.541666667,28.183300395 "577","chic",82.5,68.875,1988-07-30,NA,40,48.208333333,23.151041667 "578","chic",79,62.75,1988-07-31,NA,NA,42.364583333,23.854366987 "579","chic",89,71.125,1988-08-01,NA,67.2,44.14990942,25.963088768 "580","chic",89.5,70.375,1988-08-02,NA,67,49.849486715,25.919729614 "581","chic",88,67.375,1988-08-03,NA,65,40.641757246,27.739583333 "582","chic",87,71.5,1988-08-04,NA,66,42.184556159,30.26239001 "583","chic",76.5,60.125,1988-08-05,NA,64,36.505208333,23.125 "584","chic",76.5,51.75,1988-08-06,NA,NA,36.5625,30.473214286 "585","chic",78,53.625,1988-08-07,NA,38.333333333,41.883413462,28.630390443 "586","chic",84,70.75,1988-08-08,NA,67,53.967013889,23.277867965 "587","chic",79,73,1988-08-09,NA,68,30.916666667,34.123550725 "588","chic",76.5,72,1988-08-10,NA,36,30.479166667,34.997619048 "589","chic",82,73.375,1988-08-11,NA,NA,28.467532468,31.12670068 "590","chic",83.5,69.625,1988-08-12,NA,66,26.609375,35.0625 "591","chic",83.5,73.625,1988-08-13,NA,70.2,35.921875,22.171262255 "592","chic",83,76.625,1988-08-14,NA,NA,40.348958333,13.351190476 "593","chic",84,70.5,1988-08-15,NA,32,38.597986443,24.906567029 "594","chic",86,73.125,1988-08-16,NA,69,34.390625,34.38657244 "595","chic",88,66.375,1988-08-17,NA,71,39.312397069,23.505208333 "596","chic",80.5,68.375,1988-08-18,NA,63,34.697237319,22.805952381 "597","chic",71.5,62.875,1988-08-19,NA,28.75,14.927083333,17.886284722 "598","chic",73,62.125,1988-08-20,NA,31,37.114583333,20.342798913 "599","chic",70.5,54.875,1988-08-21,NA,NA,27.229166667,22.604846014 "600","chic",70,59.75,1988-08-22,NA,39,24.692708333,29.989583333 "601","chic",75,55.375,1988-08-23,NA,47,32.708333333,19.994791667 "602","chic",71,52.375,1988-08-24,NA,89,21.796875,26.347798845 "603","chic",69.5,42.625,1988-08-25,NA,50.4,21.385416667,23.851190476 "604","chic",66,45.375,1988-08-26,NA,41,16.510416667,24.988007851 "605","chic",65,60.125,1988-08-27,NA,NA,11.166666667,33.408967391 "606","chic",64,41.875,1988-08-28,NA,89,22,19.359375 "607","chic",60,49,1988-08-29,NA,29,19.867708333,28.050595238 "608","chic",63,49.375,1988-08-30,NA,37,20.177083333,36.426501035 "609","chic",70.5,49,1988-08-31,NA,47.4,30.890625,37.807446064 "610","chic",72,52.5,1988-09-01,NA,48,36.859375,44.351393398 "611","chic",73,57.875,1988-09-02,NA,65,34.334918478,47.38745471 "612","chic",72,53.625,1988-09-03,NA,38,32.65625,22.760416667 "613","chic",63,52.375,1988-09-04,NA,28,33.767857143,12.511904762 "614","chic",54,38,1988-09-05,NA,NA,24.202380952,12.413690476 "615","chic",55,39.625,1988-09-06,NA,30.75,15.911458333,30.125 "616","chic",60.5,37.625,1988-09-07,NA,33,27.453125,35.282608696 "617","chic",70,47.125,1988-09-08,NA,54,35.671875,38.28375447 "618","chic",66,34.75,1988-09-09,NA,66,17.40625,40.382378129 "619","chic",67.5,39.75,1988-09-10,NA,77,19.265625,51.447916667 "620","chic",71,62.375,1988-09-11,NA,NA,30.223958333,33.981431159 "621","chic",75.5,64.75,1988-09-12,NA,33.333333333,18.677083333,23.536458333 "622","chic",63,46.875,1988-09-13,NA,58,15.226041667,25.07283443 "623","chic",66,48.875,1988-09-14,NA,58,23.784429825,30.752629087 "624","chic",64.5,50.375,1988-09-15,NA,38,19.582653986,21.497395833 "625","chic",65.5,59.75,1988-09-16,NA,55,15.385416667,36.64749053 "626","chic",78,61.75,1988-09-17,NA,NA,25.239583333,24.885416667 "627","chic",76.5,62.375,1988-09-18,NA,43.4,19.760416667,19.992527174 "628","chic",67,51.25,1988-09-19,NA,26,17.083333333,19.109375 "629","chic",60,47.25,1988-09-20,NA,34,13.871527778,12.135384457 "630","chic",58.5,49.75,1988-09-21,NA,NA,9.3244047619,23.845933828 "631","chic",70,66.25,1988-09-22,NA,NA,17.482892787,33.468591191 "632","chic",60,42.125,1988-09-23,NA,NA,19.175498188,23 "633","chic",56.5,42.875,1988-09-24,NA,49,15.473958333,29.601190476 "634","chic",61.5,48.25,1988-09-25,NA,NA,23.785511364,39.398809524 "635","chic",64.5,45.875,1988-09-26,NA,NA,34.898809524,46.051242236 "636","chic",71,56.375,1988-09-27,NA,NA,27.007936508,32.686688312 "637","chic",61.5,51.625,1988-09-28,NA,NA,17.520833333,19.2734375 "638","chic",67.5,56.875,1988-09-29,NA,NA,17.494791667,39.308475379 "639","chic",68.5,60.75,1988-09-30,NA,51,12.729166667,37.405117754 "640","chic",62,56.875,1988-10-01,NA,12,10.555555556,25.547619048 "641","chic",56.5,45,1988-10-02,NA,22,19.651041667,17.700520833 "642","chic",53.5,38.125,1988-10-03,NA,NA,9.362745098,22.947916667 "643","chic",43,30.25,1988-10-04,NA,33,11.720238095,15.961309524 "644","chic",43,32.25,1988-10-05,NA,30,10.602484472,19.033514493 "645","chic",43.5,32.75,1988-10-06,NA,33.333333333,9.6428571429,27.538393445 "646","chic",47.5,33,1988-10-07,NA,NA,11.863095238,38.265625 "647","chic",52,41.125,1988-10-08,NA,56,12.619047619,36.348958333 "648","chic",54.5,47.5,1988-10-09,NA,NA,11.94047619,32.085144928 "649","chic",58,34.625,1988-10-10,NA,39,20.75,17.321428571 "650","chic",42.5,26.125,1988-10-11,NA,48,13.494047619,19.420326826 "651","chic",39,24.375,1988-10-12,NA,28.6,14.515625,23.563664596 "652","chic",39.5,23.875,1988-10-13,NA,NA,11.527529762,34.629329004 "653","chic",58,42.25,1988-10-14,NA,59,18.229166667,37.372412008 "654","chic",66.5,52,1988-10-15,NA,51,35.035714286,25.453416149 "655","chic",62.5,47.875,1988-10-16,NA,43,26.05952381,21.145833333 "656","chic",53,55.125,1988-10-17,NA,NA,4.9166666667,28.869047619 "657","chic",49.5,36.375,1988-10-18,NA,23.6,11.197781385,18.823373977 "658","chic",43.5,32.25,1988-10-19,NA,28,11.570590415,21.758172038 "659","chic",42,37.875,1988-10-20,NA,24,6.625,28.053571429 "660","chic",46.5,39,1988-10-21,NA,31,6.9270833333,21.369047619 "661","chic",42,32.5,1988-10-22,NA,32,10.265625,20.755952381 "662","chic",43.5,30.625,1988-10-23,NA,30,10.25,15.610119048 "663","chic",33.5,27.125,1988-10-24,NA,27.4,7.1202857378,16.566318758 "664","chic",35,22.125,1988-10-25,NA,34,8.5989583333,23.323596014 "665","chic",36.5,26,1988-10-26,NA,34,7.0520833333,24.903301748 "666","chic",45,40.875,1988-10-27,NA,NA,9.84375,26.7671875 "667","chic",37,21,1988-10-28,NA,39,13.520833333,19.6484375 "668","chic",33.5,12.75,1988-10-29,NA,28,13.125,26.46557971 "669","chic",33,25.875,1988-10-30,NA,26,10.541666667,29.012001812 "670","chic",39,27.625,1988-10-31,NA,36,9.5200892857,34.022321429 "671","chic",40,28,1988-11-01,NA,35,12.557291667,22.751235178 "672","chic",43.5,35.75,1988-11-02,NA,28,12.206860269,30.771212121 "673","chic",50.5,50.625,1988-11-03,NA,34,3.375,36.061458333 "674","chic",52.5,51.5,1988-11-04,NA,28,2.6470588235,33.837121212 "675","chic",41.5,36.125,1988-11-05,NA,15.6,2.7916666667,13.99702381 "676","chic",33.5,30.625,1988-11-06,NA,NA,13.625,11.8125 "677","chic",39,38,1988-11-07,NA,12,5.8695652174,23.990818511 "678","chic",42,36.875,1988-11-08,NA,40,4.5416666667,26.088541667 "679","chic",43.5,46,1988-11-09,NA,25,2.375,29.333051007 "680","chic",42.5,30.625,1988-11-10,NA,15,7.0416666667,18.827380952 "681","chic",39.5,29.25,1988-11-11,NA,23.2,8.9583333333,23.12797619 "682","chic",41.5,44,1988-11-12,NA,15,4.5416666667,22.666666667 "683","chic",45,40.875,1988-11-13,NA,12,10.583333333,16.845238095 "684","chic",47.5,34.5,1988-11-14,NA,NA,5.0833333333,34.232660455 "685","chic",56,60.375,1988-11-15,NA,NA,2.9166666667,25.966097308 "686","chic",48,24.25,1988-11-16,NA,23,11.625,11.895220588 "687","chic",38.5,28.125,1988-11-17,NA,24.2,10.291666667,23.708333333 "688","chic",43.5,30.125,1988-11-18,NA,9,2.7083333333,34.699905303 "689","chic",44,40.125,1988-11-19,NA,14,2.375,27.34375 "690","chic",36.5,28.125,1988-11-20,NA,21,6.25,17.339725379 "691","chic",33,23.375,1988-11-21,NA,21,5.4166666667,26.420845685 "692","chic",34.5,28.125,1988-11-22,NA,31,4.75,27.928125 "693","chic",41.5,35.5,1988-11-23,NA,39,3.4166666667,31.905460859 "694","chic",46.5,35,1988-11-24,NA,22,7.7916666667,30.739583333 "695","chic",49,44.375,1988-11-25,NA,28,13.041666667,35.71875 "696","chic",54,51.25,1988-11-26,NA,13,11.916666667,24.002604167 "697","chic",37,25,1988-11-27,NA,9,14.958333333,8.2708333333 "698","chic",28,21.875,1988-11-28,NA,6,7.8333333333,18.64208251 "699","chic",33.5,31.375,1988-11-29,NA,26.2,7.125,24.430156573 "700","chic",30.5,23.875,1988-11-30,NA,22,4.625,18.13134058 "701","chic",23.5,16.375,1988-12-01,NA,27,8.2083333333,22.111580087 "702","chic",34,32.5,1988-12-02,NA,29,4.5833333333,27.057065217 "703","chic",43,26,1988-12-03,NA,NA,9.2916666667,21.880952381 "704","chic",32.5,23.25,1988-12-04,NA,23,8.9166666667,23.174479167 "705","chic",38.5,31.25,1988-12-05,NA,39,3.875,23.238162879 "706","chic",42,34.875,1988-12-06,NA,40,5,30.234375 "707","chic",35,20,1988-12-07,NA,30,6.6458333333,25.661458333 "708","chic",27,11.25,1988-12-08,NA,40,9.6666666667,27.553571429 "709","chic",21.5,14.25,1988-12-09,NA,37,6.4166666667,24.369047619 "710","chic",18.5,2.125,1988-12-10,NA,NA,8.9166666667,23.380952381 "711","chic",11,6.125,1988-12-11,NA,30,7.0833333333,23.927536232 "712","chic",18.5,19.375,1988-12-12,NA,29,6.25,29.968167702 "713","chic",34.5,28.625,1988-12-13,NA,48,5.3333333333,26.555787938 "714","chic",37.5,24.875,1988-12-14,NA,NA,5.9166666667,21.726190476 "715","chic",18,-0.75,1988-12-15,NA,NA,14.35,20.410101959 "716","chic",10.5,12.125,1988-12-16,NA,35,6.5416666667,26.80952381 "717","chic",16,7,1988-12-17,NA,25.4,7.5416666667,22.172619048 "718","chic",22,21.875,1988-12-18,NA,39,4.875,24.25 "719","chic",39,32.25,1988-12-19,NA,NA,10.791666667,27.42478355 "720","chic",44.5,27,1988-12-20,NA,NA,12.608695652,16.398809524 "721","chic",33,22.5,1988-12-21,NA,NA,10.5,22.50784632 "722","chic",36,38.75,1988-12-22,NA,NA,4.2916666667,23.353519669 "723","chic",41,26.75,1988-12-23,NA,23,11.565217391,19.952380952 "724","chic",33.5,26.5,1988-12-24,NA,NA,4.5416666667,24.803571429 "725","chic",23,16.625,1988-12-25,NA,NA,10.083333333,13.776656315 "726","chic",27,29.875,1988-12-26,NA,NA,9,23.785714286 "727","chic",27.5,14.125,1988-12-27,NA,27,4.5,21.346435041 "728","chic",14.5,6.875,1988-12-28,NA,17,13.125,23.037878788 "729","chic",13.5,12.625,1988-12-29,NA,29.666666667,6.9473684211,30.285673345 "730","chic",24.5,21.875,1988-12-30,NA,NA,5.6666666667,35.9 "731","chic",26,27,1988-12-31,NA,61,2.75,44.666666667 "732","chic",26.5,26.875,1989-01-01,NA,66,9.3913043478,33.131567029 "733","chic",22,10.875,1989-01-02,NA,28,11.333333333,18.328125 "734","chic",23,15.75,1989-01-03,NA,NA,7.875,22.615942029 "735","chic",19,15.875,1989-01-04,NA,43.4,5.125,30.972661397 "736","chic",29.5,31.875,1989-01-05,NA,20,3.125,33.14490695 "737","chic",35,32.375,1989-01-06,NA,27,2,30.708333333 "738","chic",40,39.625,1989-01-07,NA,NA,2.875,25.794270833 "739","chic",15,1.5,1989-01-08,NA,NA,17.958333333,9.5807291667 "740","chic",16.5,14.625,1989-01-09,NA,52,13.466666667,20.080350379 "741","chic",31.5,21.375,1989-01-10,NA,37.428571429,4.8666666667,26.239393939 "742","chic",34.5,37.375,1989-01-11,NA,31,8.5,25.424715909 "743","chic",31.5,15.875,1989-01-12,NA,NA,9,23.716485507 "744","chic",26,17.625,1989-01-13,NA,NA,6.4285714286,27.541666667 "745","chic",26.5,26.125,1989-01-14,NA,20,3.5833333333,23.327380952 "746","chic",29.5,23.875,1989-01-15,NA,NA,7.6666666667,15.029761905 "747","chic",31.5,26.625,1989-01-16,NA,27.142857143,6.25,19.886904762 "748","chic",37,29.125,1989-01-17,NA,24,6.9583333333,24.775022645 "749","chic",37.5,27.875,1989-01-18,NA,NA,9.6956521739,21.457859848 "750","chic",38,30.125,1989-01-19,NA,NA,11.208333333,22.241744895 "751","chic",28.5,11.625,1989-01-20,NA,NA,15.625,19.15625 "752","chic",26.5,19.75,1989-01-21,NA,27,8.375,28.19047619 "753","chic",40,25.75,1989-01-22,NA,22.875,8.75,23.321428571 "754","chic",41.5,32.625,1989-01-23,NA,17,4.9166666667,33.184453228 "755","chic",38,34.125,1989-01-24,NA,45,6.2272727273,27.774715321 "756","chic",42.5,42.25,1989-01-25,NA,36,5.4166666667,24.188466199 "757","chic",34,23.625,1989-01-26,NA,37,8.25,21.83124451 "758","chic",37,30.75,1989-01-27,NA,25,7.5,26.568213303 "759","chic",42,31.875,1989-01-28,NA,27.125,6.5833333333,26.140625 "760","chic",40,37.75,1989-01-29,NA,NA,3.5,20.546875 "761","chic",40.5,35.5,1989-01-30,NA,NA,7.7916666667,20.877943841 "762","chic",52.5,44.125,1989-01-31,NA,NA,9.8333333333,24.04727946 "763","chic",40.5,21.875,1989-02-01,NA,12,19,14.140076754 "764","chic",25.5,20.375,1989-02-02,NA,49,16.041666667,19.109375 "765","chic",14.5,2.5,1989-02-03,NA,20.571428571,11.388888889,21.75 "766","chic",4.5,2,1989-02-04,NA,45,6.5882352941,22.322916667 "767","chic",9,5.25,1989-02-05,NA,NA,6.0833333333,24.614583333 "768","chic",2,-0.25,1989-02-06,NA,32,12,21.175662879 "769","chic",12,9.125,1989-02-07,NA,56,14.75,28.512681159 "770","chic",11.5,-3.75,1989-02-08,NA,86,17,16.970170455 "771","chic",7,3.5,1989-02-09,NA,34.857142857,16.272727273,21.229166667 "772","chic",15,12.375,1989-02-10,NA,36,14.375,28.448822464 "773","chic",24,19.125,1989-02-11,NA,33,15.416666667,26.244047619 "774","chic",26.5,16.875,1989-02-12,NA,26,15.041666667,27.875 "775","chic",32,31.125,1989-02-13,NA,NA,7.875,29.291666667 "776","chic",27.5,20.75,1989-02-14,NA,52,19.291666667,25.646480331 "777","chic",27.5,13.125,1989-02-15,NA,30.125,8.625,38.382161956 "778","chic",17.5,1.875,1989-02-16,NA,25,11.476190476,31.580782313 "779","chic",17.5,14.625,1989-02-17,NA,13,14.625,30.630952381 "780","chic",22,20.875,1989-02-18,NA,23,16.916666667,30.636904762 "781","chic",28,19.125,1989-02-19,NA,NA,12.291666667,32.321428571 "782","chic",27,25.25,1989-02-20,NA,NA,16.958333333,33.077380952 "783","chic",26,17.25,1989-02-21,NA,43.75,19.958333333,33.241300366 "784","chic",17,1.625,1989-02-22,NA,56,21.375,25.635425909 "785","chic",13.5,10.25,1989-02-23,NA,37,13.333333333,29.148591897 "786","chic",13,9.125,1989-02-24,NA,61,12.708333333,42.183333333 "787","chic",27.5,27.75,1989-02-25,NA,NA,15.25,37.916666667 "788","chic",28.5,15.875,1989-02-26,NA,NA,28.75,17.97489648 "789","chic",18.5,10.75,1989-02-27,NA,33.714285714,15.071428571,29.361133658 "790","chic",23,8.5,1989-02-28,NA,57,18.041666667,28.44375 "791","chic",17,8.75,1989-03-01,NA,NA,20.058823529,24.312554493 "792","chic",21.5,20,1989-03-02,NA,32,16.666666667,28.958333333 "793","chic",32,32.125,1989-03-03,NA,NA,11.333333333,26.479166667 "794","chic",34.5,24.375,1989-03-04,NA,30,7.2083333333,23.521279762 "795","chic",21.5,17,1989-03-05,NA,13.625,26.375,10.411458333 "796","chic",26,14.625,1989-03-06,NA,20,33.375,12.715672348 "797","chic",23,10.75,1989-03-07,NA,41,29.291666667,18.471354167 "798","chic",26.5,18.625,1989-03-08,NA,68,9.875,40.875 "799","chic",34,26.125,1989-03-09,NA,77,8.5416666667,50.260160421 "800","chic",42.5,32.5,1989-03-10,NA,NA,13.416666667,46.658333333 "801","chic",46,31.5,1989-03-11,NA,73.333333333,2,35.383333333 "802","chic",35,29.25,1989-03-12,NA,30,36.272727273,20.083333333 "803","chic",42.5,36.25,1989-03-13,NA,43,13.636363636,37.919507576 "804","chic",47,47.5,1989-03-14,NA,NA,8.0833333333,40.225834627 "805","chic",33.5,16,1989-03-15,NA,NA,18.458333333,23.247056159 "806","chic",35.5,27.25,1989-03-16,NA,36,12.333333333,31.84375 "807","chic",32,28.875,1989-03-17,NA,19.5,26.958333333,20.910069444 "808","chic",24.5,17.375,1989-03-18,NA,23,26.833333333,22.921875 "809","chic",26,26.5,1989-03-19,NA,NA,16.666666667,32.765625 "810","chic",32.5,22.625,1989-03-20,NA,31,22.227272727,30.658355684 "811","chic",28.5,11.75,1989-03-21,NA,22,24.416666667,27.6640625 "812","chic",32,22.75,1989-03-22,NA,27,12.041666667,42.647253788 "813","chic",41.5,25.25,1989-03-23,NA,58.428571429,12.541666667,43.283333333 "814","chic",48.5,36.25,1989-03-24,NA,40,11.375,42.34375 "815","chic",49,34.875,1989-03-25,NA,41,23.416666667,26.890625 "816","chic",55.5,54.75,1989-03-26,NA,NA,35.375,30.815443841 "817","chic",66.5,58.75,1989-03-27,NA,22,17.579166667,25.310606061 "818","chic",60.5,56.5,1989-03-28,NA,28,12.861111111,22.358057477 "819","chic",44,31,1989-03-29,NA,15,27.041190476,17.922101449 "820","chic",42,33,1989-03-30,NA,34,17.491666667,23.25483631 "821","chic",35.5,22.5,1989-03-31,NA,32,25.84375,20.675 "822","chic",36.5,33.875,1989-04-01,NA,23,23.125,28.447916667 "823","chic",46.5,44.625,1989-04-02,NA,NA,22.125,25.177083333 "824","chic",47,47.25,1989-04-03,NA,NA,13.208333333,33.152432712 "825","chic",51,34.625,1989-04-04,NA,32.625,18.826086957,25.619629917 "826","chic",41,35.5,1989-04-05,NA,33,19.357142857,26.593786422 "827","chic",41.5,24.625,1989-04-06,NA,50,19.609139308,31.6484375 "828","chic",40,27.75,1989-04-07,NA,42,22.196428571,26.520833333 "829","chic",38,15.625,1989-04-08,NA,35,24.136904762,22.1171875 "830","chic",29.5,13.375,1989-04-09,NA,NA,27.697916667,10.464285714 "831","chic",28.5,20.875,1989-04-10,NA,29.375,16.536231884,26.289772727 "832","chic",37,28.875,1989-04-11,NA,44,23.285714286,26.154829545 "833","chic",43,26.875,1989-04-12,NA,31,27.029503106,28.369318182 "834","chic",41,19.375,1989-04-13,NA,49,21.798129252,38.743194603 "835","chic",52,33,1989-04-14,NA,39,26.327380952,32.288825758 "836","chic",48.5,30.5,1989-04-15,NA,54,25.523809524,39.182291667 "837","chic",57,49.25,1989-04-16,NA,46.125,26.833333333,34.947916667 "838","chic",48.5,31.875,1989-04-17,NA,23,30.922360248,23.834650856 "839","chic",39.5,35.5,1989-04-18,NA,49,16.946428571,36.173896869 "840","chic",43.5,19.25,1989-04-19,NA,56,18.833333333,41.239130435 "841","chic",54,38,1989-04-20,NA,69,27.015316206,39.613839286 "842","chic",53,36.125,1989-04-21,NA,49,31.494047619,32.758831522 "843","chic",52,34.25,1989-04-22,NA,44.375,30.552083333,28.020833333 "844","chic",50.5,31.375,1989-04-23,NA,61,33.473958333,21.828125 "845","chic",55.5,41.375,1989-04-24,NA,74,32.271683673,41.50004529 "846","chic",62.5,52.375,1989-04-25,NA,NA,36.369565217,36.867113095 "847","chic",58,45.25,1989-04-26,NA,NA,45.616666667,30.468005952 "848","chic",54,43,1989-04-27,NA,69,34.648809524,33.197916667 "849","chic",49.5,42,1989-04-28,NA,39.714285714,18.077380952,30.135416667 "850","chic",55.5,42,1989-04-29,NA,NA,19.625,25.786458333 "851","chic",50,35.5,1989-04-30,NA,NA,34.589285714,16.276041667 "852","chic",47.5,33.25,1989-05-01,NA,24,32.083333333,23.185011999 "853","chic",45,37.5,1989-05-02,NA,26,26.252164502,24.768643055 "854","chic",53.5,32.625,1989-05-03,NA,NA,24.772986072,32.222916667 "855","chic",55.5,49.75,1989-05-04,NA,46.25,25.188405797,36.691168478 "856","chic",50.5,19.875,1989-05-05,NA,NA,30.94047619,17.119906136 "857","chic",35.5,24.75,1989-05-06,NA,33,20.333333333,16.303571429 "858","chic",43,35.75,1989-05-07,NA,NA,18.239583333,17.24702381 "859","chic",50.5,40.75,1989-05-08,NA,NA,25.321428571,36.127144608 "860","chic",50.5,25.375,1989-05-09,NA,20,33.899374177,20.221875 "861","chic",49.5,23.5,1989-05-10,NA,27,35.714285714,19.708806818 "862","chic",48,20.25,1989-05-11,NA,NA,33.714285714,21.791152009 "863","chic",51.5,36.75,1989-05-12,NA,NA,28.56547619,24.345170455 "864","chic",52,43.25,1989-05-13,NA,17,30.406746032,17.739583333 "865","chic",55.5,41.375,1989-05-14,NA,65,32.56547619,24.479166667 "866","chic",56,43.75,1989-05-15,NA,NA,27.682994542,42.913541667 "867","chic",59,44.5,1989-05-16,NA,79.875,35.632401316,51.115530303 "868","chic",63.5,45.375,1989-05-17,NA,98,47.119209369,44.950634058 "869","chic",68,51.625,1989-05-18,NA,99,37.168931159,42.635681348 "870","chic",65.5,61.75,1989-05-19,NA,35,30.036458333,33.068452381 "871","chic",64,38.625,1989-05-20,NA,NA,26.651041667,24.109375 "872","chic",64.5,44.75,1989-05-21,NA,47,33.59375,30.791666667 "873","chic",63,49.625,1989-05-22,NA,65.25,29.511548913,41.171463274 "874","chic",69,42.875,1989-05-23,NA,68,37.8125,43.731793478 "875","chic",75,65.5,1989-05-24,NA,NA,43.592967721,30.211180124 "876","chic",67.5,60.875,1989-05-25,NA,33,26.303503788,35.524943311 "877","chic",62,40.125,1989-05-26,NA,NA,25.33727904,21.017203283 "878","chic",56,39.625,1989-05-27,NA,34,26.192708333,18.997395833 "879","chic",57,39.625,1989-05-28,NA,33,31.236268939,26.572916667 "880","chic",67.5,68.25,1989-05-29,NA,NA,39.045138889,20.273809524 "881","chic",73.5,67.25,1989-05-30,NA,25,39.252840909,24.504734848 "882","chic",75,66.5,1989-05-31,NA,NA,26.373414855,27.027497412 "883","chic",68.5,63.375,1989-06-01,NA,28,15.026041667,32.051988636 "884","chic",67.5,52.5,1989-06-02,NA,NA,29.625,30.96247412 "885","chic",56.5,51.625,1989-06-03,NA,29,21.80952381,30.148809524 "886","chic",62.5,49.5,1989-06-04,NA,NA,27.738095238,24.324404762 "887","chic",66,47.75,1989-06-05,NA,79,26,47.054421769 "888","chic",71,51.5,1989-06-06,NA,NA,31.744565217,37.75974026 "889","chic",71.5,55.625,1989-06-07,NA,89,41.555397727,38.564182195 "890","chic",73,57.875,1989-06-08,NA,NA,43.928571429,32.883163265 "891","chic",61,46.875,1989-06-09,NA,38.75,23.272321429,16.614583333 "892","chic",58.5,43.75,1989-06-10,NA,NA,21,13.846354167 "893","chic",60,50.5,1989-06-11,NA,35,27.192708333,28.03125 "894","chic",66,62.75,1989-06-12,NA,43,23.65625,32.29985119 "895","chic",66.5,58.75,1989-06-13,NA,45,27.488162879,32.325613472 "896","chic",64,52.375,1989-06-14,NA,NA,30.886590086,28.597544643 "897","chic",54.5,50.875,1989-06-15,NA,27.714285714,13.68844697,17.178645833 "898","chic",61,46.75,1989-06-16,NA,35,14.665987319,22.341145833 "899","chic",65.5,47.625,1989-06-17,NA,43,28.743844697,26.091145833 "900","chic",72.5,62.25,1989-06-18,NA,NA,32.857954545,23.989583333 "901","chic",71,62.875,1989-06-19,NA,26,39.245738636,32.267889493 "902","chic",68.5,60.875,1989-06-20,NA,28,49.612847222,23.752840909 "903","chic",69,56.375,1989-06-21,NA,57.428571429,59.727272727,31.73442029 "904","chic",79,64.375,1989-06-22,NA,NA,47.689799784,34.139751553 "905","chic",79,68,1989-06-23,NA,NA,37.071428571,33.287817029 "906","chic",75,59.375,1989-06-24,NA,NA,35.457482993,21.880208333 "907","chic",73,61.5,1989-06-25,NA,53,34.278571429,28.421875 "908","chic",77.5,64,1989-06-26,NA,89,32.410714286,34.561367754 "909","chic",70.5,64.75,1989-06-27,NA,51.428571429,21.064958592,38.831812888 "910","chic",64.5,46.25,1989-06-28,NA,33,20.59375,22.972334957 "911","chic",61,48.625,1989-06-29,NA,28,23.062047101,19.69214221 "912","chic",65.5,52.125,1989-06-30,NA,NA,32.854166667,39.770833333 "913","chic",72.5,54.5,1989-07-01,NA,NA,52.175420168,43.463541667 "914","chic",73.5,66.25,1989-07-02,NA,65,47.365079365,32.291666667 "915","chic",74,59,1989-07-03,NA,57.285714286,40.626949318,29.604959239 "916","chic",75,50.5,1989-07-04,NA,NA,35.199074074,23.81547619 "917","chic",75.5,62.125,1989-07-05,NA,59,40.407407407,24.896861472 "918","chic",79,63.25,1989-07-06,NA,85,48.027777778,43.8984375 "919","chic",78.5,53.5,1989-07-07,NA,56,32.73015873,30.464285714 "920","chic",75,65.625,1989-07-08,NA,50,33.444444444,31.011904762 "921","chic",83,68.25,1989-07-09,NA,57.75,51.62037037,17.5 "922","chic",86.5,61.375,1989-07-10,NA,43,46.597222222,21.520833333 "923","chic",76,64.5,1989-07-11,NA,NA,28.148148148,29.728316327 "924","chic",71,62.125,1989-07-12,NA,NA,26.324074074,23.802795031 "925","chic",69,50.125,1989-07-13,NA,21,27.074074074,19.029600575 "926","chic",68,45.625,1989-07-14,NA,12,23.055354267,19.071428571 "927","chic",71,49.625,1989-07-15,NA,30,25.708333333,22.827380952 "928","chic",72.5,48.875,1989-07-16,NA,32,36.141917293,25.357142857 "929","chic",71,54.875,1989-07-17,NA,68,28.660714286,49.435096154 "930","chic",70,60.75,1989-07-18,NA,56,36.15993266,35.933114035 "931","chic",67.5,65.125,1989-07-19,NA,47,39.139913629,23.270442194 "932","chic",67.5,61.375,1989-07-20,NA,26,31.490740741,12.909934947 "933","chic",69,64.375,1989-07-21,NA,41.5,33.203703704,22 "934","chic",74,63.75,1989-07-22,NA,39,36.462962963,26.234375 "935","chic",74.5,65.125,1989-07-23,NA,54,38.384259259,28.2578125 "936","chic",77,68.75,1989-07-24,NA,77,43.400966184,34.942708333 "937","chic",78.5,73.875,1989-07-25,NA,55,39.770833333,47.690632368 "938","chic",79.5,72.375,1989-07-26,NA,61,20.704936594,34.765625 "939","chic",82.5,66.75,1989-07-27,NA,43,33.265389401,22.014698617 "940","chic",67.5,57.5,1989-07-28,NA,37.5,30.744791667,13.877232143 "941","chic",69,67,1989-07-29,NA,29,41.859375,22.302083333 "942","chic",71.5,61,1989-07-30,NA,46,44.911458333,11.157986111 "943","chic",71,60.5,1989-07-31,NA,69,57.307291667,22.440104167 "944","chic",72.5,60.125,1989-08-01,NA,48,51.723958333,33.779623682 "945","chic",74,66.625,1989-08-02,NA,74.625,35.421875,44.78125 "946","chic",79.5,72.625,1989-08-03,NA,52,27.765625,24.544836957 "947","chic",81,77,1989-08-04,NA,64,29.994820656,19.411458333 "948","chic",77,66,1989-08-05,NA,38,38.125,20.6 "949","chic",63,48.75,1989-08-06,NA,25,21.736111111,16.181547619 "950","chic",62,50.25,1989-08-07,NA,29,23.339285714,24.75 "951","chic",65,57.125,1989-08-08,NA,50.5,16.726190476,27.067857143 "952","chic",70.5,58.75,1989-08-09,NA,47,21.580357143,39.669950181 "953","chic",72.5,62.375,1989-08-10,NA,50,27.449013158,41.193276515 "954","chic",70.5,62.25,1989-08-11,NA,96,31.119187802,55.905215195 "955","chic",72,60,1989-08-12,NA,86,28.307291667,44.255208333 "956","chic",71,62.5,1989-08-13,NA,53,35.260416667,32.130208333 "957","chic",71,63.25,1989-08-14,NA,58.375,22.92379386,32.130952381 "958","chic",69,61.625,1989-08-15,NA,18,20.87405303,21.213194444 "959","chic",66.5,56.625,1989-08-16,NA,NA,24.066761364,24.4390625 "960","chic",66,55.875,1989-08-17,NA,34,24.639039855,24.461458333 "961","chic",66.5,53.875,1989-08-18,NA,NA,26.863039361,25.552083333 "962","chic",67.5,60.875,1989-08-19,NA,NA,36.126736111,27.572916667 "963","chic",74.5,61.125,1989-08-20,NA,37.571428571,30.386363636,14.4375 "964","chic",74,65.5,1989-08-21,NA,59,27.875,32.084753788 "965","chic",77.5,72.125,1989-08-22,NA,31,18.905117754,25.196237413 "966","chic",70.5,63,1989-08-23,NA,25,28.105113636,19.040482955 "967","chic",70,61.5,1989-08-24,NA,37,32.029166667,14.976325758 "968","chic",70,58.25,1989-08-25,NA,NA,31.783679183,20.432291667 "969","chic",71.5,66.125,1989-08-26,NA,49.285714286,33.208333333,37.798532197 "970","chic",74.5,69.25,1989-08-27,NA,50,35.807291667,30.450520833 "971","chic",77,70.75,1989-08-28,NA,49,20.119791667,28.637152778 "972","chic",75,60.75,1989-08-29,NA,50,16.734375,22.37594697 "973","chic",70.5,58.875,1989-08-30,NA,54,20.864583333,30.901041667 "974","chic",72.5,67.625,1989-08-31,NA,35,19.182291667,31.488095238 "975","chic",71,61.875,1989-09-01,NA,21.875,26.927083333,18.184507635 "976","chic",64,50.5,1989-09-02,NA,15,24.088541667,14.822916667 "977","chic",65,53.5,1989-09-03,NA,23,22.494791667,20.755208333 "978","chic",68,62.25,1989-09-04,NA,37,28.71875,21.9765625 "979","chic",70,66.625,1989-09-05,NA,NA,25.890625,39.236639493 "980","chic",71.5,69.875,1989-09-06,NA,43,15.453125,30.396306818 "981","chic",74.5,71.75,1989-09-07,NA,57.142857143,19.680932971,34.247217909 "982","chic",76.5,69,1989-09-08,NA,38,17.541666667,29.098011364 "983","chic",68,60.5,1989-09-09,NA,NA,19.125,16.375 "984","chic",63,51.25,1989-09-10,NA,23,16.729166667,14.4296875 "985","chic",65,57.125,1989-09-11,NA,40,16.4375,31.209280303 "986","chic",60.5,45.625,1989-09-12,NA,32,18.866703722,21.208703887 "987","chic",56.5,50.5,1989-09-13,NA,14,20.553442029,19.217957428 "988","chic",58,51.375,1989-09-14,NA,15,21.692708333,16.7734375 "989","chic",57.5,49.125,1989-09-15,NA,NA,23.657670455,22.674952652 "990","chic",59.5,51.875,1989-09-16,NA,33,22.828125,28.169270833 "991","chic",63.5,54.125,1989-09-17,NA,51,26.827380952,33.036458333 "992","chic",65,55.75,1989-09-18,NA,49,31.742346939,44.815640664 "993","chic",65,55.5,1989-09-19,NA,47.5,23.70508658,41.935032895 "994","chic",65.5,56.875,1989-09-20,NA,61,27.364583333,43.975378788 "995","chic",66,58,1989-09-21,NA,76,25.395833333,46.408267457 "996","chic",61.5,44.75,1989-09-22,NA,115,25.197916667,31.972632576 "997","chic",45.5,31.625,1989-09-23,NA,35,17.0625,13.3515625 "998","chic",48,36.75,1989-09-24,NA,24,12.854166667,24.095238095 "999","chic",54.5,43.125,1989-09-25,NA,46.625,15.8125,31.523262516 "1000","chic",51.5,39.625,1989-09-26,NA,24,19.510416667,16.692595109 "1001","chic",51,38.75,1989-09-27,NA,41,16.989583333,33.281628788 "1002","chic",58,39.5,1989-09-28,NA,53,16.404664855,36.62797619 "1003","chic",59.5,47.625,1989-09-29,NA,37,19.130208333,26.140625 "1004","chic",60,52.625,1989-09-30,NA,45,25.345238095,34.0625 "1005","chic",65.5,59.625,1989-10-01,NA,51.714285714,19.351190476,31.119791667 "1006","chic",56.5,38.75,1989-10-02,NA,54.5,8.203125,15.070833333 "1007","chic",44.5,24.875,1989-10-03,NA,41.5,12.203125,22.480881211 "1008","chic",47,29.375,1989-10-04,NA,69,10.599905303,33.345833333 "1009","chic",52.5,55.25,1989-10-05,NA,46,5.8925070028,35.338541667 "1010","chic",51.5,36,1989-10-06,NA,25,11.699526515,19.678882576 "1011","chic",45,33.375,1989-10-07,NA,23.857142857,11.4375,20.40625 "1012","chic",44,32.375,1989-10-08,NA,22.5,14.359375,21.1953125 "1013","chic",45.5,37.375,1989-10-09,NA,NA,14.427083333,28.119791667 "1014","chic",51,39.625,1989-10-10,NA,39,12.630208333,23.859860248 "1015","chic",59,39.625,1989-10-11,NA,52,18.739583333,27.953125 "1016","chic",61,47.125,1989-10-12,NA,58,18.479166667,32.621685606 "1017","chic",62.5,45.75,1989-10-13,NA,91.875,11.041666667,59.515625 "1018","chic",69.5,55.625,1989-10-14,NA,62,23.791666667,48.359375 "1019","chic",70.5,53.5,1989-10-15,NA,47.5,29.135416667,26.223958333 "1020","chic",58.5,44.125,1989-10-16,NA,27,19.535714286,15.908658597 "1021","chic",43,31.625,1989-10-17,NA,9.5,17.700757576,13.030323617 "1022","chic",36,29.875,1989-10-18,NA,13.5,23.428571429,15.984848485 "1023","chic",36,33,1989-10-19,NA,9.375,21.137163561,15.049171843 "1024","chic",37,34.25,1989-10-20,NA,19,9.0515010352,23.91873706 "1025","chic",46,37,1989-10-21,NA,29,11.732142857,24.62797619 "1026","chic",48,38.75,1989-10-22,NA,20.5,10.875,34.708333333 "1027","chic",58.5,54.5,1989-10-23,NA,40,10.035714286,45.357142857 "1028","chic",64,57.875,1989-10-24,NA,47.5,11.785778986,43.156445622 "1029","chic",65.5,55.75,1989-10-25,NA,52.625,15.416666667,42.884501627 "1030","chic",62.5,50.125,1989-10-26,NA,64,18.556418219,50.670995671 "1031","chic",62.5,42.875,1989-10-27,NA,66.5,18.053571429,56.230072464 "1032","chic",63.5,41.5,1989-10-28,NA,52.5,19.196428571,45.802083333 "1033","chic",64.5,49.875,1989-10-29,NA,44.5,25.56547619,35.979166667 "1034","chic",65,52.5,1989-10-30,NA,42,19.18452381,30.53125 "1035","chic",45.5,31.125,1989-10-31,NA,24,4.75,16.715744401 "1036","chic",43,34.75,1989-11-01,NA,32,5.375,26.617897727 "1037","chic",35,24.125,1989-11-02,NA,25,8.8333333333,17.28111413 "1038","chic",31,25.75,1989-11-03,NA,27,5.9583333333,24.200284091 "1039","chic",46.5,29.75,1989-11-04,NA,27.5,8.2916666667,20.973958333 "1040","chic",54,50,1989-11-05,NA,35.5,18.833333333,18.161458333 "1041","chic",45.5,37.75,1989-11-06,NA,26.25,6.3913043478,17.196482514 "1042","chic",45.5,39.625,1989-11-07,NA,28,7.5416666667,25.023397798 "1043","chic",45,35,1989-11-08,NA,26,5.9166666667,21.00530303 "1044","chic",39.5,35.5,1989-11-09,NA,20,8.4583333333,15.607481061 "1045","chic",38,28.125,1989-11-10,NA,25,7.9583333333,12.925595238 "1046","chic",46.5,30.125,1989-11-11,NA,28,6.0833333333,18.305555556 "1047","chic",38.5,30.375,1989-11-12,NA,19,9.5833333333,18.76875 "1048","chic",59,53,1989-11-13,NA,NA,22.833333333,24.981291173 "1049","chic",54,45,1989-11-14,NA,26.5,7.8333333333,17.030419118 "1050","chic",40.5,32.875,1989-11-15,NA,15,3.4444444444,14.952862796 "1051","chic",26,11.375,1989-11-16,NA,11,15.625,13.012309136 "1052","chic",24.5,19.75,1989-11-17,NA,34.5,9.8333333333,15.439877717 "1053","chic",21,11.75,1989-11-18,NA,21.571428571,10.229166667,15.738095238 "1054","chic",37,30,1989-11-19,NA,25.5,9.9583333333,21.026785714 "1055","chic",45.5,19.5,1989-11-20,NA,43.5,12.4375,16.005952381 "1056","chic",30,19.625,1989-11-21,NA,29,18.666666667,22.294203193 "1057","chic",26.5,21.25,1989-11-22,NA,24,10.166666667,29.410229037 "1058","chic",18.5,16.875,1989-11-23,NA,29,10.25,20.705729167 "1059","chic",27.5,24.375,1989-11-24,NA,29.285714286,6.625,24.791666667 "1060","chic",44,35,1989-11-25,NA,31.5,6.375,21.572916667 "1061","chic",38.5,29,1989-11-26,NA,23,4.6666666667,30.875 "1062","chic",51,42.375,1989-11-27,NA,NA,6.7916666667,23.865844979 "1063","chic",28.5,12.625,1989-11-28,NA,25.5,19,15.461221591 "1064","chic",20.5,14.75,1989-11-29,NA,20,9.125,19.629261364 "1065","chic",34,25.125,1989-11-30,NA,32.5,6.0833333333,25.412341023 "1066","chic",38,28,1989-12-01,NA,49,5.375,31.767857143 "1067","chic",29,9,1989-12-02,NA,52,16.125,12.375 "1068","chic",20,5,1989-12-03,NA,14,20.25,14.385416667 "1069","chic",33.5,24.625,1989-12-04,NA,31,5.0416666667,21.088068182 "1070","chic",39.5,31.875,1989-12-05,NA,38,2.3333333333,26.708333333 "1071","chic",29,7.25,1989-12-06,NA,24.25,13.666666667,19.158535079 "1072","chic",17,2.625,1989-12-07,NA,32,16.791666667,25.821557971 "1073","chic",21.5,13.625,1989-12-08,NA,37.5,17.541666667,31.167654809 "1074","chic",28.5,19.625,1989-12-09,NA,30.5,5.2083333333,29.041666667 "1075","chic",31,22.875,1989-12-10,NA,26,13.25,16.921875 "1076","chic",19.5,6.5,1989-12-11,NA,35,11.541666667,24.668251812 "1077","chic",11,0.5,1989-12-12,NA,38.714285714,8.2916666667,27.794507576 "1078","chic",13,14.375,1989-12-13,NA,43,6.2916666667,34.157835145 "1079","chic",8,-6.875,1989-12-14,NA,34,5.4583333333,24.205227743 "1080","chic",3.5,2.625,1989-12-15,NA,45.5,8.875,26.696875 "1081","chic",2.5,-4.5,1989-12-16,NA,33,7.9583333333,25.708333333 "1082","chic",9.5,2.625,1989-12-17,NA,31,6.3333333333,26.182291667 "1083","chic",9.5,2.625,1989-12-18,NA,43.875,6.0833333333,29.40625 "1084","chic",7.5,-3.625,1989-12-19,NA,39,9.0416666667,30.132843379 "1085","chic",0,-2.875,1989-12-20,NA,22.5,10.5,25.826745718 "1086","chic",-6.5,-23,1989-12-21,NA,49,16.666666667,19.5 "1087","chic",-4.5,-11.875,1989-12-22,NA,49,9.4166666667,29.416666667 "1088","chic",-1,-9.375,1989-12-23,NA,38,5.25,30.135416667 "1089","chic",5,7.5,1989-12-24,NA,25.166666667,8.2916666667,25.166666667 "1090","chic",24.5,26.75,1989-12-25,NA,NA,13.208333333,17.90625 "1091","chic",12,3.25,1989-12-26,NA,NA,15.958333333,22.921082428 "1092","chic",20.5,20,1989-12-27,NA,34,12.25,21.996279762 "1093","chic",27,32,1989-12-28,NA,20,5.5833333333,30.918963509 "1094","chic",34.5,30.625,1989-12-29,NA,40,5.75,27.099431818 "1095","chic",32.5,32,1989-12-30,NA,38,2.1666666667,27.15625 "1096","chic",30.5,24.625,1989-12-31,NA,42,7.4583333333,19.114583333 "1097","chic",27.5,19.75,1990-01-01,NA,NA,16.416666667,11.330729167 "1098","chic",33,28.75,1990-01-02,NA,NA,6.5416666667,21.511904762 "1099","chic",39,39.75,1990-01-03,NA,37,5.7916666667,24.549242424 "1100","chic",36,23.5,1990-01-04,NA,23.5,8.25,22.404356061 "1101","chic",29.5,27.625,1990-01-05,NA,35.142857143,4.4583333333,27.15625 "1102","chic",30,25,1990-01-06,NA,42.5,7.9166666667,24.541666667 "1103","chic",35,30.375,1990-01-07,NA,27,6.4583333333,23.069940476 "1104","chic",37,33.625,1990-01-08,NA,28,6.125,29.550857843 "1105","chic",38,31.125,1990-01-09,NA,30,9.2916666667,23.113764632 "1106","chic",32.5,29.125,1990-01-10,NA,28,7.0416666667,15.611526268 "1107","chic",38,21.625,1990-01-11,NA,104.625,17.875,12.424479167 "1108","chic",26,10.5,1990-01-12,NA,55,20.083333333,13.197916667 "1109","chic",23,18.375,1990-01-13,NA,18,7.25,19.635416667 "1110","chic",36.5,27,1990-01-14,NA,23,6.125,21.151041667 "1111","chic",41,31.125,1990-01-15,NA,44,4.5416666667,31.848958333 "1112","chic",47.5,52.125,1990-01-16,NA,NA,3.0833333333,29.30638587 "1113","chic",45,37.125,1990-01-17,NA,27,12.458333333,19.167572464 "1114","chic",32,22.5,1990-01-18,NA,37,12.041666667,16.605160985 "1115","chic",30.5,22.875,1990-01-19,NA,48,9.9583333333,27.612797619 "1116","chic",35.5,34,1990-01-20,NA,31.5,4.7916666667,20.739583333 "1117","chic",30,27.625,1990-01-21,NA,16,7.4375,14.377604167 "1118","chic",36.5,30.625,1990-01-22,NA,19.5,5.3125,21.304563982 "1119","chic",39.5,38.375,1990-01-23,NA,34.25,7.7916666667,26.346354167 "1120","chic",40,31.875,1990-01-24,NA,18.5,7.7916666667,20.299479167 "1121","chic",30.5,20,1990-01-25,NA,22,11.055555556,17.508116883 "1122","chic",25.5,27.75,1990-01-26,NA,30,8.5,27.30952381 "1123","chic",37.5,19.5,1990-01-27,NA,25,17,16.510416667 "1124","chic",30.5,18.125,1990-01-28,NA,27,7.0416666667,21.036458333 "1125","chic",34,17.5,1990-01-29,NA,50.125,3.2916666667,41.353039042 "1126","chic",34.5,21.375,1990-01-30,NA,28.5,9.0869565217,21.586215415 "1127","chic",30.5,33.875,1990-01-31,NA,35,8.4583333333,28.28902512 "1128","chic",41,31.75,1990-02-01,NA,32,14.958333333,21.696331522 "1129","chic",30,25.875,1990-02-02,NA,32,20.833333333,17.099977355 "1130","chic",33,31,1990-02-03,NA,25.5,7.875,21.026041667 "1131","chic",34,28.5,1990-02-04,NA,20.875,20.041666667,19.268229167 "1132","chic",41.5,36.75,1990-02-05,NA,24,8.5416666667,24.763257576 "1133","chic",38.5,36.625,1990-02-06,NA,31.5,2.5,28.570339912 "1134","chic",37,37.25,1990-02-07,NA,36.5,5.4583333333,24.379385965 "1135","chic",50,47.625,1990-02-08,NA,31,21.25,24.596875 "1136","chic",41.5,22.375,1990-02-09,NA,40,17.541666667,21.541666667 "1137","chic",32,24.75,1990-02-10,NA,23.375,12.5,25.890625 "1138","chic",28.5,20.125,1990-02-11,NA,29.5,15.875,24.666666667 "1139","chic",38.5,40.375,1990-02-12,NA,36,7.4166666667,28.328125 "1140","chic",41,23.5,1990-02-13,NA,NA,20.875,17.000710227 "1141","chic",27,25,1990-02-14,NA,14,28.916666667,12.095342007 "1142","chic",29.5,29,1990-02-15,NA,22.5,22.75,16.353074009 "1143","chic",27.5,15.625,1990-02-16,NA,23.5,17.291666667,21.535485934 "1144","chic",21,14.75,1990-02-17,NA,22,16.291666667,26.506944444 "1145","chic",32,26.375,1990-02-18,NA,28,20.166666667,21.595238095 "1146","chic",24,6.875,1990-02-19,NA,30.5,22.291666667,26.692708333 "1147","chic",20.5,15.5,1990-02-20,NA,53,8.4761904762,44.859045619 "1148","chic",34,30.125,1990-02-21,NA,30.5,7.125,40.127935606 "1149","chic",36,32,1990-02-22,NA,23,11.916666667,28.320748604 "1150","chic",32.5,25.75,1990-02-23,NA,19,21.041666667,26.71875 "1151","chic",21,-2.5,1990-02-24,NA,75,29.125,11.471354167 "1152","chic",11,-2.625,1990-02-25,NA,23.5,23.5,19.288690476 "1153","chic",23,22,1990-02-26,NA,25,11.375,27.511732229 "1154","chic",32.5,14.5,1990-02-27,NA,34,16.833333333,28.32753556 "1155","chic",24.5,12.625,1990-02-28,NA,31.5,19.666666667,30.244338768 "1156","chic",30.5,25.25,1990-03-01,NA,35,15.458333333,30.645833333 "1157","chic",39.5,28.25,1990-03-02,NA,44,13.666666667,27.999337121 "1158","chic",29,9,1990-03-03,NA,20.5,26.166666667,18.855729167 "1159","chic",30.5,22.625,1990-03-04,NA,33,16.041666667,29.03125 "1160","chic",33,26.625,1990-03-05,NA,24.5,22.041666667,20.694791667 "1161","chic",29,13.75,1990-03-06,NA,28.333333333,32.25,17.006167655 "1162","chic",29.5,21.75,1990-03-07,NA,41.5,24.291666667,26.784399704 "1163","chic",40.5,46.625,1990-03-08,NA,29,8.3636363636,31.005855331 "1164","chic",46,43.375,1990-03-09,NA,33,9.9583333333,27.461466165 "1165","chic",51,45.625,1990-03-10,NA,36,6.2916666667,29.761904762 "1166","chic",57.5,61.125,1990-03-11,NA,26.5,16.708333333,21.833333333 "1167","chic",70.5,56.625,1990-03-12,NA,26.857142857,25.875,16.840367965 "1168","chic",67,61.375,1990-03-13,NA,28.5,11.888888889,24.863121706 "1169","chic",65,55.75,1990-03-14,NA,27,20.833333333,25.15334145 "1170","chic",57.5,39.125,1990-03-15,NA,20.5,23.916666667,22.854166667 "1171","chic",51,35.75,1990-03-16,NA,28,26.625,21.169196429 "1172","chic",41,26.25,1990-03-17,NA,26,31.208333333,9.8567708333 "1173","chic",36,22.5,1990-03-18,NA,16.285714286,29.541666667,11.372395833 "1174","chic",26.5,11,1990-03-19,NA,27.5,21.80952381,18.555999373 "1175","chic",33,24.5,1990-03-20,NA,35,14.797979798,31.562405303 "1176","chic",47.5,34.5,1990-03-21,NA,44,20.302083333,31.395153986 "1177","chic",45,37.125,1990-03-22,NA,36,19.066666667,27.21875 "1178","chic",31,9.125,1990-03-23,NA,28,28.729739011,16.142992424 "1179","chic",31,15.375,1990-03-24,NA,25.625,24.614583333,20.203125 "1180","chic",34.5,22.375,1990-03-25,NA,26,22.265625,18.083333333 "1181","chic",33,20.5,1990-03-26,NA,19,22.970238095,22.181838768 "1182","chic",35.5,21.375,1990-03-27,NA,58,13.528679654,42.348958333 "1183","chic",41.5,25.75,1990-03-28,NA,41,16.592331581,41.567708333 "1184","chic",41.5,40.375,1990-03-29,NA,39,13.19047619,27.604166667 "1185","chic",41.5,35.75,1990-03-30,NA,38,19.544981061,24.70534832 "1186","chic",41.5,41.5,1990-03-31,NA,57,17.328125,29.140625 "1187","chic",48,43,1990-04-01,NA,34,14.958333333,27.00297619 "1188","chic",38,29.875,1990-04-02,NA,17.5,16.970238095,15.132142857 "1189","chic",41.5,27.25,1990-04-03,NA,27,21.916666667,23.171372106 "1190","chic",43,37,1990-04-04,NA,46,11.702922078,40.327380952 "1191","chic",38,16.625,1990-04-05,NA,29.625,18.047619048,26.120748299 "1192","chic",31,17.125,1990-04-06,NA,37.5,17.43452381,27.318452381 "1193","chic",33.5,16.5,1990-04-07,NA,23,18.202380952,26.913690476 "1194","chic",46,30.375,1990-04-08,NA,28,21.363095238,31.904761905 "1195","chic",51,44.125,1990-04-09,NA,36,17.65625,32.76889234 "1196","chic",41.5,22.25,1990-04-10,NA,23,20.047619048,23.508022774 "1197","chic",36,17.5,1990-04-11,NA,25.428571429,18.997929607,24.398809524 "1198","chic",35,23.625,1990-04-12,NA,28.5,18.875,28.168244949 "1199","chic",41.5,41.625,1990-04-13,NA,32,16.18452381,33.680555556 "1200","chic",48.5,36.375,1990-04-14,NA,32,21.642857143,23.944444444 "1201","chic",48.5,32.75,1990-04-15,NA,37,24.696428571,22.180555556 "1202","chic",48,39.875,1990-04-16,NA,NA,21.425465839,31.083333333 "1203","chic",39,20.375,1990-04-17,NA,25.75,26.27820911,21.002199793 "1204","chic",41.5,22.125,1990-04-18,NA,30,21.79684265,34.812770563 "1205","chic",49.5,45.75,1990-04-19,NA,40,18.980263158,31.670454545 "1206","chic",56,56.875,1990-04-20,NA,29.5,7.2409655562,32.649940068 "1207","chic",55.5,39.125,1990-04-21,NA,28,17.898809524,26.285714286 "1208","chic",55.5,44.75,1990-04-22,NA,95,24.69047619,43.869047619 "1209","chic",65.5,58.375,1990-04-23,NA,50.125,29.779761905,42.222222222 "1210","chic",76.5,56.875,1990-04-24,NA,41.5,29.375,25.39389234 "1211","chic",76.5,61,1990-04-25,NA,58,25.148809524,26.612012987 "1212","chic",75,57,1990-04-26,NA,53,31.321428571,20.835909561 "1213","chic",73.5,56.125,1990-04-27,NA,61,35.523809524,24.586734694 "1214","chic",61,48.75,1990-04-28,NA,26,24.946428571,17.800595238 "1215","chic",58.5,51,1990-04-29,NA,33.142857143,16.827380952,15.854166667 "1216","chic",55,31.25,1990-04-30,NA,47,15.791666667,21.783549784 "1217","chic",52,26,1990-05-01,NA,55,26.14699793,23.863671654 "1218","chic",54,33.625,1990-05-02,NA,61.5,23.875,34.251552795 "1219","chic",51.5,44.5,1990-05-03,NA,55,22.833333333,28.829710145 "1220","chic",46.5,41.625,1990-05-04,NA,21.5,33.770833333,17.542748918 "1221","chic",51,45.125,1990-05-05,NA,34.125,33.442708333,24.470238095 "1222","chic",52.5,44.5,1990-05-06,NA,26,24.765625,27.659863946 "1223","chic",62.5,48.875,1990-05-07,NA,49,34.387681159,24.443236715 "1224","chic",70.5,55.75,1990-05-08,NA,63,44.732142857,18.606709957 "1225","chic",62.5,56.875,1990-05-09,NA,80,30.650219298,24.555555556 "1226","chic",43.5,36.75,1990-05-10,NA,17,18.380208333,12.699404762 "1227","chic",49.5,36.25,1990-05-11,NA,32.25,24.359375,32.536616162 "1228","chic",50.5,48,1990-05-12,NA,26.5,27.28125,21.839209402 "1229","chic",54.5,43,1990-05-13,NA,33,43.682291667,14.629166667 "1230","chic",56.5,59.125,1990-05-14,NA,27.5,23.473214286,29.572619048 "1231","chic",55.5,54,1990-05-15,NA,51.5,15.544981061,27.200559947 "1232","chic",66.5,57.25,1990-05-16,NA,26.5,24.891098485,21.063888889 "1233","chic",56,41.625,1990-05-17,NA,71,28.255208333,11.229166667 "1234","chic",60.5,43.625,1990-05-18,NA,60,32.122509058,22.150793651 "1235","chic",62.5,63,1990-05-19,NA,25,27.859375,25.680555556 "1236","chic",54.5,46.125,1990-05-20,NA,17,21.114583333,12.557142857 "1237","chic",52.5,41.5,1990-05-21,NA,15,21.114583333,14.210921325 "1238","chic",52.5,40.75,1990-05-22,NA,18.5,22.942481884,23.106060606 "1239","chic",57,50.125,1990-05-23,NA,52.625,22.038949275,38.378586217 "1240","chic",61.5,50,1990-05-24,NA,47,30.995800395,40.011904762 "1241","chic",56.5,56.25,1990-05-25,NA,39,26.417798913,30.136128364 "1242","chic",59.5,51.375,1990-05-26,NA,46.5,39.312047101,19.386904762 "1243","chic",63,46,1990-05-27,NA,41,50.416666667,18.351190476 "1244","chic",62.5,44.25,1990-05-28,NA,28,40.807291667,14.223214286 "1245","chic",55,29.375,1990-05-29,NA,28.875,30.611639493,13.45626294 "1246","chic",53.5,33.375,1990-05-30,NA,41,30.234375,23.732648692 "1247","chic",57.5,41.125,1990-05-31,NA,68,28.593907828,39.108585859 "1248","chic",74,65.625,1990-06-01,NA,59,36.869791667,31.070449392 "1249","chic",74.5,55.625,1990-06-02,NA,85,30.505208333,15.027777778 "1250","chic",61,41.5,1990-06-03,NA,103,25.843005952,7.5723128019 "1251","chic",53,30.625,1990-06-04,NA,25.285714286,22.715476779,17.919570546 "1252","chic",53,51.375,1990-06-05,NA,38,14.011260705,34.449516908 "1253","chic",69,48.875,1990-06-06,NA,50,20.377840909,30.368686869 "1254","chic",65.5,53.875,1990-06-07,NA,46.5,23.644412879,32.475694444 "1255","chic",70,63.875,1990-06-08,NA,51,19.430027174,30.607076197 "1256","chic",72.5,55,1990-06-09,NA,33.5,32.380208333,20.135416667 "1257","chic",64.5,50.75,1990-06-10,NA,17.875,31.859375,15.989583333 "1258","chic",65.5,55.375,1990-06-11,NA,41.5,30.40625,32.868055556 "1259","chic",78,62.5,1990-06-12,NA,92,46.627840909,24.644625604 "1260","chic",81.5,69,1990-06-13,NA,60,48.722301136,23.75 "1261","chic",71,61.5,1990-06-14,NA,27,32.269927536,21.80626294 "1262","chic",71,57.875,1990-06-15,NA,40.5,35.695425725,29.458829365 "1263","chic",74,68.875,1990-06-16,NA,54.875,35.364583333,29.697916667 "1264","chic",78.5,71.375,1990-06-17,NA,37.5,41.71875,8.9300595238 "1265","chic",71,55.875,1990-06-18,NA,34,33.800951087,12.604861111 "1266","chic",63,52.875,1990-06-19,NA,31.5,19.328639657,20.47826087 "1267","chic",69,63.875,1990-06-20,NA,32,21.520833333,26.152777778 "1268","chic",72,62.75,1990-06-21,NA,41.5,19.436079545,26.902942468 "1269","chic",66.5,57.125,1990-06-22,NA,24.571428571,20.28125,18.977958937 "1270","chic",65,54.875,1990-06-23,NA,28.5,18.979166667,9.3333333333 "1271","chic",64,45.75,1990-06-24,NA,27,23.25,18.135416667 "1272","chic",69.5,58.5,1990-06-25,NA,37,23.520833333,30.632841615 "1273","chic",75.5,69.375,1990-06-26,NA,42,29.933823529,29.974508282 "1274","chic",74.5,55.625,1990-06-27,NA,43,30.729166667,32.912563131 "1275","chic",72.5,68.125,1990-06-28,NA,52.375,29.348958333,32.902928744 "1276","chic",73.5,69.125,1990-06-29,NA,21.5,33.535416667,27.320350242 "1277","chic",80,70.375,1990-06-30,NA,40,35.328125,24.381944444 "1278","chic",66.5,55.5,1990-07-01,NA,18,20.713541667,11.256944444 "1279","chic",69.5,61.25,1990-07-02,NA,36,29.028532609,25.829861111 "1280","chic",77,71.75,1990-07-03,NA,51.5,47.402297431,28.624303233 "1281","chic",86.5,73.375,1990-07-04,NA,60.625,52.229166667,12.816789216 "1282","chic",73.5,55.25,1990-07-05,NA,33,29.026041667,17.532381826 "1283","chic",63,50.125,1990-07-06,NA,16,21.266757246,11.829861111 "1284","chic",67,57.375,1990-07-07,NA,28,31.729166667,19.225694444 "1285","chic",83.5,70.625,1990-07-08,NA,53,45.25,14.961805556 "1286","chic",81,64,1990-07-09,NA,38.5,37.369791667,22.283251996 "1287","chic",70.5,61.625,1990-07-10,NA,37.5,23.775588768,27.036858974 "1288","chic",67,54.875,1990-07-11,NA,17,28.307291667,15.128517316 "1289","chic",66,54.625,1990-07-12,NA,18,24.462719298,11.504816017 "1290","chic",62.5,53.625,1990-07-13,NA,13,22.973958333,13.714285714 "1291","chic",62,58.75,1990-07-14,NA,28,17.208026961,15.12202381 "1292","chic",65,62.125,1990-07-15,NA,29,16.067708333,22.458333333 "1293","chic",70.5,68.5,1990-07-16,NA,32.25,27.108695652,25.846014493 "1294","chic",78,63.75,1990-07-17,NA,41,41.421875,25.167831263 "1295","chic",78.5,67.625,1990-07-18,NA,47,26.380328218,29.241071429 "1296","chic",77.5,68,1990-07-19,NA,47.5,18.490131579,26.910714286 "1297","chic",68,63.25,1990-07-20,NA,20,19.552083333,22.897997835 "1298","chic",69.5,57.875,1990-07-21,NA,24,23.624255952,21.12202381 "1299","chic",68.5,61,1990-07-22,NA,15.375,29.375,12.035714286 "1300","chic",68.5,57.75,1990-07-23,NA,36.5,20.211091897,26.303258145 "1301","chic",69.5,61.5,1990-07-24,NA,48,18.619791667,34.357482993 "1302","chic",72,63,1990-07-25,NA,37.5,24.883119824,32.579099472 "1303","chic",75.5,62.5,1990-07-26,NA,51,31.262038867,30.907468205 "1304","chic",74.5,65.75,1990-07-27,NA,74,47.541666667,30.035714286 "1305","chic",79,70.5,1990-07-28,NA,87.75,51.083333333,21.339285714 "1306","chic",79.5,70.375,1990-07-29,NA,55,33.15625,13.55952381 "1307","chic",69.5,58.125,1990-07-30,NA,23,18.575892857,10.316249227 "1308","chic",62,49.625,1990-07-31,NA,14.5,18.905570652,11.766810183 "1309","chic",63.5,57.625,1990-08-01,NA,42,23.130952381,22.557065217 "1310","chic",69,57.375,1990-08-02,NA,38,31.162202381,30.43452381 "1311","chic",75.5,69.375,1990-08-03,NA,66,38.269668737,30.567176871 "1312","chic",76.5,66,1990-08-04,NA,19,28.895833333,28.666666667 "1313","chic",68.5,57.75,1990-08-05,NA,13,20.045138889,11.267857143 "1314","chic",61,49.625,1990-08-06,NA,9.5,17.3671875,10.600297619 "1315","chic",63.5,54.5,1990-08-07,NA,38,19.753787879,24.015847248 "1316","chic",69,56,1990-08-08,NA,48.5,21.449016563,36.179112554 "1317","chic",69,56.5,1990-08-09,NA,55.857142857,33.791666667,38.496212121 "1318","chic",72,63.625,1990-08-10,NA,45,38.145833333,42.395833333 "1319","chic",73,65.375,1990-08-11,NA,60.5,48.145833333,21.114583333 "1320","chic",68.5,64.25,1990-08-12,NA,29,31.229166667,22.8125 "1321","chic",63,51.375,1990-08-13,NA,20.5,17.196056548,13.273552106 "1322","chic",65.5,62.125,1990-08-14,NA,26,17.183423913,21.779795957 "1323","chic",74.5,66.75,1990-08-15,NA,54.285714286,28.410714286,20.538690476 "1324","chic",73,68.625,1990-08-16,NA,55,30.964285714,23.191558442 "1325","chic",72,71,1990-08-17,NA,40.5,15.083333333,22.753364389 "1326","chic",80.5,75.25,1990-08-18,NA,25,35.161458333,18.988095238 "1327","chic",75.5,68.5,1990-08-19,NA,18.5,31.4375,7.7351190476 "1328","chic",71.5,69.375,1990-08-20,NA,16,12.140625,13.810606061 "1329","chic",68,66.25,1990-08-21,NA,18.5,9.8333333333,11.780109771 "1330","chic",69,63.25,1990-08-22,NA,21.5,24.931418219,13.732638889 "1331","chic",70.5,64.25,1990-08-23,NA,39,24.151721014,20.280769653 "1332","chic",75,67.125,1990-08-24,NA,28,25.918025362,28.451388889 "1333","chic",76.5,69.75,1990-08-25,NA,50,29.749773551,25.069444444 "1334","chic",78.5,73.25,1990-08-26,NA,82,42.119047619,18.766455314 "1335","chic",82.5,75.875,1990-08-27,NA,90.285714286,36.309782609,22.996682665 "1336","chic",82.5,70.5,1990-08-28,NA,53.5,33.404761905,22.595833333 "1337","chic",75.5,57.875,1990-08-29,NA,36,29.486380694,21.707476551 "1338","chic",69,53.875,1990-08-30,NA,25.5,40.916666667,30.166666667 "1339","chic",70,60.75,1990-08-31,NA,58,50.638888889,46.194444444 "1340","chic",78,69.125,1990-09-01,NA,64,39.880208333,34.777777778 "1341","chic",73,61.25,1990-09-02,NA,34.166666667,24.241071429,21.4375 "1342","chic",71,60.875,1990-09-03,NA,23.5,22.857142857,23.027777778 "1343","chic",79,73.375,1990-09-04,NA,84,28.56547619,29.381120993 "1344","chic",77,69.125,1990-09-05,NA,52,30.892857143,25.943181818 "1345","chic",83,70.5,1990-09-06,NA,56.5,30.673809524,31.047619048 "1346","chic",72,63.25,1990-09-07,NA,13.5,28.578125,14.495941558 "1347","chic",72,64.625,1990-09-08,NA,41,19.744791667,17.431547619 "1348","chic",73,65.75,1990-09-09,NA,43,22.697916667,26.473214286 "1349","chic",75.5,68.375,1990-09-10,NA,69,36.173611111,34.218795094 "1350","chic",74,67.875,1990-09-11,NA,58.5,30.372282609,22.1251294 "1351","chic",74.5,64.5,1990-09-12,NA,94,28.381068841,42.130952381 "1352","chic",74.5,65.625,1990-09-13,NA,69.5,25.139039855,39.066259398 "1353","chic",65.5,54.625,1990-09-14,NA,38.625,15.286458333,15.576441103 "1354","chic",63,54,1990-09-15,NA,23.5,15.296875,18.491071429 "1355","chic",57,47.5,1990-09-16,NA,10.5,20.364583333,11.820833333 "1356","chic",56,46.25,1990-09-17,NA,19,17.75,17.892857143 "1357","chic",55.5,49.875,1990-09-18,NA,17,11.896173007,28.154373706 "1358","chic",57.5,50.5,1990-09-19,NA,28,5.5066287879,19.921432605 "1359","chic",59.5,50.75,1990-09-20,NA,37.428571429,17.282217556,30.3374069 "1360","chic",62,46.625,1990-09-21,NA,26,10.553571429,29.527777778 "1361","chic",56.5,42.25,1990-09-22,NA,21,9.0476190476,17.84375 "1362","chic",50.5,35.25,1990-09-23,NA,17.5,15.327380952,16.111111111 "1363","chic",53.5,38.5,1990-09-24,NA,34,16.897959184,24.854437229 "1364","chic",67,51.75,1990-09-25,NA,42,20.964285714,25.738095238 "1365","chic",67.5,52.625,1990-09-26,NA,46.875,14.678571429,31.351731602 "1366","chic",65.5,51.75,1990-09-27,NA,45.5,19.600749341,40.898026404 "1367","chic",61,54.125,1990-09-28,NA,48,18.181590752,26.439217822 "1368","chic",58.5,51.125,1990-09-29,NA,12.5,15.273809524,10.381944444 "1369","chic",52.5,40.25,1990-09-30,NA,17,11.744047619,14.17797619 "1370","chic",57,38.25,1990-10-01,NA,43.5,9.4800724638,26.854813665 "1371","chic",56.5,41.125,1990-10-02,NA,47.75,15.467132505,34.520525799 "1372","chic",67,58.125,1990-10-03,NA,28.5,21.656832298,21.453486731 "1373","chic",57.5,40.5,1990-10-04,NA,32,10.267857143,18.399659864 "1374","chic",68.5,55,1990-10-05,NA,29,24.345238095,21.010358689 "1375","chic",75,56.375,1990-10-06,NA,39,34.946428571,15.423136646 "1376","chic",55,48.5,1990-10-07,NA,5.5,20.238095238,6.7261719905 "1377","chic",50.5,46.75,1990-10-08,NA,8,13.023809524,9.7261904762 "1378","chic",47,43.5,1990-10-09,NA,NA,20.128364389,10.336309524 "1379","chic",41.5,35.25,1990-10-10,NA,10,11.244047619,11.947360248 "1380","chic",46.5,35.875,1990-10-11,NA,46.5,9.4216485507,28.239130435 "1381","chic",48.5,42.125,1990-10-12,NA,65,9.6262939959,41.480590062 "1382","chic",52,45.375,1990-10-13,NA,50.5,14.839285714,30.982142857 "1383","chic",53.5,48.5,1990-10-14,NA,25.857142857,18.321428571,20.589285714 "1384","chic",51,40.625,1990-10-15,NA,30.5,5.0195578231,21.789440994 "1385","chic",56,52.25,1990-10-16,NA,27,13.244047619,26.62797619 "1386","chic",65,55.375,1990-10-17,NA,45,34.672619048,17.56547619 "1387","chic",43,28.875,1990-10-18,NA,16.5,13.55952381,8.3272515528 "1388","chic",40.5,32.875,1990-10-19,NA,21,7.9285714286,21.467885375 "1389","chic",54.5,36,1990-10-20,NA,26.625,13.875,21.349914966 "1390","chic",49,37,1990-10-21,NA,25,15.553571429,13.488095238 "1391","chic",43.5,33.875,1990-10-22,NA,47,8.4047619048,24.833721532 "1392","chic",46.5,37.625,1990-10-23,NA,49,6.7343073593,32.38666949 "1393","chic",46.5,33.5,1990-10-24,NA,36,9.0613354037,21.383928571 "1394","chic",40,31.75,1990-10-25,NA,22,9.7797619048,19.25 "1395","chic",41,31.125,1990-10-26,NA,45.625,6.2313664596,27.047675121 "1396","chic",52.5,33,1990-10-27,NA,51,13.636904762,14.878472222 "1397","chic",41,28.625,1990-10-28,NA,17,12.916666667,14.854166667 "1398","chic",45.5,30.625,1990-10-29,NA,29.5,7.7142857143,24.482638889 "1399","chic",60,48.875,1990-10-30,NA,58,16.767339545,31.951388889 "1400","chic",58,49.625,1990-10-31,NA,63.5,10.285714286,41.683716868 "1401","chic",60,44.125,1990-11-01,NA,60.428571429,23.041666667,29.623188406 "1402","chic",65.5,52.375,1990-11-02,NA,49.5,26.541666667,27.980676329 "1403","chic",59.5,51.125,1990-11-03,NA,44,19.208333333,22.263888889 "1404","chic",42,38.5,1990-11-04,NA,4,19.666666667,7.35 "1405","chic",39.5,32.625,1990-11-05,NA,9,16.333333333,10.201994434 "1406","chic",36.5,35,1990-11-06,NA,24,5.25,18.553571429 "1407","chic",34,20.375,1990-11-07,NA,26.714285714,10.291666667,14.727335791 "1408","chic",31.5,27,1990-11-08,NA,33.5,3.3333333333,23.841334541 "1409","chic",37,33,1990-11-09,NA,29,2.125,19.180555556 "1410","chic",40.5,22,1990-11-10,NA,27,7.75,17.361111111 "1411","chic",37.5,28.875,1990-11-11,NA,20,7.125,20.291666667 "1412","chic",38,17.125,1990-11-12,NA,NA,9.9583333333,23.079861111 "1413","chic",38,29.875,1990-11-13,NA,43.25,7.8333333333,27.085638999 "1414","chic",51,38.5,1990-11-14,NA,40.5,5.9166666667,30.977225673 "1415","chic",61,49.5,1990-11-15,NA,47,26.041666667,25.678075397 "1416","chic",47.5,32,1990-11-16,NA,38,13.375,19.394570707 "1417","chic",42,29.625,1990-11-17,NA,25,10.208333333,23.4875 "1418","chic",45.5,33.125,1990-11-18,NA,31,8.125,26.533333333 "1419","chic",44,38.5,1990-11-19,NA,58.571428571,3.0833333333,27.663812033 "1420","chic",44.5,42.25,1990-11-20,NA,48,6.2083333333,32.360119048 "1421","chic",59.5,53.25,1990-11-21,NA,35,11.041666667,22.336805556 "1422","chic",43.5,32.25,1990-11-22,NA,27.5,8.1666666667,16.6875 "1423","chic",42,17.375,1990-11-23,NA,18,15.416666667,11.638636364 "1424","chic",42,30,1990-11-24,NA,NA,3.8333333333,20.591666667 "1425","chic",44.5,28.625,1990-11-25,NA,26.625,11.958333333,14.2125 "1426","chic",53,58.5,1990-11-26,NA,NA,8,19.895833333 "1427","chic",61,57.625,1990-11-27,NA,12,6.5,22.154761905 "1428","chic",39.5,22.125,1990-11-28,NA,17,8.9545454545,15.066287879 "1429","chic",31.5,23.625,1990-11-29,NA,31,5.25,21.758333333 "1430","chic",41,29.875,1990-11-30,NA,21.5,9.625,21.858333333 "1431","chic",40.5,28.125,1990-12-01,NA,19,8.8333333333,20.125 "1432","chic",33,24.625,1990-12-02,NA,14,19.25,11.841666667 "1433","chic",33,25.75,1990-12-03,NA,24,14.875,12.84469697 "1434","chic",22,13.25,1990-12-04,NA,24,18.708333333,19.591501976 "1435","chic",28.5,29.375,1990-12-05,NA,27,5.5416666667,27.125 "1436","chic",29.5,16.125,1990-12-06,NA,30.5,8.125,24.715277778 "1437","chic",31,27.75,1990-12-07,NA,28.857142857,4.2173913043,24.773737374 "1438","chic",37,29.125,1990-12-08,NA,32.5,3.75,24.658333333 "1439","chic",43,31,1990-12-09,NA,28,6.4166666667,24 "1440","chic",39.5,29.75,1990-12-10,NA,24.5,11.416666667,27.716765873 "1441","chic",44,40.375,1990-12-11,NA,33,7.9565217391,31.505736094 "1442","chic",45.5,35.875,1990-12-12,NA,35,14.294117647,23.839869281 "1443","chic",30.5,18.25,1990-12-13,NA,16.571428571,15.208333333,15.821759259 "1444","chic",30.5,26.375,1990-12-14,NA,19.5,11.217391304,20.389996908 "1445","chic",39.5,32,1990-12-15,NA,18,4,14.595238095 "1446","chic",34.5,28.875,1990-12-16,NA,22.5,11.75,13.523809524 "1447","chic",36.5,36.25,1990-12-17,NA,16,3.125,14.784632035 "1448","chic",34,27,1990-12-18,NA,24.5,5.375,12.472363946 "1449","chic",31,27,1990-12-19,NA,28.333333333,6.5,20.453204404 "1450","chic",40,42.25,1990-12-20,NA,25,6.6666666667,20.804606625 "1451","chic",38,38.625,1990-12-21,NA,29.5,3.4166666667,19.880952381 "1452","chic",17,0.75,1990-12-22,NA,24,9.8333333333,14.386904762 "1453","chic",7,-3.75,1990-12-23,NA,40,17.416666667,12.949404762 "1454","chic",8,7.75,1990-12-24,NA,NA,14.416666667,12.645833333 "1455","chic",14.5,-7.875,1990-12-25,NA,20.428571429,13.875,11.725694444 "1456","chic",3.5,-6.5,1990-12-26,NA,NA,11.833333333,21.79272343 "1457","chic",17.5,16.75,1990-12-27,NA,18,11.458333333,26.708694084 "1458","chic",31,30.875,1990-12-28,NA,28,2.7916666667,22.010743084 "1459","chic",33.5,30,1990-12-29,NA,12.5,3.625,12.951388889 "1460","chic",15,2.625,1990-12-30,NA,NA,12.104166667,10.236111111 "1461","chic",8,5,1990-12-31,NA,26.25,11.773284314,17.360974946 "1462","chic",20.5,19,1991-01-01,NA,NA,11.076923077,18.966666667 "1463","chic",16,6.625,1991-01-02,NA,NA,9.875,24.272878788 "1464","chic",6.5,0.5,1991-01-03,NA,NA,9.25,23.015530303 "1465","chic",14,11.5,1991-01-04,NA,43,6.875,26.783080808 "1466","chic",25.5,21.625,1991-01-05,NA,NA,3.9583333333,24.25 "1467","chic",20.5,13.625,1991-01-06,NA,27,14.625,22.632738095 "1468","chic",21.5,17.5,1991-01-07,NA,NA,22,19.851536931 "1469","chic",25.5,27.375,1991-01-08,NA,28.5,11.291666667,24.282738095 "1470","chic",24,18,1991-01-09,NA,37,4.7916666667,22.935515873 "1471","chic",22,26.125,1991-01-10,NA,35.5,10.125,23.478535354 "1472","chic",29.5,26.625,1991-01-11,NA,24,8.625,17.697718254 "1473","chic",25.5,22,1991-01-12,NA,23,9.1666666667,22.708333333 "1474","chic",24.5,26.875,1991-01-13,NA,33,10.708333333,20.944444444 "1475","chic",31.5,27.125,1991-01-14,NA,44.5,7.7083333333,27.758152174 "1476","chic",30.5,31.625,1991-01-15,NA,46,4.6666666667,30.881944444 "1477","chic",31,25.75,1991-01-16,NA,31.5,10.958333333,21.731129227 "1478","chic",26,18.75,1991-01-17,NA,34,12.333333333,19.332930757 "1479","chic",21.5,24,1991-01-18,NA,33.428571429,9.4166666667,25.65530303 "1480","chic",36.5,29.625,1991-01-19,NA,19,14.5,24.072916667 "1481","chic",26.5,18.625,1991-01-20,NA,25,18.791666667,17.966666667 "1482","chic",10.5,-1.5,1991-01-21,NA,27,20.291666667,19.875 "1483","chic",11,12,1991-01-22,NA,55,7.875,26.291666667 "1484","chic",21.5,5.75,1991-01-23,NA,34,14.166666667,15.03030303 "1485","chic",9,-5.75,1991-01-24,NA,34.75,13.916666667,26.574621212 "1486","chic",7.5,-2.375,1991-01-25,NA,55,9.9166666667,32.636580087 "1487","chic",15.5,9.25,1991-01-26,NA,41,12.541666667,22.191666667 "1488","chic",22,17,1991-01-27,NA,25,12.708333333,23.008333333 "1489","chic",25.5,19.75,1991-01-28,NA,54,12.208333333,31.426086957 "1490","chic",19,12.625,1991-01-29,NA,12,20.416666667,23.55 "1491","chic",15,6.625,1991-01-30,NA,42.125,11.958333333,26.264492754 "1492","chic",17,8.875,1991-01-31,NA,40,14.666666667,21.780032468 "1493","chic",29,27.5,1991-02-01,NA,52.5,7.9166666667,30.486111111 "1494","chic",39,30.5,1991-02-02,NA,NA,12.041666667,29.597222222 "1495","chic",42.5,30.125,1991-02-03,NA,39,16.666666667,31.625 "1496","chic",44,38,1991-02-04,NA,32,12.583333333,28.055555556 "1497","chic",39,34.375,1991-02-05,NA,47.25,13.041666667,28.597619048 "1498","chic",35.5,32.875,1991-02-06,NA,39,15.333333333,18.517857143 "1499","chic",32.5,29.5,1991-02-07,NA,28,8.3333333333,25.013888889 "1500","chic",34,31,1991-02-08,NA,42,6.5833333333,24.444444444 "1501","chic",37.5,30.125,1991-02-09,NA,35.5,8.8333333333,23.888888889 "1502","chic",30,9.25,1991-02-10,NA,33,18.416666667,15.28125 "1503","chic",22,5.125,1991-02-11,NA,24,18.375,16.89160628 "1504","chic",24.5,17.875,1991-02-12,NA,35,8,27.715277778 "1505","chic",32.5,26.75,1991-02-13,NA,37,8.4583333333,23.506944444 "1506","chic",22,13.625,1991-02-14,NA,35,16.083333333,17.283610562 "1507","chic",8.5,-6.25,1991-02-15,NA,39.5,22.166666667,12.237938596 "1508","chic",16,17.125,1991-02-16,NA,23,12.583333333,16.364583333 "1509","chic",35,29.25,1991-02-17,NA,29.375,15.5,18.869565217 "1510","chic",38.5,38.375,1991-02-18,NA,39,8.2916666667,18.037121212 "1511","chic",35.5,23.625,1991-02-19,NA,NA,10.875,14.559027778 "1512","chic",36.5,30.375,1991-02-20,NA,36.5,16.375,18.834575012 "1513","chic",47,40.375,1991-02-21,NA,46,10.666666667,23.642512077 "1514","chic",34.5,14.5,1991-02-22,NA,27,19.083333333,14.617739899 "1515","chic",26.5,18.5,1991-02-23,NA,22.875,20.833333333,16.819444444 "1516","chic",28.5,13,1991-02-24,NA,26,14.958333333,14.336805556 "1517","chic",21,7.5,1991-02-25,NA,25,17.416666667,18.958333333 "1518","chic",19,16.125,1991-02-26,NA,41,13.958333333,25.236111111 "1519","chic",23.5,19.5,1991-02-27,NA,37,14.75,22.263888889 "1520","chic",39,30.625,1991-02-28,NA,40,13.333333333,25.984491656 "1521","chic",48,46.5,1991-03-01,NA,29.571428571,21.5,25.921085859 "1522","chic",37.5,22.25,1991-03-02,NA,26,17.375,11.836805556 "1523","chic",25.5,18.5,1991-03-03,NA,15,21.375,9.8402777778 "1524","chic",31,20.75,1991-03-04,NA,30,10.666666667,25.638888889 "1525","chic",39,31.75,1991-03-05,NA,53,6.875,27.310606061 "1526","chic",39.5,20.125,1991-03-06,NA,35,15.166666667,14.382936508 "1527","chic",28,11,1991-03-07,NA,22.142857143,17.583333333,20.152777778 "1528","chic",32.5,28,1991-03-08,NA,NA,12.208333333,31.350694444 "1529","chic",33.5,23,1991-03-09,NA,38.5,18.708333333,13.302083333 "1530","chic",34.5,23.25,1991-03-10,NA,40,20.333333333,17.743055556 "1531","chic",40,28.375,1991-03-11,NA,57.5,17.958333333,18.722222222 "1532","chic",32,24.5,1991-03-12,NA,33,16.208333333,15.513573232 "1533","chic",32.5,23.5,1991-03-13,NA,15,25.666666667,12.434027778 "1534","chic",34.5,26.5,1991-03-14,NA,11,26.75,13.8125 "1535","chic",34,26.5,1991-03-15,NA,25,17,23.822285354 "1536","chic",39,28.75,1991-03-16,NA,26,22.5,29.993055556 "1537","chic",39,39.25,1991-03-17,NA,33.5,10.5,25.409722222 "1538","chic",42.5,35.875,1991-03-18,NA,51,15.073369565,24.676932367 "1539","chic",44,38,1991-03-19,NA,43.714285714,12.916666667,28.777503294 "1540","chic",47.5,44.875,1991-03-20,NA,33,18.652173913,32.847222222 "1541","chic",60,51.625,1991-03-21,NA,63,25.043478261,29.568181818 "1542","chic",55,55.25,1991-03-22,NA,17,18.416666667,21.381944444 "1543","chic",47,32.875,1991-03-23,NA,21,21.416666667,8.8993055556 "1544","chic",45,34.5,1991-03-24,NA,21,17.75,13.138888889 "1545","chic",49,39,1991-03-25,NA,40.571428571,9.375,36.229468599 "1546","chic",63,63.5,1991-03-26,NA,31,22.115136876,25.243055556 "1547","chic",56,43.25,1991-03-27,NA,72,15.686507937,15.28125 "1548","chic",42,29.625,1991-03-28,NA,28,24.657540496,10.428571429 "1549","chic",30.5,17.875,1991-03-29,NA,14.5,28.520833333,10.55 "1550","chic",33,17.375,1991-03-30,NA,21,25.583333333,17.541666667 "1551","chic",43.5,33.5,1991-03-31,NA,26.285714286,23.48218599,17.666666667 "1552","chic",41,23.875,1991-04-01,NA,NA,23.717617754,19.654166667 "1553","chic",39,24,1991-04-02,NA,28,19.825786056,26.025 "1554","chic",51,34.875,1991-04-03,NA,48,17.964285714,22.7625 "1555","chic",52.5,52.25,1991-04-04,NA,35,15.068877551,27.94469697 "1556","chic",60,50.375,1991-04-05,NA,41,25.173817254,27.29699793 "1557","chic",70,47.25,1991-04-06,NA,33.75,38.664855072,14.689236111 "1558","chic",69,60.25,1991-04-07,NA,28,26.25,11.395833333 "1559","chic",65.5,58.5,1991-04-08,NA,44.5,15.412681159,16.85952381 "1560","chic",44,38.125,1991-04-09,NA,13,10.478050595,12.316512367 "1561","chic",43.5,28.875,1991-04-10,NA,18,28.578125,14.170138889 "1562","chic",38,28.625,1991-04-11,NA,15,23.380661232,16.972222222 "1563","chic",44,32.375,1991-04-12,NA,27.285714286,19.689548547,15.323232323 "1564","chic",45.5,44.125,1991-04-13,NA,25,12.964285714,15.423611111 "1565","chic",58.5,50.125,1991-04-14,NA,12.5,18.380952381,12.070833333 "1566","chic",53,38.875,1991-04-15,NA,27,26.592391304,14.141304348 "1567","chic",53,42,1991-04-16,NA,NA,19.709415584,28.335366083 "1568","chic",47.5,33.125,1991-04-17,NA,17,20.668290043,20.884848485 "1569","chic",46,37.5,1991-04-18,NA,30,25.570887446,15.742261905 "1570","chic",46.5,36.625,1991-04-19,NA,22,25.974637681,12.787892512 "1571","chic",40.5,31.625,1991-04-20,NA,14,30.613095238,9.4513888889 "1572","chic",44.5,20.375,1991-04-21,NA,15,30.366718427,11.857638889 "1573","chic",48,30.625,1991-04-22,NA,45.5,23.068027211,29.742559524 "1574","chic",50,38.5,1991-04-23,NA,32,20.032467532,19.018217893 "1575","chic",50.5,28.375,1991-04-24,NA,35.375,18.232142857,24.825126263 "1576","chic",53.5,37.875,1991-04-25,NA,NA,26.071428571,29.50356241 "1577","chic",59.5,47.875,1991-04-26,NA,72.5,27.841450216,28.106944444 "1578","chic",64.5,61,1991-04-27,NA,40,12.005208333,19.673611111 "1579","chic",64.5,55.875,1991-04-28,NA,36,15.14673913,17.902777778 "1580","chic",64,55.5,1991-04-29,NA,20,20.642857143,16.036706349 "1581","chic",57.5,39.625,1991-04-30,NA,36.857142857,24.451086957,12.871527778 "1582","chic",52.5,34.875,1991-05-01,NA,42,21.166925466,16.790277778 "1583","chic",55,35.125,1991-05-02,NA,59.5,25.637445887,20.215694078 "1584","chic",46.5,37.375,1991-05-03,NA,9,21.464803313,15.829298942 "1585","chic",52,41,1991-05-04,NA,29.5,16.595238095,18.003472222 "1586","chic",56,51.25,1991-05-05,NA,26,20.005952381,17.575694444 "1587","chic",45,35.5,1991-05-06,NA,22.125,19.409090909,13.460245841 "1588","chic",53,38.375,1991-05-07,NA,27,26.047619048,17.327525253 "1589","chic",55,51,1991-05-08,NA,47,19.06547619,24.847826087 "1590","chic",62,52.375,1991-05-09,NA,46,30.333333333,28.125 "1591","chic",65,55,1991-05-10,NA,71,29.405773574,30.761363636 "1592","chic",70.5,64.75,1991-05-11,NA,59,31.30952381,30.571710526 "1593","chic",74.5,62.75,1991-05-12,NA,45,28.630952381,24.020833333 "1594","chic",76,64.5,1991-05-13,NA,80,32.159632035,38.796428571 "1595","chic",74,56.375,1991-05-14,NA,70,22.949534161,39.286411227 "1596","chic",72.5,57.25,1991-05-15,NA,85,35.129464286,38.959410279 "1597","chic",73.5,65.5,1991-05-16,NA,88.5,22.697916667,48.2125 "1598","chic",60,46.375,1991-05-17,NA,32,16.150094697,17.854166667 "1599","chic",50,44.25,1991-05-18,NA,24.375,17.994047619,10.1875 "1600","chic",54.5,38.625,1991-05-19,NA,16,28.80952381,12 "1601","chic",60.5,53,1991-05-20,NA,42,29.74534632,30.895959596 "1602","chic",68.5,62.875,1991-05-21,NA,93,35.150094697,31.149305556 "1603","chic",74.5,66.875,1991-05-22,NA,63,13.309103261,31.309343434 "1604","chic",74,67.5,1991-05-23,NA,37,18.110795455,21.819234007 "1605","chic",77.5,64.5,1991-05-24,NA,34.714285714,28.010416667,20.449179293 "1606","chic",67,58.625,1991-05-25,NA,26,15.097346547,21.246527778 "1607","chic",76,67.75,1991-05-26,NA,29.5,28.551242236,14.138888889 "1608","chic",77.5,69.375,1991-05-27,NA,NA,32.851190476,19.725694444 "1609","chic",80.5,67.875,1991-05-28,NA,98,28.021609731,30.292717548 "1610","chic",79,67.375,1991-05-29,NA,44,29.354166667,30.871162281 "1611","chic",77.5,66.375,1991-05-30,NA,36.625,30.459918478,20.756944444 "1612","chic",77.5,67.75,1991-05-31,NA,48,25.964900362,26.200441919 "1613","chic",74.5,66.125,1991-06-01,NA,41,34.020833333,29.454861111 "1614","chic",72.5,63.25,1991-06-02,NA,48,38.464285714,23.7625 "1615","chic",69,56.5,1991-06-03,NA,31.5,35.605113636,18.15625 "1616","chic",61.5,48.5,1991-06-04,NA,16,32.062458827,8.5797238691 "1617","chic",61,46.625,1991-06-05,NA,22.571428571,25.829319005,12.708685588 "1618","chic",62,45.125,1991-06-06,NA,26,27.251132246,16.98547619 "1619","chic",65.5,48.25,1991-06-07,NA,45,29.036458333,20.821212121 "1620","chic",67.5,49.125,1991-06-08,NA,48,33.796875,25.15 "1621","chic",72.5,53.875,1991-06-09,NA,59.5,48.114583333,29.991666667 "1622","chic",75,59.875,1991-06-10,NA,86,42.666666667,24.857142857 "1623","chic",73,60.75,1991-06-11,NA,38.125,25.739583333,29.586666667 "1624","chic",71.5,58.375,1991-06-12,NA,25,22.578125,27.814285714 "1625","chic",73.5,64.875,1991-06-13,NA,52.5,41.733469203,15.866666667 "1626","chic",83,65.375,1991-06-14,NA,42,42.765625,17.29384058 "1627","chic",77.5,65.75,1991-06-15,NA,33.5,38.135416667,11.425 "1628","chic",69.5,53.5,1991-06-16,NA,21,33.068161232,10.5125 "1629","chic",69,50.75,1991-06-17,NA,30.5,28.215353261,21.923484848 "1630","chic",71,55.75,1991-06-18,NA,33,45.109375,23.51010101 "1631","chic",72.5,58.125,1991-06-19,NA,43,51.90625,30.14229249 "1632","chic",78.5,60.25,1991-06-20,NA,60,63.104166667,25.173611111 "1633","chic",78,62,1991-06-21,NA,85,45.833333333,39.733333333 "1634","chic",64.5,56.25,1991-06-22,NA,18,21.461458333,6.8041666667 "1635","chic",68,53.125,1991-06-23,NA,16.625,31.890625,6.3854166667 "1636","chic",69,50,1991-06-24,NA,33,40.296195652,19.47172619 "1637","chic",71.5,53.875,1991-06-25,NA,52.5,53.871150362,25.473214286 "1638","chic",78.5,66.625,1991-06-26,NA,96,49.678125,28.889583333 "1639","chic",81.5,62.625,1991-06-27,NA,95,48.6875,19.607142857 "1640","chic",79.5,65.125,1991-06-28,NA,49,43.088541667,23.197916667 "1641","chic",84,69.125,1991-06-29,NA,51.5,42.911458333,20.484953704 "1642","chic",74,64.125,1991-06-30,NA,NA,34.161458333,11.186011905 "1643","chic",81,69,1991-07-01,NA,69,31.784352649,25.539069264 "1644","chic",82,61.75,1991-07-02,NA,34,31.356311275,31.44692029 "1645","chic",78.5,66.25,1991-07-03,NA,61.5,24.138813406,28.375 "1646","chic",73,61.25,1991-07-04,NA,NA,24.993432971,17.591666667 "1647","chic",75.5,63.375,1991-07-05,NA,35.625,31.390625,24.544318182 "1648","chic",81,69.625,1991-07-06,NA,32,40.609375,25.0375 "1649","chic",80,68.125,1991-07-07,NA,37.5,39.677083333,16.225 "1650","chic",71,56.625,1991-07-08,NA,NA,30.946331522,11.485615079 "1651","chic",71.5,55,1991-07-09,NA,38,23.967844203,21.376578283 "1652","chic",70.5,55.5,1991-07-10,NA,22,35.494791667,25.70959596 "1653","chic",76,64.375,1991-07-11,NA,44.5,42.216032609,22.236476608 "1654","chic",79,65.125,1991-07-12,NA,58,34.711730072,18.619633838 "1655","chic",72,59.875,1991-07-13,NA,22.5,31.864583333,12.197916667 "1656","chic",69.5,54.75,1991-07-14,NA,NA,24.973958333,9.1633454106 "1657","chic",70.5,54.125,1991-07-15,NA,50.5,31.052083333,24.788194444 "1658","chic",76,58.75,1991-07-16,NA,57,40.536458333,36.470328283 "1659","chic",78.5,66.25,1991-07-17,NA,83,50.395833333,32.15625 "1660","chic",83,63.625,1991-07-18,NA,76,52.911458333,26.986111111 "1661","chic",85.5,65.5,1991-07-19,NA,85.5,58.045504386,27.463284157 "1662","chic",85,65.25,1991-07-20,NA,49,52.785714286,16.694444444 "1663","chic",83,71.75,1991-07-21,NA,54,48.271303258,22.246527778 "1664","chic",88,71.25,1991-07-22,NA,70,34.857807669,24.551225571 "1665","chic",74.5,51.625,1991-07-23,NA,30,31.074281417,19.223007246 "1666","chic",70.5,53.125,1991-07-24,NA,51,25.519701087,26.802380952 "1667","chic",68,52.25,1991-07-25,NA,16,23.252604167,16.458333333 "1668","chic",66,51.625,1991-07-26,NA,24.5,24.449404762,20.275 "1669","chic",66.5,54.125,1991-07-27,NA,18.5,29.541193182,17.741666667 "1670","chic",73.5,59,1991-07-28,NA,NA,41.651041667,18.125 "1671","chic",70,57,1991-07-29,NA,38.375,34.986111111,25.411363636 "1672","chic",66.5,54.625,1991-07-30,NA,27,26.171296296,22.883333333 "1673","chic",75.5,62.625,1991-07-31,NA,64.5,35.620719976,33.136904762 "1674","chic",78.5,52.125,1991-08-01,NA,NA,34.333333333,40.06765873 "1675","chic",83.5,65.75,1991-08-02,NA,131,39.518518519,55.489583333 "1676","chic",71,61.875,1991-08-03,NA,15,30.759259259,17.364583333 "1677","chic",69,51,1991-08-04,NA,14.285714286,22.449074074,12.927083333 "1678","chic",68,50.125,1991-08-05,NA,NA,27.860690236,18.5125 "1679","chic",71.5,57.125,1991-08-06,NA,39.5,31.375,23.558333333 "1680","chic",72.5,63.375,1991-08-07,NA,42,26.328703704,34.290942029 "1681","chic",67.5,61.875,1991-08-08,NA,32.5,27.715311326,24.330176768 "1682","chic",69.5,54.375,1991-08-09,NA,15,29.258655395,16.142739899 "1683","chic",70,53.375,1991-08-10,NA,24.5,23.444023569,21.045138889 "1684","chic",68,47.75,1991-08-11,NA,28,28.180555556,25.253472222 "1685","chic",67.5,57.875,1991-08-12,NA,36.5,24.518518519,27.351388889 "1686","chic",70.5,54,1991-08-13,NA,31,27.959045584,24.745580808 "1687","chic",71.5,52.625,1991-08-14,NA,65,28.795454545,44.43288135 "1688","chic",77,61.625,1991-08-15,NA,63,30.951288245,32.950441919 "1689","chic",76.5,61.75,1991-08-16,NA,58.5,33.962962963,35.698369565 "1690","chic",75,61.875,1991-08-17,NA,35,30.62962963,18.819444444 "1691","chic",74,60.5,1991-08-18,NA,34.5,26.023148148,17.491666667 "1692","chic",64.5,59.375,1991-08-19,NA,18,17.52020202,11.9625 "1693","chic",67,54,1991-08-20,NA,25.5,18.752777778,15.521329365 "1694","chic",68.5,57.875,1991-08-21,NA,48,22.709138486,28.986413043 "1695","chic",78,58.375,1991-08-22,NA,42,31.592592593,27.90625 "1696","chic",70.5,57.75,1991-08-23,NA,18,22.572024594,20.390151515 "1697","chic",75.5,62.625,1991-08-24,NA,43.5,40.301470588,22.4375 "1698","chic",81,65.125,1991-08-25,NA,62,52.786433172,24.970833333 "1699","chic",80,61,1991-08-26,NA,80.5,43.051189953,35.922727273 "1700","chic",81,66.25,1991-08-27,NA,42,28.027116402,25.48115942 "1701","chic",81.5,67,1991-08-28,NA,69.857142857,31.763888889,34.105429293 "1702","chic",82.5,69.75,1991-08-29,NA,73,31.333333333,33.757891414 "1703","chic",79,71.25,1991-08-30,NA,47.5,16.972222222,38.1772343 "1704","chic",71.5,60.125,1991-08-31,NA,29,21.40625,15.879166667 "1705","chic",66.5,59.25,1991-09-01,NA,24.5,29.947916667,12.520833333 "1706","chic",73.5,60.375,1991-09-02,NA,NA,31.119047619,22.840277778 "1707","chic",77,66.375,1991-09-03,NA,34.75,15.463541667,28.659406566 "1708","chic",67,52.25,1991-09-04,NA,13,21.332729469,18.278683575 "1709","chic",66,51.5,1991-09-05,NA,62,19.222515005,35.222371021 "1710","chic",70,54.125,1991-09-06,NA,19,24.536458333,43.989583333 "1711","chic",75.5,54.625,1991-09-07,NA,63.5,31.079257246,40.722222222 "1712","chic",76.5,53.5,1991-09-08,NA,41,38.010416667,26.538194444 "1713","chic",82,66.25,1991-09-09,NA,50.625,26.755208333,19.288194444 "1714","chic",73.5,61.25,1991-09-10,NA,15,20.6875,17.482638889 "1715","chic",67.5,56.625,1991-09-11,NA,21,18.228224272,13.678354978 "1716","chic",70.5,65.75,1991-09-12,NA,34,19.513285024,28.766666667 "1717","chic",73.5,65.625,1991-09-13,NA,53.5,24.598958333,29.625 "1718","chic",79,68.875,1991-09-14,NA,33,17.453125,25.8125 "1719","chic",81.5,68.75,1991-09-15,NA,34.285714286,22.213541667,16.869791667 "1720","chic",69,50.625,1991-09-16,NA,43,18.119791667,18.071212121 "1721","chic",63.5,49.5,1991-09-17,NA,40.5,11.380208333,24.925694444 "1722","chic",56.5,35,1991-09-18,NA,42,13.96240942,13.945450886 "1723","chic",47,29.375,1991-09-19,NA,38,12.62962963,16.666666667 "1724","chic",47.5,35.625,1991-09-20,NA,28,11.866624318,28.105113636 "1725","chic",54.5,35,1991-09-21,NA,34,19.625,30.902777778 "1726","chic",58.5,52.375,1991-09-22,NA,25,18.726190476,20.819444444 "1727","chic",53.5,38.75,1991-09-23,NA,32,9.7494162641,17.643382353 "1728","chic",48,43.25,1991-09-24,NA,28,5.6664653784,28.229166667 "1729","chic",54,40.75,1991-09-25,NA,36,8.1322463768,22.581123737 "1730","chic",50.5,29.625,1991-09-26,NA,40,11.127616747,18.904671717 "1731","chic",46.5,35.375,1991-09-27,NA,33.625,8.9385521886,28.660353535 "1732","chic",49.5,35.75,1991-09-28,NA,16,15.365740741,23.423611111 "1733","chic",53.5,46,1991-09-29,NA,32,20.5,22.805555556 "1734","chic",67.5,50.25,1991-09-30,NA,76,26.638227513,24.611111111 "1735","chic",59,47.375,1991-10-01,NA,60,15.934380032,26.242108586 "1736","chic",69,60.25,1991-10-02,NA,47,19.642989418,27.821759259 "1737","chic",62.5,53.375,1991-10-03,NA,31.375,16.624733129,20.353311192 "1738","chic",56,54.875,1991-10-04,NA,15,15.364583333,17.009615173 "1739","chic",48,31.25,1991-10-05,NA,19,16.791666667,9.2708333333 "1740","chic",44,33,1991-10-06,NA,16,10.395833333,10.26626462 "1741","chic",45,33.625,1991-10-07,NA,28.5,8.4575464793,18.265700483 "1742","chic",62.5,47,1991-10-08,NA,29,22.915458937,20.155495169 "1743","chic",61.5,46.875,1991-10-09,NA,51.428571429,17.15942029,32.995567084 "1744","chic",53.5,42.375,1991-10-10,NA,63,14.022418478,30.263033414 "1745","chic",56,38,1991-10-11,NA,38,11.314814815,29.819444444 "1746","chic",48.5,38.5,1991-10-12,NA,25,14.356481481,15.267361111 "1747","chic",46,37.25,1991-10-13,NA,17.5,13.157407407,15.850378788 "1748","chic",50.5,34.375,1991-10-14,NA,NA,6.1018518519,12.427083333 "1749","chic",41.5,24,1991-10-15,NA,27.625,5.9810606061,15.882095411 "1750","chic",45.5,33.875,1991-10-16,NA,37,9.7916666667,24.465277778 "1751","chic",61.5,40.625,1991-10-17,NA,78.5,15.185990338,21.127305665 "1752","chic",44.5,36.25,1991-10-18,NA,26,14.998737374,14.236426768 "1753","chic",38,24.5,1991-10-19,NA,27.5,13.296296296,16.607638889 "1754","chic",41.5,25.5,1991-10-20,NA,20,11.884259259,23.03125 "1755","chic",50.5,44,1991-10-21,NA,46,14.893518519,26.486111111 "1756","chic",64,47,1991-10-22,NA,46,24.947564412,27.0625 "1757","chic",66.5,60.75,1991-10-23,NA,61.5,19.393147158,21.327380952 "1758","chic",68,63.625,1991-10-24,NA,25,9.2652308105,15.264389234 "1759","chic",58.5,48.125,1991-10-25,NA,16,5.734375,11.6625 "1760","chic",50.5,46.875,1991-10-26,NA,20,9.0625,11.191666667 "1761","chic",50,51,1991-10-27,NA,10,8.03125,7.1583333333 "1762","chic",55,53.625,1991-10-28,NA,2,7.4166666667,13.051785714 "1763","chic",63.5,60.25,1991-10-29,NA,39,5.203125,19.870833333 "1764","chic",46.5,38.125,1991-10-30,NA,8,5.767560112,10.260984848 "1765","chic",48,49.875,1991-10-31,NA,NA,7.755952381,13.383333333 "1766","chic",43.5,28,1991-11-01,NA,NA,10.291666667,15.689772727 "1767","chic",25,10.375,1991-11-02,NA,23,18.770833333,7.9166666667 "1768","chic",18.5,16.75,1991-11-03,NA,17,16.0625,8.475 "1769","chic",18.5,9.625,1991-11-04,NA,45.5,11.479166667,17.0875 "1770","chic",28,26.375,1991-11-05,NA,26,5.3469202899,23.133333333 "1771","chic",28.5,6.25,1991-11-06,NA,35,11.520833333,18.975362319 "1772","chic",20,-1.625,1991-11-07,NA,30,6.4583333333,22.967878788 "1773","chic",22,7.875,1991-11-08,NA,39.25,5.0208333333,31.208333333 "1774","chic",26,18.125,1991-11-09,NA,7,6.4672619048,32.825 "1775","chic",33,27.25,1991-11-10,NA,45,3.4166666667,35.575 "1776","chic",34.5,33.125,1991-11-11,NA,NA,2.1666666667,24.320833333 "1777","chic",35,32,1991-11-12,NA,39.5,2.875,20.747115385 "1778","chic",45.5,38.625,1991-11-13,NA,28,3.8541666667,25.6625 "1779","chic",48,51.625,1991-11-14,NA,36,3.875,27.636956522 "1780","chic",50,42,1991-11-15,NA,38,9.4166666667,23.547414361 "1781","chic",41,33.375,1991-11-16,NA,28.5,19.270833333,13.9375 "1782","chic",42.5,39.25,1991-11-17,NA,NA,12.291666667,17.633333333 "1783","chic",57,57.625,1991-11-18,NA,36,8.7916666667,21.925 "1784","chic",57,48.75,1991-11-19,NA,28,9.2083333333,22.34047619 "1785","chic",40.5,32.25,1991-11-20,NA,21.875,5.5416666667,22.166666667 "1786","chic",40,33.125,1991-11-21,NA,NA,4.1875,42.639688832 "1787","chic",43.5,40.625,1991-11-22,NA,45.5,2.3333333333,33.59375 "1788","chic",34.5,19.625,1991-11-23,NA,20,6.25,16.385416667 "1789","chic",23,16.5,1991-11-24,NA,33,15.104166667,12.427083333 "1790","chic",17.5,10.125,1991-11-25,NA,27,6.4285714286,23.290151515 "1791","chic",23,21.125,1991-11-26,NA,37.375,3.5625,28.688669302 "1792","chic",38.5,33,1991-11-27,NA,35,6.7246376812,17.983333333 "1793","chic",36,36.75,1991-11-28,NA,10,11.729166667,16.641666667 "1794","chic",49,53.5,1991-11-29,NA,NA,10.729166667,20.179166667 "1795","chic",43.5,25.75,1991-11-30,NA,19,14,10.608333333 "1796","chic",27,13.375,1991-12-01,NA,19,5.8958333333,15.513888889 "1797","chic",30.5,30,1991-12-02,NA,16.625,11.354166667,16.939915459 "1798","chic",22,12.375,1991-12-03,NA,22,8.4375,19.619002525 "1799","chic",8,-1,1991-12-04,NA,35,8.1458333333,20.131313131 "1800","chic",20.5,19,1991-12-05,NA,23,5.214673913,23.692330918 "1801","chic",24,30.625,1991-12-06,NA,33.5,5.5833333333,25.613762626 "1802","chic",44,46.375,1991-12-07,NA,20,4.875,21.8125 "1803","chic",49,45.5,1991-12-08,NA,24.285714286,6.2708333333,17.319444444 "1804","chic",35.5,32,1991-12-09,NA,42,4,23.9375 "1805","chic",38.5,36.375,1991-12-10,NA,25.5,3.3125,21.496843434 "1806","chic",40,34.75,1991-12-11,NA,28,3.4375,22.667435222 "1807","chic",49,50.25,1991-12-12,NA,27,3.8541666667,19.095833333 "1808","chic",37.5,35.25,1991-12-13,NA,41,2.875,22.541666667 "1809","chic",29,11.875,1991-12-14,NA,36.75,13.833333333,10.462121212 "1810","chic",18,1.5,1991-12-15,NA,26,12.0625,13.336805556 "1811","chic",21,24.375,1991-12-16,NA,27.5,4.8541666667,21.079229798 "1812","chic",28.5,12.375,1991-12-17,NA,46,7.5208333333,18.568452381 "1813","chic",15.5,4.75,1991-12-18,NA,31,8.75,17.583928571 "1814","chic",19,15.625,1991-12-19,NA,37,3.8125,30.991666667 "1815","chic",32.5,32.875,1991-12-20,NA,29.375,2.125,20.132478632 "1816","chic",31,27.25,1991-12-21,NA,20,2,18.107638889 "1817","chic",32.5,34.5,1991-12-22,NA,11.5,3.25,14.504385965 "1818","chic",30.5,18.625,1991-12-23,NA,22,6.2916666667,20.166982323 "1819","chic",30,26.375,1991-12-24,NA,29,4.5416666667,21.777777778 "1820","chic",30,28.75,1991-12-25,NA,39,3.3125,25.444444444 "1821","chic",35.5,32.375,1991-12-26,NA,33,4.1041666667,22.201388889 "1822","chic",35.5,32,1991-12-27,NA,31,9.1875,14.225392512 "1823","chic",35,34,1991-12-28,NA,27,7.4375,15.25 "1824","chic",32.5,27.625,1991-12-29,NA,42,3.7291666667,14.739583333 "1825","chic",34,28.5,1991-12-30,NA,29,5.0458333333,21.153409091 "1826","chic",33,28,1991-12-31,NA,21,6.0969202899,18.226233609 "1827","chic",33.5,32.625,1992-01-01,NA,33.428571429,5.4583333333,19.697916667 "1828","chic",39.5,41.875,1992-01-02,NA,31,2.4166666667,24.822916667 "1829","chic",38.5,34.875,1992-01-03,NA,32,2.125,24.607007576 "1830","chic",35,32.5,1992-01-04,NA,22,6.125,19.416666667 "1831","chic",35,32.375,1992-01-05,NA,25.5,8,16.645833333 "1832","chic",35,33.125,1992-01-06,NA,30,3.0416666667,19.475 "1833","chic",34.5,31.5,1992-01-07,NA,41.428571429,2.4791666667,23.460597826 "1834","chic",38.5,40.875,1992-01-08,NA,26.5,3.375,21.708333333 "1835","chic",38,33.625,1992-01-09,NA,33.5,2,14.178030303 "1836","chic",30,23.125,1992-01-10,NA,32,4.4782608696,19.34375 "1837","chic",36,34.875,1992-01-11,NA,25,4.9791666667,20.552083333 "1838","chic",36.5,38.125,1992-01-12,NA,23,7.4166666667,18.479166667 "1839","chic",32.5,30.75,1992-01-13,NA,18.125,6.7708333333,17.34375 "1840","chic",20.5,10.5,1992-01-14,NA,24,11.5625,21.927083333 "1841","chic",6,-9.625,1992-01-15,NA,38,8.2518939394,24.614583333 "1842","chic",7.5,15,1992-01-16,NA,39,7.8143939394,24.22478355 "1843","chic",21,3.25,1992-01-17,NA,34.5,11.166666667,18.072916667 "1844","chic",5.5,-7.25,1992-01-18,NA,NA,11.625,22.200634058 "1845","chic",14.5,23.375,1992-01-19,NA,27.5,7.2291666667,26.805555556 "1846","chic",24,20.5,1992-01-20,NA,42,6.3333333333,25.875 "1847","chic",33.5,33,1992-01-21,NA,44,4.5,30.797077922 "1848","chic",35.5,36.875,1992-01-22,NA,34,4.3333333333,28.5 "1849","chic",28.5,15.875,1992-01-23,NA,50,8.5952380952,16.222222222 "1850","chic",18.5,7.25,1992-01-24,NA,65,11.895833333,20.611111111 "1851","chic",25,20.5,1992-01-25,NA,24.75,7.2291666667,23.597222222 "1852","chic",19.5,23.125,1992-01-26,NA,29,7.7708333333,28.430555556 "1853","chic",30,25.875,1992-01-27,NA,45.5,3.7083333333,25.739583333 "1854","chic",29.5,25.75,1992-01-28,NA,41,5.4166666667,30.712862319 "1855","chic",30,31.5,1992-01-29,NA,46.5,6.1875,22.260416667 "1856","chic",33.5,34.375,1992-01-30,NA,40.5,2.2916666667,27.135416667 "1857","chic",32,22.375,1992-01-31,NA,20.125,9.8541666667,21.219655797 "1858","chic",30.5,22.625,1992-02-01,NA,41.5,16.3125,22.473958333 "1859","chic",37.5,33.5,1992-02-02,NA,23.5,4.4166666667,27.53125 "1860","chic",43.5,43,1992-02-03,NA,82.5,2.5833333333,40.895833333 "1861","chic",36,25.375,1992-02-04,NA,26.5,9.1666666667,20.333333333 "1862","chic",32.5,30.25,1992-02-05,NA,23,7.9791666667,26.28125 "1863","chic",34.5,30.375,1992-02-06,NA,37,5.4166666667,24.701704545 "1864","chic",28,17.375,1992-02-07,NA,34.5,10.729166667,20.779438406 "1865","chic",18.5,4.625,1992-02-08,NA,25,13.229166667,14.885416667 "1866","chic",17.5,11.5,1992-02-09,NA,43.5,7.5208333333,23.614583333 "1867","chic",31,33,1992-02-10,NA,78,3.2083333333,24.083333333 "1868","chic",27,12.5,1992-02-11,NA,19,10.520833333,20.114583333 "1869","chic",23.5,18.375,1992-02-12,NA,31.375,13.895833333,20.614583333 "1870","chic",30,30.5,1992-02-13,NA,37.5,2.2083333333,23.549365942 "1871","chic",33,32.5,1992-02-14,NA,31.5,6.3625,21.504734848 "1872","chic",35,33.625,1992-02-15,NA,25.5,3.7083333333,22.885416667 "1873","chic",34,34.625,1992-02-16,NA,26,7,20.041666667 "1874","chic",37.5,36.375,1992-02-17,NA,36,9.4583333333,22.583333333 "1875","chic",40.5,42.375,1992-02-18,NA,37.857142857,3.6979166667,24.928571429 "1876","chic",37.5,32.875,1992-02-19,NA,26,5.6837944664,27.84375 "1877","chic",39.5,34.5,1992-02-20,NA,37,9.880952381,23.875 "1878","chic",31.5,27.375,1992-02-21,NA,25,14.748106061,27.451136364 "1879","chic",42,33.875,1992-02-22,NA,30,10.833333333,24.208333333 "1880","chic",37,36.875,1992-02-23,NA,35,17.666666667,21.260416667 "1881","chic",36,34.125,1992-02-24,NA,38.125,10.479166667,25.833333333 "1882","chic",33.5,27.25,1992-02-25,NA,36.5,11.304924242,25.981060606 "1883","chic",33.5,31.375,1992-02-26,NA,36,13.479166667,25.291666667 "1884","chic",39.5,34.125,1992-02-27,NA,34,7.9772727273,29.427083333 "1885","chic",39.5,26.625,1992-02-28,NA,27,13.458333333,20.979166667 "1886","chic",30,25.125,1992-02-29,NA,22,22.708333333,20.96875 "1887","chic",54,41.125,1992-03-01,NA,36.375,18.416666667,24.864583333 "1888","chic",45.5,37.875,1992-03-02,NA,44.5,11.354166667,30.375 "1889","chic",38,38.125,1992-03-03,NA,59,6.8958333333,26.401721014 "1890","chic",49,40.75,1992-03-04,NA,77,8.75,35.074810606 "1891","chic",53,53.75,1992-03-05,NA,99,6.8333333333,41.430555556 "1892","chic",55.5,52.125,1992-03-06,NA,50,8.125,32.708333333 "1893","chic",48,48,1992-03-07,NA,43.714285714,3.5416666667,28.152777778 "1894","chic",52.5,50.375,1992-03-08,NA,27.5,9,24.472222222 "1895","chic",44,31.375,1992-03-09,NA,34,14.458333333,26.020833333 "1896","chic",20.5,11,1992-03-10,NA,32.5,23.020833333,22.10770751 "1897","chic",19.5,16,1992-03-11,NA,34,21.1875,26.916666667 "1898","chic",22.5,12.375,1992-03-12,NA,31.5,18.083333333,30.229166667 "1899","chic",25.5,21.875,1992-03-13,NA,33.75,17.75,29.791666667 "1900","chic",29,19.75,1992-03-14,NA,27,19.791666667,28.652777778 "1901","chic",29,17,1992-03-15,NA,28.5,18.9375,31.333333333 "1902","chic",34.5,36.875,1992-03-16,NA,28.5,12.196969697,30.611111111 "1903","chic",38,24,1992-03-17,NA,26.5,21.333333333,23.541666667 "1904","chic",34,22,1992-03-18,NA,20.5,26.541666667,21.203282828 "1905","chic",36,22.75,1992-03-19,NA,24,28.762681159,29.672619048 "1906","chic",35,21.125,1992-03-20,NA,40,15.833333333,35.103219697 "1907","chic",30.5,31.125,1992-03-21,NA,33,29.541666667,27.427083333 "1908","chic",27.5,14.125,1992-03-22,NA,19.5,25.520833333,25.635416667 "1909","chic",30.5,23.125,1992-03-23,NA,54,13.4375,48.930706522 "1910","chic",43,34.25,1992-03-24,NA,58,16.595833333,37.09469697 "1911","chic",44.5,32.375,1992-03-25,NA,40.75,12.1875,31.697916667 "1912","chic",41.5,26.875,1992-03-26,NA,46.5,15.833333333,28.066176471 "1913","chic",34,26,1992-03-27,NA,26.5,23.833333333,27.125 "1914","chic",36,31.25,1992-03-28,NA,39.5,18.020833333,42.347222222 "1915","chic",39.5,37.75,1992-03-29,NA,25,27.270833333,24.388888889 "1916","chic",42,29.5,1992-03-30,NA,34,20.479166667,32.871732026 "1917","chic",41.5,27,1992-03-31,NA,35.375,16.666666667,34.536231884 "1918","chic",33.5,25.25,1992-04-01,NA,20,23.225347222,24.388888889 "1919","chic",31.5,19.5,1992-04-02,NA,32,18.516171329,29.972222222 "1920","chic",38,31.875,1992-04-03,NA,45.5,13.489583333,31.472222222 "1921","chic",36.5,22.125,1992-04-04,NA,20,26.9375,25.041666667 "1922","chic",38.5,23.25,1992-04-05,NA,29,20.90625,32.055555556 "1923","chic",49.5,31.875,1992-04-06,NA,42.125,17.84375,37.802083333 "1924","chic",52,38.5,1992-04-07,NA,76.5,14.496212121,40.70625 "1925","chic",50.5,28.125,1992-04-08,NA,53,19.372632576,37.683333333 "1926","chic",48,36,1992-04-09,NA,37,26.922698452,28.316403162 "1927","chic",57.5,57.375,1992-04-10,NA,45,19.983857402,31.738106061 "1928","chic",49.5,36.375,1992-04-11,NA,18,17.151041667,26.675 "1929","chic",37,19,1992-04-12,NA,14.857142857,32.057291667,13.816666667 "1930","chic",38,28.625,1992-04-13,NA,32,15.918560606,22.418560606 "1931","chic",42,31.875,1992-04-14,NA,44.5,9.7651721014,26.128478261 "1932","chic",48.5,50.375,1992-04-15,NA,53,10.273809524,31.979166667 "1933","chic",53,40.25,1992-04-16,NA,26,17.239583333,28.182291667 "1934","chic",41.5,38.75,1992-04-17,NA,23,22.921875,24.541666667 "1935","chic",51,58.125,1992-04-18,NA,40.5,10.453125,25.625 "1936","chic",65.5,59.75,1992-04-19,NA,24,23.739583333,18.333333333 "1937","chic",66,58.25,1992-04-20,NA,22.5,21.583333333,18.973958333 "1938","chic",48,36.5,1992-04-21,NA,34.5,12.931660354,16.638134058 "1939","chic",43,30.875,1992-04-22,NA,37,17.545386905,21.234848485 "1940","chic",48.5,42.75,1992-04-23,NA,40.5,7.980298913,33.349206349 "1941","chic",44.5,37.625,1992-04-24,NA,33.571428571,8.5214460784,27.854166667 "1942","chic",43.5,33.625,1992-04-25,NA,14,17.363095238,21.958333333 "1943","chic",46.5,36.5,1992-04-26,NA,11.5,19.517857143,14.066123188 "1944","chic",40.5,26.25,1992-04-27,NA,20,24.478577899,17.051953934 "1945","chic",44,29.5,1992-04-28,NA,55,18.093976449,41.552083333 "1946","chic",58.5,51.625,1992-04-29,NA,52.5,16.405570652,31.02807971 "1947","chic",49.5,42.125,1992-04-30,NA,55.375,15.137001812,29.309912008 "1948","chic",64.5,52.5,1992-05-01,NA,141,32.917346014,25.358333333 "1949","chic",64,32.5,1992-05-02,NA,67,27.583333333,20.5 "1950","chic",48.5,34.875,1992-05-03,NA,34.5,18.095238095,15.505208333 "1951","chic",44,29.875,1992-05-04,NA,23.5,19.387087444,22.494318182 "1952","chic",43.5,23.125,1992-05-05,NA,56,31.305272109,17.303954451 "1953","chic",44.5,21.25,1992-05-06,NA,31.857142857,21.340367965,27.504166667 "1954","chic",52,24.75,1992-05-07,NA,100,21.742236025,41.423188406 "1955","chic",56,28,1992-05-08,NA,65,35,49.777135774 "1956","chic",58.5,48.25,1992-05-09,NA,49,45.609375,29.7 "1957","chic",65.5,48.5,1992-05-10,NA,53,41.359375,25.866666667 "1958","chic",72,56.375,1992-05-11,NA,84,33.758028656,26.235507246 "1959","chic",69,61.5,1992-05-12,NA,47.571428571,26.416666667,28.781521739 "1960","chic",55,36.875,1992-05-13,NA,NA,22.978940217,18.975 "1961","chic",54,46,1992-05-14,NA,19,13.50313794,28.609848485 "1962","chic",60.5,48.875,1992-05-15,NA,81,18.723731884,38.108333333 "1963","chic",73,60.25,1992-05-16,NA,67,41.357142857,30.8125 "1964","chic",67.5,48.625,1992-05-17,NA,35,35.023809524,16.953125 "1965","chic",52,43.5,1992-05-18,NA,21.125,21.875744048,17.330615942 "1966","chic",57.5,44.125,1992-05-19,NA,38,22.104619565,33.574621212 "1967","chic",67,51.125,1992-05-20,NA,NA,36.138586957,40.437987013 "1968","chic",71,60.5,1992-05-21,NA,92,33.601799242,43.004545455 "1969","chic",73.5,64.125,1992-05-22,NA,83,24.777667984,34.583333333 "1970","chic",55,36.125,1992-05-23,NA,54,19.006469979,14.529166667 "1971","chic",40.5,30.625,1992-05-24,NA,10.875,29.244047619,9.9625 "1972","chic",41,32.75,1992-05-25,NA,NA,29.130952381,14.266666667 "1973","chic",44,29.375,1992-05-26,NA,18,25.23353888,25.08134058 "1974","chic",48,24.625,1992-05-27,NA,38,16.5625,32.575 "1975","chic",50.5,31.375,1992-05-28,NA,70,22.447916667,40.57619675 "1976","chic",55,33.75,1992-05-29,NA,56,32.376811594,33.348484848 "1977","chic",58,42.375,1992-05-30,NA,33.625,40.701530612,29.575 "1978","chic",60,39.75,1992-05-31,NA,42,36.125,39.825 "1979","chic",59,45.5,1992-06-01,NA,43,22.94701087,42.683333333 "1980","chic",61.5,40.25,1992-06-02,NA,21,22.393568841,32.640909091 "1981","chic",65,48.25,1992-06-03,NA,55,42.692708333,36.607246377 "1982","chic",65.5,60.75,1992-06-04,NA,51,24.671875,34.14047619 "1983","chic",67.5,58.375,1992-06-05,NA,53.714285714,32.292613636,34.132142857 "1984","chic",67.5,56.625,1992-06-06,NA,53,33.109375,36.166666667 "1985","chic",66.5,44.5,1992-06-07,NA,19,33.395833333,18.483333333 "1986","chic",62,47.75,1992-06-08,NA,19,22.947916667,25.445833333 "1987","chic",65,43.875,1992-06-09,NA,18,26.027626812,20.358333333 "1988","chic",64,42.5,1992-06-10,NA,27,28.051259881,31.868297101 "1989","chic",67,47.25,1992-06-11,NA,41.857142857,27.055641822,38.266666667 "1990","chic",69,45.75,1992-06-12,NA,35,40.723157051,42.414130435 "1991","chic",73.5,52.125,1992-06-13,NA,61,45.328125,49.575 "1992","chic",75.5,61,1992-06-14,NA,45,41.244791667,23.391666667 "1993","chic",71,54.375,1992-06-15,NA,45,33.030344203,23.694565217 "1994","chic",75.5,62,1992-06-16,NA,76,44.390625,24.071146245 "1995","chic",75.5,62.75,1992-06-17,NA,72.285714286,27.755072464,24.667753623 "1996","chic",73,59.125,1992-06-18,NA,42,27.624829679,24.811758893 "1997","chic",59.5,47.125,1992-06-19,NA,NA,19.228864734,14.175 "1998","chic",51.5,38.5,1992-06-20,NA,2,20.492897727,11.012121212 "1999","chic",49,33.375,1992-06-21,NA,9,20.682291667,13.675 "2000","chic",52.5,43,1992-06-22,NA,62,13.660714286,35.841666667 "2001","chic",66,52.25,1992-06-23,NA,48.142857143,31.137962963,35.35 "2002","chic",62.5,51.25,1992-06-24,NA,40,31.984427609,29.803809524 "2003","chic",64,57.5,1992-06-25,NA,50,23.823470209,34.50530303 "2004","chic",61.5,52.375,1992-06-26,NA,41,26.120933977,24.732246377 "2005","chic",58,35.375,1992-06-27,NA,17,21.59375,15.591666667 "2006","chic",62,49,1992-06-28,NA,38,25.119791667,36.658333333 "2007","chic",71.5,54.25,1992-06-29,NA,53.5,33.409383692,31.86547619 "2008","chic",66.5,52.5,1992-06-30,NA,18,29.013888889,20.408333333 "2009","chic",74.5,64.625,1992-07-01,NA,75,50.828703704,37.975 "2010","chic",77,65.625,1992-07-02,NA,79,22.191498316,32.668478261 "2011","chic",67,55.375,1992-07-03,NA,24,19.104166667,16.483333333 "2012","chic",71,62,1992-07-04,NA,24,29.53125,18.333333333 "2013","chic",68.5,52.125,1992-07-05,NA,19.714285714,21.578125,17.083333333 "2014","chic",66,49,1992-07-06,NA,NA,18.733988435,20.687878788 "2015","chic",67.5,64.625,1992-07-07,NA,59,19.067340067,28.441666667 "2016","chic",79.5,68.25,1992-07-08,NA,66,29.158011272,23.409210526 "2017","chic",74,64.625,1992-07-09,NA,32,13.894927536,33.066666667 "2018","chic",76.5,60.25,1992-07-10,NA,32,24.103462158,30.325 "2019","chic",73,64.5,1992-07-11,NA,31.625,25.912037037,29.125 "2020","chic",73.5,71.625,1992-07-12,NA,25,19.046875,16.760416667 "2021","chic",69.5,68.75,1992-07-13,NA,14,20.734903382,22.164492754 "2022","chic",65,60.125,1992-07-14,NA,11,18.664809863,18.716666667 "2023","chic",68,51.875,1992-07-15,NA,19,23.538720539,19.446442688 "2024","chic",68,66.875,1992-07-16,NA,41,13.39794686,35.372727273 "2025","chic",74,61.875,1992-07-17,NA,28,17.75,26.125 "2026","chic",68,62.625,1992-07-18,NA,23,17.393518519,21.620833333 "2027","chic",72.5,67.875,1992-07-19,NA,24,26.643518519,22.033333333 "2028","chic",68,59.375,1992-07-20,NA,18,18.94726248,19.999242424 "2029","chic",62,48.75,1992-07-21,NA,7,20.744766506,12.63115942 "2030","chic",63.5,60.125,1992-07-22,NA,29,18.889291465,21.339149504 "2031","chic",62.5,58,1992-07-23,NA,29,20.120169082,19.775 "2032","chic",67,60.875,1992-07-24,NA,24,26.929713805,21.24047619 "2033","chic",67.5,70.625,1992-07-25,NA,33,18.143518519,28.875 "2034","chic",74,64.125,1992-07-26,NA,35,20.291666667,20.779166667 "2035","chic",71.5,57.625,1992-07-27,NA,29,17.200396825,24.7375 "2036","chic",71.5,67.125,1992-07-28,NA,42,20.598429952,27.65 "2037","chic",66.5,55.25,1992-07-29,NA,23.125,14.412238325,17.147694335 "2038","chic",61.5,62.75,1992-07-30,NA,17,13.490740741,17.845833333 "2039","chic",67,51.5,1992-07-31,NA,19,20.413446055,21.048214286 "2040","chic",68,57.375,1992-08-01,NA,NA,23.62037037,21.1375 "2041","chic",69,62.5,1992-08-02,NA,23,22.805555556,21.358333333 "2042","chic",65.5,57.25,1992-08-03,NA,34,11.637681159,27.119242424 "2043","chic",62.5,50.125,1992-08-04,NA,22.5,13.296296296,18.10307971 "2044","chic",63,49.75,1992-08-05,NA,24,22.387097424,17.948480392 "2045","chic",67.5,56.875,1992-08-06,NA,28,30.364337823,26.273863636 "2046","chic",68.5,69.375,1992-08-07,NA,61.5,30.371623847,30.138888889 "2047","chic",75.5,68.5,1992-08-08,NA,45,32.442708333,19.236111111 "2048","chic",80,77.25,1992-08-09,NA,46,28.260416667,19.923611111 "2049","chic",79,58.375,1992-08-10,NA,33.25,23.270833333,17.027777778 "2050","chic",70,52.375,1992-08-11,NA,26,23.486605182,21.575872859 "2051","chic",62,56.75,1992-08-12,NA,26,10.369107744,22.745833333 "2052","chic",60.5,50.125,1992-08-13,NA,22.5,19.150819792,17.45741342 "2053","chic",61,46.375,1992-08-14,NA,26,17.229267311,21.308333333 "2054","chic",62,48.75,1992-08-15,NA,13,26.888888889,13.854166667 "2055","chic",63,48.875,1992-08-16,NA,24.285714286,26.296296296,21.025 "2056","chic",63,51.125,1992-08-17,NA,82,22.509259259,41.375 "2057","chic",66,61,1992-08-18,NA,56.5,21.960547504,30.875 "2058","chic",63,50.5,1992-08-19,NA,18,15.19041868,19.800774045 "2059","chic",62,46.375,1992-08-20,NA,63,15.57226248,24.325 "2060","chic",64.5,54.125,1992-08-21,NA,76.5,23.330515298,41.591342487 "2061","chic",67,61.875,1992-08-22,NA,56,33.546296296,38.516666667 "2062","chic",75,66.125,1992-08-23,NA,59.5,30.574074074,24.85 "2063","chic",78.5,68.125,1992-08-24,NA,77.5,20.683318694,27.141666667 "2064","chic",79,67.75,1992-08-25,NA,46,23.958333333,23.912770563 "2065","chic",66.5,60.375,1992-08-26,NA,19.5,12.175865801,16.383679183 "2066","chic",59.5,54.875,1992-08-27,NA,31,8.4612794613,14.697727273 "2067","chic",59.5,48.5,1992-08-28,NA,22.75,11.567010687,21.250378788 "2068","chic",65,59.25,1992-08-29,NA,51.5,23.37037037,21.675 "2069","chic",66,51.375,1992-08-30,NA,31,22.12037037,11.358333333 "2070","chic",63.5,51.75,1992-08-31,NA,38,12.810185185,24.7 "2071","chic",63,58.25,1992-09-01,NA,63,16.611111111,30.570454545 "2072","chic",70,66.5,1992-09-02,NA,56,16.89673913,25.28442029 "2073","chic",67.5,51.125,1992-09-03,NA,32.285714286,16.375091495,25.167391304 "2074","chic",65.5,57.625,1992-09-04,NA,33,19.217592593,33.710507246 "2075","chic",70.5,65.75,1992-09-05,NA,34.5,23.359375,21.183333333 "2076","chic",75,66.75,1992-09-06,NA,36,27.880208333,18.545833333 "2077","chic",73.5,65.5,1992-09-07,NA,34.5,31.533514493,22.766666667 "2078","chic",64,48.125,1992-09-08,NA,54,16.515729515,19.051630435 "2079","chic",63,62.875,1992-09-09,NA,18.75,6.32568438,29.427070393 "2080","chic",60,48.75,1992-09-10,NA,41.5,11.01798785,17.479166667 "2081","chic",58,51.625,1992-09-11,NA,38.5,10.114130435,24.728030303 "2082","chic",62,51,1992-09-12,NA,39,20.722222222,30.108333333 "2083","chic",67.5,56.25,1992-09-13,NA,50,33.407407407,23.575 "2084","chic",72.5,70,1992-09-14,NA,69.5,23.662037037,35.316666667 "2085","chic",76.5,69.125,1992-09-15,NA,44.857142857,19.955112721,34.818181818 "2086","chic",77,65.25,1992-09-16,NA,103.5,33.705515298,25.985144928 "2087","chic",71.5,66.625,1992-09-17,NA,66,20.74194847,32.653623188 "2088","chic",62,44.5,1992-09-18,NA,41.5,19.243522178,21.69047619 "2089","chic",53.5,42.375,1992-09-19,NA,30.5,13.959656085,28.65 "2090","chic",59,56.375,1992-09-20,NA,27,18.114583333,24.941666667 "2091","chic",64,62.5,1992-09-21,NA,36.142857143,6.3088768116,26.116666667 "2092","chic",51.5,39.25,1992-09-22,NA,37,12.179574275,20.206976681 "2093","chic",49.5,39.375,1992-09-23,NA,25,12.927083333,23.393181818 "2094","chic",53.5,41.25,1992-09-24,NA,36.5,15.197916667,27.886111111 "2095","chic",59.5,53.75,1992-09-25,NA,53.5,16.338994565,35.408333333 "2096","chic",63,60,1992-09-26,NA,28,14.5625,25.008333333 "2097","chic",59,43.125,1992-09-27,NA,18.125,13.703125,19.5 "2098","chic",49.5,36.75,1992-09-28,NA,37.5,12.033288043,26.808333333 "2099","chic",49.5,38.5,1992-09-29,NA,76.5,8.7325634058,37.902140975 "2100","chic",53.5,43.125,1992-09-30,NA,95.5,11.807971014,48.361152882 "2101","chic",58.5,48,1992-10-01,NA,89.5,15.525362319,48.046376812 "2102","chic",63.5,53.625,1992-10-02,NA,86,21.404388084,42.696485037 "2103","chic",66,52.625,1992-10-03,NA,40.857142857,29.671296296,28.637318841 "2104","chic",59,46.5,1992-10-04,NA,30.5,23.652777778,13.883333333 "2105","chic",53,41.875,1992-10-05,NA,23,15.458333333,23.469047619 "2106","chic",53,45.5,1992-10-06,NA,72,11.141835017,38.14486166 "2107","chic",58,52,1992-10-07,NA,87,19.659639877,38.310869565 "2108","chic",57.5,41,1992-10-08,NA,46,16.335748792,25.582971014 "2109","chic",49,45.75,1992-10-09,NA,19.285714286,7.164983165,18.458333333 "2110","chic",51.5,41.75,1992-10-10,NA,50,11.912037037,24.53125 "2111","chic",51.5,36.375,1992-10-11,NA,59.5,13.472222222,22.760416667 "2112","chic",53.5,28.625,1992-10-12,NA,57,14.986111111,26.072916667 "2113","chic",47,38.25,1992-10-13,NA,64,9.3085016835,30.58030303 "2114","chic",55.5,49,1992-10-14,NA,44.5,9.9874338624,30.807575758 "2115","chic",50,49.375,1992-10-15,NA,19,4.8630887681,20.436231884 "2116","chic",40.5,27.5,1992-10-16,NA,31.5,6.7962962963,19.920833333 "2117","chic",38.5,29.375,1992-10-17,NA,32.5,8.962962963,28.191666667 "2118","chic",35,18.125,1992-10-18,NA,37,15.763888889,20.408333333 "2119","chic",33,20,1992-10-19,NA,30,9.2962962963,33.641666667 "2120","chic",45.5,42.375,1992-10-20,NA,41,9.7786195286,25.368478261 "2121","chic",47,40.25,1992-10-21,NA,43.25,9.9302810716,25.076251647 "2122","chic",57.5,57.875,1992-10-22,NA,63,11.865955512,41.165382082 "2123","chic",67,56.875,1992-10-23,NA,129,17.25928442,35.675 "2124","chic",51,42.5,1992-10-24,NA,30.5,17.588541667,22.516666667 "2125","chic",49,43.125,1992-10-25,NA,37,12.194444444,29.925 "2126","chic",49,38.125,1992-10-26,NA,40.5,15.240136876,26.141666667 "2127","chic",46.5,35.75,1992-10-27,NA,77.428571429,6.1851851852,45.059554367 "2128","chic",50.5,34.75,1992-10-28,NA,119,7.9973649539,40.455434783 "2129","chic",45,37.125,1992-10-29,NA,30,14.525362319,20.317028986 "2130","chic",45,37.875,1992-10-30,NA,24.5,13.361111111,20.033333333 "2131","chic",44,35.875,1992-10-31,NA,18,13.550925926,20.833333333 "2132","chic",45.5,44.125,1992-11-01,NA,30,12.114583333,15.15 "2133","chic",48,35.75,1992-11-02,NA,11.714285714,3.4605978261,18 "2134","chic",37,35,1992-11-03,NA,15,5.8645833333,25.241666667 "2135","chic",35.5,28.75,1992-11-04,NA,13,5.1934288538,21.593939394 "2136","chic",32.5,22.5,1992-11-05,NA,26,4.3257575758,27.244230769 "2137","chic",34,21.75,1992-11-06,NA,21,4.7735507246,29.645833333 "2138","chic",34,30.875,1992-11-07,NA,27.5,5.6,28.770833333 "2139","chic",38,35.125,1992-11-08,NA,27.125,4.1041666667,22.822916667 "2140","chic",48,41.625,1992-11-09,NA,32,7.2083333333,26.6875 "2141","chic",49.5,51,1992-11-10,NA,37,5.3333333333,26.891666667 "2142","chic",44.5,39.375,1992-11-11,NA,24,6.2083333333,19.833333333 "2143","chic",40,27.625,1992-11-12,NA,NA,6.8409090909,21.129380764 "2144","chic",30.5,20.875,1992-11-13,NA,27.5,11.75,20.7 "2145","chic",28,16.875,1992-11-14,NA,18.714285714,7.6666666667,21.85 "2146","chic",29,21.625,1992-11-15,NA,27,7.5416666667,22.258333333 "2147","chic",36.5,37.375,1992-11-16,NA,33,3.75,28.408333333 "2148","chic",38.5,32.75,1992-11-17,NA,42.5,3.7777777778,25.696666667 "2149","chic",39,34.25,1992-11-18,NA,28.5,9.0845410628,19.9875 "2150","chic",40.5,37.125,1992-11-19,NA,33.5,7.7171717172,24.470689817 "2151","chic",52,44.5,1992-11-20,NA,32.857142857,6.2083333333,32.075 "2152","chic",48.5,40.375,1992-11-21,NA,20.5,5.375,15.125 "2153","chic",41,39.5,1992-11-22,NA,11.5,11.833333333,12.383333333 "2154","chic",38,36.375,1992-11-23,NA,34.5,3.75,26.529528986 "2155","chic",39.5,37.875,1992-11-24,NA,26,3.6712121212,23.966666667 "2156","chic",43.5,42.5,1992-11-25,NA,37.5,2.4166666667,18.74673913 "2157","chic",36.5,26,1992-11-26,NA,11.714285714,7.6944444444,13.566666667 "2158","chic",29.5,24.125,1992-11-27,NA,30.5,5.5694444444,23.625 "2159","chic",30,25.625,1992-11-28,NA,32.5,4.9027777778,24.241666667 "2160","chic",35,30.875,1992-11-29,NA,28,6.3194444444,23.1 "2161","chic",33.5,25.25,1992-11-30,NA,53,4.1884057971,21.833333333 "2162","chic",32,28,1992-12-01,NA,18,3.6944444444,23.15 "2163","chic",32.5,19.875,1992-12-02,NA,21.428571429,7.1998792271,22.583333333 "2164","chic",28,23.375,1992-12-03,NA,21,6.5067523057,26.841666667 "2165","chic",25.5,11.875,1992-12-04,NA,48,7.1805555556,24.198913043 "2166","chic",19.5,9.25,1992-12-05,NA,25,7.5694444444,25.975 "2167","chic",23,25.75,1992-12-06,NA,23.5,2.7361111111,25.691666667 "2168","chic",27,21.125,1992-12-07,NA,36.5,5.0138888889,27.158333333 "2169","chic",26.5,21.625,1992-12-08,NA,32,6.5883838384,29.179927536 "2170","chic",27.5,27.625,1992-12-09,NA,42,3.2536231884,27.333333333 "2171","chic",32,29.375,1992-12-10,NA,47.5,2.0434782609,30.658333333 "2172","chic",33,30.375,1992-12-11,NA,32.5,2,29.916666667 "2173","chic",32,30.25,1992-12-12,NA,32,8.5972222222,27.033333333 "2174","chic",32,31,1992-12-13,NA,26,9.0833333333,20.133333333 "2175","chic",29.5,30.75,1992-12-14,NA,37.285714286,2.604468599,27.94047619 "2176","chic",44,45.5,1992-12-15,NA,28,3.2866161616,27.065942029 "2177","chic",37.5,29.625,1992-12-16,NA,26,2.6666666667,20.5375 "2178","chic",30.5,20.125,1992-12-17,NA,36,3,24.158333333 "2179","chic",30,27.125,1992-12-18,NA,30.5,2.4027777778,22.608333333 "2180","chic",31,26.25,1992-12-19,NA,32,2.5416666667,22.441666667 "2181","chic",19.5,11.75,1992-12-20,NA,23.875,7.0972222222,21.433333333 "2182","chic",26,25.5,1992-12-21,NA,46.5,2.25,28.89384058 "2183","chic",33,30.125,1992-12-22,NA,44.5,2,31.813636364 "2184","chic",21.5,5.25,1992-12-23,NA,53,4.5314009662,24.325362319 "2185","chic",10,7.75,1992-12-24,NA,39,6.8194444444,21.908333333 "2186","chic",18,1.75,1992-12-25,NA,75,14.222222222,12.375 "2187","chic",14.5,3.25,1992-12-26,NA,27.142857143,7.2222222222,23.916666667 "2188","chic",30.5,25.375,1992-12-27,NA,31,4.4305555556,24.766666667 "2189","chic",38.5,36.625,1992-12-28,NA,36,2,22.497727273 "2190","chic",41.5,42.125,1992-12-29,NA,43,2,21.17745098 "2191","chic",45.5,43.625,1992-12-30,NA,43,2,20.392171717 "2192","chic",26,11,1992-12-31,NA,44,2.0833333333,17.558333333 "2193","chic",14,9.375,1993-01-01,NA,18.142857143,4.3055555556,22.608333333 "2194","chic",25,28.25,1993-01-02,NA,17.5,1.5416666667,23.808333333 "2195","chic",40.5,44.875,1993-01-03,NA,21.5,0.5277777778,19.825 "2196","chic",38.5,32.5,1993-01-04,NA,17,0.8333333333,18.166666667 "2197","chic",27.5,21.5,1993-01-05,NA,12,0.9532828283,22.087088274 "2198","chic",21.5,16.5,1993-01-06,NA,34,1.7777777778,26.718181818 "2199","chic",24.5,20.625,1993-01-07,NA,19.875,1.6900527009,27.083333333 "2200","chic",21.5,17.875,1993-01-08,NA,14,14.250603865,25.6 "2201","chic",24.5,20.25,1993-01-09,NA,3,24.958333333,11.658333333 "2202","chic",24.5,22.375,1993-01-10,NA,8,24.166666667,13.283333333 "2203","chic",26.5,23.25,1993-01-11,NA,14.5,12.819444444,22.508333333 "2204","chic",30.5,33,1993-01-12,NA,32,1.5277777778,27.104347826 "2205","chic",27.5,21.25,1993-01-13,NA,20.875,3.0492424242,29.516666667 "2206","chic",21.5,20.25,1993-01-14,NA,12.5,4.0241545894,37.076811594 "2207","chic",18,14.5,1993-01-15,NA,31.5,5.7815656566,31.814393939 "2208","chic",22,27.625,1993-01-16,NA,25.5,3.2361111111,33.025 "2209","chic",20.5,5,1993-01-17,NA,22,17.597222222,22.258333333 "2210","chic",18,15.25,1993-01-18,NA,51,8.0555555556,34.408333333 "2211","chic",18.5,13.5,1993-01-19,NA,49.571428571,6.0289855072,43.205434783 "2212","chic",27,31.625,1993-01-20,NA,41.5,4.3888888889,33.197463768 "2213","chic",35.5,34,1993-01-21,NA,19,0.6527777778,27.002840909 "2214","chic",34,26.125,1993-01-22,NA,24.5,5.9444444444,28.28125 "2215","chic",36.5,31.625,1993-01-23,NA,20,9.5972222222,24.145833333 "2216","chic",28.5,14,1993-01-24,NA,26,16.527777778,14.885416667 "2217","chic",23,11.625,1993-01-25,NA,29.875,7.75,30.077083333 "2218","chic",30,30,1993-01-26,NA,52.5,6.577294686,27.176449275 "2219","chic",31.5,25.25,1993-01-27,NA,31.5,7.7312801932,29.66482684 "2220","chic",30.5,21.375,1993-01-28,NA,36.5,7.235042735,24.816666667 "2221","chic",15.5,4,1993-01-29,NA,19.5,11.75,21.658333333 "2222","chic",25.5,14.25,1993-01-30,NA,41.5,14.388888889,17.533333333 "2223","chic",38.5,30.75,1993-01-31,NA,20.5,13.208333333,19.625 "2224","chic",30.5,18,1993-02-01,NA,13.5,20.694444444,16.219117647 "2225","chic",28.5,17,1993-02-02,NA,12,7.2125603865,34.135704875 "2226","chic",35.5,24.875,1993-02-03,NA,64,3.0997474747,39.545786816 "2227","chic",38,22.5,1993-02-04,NA,96.5,7.2916666667,43.349780702 "2228","chic",36.5,29.25,1993-02-05,NA,74.5,7.8586956522,36.236045235 "2229","chic",29,21.375,1993-02-06,NA,12.375,17.486111111,17.263888889 "2230","chic",32,30,1993-02-07,NA,26.5,6.8055555556,21.451388889 "2231","chic",30,21.25,1993-02-08,NA,11.5,15.680555556,18.471230159 "2232","chic",32.5,33.375,1993-02-09,NA,40.5,1.0492424242,26.394894598 "2233","chic",35,32.375,1993-02-10,NA,20,6.8550724638,22.660803689 "2234","chic",32,25.625,1993-02-11,NA,16.5,14.458333333,15.575 "2235","chic",29,27.25,1993-02-12,NA,20.375,13.905555556,19.11 "2236","chic",28.5,26.625,1993-02-13,NA,11,7.5,26.208333333 "2237","chic",27,20.375,1993-02-14,NA,23,17.666666667,18.444444444 "2238","chic",24.5,18.75,1993-02-15,NA,37,9.875,28.444444444 "2239","chic",25.5,13.375,1993-02-16,NA,22,15.41540404,27.038333333 "2240","chic",10.5,-5,1993-02-17,NA,39,15.763888889,23.984848485 "2241","chic",7.5,4.875,1993-02-18,NA,27.75,13.875603865,25.609057971 "2242","chic",15,16.625,1993-02-19,NA,66.5,9.3888888889,39.246031746 "2243","chic",25.5,23.75,1993-02-20,NA,44.5,13.138888889,39.658333333 "2244","chic",29,26.875,1993-02-21,NA,23,11.375,24.05 "2245","chic",22,18,1993-02-22,NA,18.5,12.819444444,32.944978632 "2246","chic",12,2.75,1993-02-23,NA,36.5,11.986111111,30.125 "2247","chic",5,-1.875,1993-02-24,NA,39.75,9.1148989899,35.112373737 "2248","chic",10,15.5,1993-02-25,NA,37,12.416666667,35.233440171 "2249","chic",22,12.75,1993-02-26,NA,16.5,18.513285024,30.334678305 "2250","chic",19,13.625,1993-02-27,NA,52.5,10.361111111,48.901388889 "2251","chic",20,19.625,1993-02-28,NA,44.5,28.444444444,46.232487923 "2252","chic",34.5,31.625,1993-03-01,NA,47,23.694444444,43.209037842 "2253","chic",38.5,34.125,1993-03-02,NA,52,8.2182539683,47.176587302 "2254","chic",38.5,32.25,1993-03-03,NA,27,31.365942029,31.632070707 "2255","chic",34.5,29.875,1993-03-04,NA,20.5,30.333333333,20.3125 "2256","chic",34.5,18.75,1993-03-05,NA,36,16.955615942,31.128568292 "2257","chic",36,29.125,1993-03-06,NA,20,9.5416666667,38.618055556 "2258","chic",34,33,1993-03-07,NA,27,10.3125,24.8125 "2259","chic",38,27.875,1993-03-08,NA,24.625,10.5,24.755681818 "2260","chic",36.5,26.875,1993-03-09,NA,26,19.305555556,23.604166667 "2261","chic",32.5,27.375,1993-03-10,NA,22.5,7.4053030303,30.028968254 "2262","chic",26,21.5,1993-03-11,NA,35,9.5138888889,28.0625 "2263","chic",22,12.5,1993-03-12,NA,48,11.592171717,35.888888889 "2264","chic",17,1.5,1993-03-13,NA,43,17.458333333,22.708333333 "2265","chic",14.5,2.75,1993-03-14,NA,24.875,15.888888889,23.9375 "2266","chic",30.5,30.125,1993-03-15,NA,85,16.770833333,31.486111111 "2267","chic",37.5,30.25,1993-03-16,NA,24,17.375,27.02294686 "2268","chic",21.5,6,1993-03-17,NA,26,26.337606838,19.491666667 "2269","chic",23,15.875,1993-03-18,NA,10,26.438131313,23.357048748 "2270","chic",29.5,30.375,1993-03-19,NA,29,8.1224747475,29.447691198 "2271","chic",35,32,1993-03-20,NA,40.571428571,4.1177536232,27.79076087 "2272","chic",35,31.25,1993-03-21,NA,42,12.388888889,30.201388889 "2273","chic",35,35,1993-03-22,NA,26.5,17.599637681,24.281400966 "2274","chic",39.5,38.5,1993-03-23,NA,27,7.003968254,29.065354633 "2275","chic",38,37.25,1993-03-24,NA,33,5.9166666667,28.910563973 "2276","chic",40,37.25,1993-03-25,NA,36.5,8.6920289855,26.76984127 "2277","chic",39,35,1993-03-26,NA,33.375,24.787439614,27.711654589 "2278","chic",37.5,33.75,1993-03-27,NA,19,29.083333333,23.430555556 "2279","chic",41.5,33.5,1993-03-28,NA,17,27.694444444,27.611111111 "2280","chic",50,33.25,1993-03-29,NA,40,23.652777778,41.844806763 "2281","chic",50,45.625,1993-03-30,NA,41.5,24.262077295,41.421195652 "2282","chic",44,36.25,1993-03-31,NA,31.5,21.836538462,21.987103175 "2283","chic",31,27.125,1993-04-01,NA,11.625,26.935185185,15.086309524 "2284","chic",31,19.625,1993-04-02,NA,41,18.882045089,29.449906675 "2285","chic",33.5,25,1993-04-03,NA,24.5,17.717592593,33.9375 "2286","chic",31.5,27.125,1993-04-04,NA,32.5,23.87037037,27.861111111 "2287","chic",36.5,30.375,1993-04-05,NA,32,21.094605475,23.902777778 "2288","chic",40,32.25,1993-04-06,NA,34,21.510869565,31.069444444 "2289","chic",47.5,43.5,1993-04-07,NA,57.25,15.935148587,33.365036232 "2290","chic",55.5,52.75,1993-04-08,NA,45.5,14.304128239,32.318181818 "2291","chic",48.5,35.125,1993-04-09,NA,35,20.212962963,25.611111111 "2292","chic",46,32.25,1993-04-10,NA,26.5,22.138888889,24.9375 "2293","chic",43.5,34.25,1993-04-11,NA,15,19.833333333,15.743055556 "2294","chic",41,31,1993-04-12,NA,20,27.936447811,18.180555556 "2295","chic",39.5,29.125,1993-04-13,NA,31.428571429,25.269213878,22.841540404 "2296","chic",44.5,42.75,1993-04-14,NA,41,18.622657737,27.149456522 "2297","chic",43.5,42,1993-04-15,NA,22.5,10.439498505,29.124007937 "2298","chic",38,32.375,1993-04-16,NA,24,16.824074074,22.888888889 "2299","chic",43.5,37.375,1993-04-17,NA,37,23.523148148,25.930555556 "2300","chic",50.5,46,1993-04-18,NA,28,29.773148148,22.673611111 "2301","chic",51,50.75,1993-04-19,NA,30.875,14.717592593,33.416666667 "2302","chic",38,27.875,1993-04-20,NA,28,24.244565217,18.457070707 "2303","chic",42,19.375,1993-04-21,NA,43.5,20.295218812,31.155696457 "2304","chic",48,25.375,1993-04-22,NA,63.5,18.218253968,41.152777778 "2305","chic",52.5,41.375,1993-04-23,NA,63.5,24.638248426,40.133838384 "2306","chic",64.5,46.375,1993-04-24,NA,100,34.185185185,15.465277778 "2307","chic",50,38.125,1993-04-25,NA,18,31.092592593,15.75 "2308","chic",40,29.375,1993-04-26,NA,18.5,21.311026936,17.627552701 "2309","chic",49.5,46.875,1993-04-27,NA,67,21.365740741,25.90821256 "2310","chic",64.5,48.75,1993-04-28,NA,46,21.040861514,33.756944444 "2311","chic",52.5,49,1993-04-29,NA,48.5,7.5201105255,38.163345411 "2312","chic",57,38.25,1993-04-30,NA,42.5,12.106481481,36.868055556 "2313","chic",59,48.75,1993-05-01,NA,35,30.726851852,22.326388889 "2314","chic",61,59.5,1993-05-02,NA,31,25.147222222,25.604166667 "2315","chic",61.5,57.75,1993-05-03,NA,31.5,20.070307108,27.121290545 "2316","chic",60.5,56.5,1993-05-04,NA,34,16.231646172,34.49640426 "2317","chic",61,54.5,1993-05-05,NA,53.5,12.889616623,37.206349206 "2318","chic",62.5,48.625,1993-05-06,NA,71.5,15.675084175,48.282118807 "2319","chic",66.5,48.75,1993-05-07,NA,60.375,33.687414361,42.745833333 "2320","chic",72.5,51.25,1993-05-08,NA,52,44.300925926,28.215277778 "2321","chic",74.5,57.125,1993-05-09,NA,59,36.958333333,29.097222222 "2322","chic",75,59.125,1993-05-10,NA,72,36.170833333,35.180555556 "2323","chic",63.5,45.625,1993-05-11,NA,37.5,28.363050798,28.66729798 "2324","chic",62.5,32.375,1993-05-12,NA,50.5,21.450790514,24.145574027 "2325","chic",48.5,33.75,1993-05-13,NA,23.125,16.992028986,17.555555556 "2326","chic",61,49,1993-05-14,NA,52,24.320289855,27.707882395 "2327","chic",62,37.875,1993-05-15,NA,73.5,28.8125,19.652777778 "2328","chic",56,36.625,1993-05-16,NA,44.5,28.291666667,21.319444444 "2329","chic",52,34.875,1993-05-17,NA,30.5,17.157971014,30.262254902 "2330","chic",54.5,41.125,1993-05-18,NA,51,18.825452899,27.685578612 "2331","chic",49.5,38,1993-05-19,NA,24.625,17.033514493,24.452294686 "2332","chic",50.5,36,1993-05-20,NA,61.5,10.717857143,34.156565657 "2333","chic",56,37,1993-05-21,NA,53,17.153804348,36.979166667 "2334","chic",60.5,55.375,1993-05-22,NA,43,27.145833333,30.534722222 "2335","chic",63.5,65,1993-05-23,NA,20,29.883333333,15.180555556 "2336","chic",60,49.25,1993-05-24,NA,34,19.572101449,12.409722222 "2337","chic",58.5,45,1993-05-25,NA,28,16.682773386,26.664525692 "2338","chic",61.5,47,1993-05-26,NA,50,19.641666667,33.611111111 "2339","chic",65,49.375,1993-05-27,NA,107,26.011231884,31.147041063 "2340","chic",57,44.125,1993-05-28,NA,92.5,18.622463768,20.211988304 "2341","chic",51,44.125,1993-05-29,NA,16,23.462962963,14.034722222 "2342","chic",58.5,64.25,1993-05-30,NA,28,16.25,23.076388889 "2343","chic",53.5,42,1993-05-31,NA,11.5,26.037037037,10.319444444 "2344","chic",51,44.5,1993-06-01,NA,31,14.172727273,26.02209596 "2345","chic",54.5,51.625,1993-06-02,NA,32,19.123484848,28.194664032 "2346","chic",50.5,44.375,1993-06-03,NA,31.5,19.854067852,23.819444444 "2347","chic",49.5,46.75,1993-06-04,NA,19.5,17.891123188,17.566942719 "2348","chic",58.5,46,1993-06-05,NA,23,22.8875,25.652777778 "2349","chic",61,53.375,1993-06-06,NA,31.625,26.4125,22.472222222 "2350","chic",64,65.125,1993-06-07,NA,36,6.1296212121,33.868055556 "2351","chic",72,67.375,1993-06-08,NA,25,13.464225589,30.505462231 "2352","chic",71,57.75,1993-06-09,NA,34,26.825757576,18.293560606 "2353","chic",68.5,61.875,1993-06-10,NA,63,24.65,36.159722222 "2354","chic",68,57.75,1993-06-11,NA,36,35.509347826,33.729166667 "2355","chic",67,57,1993-06-12,NA,40.571428571,35.720833333,26.966666667 "2356","chic",70.5,67.625,1993-06-13,NA,52,32.645833333,28.5 "2357","chic",72,54.125,1993-06-14,NA,43,25.768452381,25.555952381 "2358","chic",62.5,50.25,1993-06-15,NA,33,19.893768116,19.601086957 "2359","chic",63.5,59.375,1993-06-16,NA,NA,28.299225955,26.013224638 "2360","chic",78.5,69.75,1993-06-17,NA,62,44.180253623,29.585869565 "2361","chic",69.5,60.875,1993-06-18,NA,32.5,30.445833333,27.25 "2362","chic",70.5,69,1993-06-19,NA,28,25.953703704,25.09375 "2363","chic",69.5,61.75,1993-06-20,NA,18,25.069444444,14.691666667 "2364","chic",70.5,62.625,1993-06-21,NA,30,15.72446736,29.016203704 "2365","chic",72,56.25,1993-06-22,NA,47,25.89673913,38.609126984 "2366","chic",71.5,67.375,1993-06-23,NA,59,38.04384058,26.814915459 "2367","chic",78.5,67.875,1993-06-24,NA,49.875,31.064393939,27.381944444 "2368","chic",71.5,55,1993-06-25,NA,34,16.74331357,25.752344877 "2369","chic",70.5,62.25,1993-06-26,NA,35,20.244166667,23.888888889 "2370","chic",74.5,62,1993-06-27,NA,27,26.479166667,20.072916667 "2371","chic",65.5,52.375,1993-06-28,NA,19,18.604943064,23.563095238 "2372","chic",64.5,56.875,1993-06-29,NA,24,22.198374741,23.790687412 "2373","chic",64,60.5,1993-06-30,NA,33.25,16.479606625,21.772864515 "2374","chic",68.5,63.75,1993-07-01,NA,36,10.048007246,29.24365942 "2375","chic",73,71.5,1993-07-02,NA,NA,11.851893939,37.633838384 "2376","chic",79,73.5,1993-07-03,NA,NA,26.708333333,30.590277778 "2377","chic",81.5,70,1993-07-04,NA,70,29.354166667,15.666666667 "2378","chic",81,71,1993-07-05,NA,NA,33.654166667,10.9375 "2379","chic",73.5,66.875,1993-07-06,NA,23.75,25.107065217,24.499368687 "2380","chic",75,69.125,1993-07-07,NA,31,17.336697723,28.416666667 "2381","chic",79.5,74.5,1993-07-08,NA,47,23.93115942,25.363043478 "2382","chic",81,68.125,1993-07-09,NA,NA,23.585326087,23.233333333 "2383","chic",78.5,70.125,1993-07-10,NA,25,20.879166667,29.4 "2384","chic",73.5,68.5,1993-07-11,NA,29,24.408333333,20.816666667 "2385","chic",72,56.5,1993-07-12,NA,28.285714286,26.575,23.358333333 "2386","chic",71,67.75,1993-07-13,NA,40,30.1625,26.598333333 "2387","chic",70,58.375,1993-07-14,NA,NA,27.992753623,27.013888889 "2388","chic",69.5,55.25,1993-07-15,NA,15,30.522916667,17.055555556 "2389","chic",72.5,64.875,1993-07-16,NA,47,34.945833333,24.515398551 "2390","chic",74.5,71,1993-07-17,NA,60,29.775,23.034722222 "2391","chic",79,72.75,1993-07-18,NA,38.625,25.055681818,24.118055556 "2392","chic",76,65,1993-07-19,NA,43,28.825,21.826388889 "2393","chic",71.5,59,1993-07-20,NA,33,21.923348391,22.378156566 "2394","chic",69,55.125,1993-07-21,NA,29,17.490217391,18.907828283 "2395","chic",66,54.875,1993-07-22,NA,24,20.594384058,16.548611111 "2396","chic",72.5,65.75,1993-07-23,NA,57,26.163949275,28.435413922 "2397","chic",77.5,71.25,1993-07-24,NA,46.5,24.21865942,27.451169302 "2398","chic",79.5,73.75,1993-07-25,NA,36,29.708333333,15.909722222 "2399","chic",76,66.125,1993-07-26,NA,33,20.581884058,20.951388889 "2400","chic",78.5,78.125,1993-07-27,NA,66,24.419202899,26.477272727 "2401","chic",76.5,62,1993-07-28,NA,51,25.840786749,16.401388889 "2402","chic",72,60.875,1993-07-29,NA,34,17.917407773,17.273852657 "2403","chic",69.5,59.625,1993-07-30,NA,31.625,19.025823452,23.002525253 "2404","chic",72,68.125,1993-07-31,NA,46,24.458333333,26.861111111 "2405","chic",75.5,63,1993-08-01,NA,26.5,27.558333333,13.598128019 "2406","chic",68.5,57.125,1993-08-02,NA,42.5,15.9,20.531944444 "2407","chic",70.5,55.875,1993-08-03,NA,42.5,15.572826087,19.423611111 "2408","chic",63.5,49,1993-08-04,NA,38.5,15.684535573,19.4375 "2409","chic",63,57.5,1993-08-05,NA,36.875,13.612681159,26.466666667 "2410","chic",66,51.75,1993-08-06,NA,32,15.49384058,22.537878788 "2411","chic",65,59.25,1993-08-07,NA,26,22.929166667,22.8 "2412","chic",68.5,59.875,1993-08-08,NA,37.5,35.944565217,30.291666667 "2413","chic",68,66.25,1993-08-09,NA,55,19.925,31.8 "2414","chic",77,70.625,1993-08-10,NA,67.5,26.254041502,26.75615942 "2415","chic",76.5,70.25,1993-08-11,NA,79.25,33.6243083,37.703787879 "2416","chic",76,71.75,1993-08-12,NA,59,24.48835639,28.176388889 "2417","chic",77,70.25,1993-08-13,NA,71,38.862173913,28.704980295 "2418","chic",77,67.375,1993-08-14,NA,83.5,32.088257576,34.88510101 "2419","chic",74,71.625,1993-08-15,NA,52.5,19.9,30.138888889 "2420","chic",76,68.875,1993-08-16,NA,41,20.536835749,28.152777778 "2421","chic",75,69,1993-08-17,NA,40.285714286,38.796095008,18.65530303 "2422","chic",76.5,69.625,1993-08-18,NA,56,37.883695652,30.311308162 "2423","chic",78,72.375,1993-08-19,NA,57.5,12.9125,36.639520202 "2424","chic",71.5,61.625,1993-08-20,NA,28,19.028442029,20.423611111 "2425","chic",71.5,61.75,1993-08-21,NA,20,20.95,12.270833333 "2426","chic",70,64.75,1993-08-22,NA,26.5,22.258333333,18.958333333 "2427","chic",80,71.5,1993-08-23,NA,55.25,30.371590909,22.344907407 "2428","chic",77,68.375,1993-08-24,NA,40,19.424242424,25.112863887 "2429","chic",79,72.375,1993-08-25,NA,52,24.674242424,34.880681818 "2430","chic",84,74,1993-08-26,NA,66.5,24.209848485,31.784722222 "2431","chic",81.5,71.625,1993-08-27,NA,85.5,30.526282051,24.065217391 "2432","chic",72,61.25,1993-08-28,NA,14,19.260869565,12.506944444 "2433","chic",71,69.875,1993-08-29,NA,26.285714286,19.991666667,18.930555556 "2434","chic",79,72.375,1993-08-30,NA,78,25.792443064,22.755477916 "2435","chic",64,52.375,1993-08-31,NA,24,15.501190476,19.695048309 "2436","chic",64.5,56.125,1993-09-01,NA,31.5,16.859187371,31.441468254 "2437","chic",67,69.75,1993-09-02,NA,36,2.7121706192,25.368055556 "2438","chic",66,58.625,1993-09-03,NA,36,12.05,21.230374396 "2439","chic",64,59.5,1993-09-04,NA,24,13.0375,17.541666667 "2440","chic",67,60.125,1993-09-05,NA,18,12.333333333,15.808333333 "2441","chic",59.5,47.25,1993-09-06,NA,18,12.420833333,14.975 "2442","chic",62.5,51.625,1993-09-07,NA,65,11.179545455,33.091666667 "2443","chic",64,52.5,1993-09-08,NA,38,11.553804348,31.59469697 "2444","chic",64.5,54.625,1993-09-09,NA,40,14.084749671,20.726010101 "2445","chic",55.5,40.375,1993-09-10,NA,34.285714286,12.650757576,20.990277778 "2446","chic",55,49.5,1993-09-11,NA,40.5,12.6125,22.266666667 "2447","chic",70.5,64.125,1993-09-12,NA,44.5,33.679166667,13.925 "2448","chic",73.5,70,1993-09-13,NA,36,29.250181159,22.075 "2449","chic",62,53.25,1993-09-14,NA,23,7.8304347826,14.628877282 "2450","chic",53,45.5,1993-09-15,NA,15,7.4208333333,16.983333333 "2451","chic",55,49.25,1993-09-16,NA,29.875,4.4994047619,24.270833333 "2452","chic",60.5,47.75,1993-09-17,NA,36,10.608333333,33.914855072 "2453","chic",59.5,53.875,1993-09-18,NA,39,9.9458333333,26.625 "2454","chic",59,53.875,1993-09-19,NA,26,20.5375,14.083333333 "2455","chic",61,61.375,1993-09-20,NA,44.5,8.6125,28.930555556 "2456","chic",57,53.625,1993-09-21,NA,31.5,6.6268774704,20.957070707 "2457","chic",65,63.125,1993-09-22,NA,33.25,6.3972049689,27.163086611 "2458","chic",54.5,45.75,1993-09-23,NA,24.5,8.5541666667,19.249242424 "2459","chic",53.5,47.375,1993-09-24,NA,50,8.2206521739,33.958333333 "2460","chic",56.5,54.875,1993-09-25,NA,33.5,9.7728070175,21.364583333 "2461","chic",59,53.375,1993-09-26,NA,26,18.912037037,21.5 "2462","chic",49.5,39.375,1993-09-27,NA,30,5.2327441077,18.09375 "2463","chic",51.5,39.75,1993-09-28,NA,25.75,7.2977602108,23.267753623 "2464","chic",46.5,37.5,1993-09-29,NA,31,3.5954545455,21.619393939 "2465","chic",46.5,39.75,1993-09-30,NA,45,11.192417184,22.668780193 "2466","chic",56.5,36.875,1993-10-01,NA,37,15.930072464,21.560825648 "2467","chic",45,25.125,1993-10-02,NA,30.5,12.591666667,21.523358586 "2468","chic",52,47,1993-10-03,NA,33,19.7875,13.25 "2469","chic",50.5,40.5,1993-10-04,NA,23.5,13.707582816,19.326666667 "2470","chic",49,40.375,1993-10-05,NA,57,7.2540942029,37.211352657 "2471","chic",61,56.125,1993-10-06,NA,45,18.957246377,29.656243032 "2472","chic",70,56.5,1993-10-07,NA,91.5,26.646014493,34.983333333 "2473","chic",62.5,51.75,1993-10-08,NA,82.5,24.454710145,31.329710145 "2474","chic",40.5,27.5,1993-10-09,NA,7.5,19.967592593,10.263768116 "2475","chic",41.5,32.25,1993-10-10,NA,18.428571429,9.5958333333,25.769927536 "2476","chic",44.5,37.625,1993-10-11,NA,87,10.941666667,30.139492754 "2477","chic",46.5,35.875,1993-10-12,NA,24,10.840942029,21.888768116 "2478","chic",40.5,33.25,1993-10-13,NA,41.5,11.470872388,28.917640693 "2479","chic",50.5,42.75,1993-10-14,NA,69.5,5.3501811594,35.309036797 "2480","chic",61,55,1993-10-15,NA,58,14.262036514,38.235507246 "2481","chic",58,55,1993-10-16,NA,30.75,9.1291666667,27.15307971 "2482","chic",52.5,45.375,1993-10-17,NA,15.5,17.6125,19.029314888 "2483","chic",49.5,48,1993-10-18,NA,70.5,7.0436594203,43.862510979 "2484","chic",55.5,50.5,1993-10-19,NA,37,6.555615942,25.969385888 "2485","chic",55,53.5,1993-10-20,NA,39,1.1443511199,25.91540404 "2486","chic",46.5,27.375,1993-10-21,NA,27,11.746014493,18.486111111 "2487","chic",45.5,32.625,1993-10-22,NA,40.75,5.9416666667,37.731150794 "2488","chic",53,42.875,1993-10-23,NA,45,13.854166667,34.527777778 "2489","chic",58.5,40.375,1993-10-24,NA,32,15.770833333,33.319444444 "2490","chic",57,39.875,1993-10-25,NA,81,9.1778985507,42.319444444 "2491","chic",54,40,1993-10-26,NA,55,7.5487812912,25.967171717 "2492","chic",40.5,29.125,1993-10-27,NA,36.5,8.2216666667,23.1875 "2493","chic",46,33,1993-10-28,NA,47.125,8.3981578204,22.648358586 "2494","chic",35,20.75,1993-10-29,NA,39.5,10.972101449,18.693332062 "2495","chic",34.5,28.5,1993-10-30,NA,21,11.193872549,20.958333333 "2496","chic",33.5,21.875,1993-10-31,NA,16.5,11.8125,20.925 "2497","chic",35.5,23.125,1993-11-01,NA,48,5.8460144928,31.59057971 "2498","chic",41.5,38.75,1993-11-02,NA,51.5,3.1182147563,28.797713982 "2499","chic",45,37.125,1993-11-03,NA,36.428571429,4.5572463768,26.298611111 "2500","chic",51.5,46.875,1993-11-04,NA,36,7.1689393939,26.617624224 "2501","chic",39,31.625,1993-11-05,NA,25,3.6583333333,18.880411255 "2502","chic",27,16.75,1993-11-06,NA,17.5,12.35,18.527777778 "2503","chic",28.5,22.5,1993-11-07,NA,36.5,9.7666666667,18.076388889 "2504","chic",38.5,28.625,1993-11-08,NA,65.5,3.7333333333,28.54076087 "2505","chic",39,33,1993-11-09,NA,47.428571429,3.9516018307,33.806376118 "2506","chic",40,32,1993-11-10,NA,56.5,3.2975543478,38.701388889 "2507","chic",46,35,1993-11-11,NA,67,9.3333333333,36.354166667 "2508","chic",41,43.375,1993-11-12,NA,51.5,10.03125,25.275883838 "2509","chic",54.5,42.625,1993-11-13,NA,21.5,11.75,19.825 "2510","chic",44.5,42.75,1993-11-14,NA,11.5,6.6333333333,14.666666667 "2511","chic",41,34.875,1993-11-15,NA,17.571428571,4.6583333333,25.153287534 "2512","chic",40.5,37.375,1993-11-16,NA,42,5.2906521739,23.104084321 "2513","chic",37.5,33.125,1993-11-17,NA,24,8.9981884058,21.417545015 "2514","chic",37.5,39.625,1993-11-18,NA,43,4.5316666667,30.199707602 "2515","chic",39,16.5,1993-11-19,NA,31,8.5,20.737121212 "2516","chic",31.5,27.25,1993-11-20,NA,21,8.8,22.716666667 "2517","chic",43.5,32.25,1993-11-21,NA,17.125,10.933333333,20.775 "2518","chic",45.5,36.875,1993-11-22,NA,48.5,3.175,32.791666667 "2519","chic",46.5,36.25,1993-11-23,NA,27,2.4562111801,35.581521739 "2520","chic",42.5,37.375,1993-11-24,NA,48.5,6.9637681159,18.189613527 "2521","chic",39.5,40.375,1993-11-25,NA,20,12.4,15.520833333 "2522","chic",31.5,16.875,1993-11-26,NA,15.5,5.1916666667,20.930555556 "2523","chic",25.5,24,1993-11-27,NA,20.428571429,7.6166666667,27.395833333 "2524","chic",31,20.875,1993-11-28,NA,25,10.358333333,22.715277778 "2525","chic",27,19.375,1993-11-29,NA,35,6.075,28.847222222 "2526","chic",29.5,23.875,1993-11-30,NA,40,3.7,33.065656566 "2527","chic",36.5,30.625,1993-12-01,NA,35,2.9289525692,31.30736715 "2528","chic",41.5,33.75,1993-12-02,NA,34,7.1471014493,27.854166667 "2529","chic",36,38.875,1993-12-03,NA,44,3.2083333333,33.777173913 "2530","chic",39,34.25,1993-12-04,NA,19.5,6.6453030303,19.133333333 "2531","chic",37,34.875,1993-12-05,NA,23.5,4.3083333333,27.25 "2532","chic",34.5,24.375,1993-12-06,NA,21.5,3.5666666667,21.691666667 "2533","chic",30.5,26.5,1993-12-07,NA,36,2.775,30.22718254 "2534","chic",34,29.125,1993-12-08,NA,37.5,1.7742424242,24.966414141 "2535","chic",42,45.5,1993-12-09,NA,36.25,2.6598484848,29.480072464 "2536","chic",37.5,18.625,1993-12-10,NA,34.5,6.2708333333,21.155797101 "2537","chic",25.5,18.25,1993-12-11,NA,17.5,8.5833333333,25.576388889 "2538","chic",30.5,22,1993-12-12,NA,19,4.0833333333,25.965277778 "2539","chic",41,25.5,1993-12-13,NA,24.5,2.2604166667,30.125 "2540","chic",41,32.375,1993-12-14,NA,23.5,2.5206439394,31.350049407 "2541","chic",42.5,35,1993-12-15,NA,7.5714285714,14.985054348,20.495772947 "2542","chic",36.5,32,1993-12-16,NA,18,9.2291666667,19.501811594 "2543","chic",38.5,38.5,1993-12-17,NA,16,0.4270833333,23.923611111 "2544","chic",38,29.75,1993-12-18,NA,16.5,2.8854166667,23 "2545","chic",35,31.375,1993-12-19,NA,14.5,3.0520833333,20.729166667 "2546","chic",32.5,23.75,1993-12-20,NA,21.5,3.9166666667,23.979166667 "2547","chic",27,21.5,1993-12-21,NA,20.375,2.6358695652,21.973018226 "2548","chic",24.5,16.125,1993-12-22,NA,25,1.9252717391,27.483825052 "2549","chic",21.5,13.125,1993-12-23,NA,31.5,5,25.888888889 "2550","chic",15,7.75,1993-12-24,NA,18,5.6875,22.854166667 "2551","chic",11.5,-5.125,1993-12-25,NA,26,14.260416667,18.944444444 "2552","chic",9,-5.75,1993-12-26,NA,42.5,10.552083333,26.158333333 "2553","chic",13.5,-1.375,1993-12-27,NA,44,4.6875,33.416666667 "2554","chic",13.5,10.375,1993-12-28,NA,46,2.853219697,38.107680061 "2555","chic",16.5,-2.375,1993-12-29,NA,59,8.5907738095,24.777777778 "2556","chic",14,15.875,1993-12-30,NA,44,6.0631313131,28.807359307 "2557","chic",32,27.875,1993-12-31,NA,19.5,3.4861111111,28.208333333 "2558","chic",35,26.875,1994-01-01,NA,13.5,9.6111111111,19.097222222 "2559","chic",30,22.5,1994-01-02,NA,13.75,15.6875,19.555555556 "2560","chic",29.5,24.875,1994-01-03,NA,16,9.1770833333,22.519323671 "2561","chic",26,18.25,1994-01-04,NA,33.5,10.839673913,24.812025535 "2562","chic",18.5,20.5,1994-01-05,NA,25.5,7.2774621212,26.827267238 "2563","chic",29.5,25.375,1994-01-06,NA,23,3.5801630435,26.480072464 "2564","chic",12,-8.625,1994-01-07,NA,24,5.4375,28.131944444 "2565","chic",1,-2.75,1994-01-08,NA,24.857142857,6.8125,26.458333333 "2566","chic",8,8.75,1994-01-09,NA,35.5,3.375,43.027777778 "2567","chic",26,30.125,1994-01-10,NA,27,2.3854166667,29.840909091 "2568","chic",28.5,19.25,1994-01-11,NA,28,9.0208333333,26.558657224 "2569","chic",25.5,25.625,1994-01-12,NA,33.5,4.4510869565,32.264190821 "2570","chic",13.5,2.5,1994-01-13,NA,43,4.9888257576,33.018308081 "2571","chic",-4,-17.875,1994-01-14,NA,36.125,11.907155797,28.047403382 "2572","chic",-10.5,-23.125,1994-01-15,NA,36,12.010416667,24.701388889 "2573","chic",-3.5,3.25,1994-01-16,NA,22,3.5,31.881944444 "2574","chic",-0.5,-16.25,1994-01-17,NA,39,10.277173913,26.574879227 "2575","chic",-16,-25.625,1994-01-18,NA,27,14.65625,22.102355072 "2576","chic",-8,-2.375,1994-01-19,NA,24.5,4.8645833333,36.597963329 "2577","chic",2.5,-4.625,1994-01-20,NA,43.125,2.759469697,48.875 "2578","chic",8,14,1994-01-21,NA,38,4.1979166667,39.720328283 "2579","chic",24.5,23.75,1994-01-22,NA,48,3.5416666667,48.097222222 "2580","chic",36,33,1994-01-23,NA,23,5.9583333333,25.590277778 "2581","chic",34,29.5,1994-01-24,NA,28.5,4.816576087,30.104166667 "2582","chic",31,27.125,1994-01-25,NA,20,8.5579710145,25.031400966 "2583","chic",23.5,17.375,1994-01-26,NA,14.25,18.257440476,20.673309179 "2584","chic",26.5,32.375,1994-01-27,NA,25,2.1865942029,30.853864734 "2585","chic",29,21.625,1994-01-28,NA,23,2.4148550725,32.034722222 "2586","chic",23,19.25,1994-01-29,NA,16.5,7.4458333333,31.658333333 "2587","chic",16,11.625,1994-01-30,NA,11,19.166666667,17.46875 "2588","chic",3.5,-7.5,1994-01-31,NA,32,7.2940705128,37.288558664 "2589","chic",1.5,3,1994-02-01,NA,34.375,4.7638888889,41.847222222 "2590","chic",17,13.875,1994-02-02,NA,38,9.3075181159,30.417443064 "2591","chic",9.5,8.125,1994-02-03,NA,35.5,11.596590909,31.256944444 "2592","chic",15.5,2.25,1994-02-04,NA,35,10.760416667,35.229166667 "2593","chic",19.5,7.25,1994-02-05,NA,25.5,10.385416667,35.590277778 "2594","chic",23,8,1994-02-06,NA,30,13.302083333,34.458333333 "2595","chic",11.5,6.375,1994-02-07,NA,22.375,14.572916667,27.430555556 "2596","chic",15.5,11.875,1994-02-08,NA,18,17.577898551,21.617753623 "2597","chic",6.5,-3.5,1994-02-09,NA,30.5,9.4320652174,33.210144928 "2598","chic",6,5,1994-02-10,NA,35,10.677083333,38.976840011 "2599","chic",12.5,15.5,1994-02-11,NA,35,10.6875,37.152777778 "2600","chic",21,21.25,1994-02-12,NA,37,4.2395833333,41.826388889 "2601","chic",20.5,13.375,1994-02-13,NA,33.875,14.59375,35.555555556 "2602","chic",29.5,30.125,1994-02-14,NA,101,7.75,44.013888889 "2603","chic",33.5,24.75,1994-02-15,NA,29,11.611248353,40.021245059 "2604","chic",29,29.375,1994-02-16,NA,36,7.1662137681,44.667742644 "2605","chic",42.5,36.625,1994-02-17,NA,43.5,5.3333333333,46.806818182 "2606","chic",47,41.625,1994-02-18,NA,50,13.239583333,44.645833333 "2607","chic",55.5,53.375,1994-02-19,NA,26.25,15.020833333,23.833333333 "2608","chic",46,33,1994-02-20,NA,22,13.677083333,19.513888889 "2609","chic",33,24.875,1994-02-21,NA,22,15.1875,22.930555556 "2610","chic",27,22.625,1994-02-22,NA,18,19.708333333,15.277777778 "2611","chic",22.5,17.75,1994-02-23,NA,8,13.125,23.674873737 "2612","chic",15.5,9.125,1994-02-24,NA,24,12.119112319,35.704710145 "2613","chic",19.5,14.25,1994-02-25,NA,32.285714286,9.8428442029,35.835748792 "2614","chic",11,1,1994-02-26,NA,27.5,10.34375,35.548611111 "2615","chic",13,12.125,1994-02-27,NA,31,12.395833333,42.277777778 "2616","chic",25,25.25,1994-02-28,NA,30.5,9.8541666667,48.625 "2617","chic",26,22.5,1994-03-01,NA,27.5,22.753211462,32.8131917 "2618","chic",23.5,22,1994-03-02,NA,32,17.322916667,47.238768116 "2619","chic",30.5,32,1994-03-03,NA,68.75,8.6508152174,53.894845191 "2620","chic",43,30.857142857,1994-03-04,NA,39,9.7119565217,44.548611111 "2621","chic",40,34.5,1994-03-05,NA,42.5,10.986111111,45.826388889 "2622","chic",48.5,31.875,1994-03-06,NA,27.5,11.583333333,31.319444444 "2623","chic",40.5,25.5,1994-03-07,NA,35,12.447916667,29.338383838 "2624","chic",31,14,1994-03-08,NA,26,18.576704545,22.313296004 "2625","chic",29,19.625,1994-03-09,NA,24,15.370923913,24.885912698 "2626","chic",29.5,27.125,1994-03-10,NA,45,10.072916667,36.097222222 "2627","chic",29.5,23.75,1994-03-11,NA,36,23.166666667,30.076388889 "2628","chic",44,39.375,1994-03-12,NA,42.5,14.083333333,34.770833333 "2629","chic",40,34.875,1994-03-13,NA,35,8.21875,34.423611111 "2630","chic",41.5,38.75,1994-03-14,NA,50.5,6.7291666667,35.041666667 "2631","chic",38.5,22,1994-03-15,NA,18.714285714,16.95573946,24.011273449 "2632","chic",29,14,1994-03-16,NA,20.5,22.021327404,24.984006734 "2633","chic",29.5,15.375,1994-03-17,NA,31,11.797554348,38.496969697 "2634","chic",34,24.125,1994-03-18,NA,38,10.807971014,35.91547619 "2635","chic",38,29.875,1994-03-19,NA,82.5,10.0625,40.916666667 "2636","chic",49.5,39.875,1994-03-20,NA,43,20.84375,31.525 "2637","chic",48,27.875,1994-03-21,NA,32.625,13.822916667,33.458333333 "2638","chic",53.5,36.5,1994-03-22,NA,39,19.053977273,35.339277389 "2639","chic",61,45.5,1994-03-23,NA,60,21.78125,33.878472222 "2640","chic",49,24.625,1994-03-24,NA,69.5,21.27173913,20.044191919 "2641","chic",36.5,22,1994-03-25,NA,82,26.817481884,23.321256039 "2642","chic",39,33.75,1994-03-26,NA,70.5,14.40625,30.319444444 "2643","chic",43,31.5,1994-03-27,NA,33.875,13,28.097222222 "2644","chic",38,28.375,1994-03-28,NA,26,10.855113636,39.668560606 "2645","chic",36,24.25,1994-03-29,NA,30,14.208333333,34.67380325 "2646","chic",33.5,21.25,1994-03-30,NA,42.5,9.3936511858,45.063543039 "2647","chic",40,23.875,1994-03-31,NA,41,15.494112319,35.948232323 "2648","chic",51.5,29.875,1994-04-01,NA,65,16.463541667,44.097222222 "2649","chic",55,30.125,1994-04-02,NA,46.25,24.427083333,27.513888889 "2650","chic",42,18,1994-04-03,NA,21.5,24.875,24.145833333 "2651","chic",47,33.125,1994-04-04,NA,131,20.079545455,31.569444444 "2652","chic",40.5,21,1994-04-05,NA,14,25.290550432,16.428030303 "2653","chic",31,21.375,1994-04-06,NA,13.5,26.842069766,18.247564935 "2654","chic",36.5,17,1994-04-07,NA,35.5,16.395732689,35.041666667 "2655","chic",47.5,31.125,1994-04-08,NA,56.875,21.144451764,34.878321256 "2656","chic",57.5,25.75,1994-04-09,NA,32,24.240740741,28.069444444 "2657","chic",46,27.25,1994-04-10,NA,32.5,35.96557971,15.458333333 "2658","chic",43.5,36.75,1994-04-11,NA,21,24.282407407,23.892512077 "2659","chic",48.5,45.125,1994-04-12,NA,21,14.442834138,27.347853535 "2660","chic",46.5,42.375,1994-04-13,NA,22.5,12.787037037,26.444444444 "2661","chic",57,50,1994-04-14,NA,37,22.080808081,41.143088494 "2662","chic",57.5,35.375,1994-04-15,NA,36,29.143190101,20.08531746 "2663","chic",52.5,28.125,1994-04-16,NA,31,30.087962963,18.090277778 "2664","chic",55.5,29.25,1994-04-17,NA,23.5,26.828703704,25.868055556 "2665","chic",67.5,46.125,1994-04-18,NA,60.5,33.394122383,31.111111111 "2666","chic",58,23.125,1994-04-19,NA,40.5,35.471654955,22.93802152 "2667","chic",51,29.625,1994-04-20,NA,42.75,20.812801932,38.451388889 "2668","chic",48.5,20.75,1994-04-21,NA,27,28.052975406,27.407004831 "2669","chic",45.5,21,1994-04-22,NA,71,25.843397746,30.101388889 "2670","chic",53,29.875,1994-04-23,NA,82.5,29.148148148,32.0625 "2671","chic",68.5,54.375,1994-04-24,NA,49,47.949074074,20.520833333 "2672","chic",71,55.5,1994-04-25,NA,99,34.550724638,27.444444444 "2673","chic",75,48.125,1994-04-26,NA,121.75,28.261272142,23.161820064 "2674","chic",53.5,31.125,1994-04-27,NA,24,20.985507246,14.500992063 "2675","chic",41.5,43.375,1994-04-28,NA,20,9.6256038647,17.345959596 "2676","chic",47.5,33.75,1994-04-29,NA,24.5,16.012370078,18.256944444 "2677","chic",38.5,33.625,1994-04-30,NA,13.5,20.351851852,16.605072464 "2678","chic",45.5,33.875,1994-05-01,NA,26,25.486111111,22.243055556 "2679","chic",51,28.25,1994-05-02,NA,33.375,22.328301127,33.370039683 "2680","chic",49,26,1994-05-03,NA,47,27.844720497,30.395697536 "2681","chic",51,36.5,1994-05-04,NA,75.5,19.712962963,43.804045894 "2682","chic",57.5,40,1994-05-05,NA,60.5,21.910225443,36.179567413 "2683","chic",45.5,31.875,1994-05-06,NA,15.5,27.720849802,19.8125 "2684","chic",46,38.875,1994-05-07,NA,18.5,20.796296296,26.534722222 "2685","chic",53.5,39,1994-05-08,NA,26.857142857,27.731481481,25.479166667 "2686","chic",61.5,30.5,1994-05-09,NA,39.5,26.003825052,27.879528986 "2687","chic",56.5,35.375,1994-05-10,NA,63.5,17.96506917,39.216540404 "2688","chic",62.5,42.5,1994-05-11,NA,72,33.745833333,23.014629996 "2689","chic",52,34.875,1994-05-12,NA,28.5,25.400362319,21.921085859 "2690","chic",59.5,31,1994-05-13,NA,59,21.523386034,36.171799517 "2691","chic",60.5,60.125,1994-05-14,NA,43.25,20.0625,32.863224638 "2692","chic",62.5,43.25,1994-05-15,NA,22.5,30.0125,15.326388889 "2693","chic",50.5,36.125,1994-05-16,NA,13.5,26.13423913,18.138888889 "2694","chic",48.5,29.25,1994-05-17,NA,11.5,26.065217391,19.253568292 "2695","chic",50.5,29.875,1994-05-18,NA,17.5,24.223615734,20.854056873 "2696","chic",54,37.75,1994-05-19,NA,26.5,24.536904762,28.78968254 "2697","chic",59.5,42.75,1994-05-20,NA,54.875,24.239015152,40.307575758 "2698","chic",68,45.625,1994-05-21,NA,86.5,38.470833333,49.616666667 "2699","chic",73,49.75,1994-05-22,NA,70.5,45.5375,49.916666667 "2700","chic",68.5,54.125,1994-05-23,NA,54,36.571792413,39.8 "2701","chic",66.5,60.875,1994-05-24,NA,45.5,28.00625,42.397463768 "2702","chic",65.5,58,1994-05-25,NA,34,27.476663373,38.986742424 "2703","chic",49,38,1994-05-26,NA,15.875,23.598369565,16.239267677 "2704","chic",51,33.875,1994-05-27,NA,34,18.986231884,29.854166667 "2705","chic",63,46,1994-05-28,NA,43.5,33.941666667,29.909722222 "2706","chic",69.5,48.75,1994-05-29,NA,48,46.191666667,23 "2707","chic",77,59.375,1994-05-30,NA,55,47.811388889,21.788095238 "2708","chic",75,40.5,1994-05-31,NA,53.5,28.782065217,28.05615942 "2709","chic",56,34.25,1994-06-01,NA,28.875,24.80872859,21.439695872 "2710","chic",55,27.5,1994-06-02,NA,18.5,27.596689723,20.883928571 "2711","chic",57,40.75,1994-06-03,NA,59,25.744021739,37.097222222 "2712","chic",61,39.75,1994-06-04,NA,43.5,33.65,39.6875 "2713","chic",71,60,1994-06-05,NA,88,44.570833333,27.208333333 "2714","chic",77,62.125,1994-06-06,NA,80,41.422506394,31.720987044 "2715","chic",68.5,49.25,1994-06-07,NA,61,22.195652174,35.613730472 "2716","chic",55.5,39.625,1994-06-08,NA,29,21.212318841,16.269406017 "2717","chic",56,33.875,1994-06-09,NA,37.5,28.236594203,32.361111111 "2718","chic",61.5,40.875,1994-06-10,NA,53,23.826893939,50.70959596 "2719","chic",67,56,1994-06-11,NA,53.5,24.975,39.465277778 "2720","chic",72.5,58.125,1994-06-12,NA,25,32.025,21.986111111 "2721","chic",78,66.875,1994-06-13,NA,36.125,35.29365942,23.888888889 "2722","chic",80,70,1994-06-14,NA,55,30.242753623,24.009963768 "2723","chic",86,66.375,1994-06-15,NA,90,31.355978261,25.245580808 "2724","chic",84,65,1994-06-16,NA,86.5,34.870289855,37.187801932 "2725","chic",81.5,65.375,1994-06-17,NA,106.5,30.945833333,42.715909091 "2726","chic",82,64.25,1994-06-18,NA,71.5,52.178442029,41.3125 "2727","chic",75.5,63.625,1994-06-19,NA,35.857142857,32.916666667,18.569444444 "2728","chic",78,72,1994-06-20,NA,88,33.402536232,38.120580808 "2729","chic",74,53,1994-06-21,NA,37,26.691452569,28.6147343 "2730","chic",73.5,48,1994-06-22,NA,47.5,26.5375,32.442797541 "2731","chic",67.5,62.625,1994-06-23,NA,39,22.644746377,32.873106061 "2732","chic",63.5,54,1994-06-24,NA,27.5,32.58458498,17.645833333 "2733","chic",70.5,61,1994-06-25,NA,31.5,25.7875,27.8125 "2734","chic",68.5,59.75,1994-06-26,NA,41,33.446014493,21.020833333 "2735","chic",69.5,54,1994-06-27,NA,33.5,24.659601449,25.895289855 "2736","chic",74.5,59.5,1994-06-28,NA,51.5,28.097380952,27.458333333 "2737","chic",70.5,58.875,1994-06-29,NA,37,26.639772727,25.248956961 "2738","chic",70,59.375,1994-06-30,NA,41.5,15.53115942,31.486111111 "2739","chic",77,63.75,1994-07-01,NA,47.875,33.74333004,32.459486166 "2740","chic",63.5,52,1994-07-02,NA,15.5,17.433333333,14.673611111 "2741","chic",66.5,63.625,1994-07-03,NA,34.5,28.203703704,18.763888889 "2742","chic",82,74,1994-07-04,NA,41.5,38.324074074,15.666666667 "2743","chic",85.5,70.5,1994-07-05,NA,12,35.675505051,25.638131313 "2744","chic",82.5,68.375,1994-07-06,NA,52,26.006898697,32.840277778 "2745","chic",79.5,70.25,1994-07-07,NA,47.875,18.383333333,35.25 "2746","chic",74,60.375,1994-07-08,NA,42,21.762203557,18.659722222 "2747","chic",66.5,58.125,1994-07-09,NA,22,13.991666667,12.055555556 "2748","chic",66,54.5,1994-07-10,NA,13.5,20.166666667,10.944444444 "2749","chic",69.5,66,1994-07-11,NA,68.5,24.729166667,23.49537037 "2750","chic",81,67.5,1994-07-12,NA,50.5,35.188677536,26.38965051 "2751","chic",66.5,58.5,1994-07-13,NA,25,16.644726248,20.631060606 "2752","chic",73.5,65.75,1994-07-14,NA,56.5,29.096374459,26.780194805 "2753","chic",74,58.875,1994-07-15,NA,41,22.508723523,25.783333333 "2754","chic",73.5,64.75,1994-07-16,NA,38.5,28.804166667,34.989215686 "2755","chic",76,60.25,1994-07-17,NA,26.5,27.9,24.766666667 "2756","chic",75,61.5,1994-07-18,NA,35.5,21.386742424,31.238333333 "2757","chic",77,67.25,1994-07-19,NA,37,21.482789855,30.578282828 "2758","chic",79.5,69.5,1994-07-20,NA,53,26.612121212,29.111113533 "2759","chic",74.5,66.625,1994-07-21,NA,40.5,17.85951581,26 "2760","chic",72.5,64.125,1994-07-22,NA,32,13.107065217,22.38442029 "2761","chic",75.5,63.75,1994-07-23,NA,25.5,21.268518519,21.083333333 "2762","chic",74.5,57.25,1994-07-24,NA,20,22.783333333,18.358333333 "2763","chic",72.5,51.5,1994-07-25,NA,35.875,15.494746377,24.842857143 "2764","chic",66,54.375,1994-07-26,NA,35.5,15.750181159,28.983333333 "2765","chic",67.5,54,1994-07-27,NA,24.5,13.689970356,18.569773825 "2766","chic",66,50.25,1994-07-28,NA,24.5,13.305072464,20.474335749 "2767","chic",67.5,51.375,1994-07-29,NA,74,16.900677583,35.684842995 "2768","chic",70,57.75,1994-07-30,NA,72.5,27.949074074,39.574494949 "2769","chic",75,61.5,1994-07-31,NA,46.75,32.425,24.319444444 "2770","chic",77,67,1994-08-01,NA,60,34.292572464,31.076388889 "2771","chic",69,58,1994-08-02,NA,39.5,26.095833333,18.316287879 "2772","chic",71.5,68.125,1994-08-03,NA,62,22.388965744,34.576388889 "2773","chic",69.5,53.75,1994-08-04,NA,45.5,20.39692029,24.486904762 "2774","chic",59,47.375,1994-08-05,NA,19,18.707987484,14.008333333 "2775","chic",60,50.75,1994-08-06,NA,35.25,19.966666667,29.266666667 "2776","chic",65,57.25,1994-08-07,NA,26,31.091666667,31.191666667 "2777","chic",74,60,1994-08-08,NA,51.5,29.149275362,24.722222222 "2778","chic",58.5,51,1994-08-09,NA,24,19.025905797,15.038372859 "2779","chic",61,57.5,1994-08-10,NA,NA,6.5238636364,33.583333333 "2780","chic",63.5,59.25,1994-08-11,NA,29.5,23.482246377,26.196428571 "2781","chic",65.5,64.75,1994-08-12,NA,41.25,16.117967721,34.125 "2782","chic",75,70.75,1994-08-13,NA,41,23.134259259,23.825 "2783","chic",64.5,50.875,1994-08-14,NA,33,19.369791667,18.691666667 "2784","chic",66.5,51.5,1994-08-15,NA,32,14.757045455,29.796717172 "2785","chic",66.5,58.125,1994-08-16,NA,68.5,19.58128882,40.183333333 "2786","chic",70,61,1994-08-17,NA,52.5,26.908333333,44.806752306 "2787","chic",71,66.375,1994-08-18,NA,62.875,23.625,45.620421607 "2788","chic",77,64.5,1994-08-19,NA,86,36.36884058,34.247342995 "2789","chic",70,62.125,1994-08-20,NA,31,30.833333333,18.131944444 "2790","chic",66,58.375,1994-08-21,NA,NA,19.25,15.0625 "2791","chic",68,57.5,1994-08-22,NA,46.5,13.196014493,26.566123188 "2792","chic",69.5,61.25,1994-08-23,NA,61.5,21.820833333,34.092171717 "2793","chic",77.5,70.375,1994-08-24,NA,59.428571429,33.686413043,31.64673913 "2794","chic",78.5,73,1994-08-25,NA,92,27.727898551,37.271135266 "2795","chic",76.5,68.375,1994-08-26,NA,65.5,22.390217391,37.9375 "2796","chic",77,68.125,1994-08-27,NA,106.5,33.745833333,27.743055556 "2797","chic",67.5,54.125,1994-08-28,NA,36,19.645833333,20.277777778 "2798","chic",66,52.375,1994-08-29,NA,32,18.081389987,31.488828502 "2799","chic",64,61.625,1994-08-30,NA,39.571428571,8.9353818283,37.105676329 "2800","chic",61.5,53.375,1994-08-31,NA,28,13.632648953,22.682539683 "2801","chic",59,46.375,1994-09-01,NA,14.5,13.890625,20.083333333 "2802","chic",59,50.5,1994-09-02,NA,88,7.647541996,38.360869565 "2803","chic",62,53.875,1994-09-03,NA,37.5,16.458333333,31.458333333 "2804","chic",59.5,54.5,1994-09-04,NA,23,22.229166667,29.416666667 "2805","chic",61.5,60.375,1994-09-05,NA,39.625,25.385416667,21.966666667 "2806","chic",67,52,1994-09-06,NA,NA,14.504528986,28.918939394 "2807","chic",65,51.75,1994-09-07,NA,56,12.770833333,35.959782609 "2808","chic",69.5,59.75,1994-09-08,NA,42,9.2748064888,38.861956522 "2809","chic",72,63.125,1994-09-09,NA,46,21.192708333,48.2 "2810","chic",76.5,63.5,1994-09-10,NA,38,25.734375,36.725 "2811","chic",74.5,64.875,1994-09-11,NA,44.125,24.911458333,32.991666667 "2812","chic",75.5,60.25,1994-09-12,NA,88.5,28.395833333,46.258333333 "2813","chic",77,62.25,1994-09-13,NA,73,30.562438241,35.291666667 "2814","chic",81,67.75,1994-09-14,NA,61.5,27.922101449,31.251515152 "2815","chic",80.5,60.625,1994-09-15,NA,119.5,34.018465909,27.486904762 "2816","chic",74,56.875,1994-09-16,NA,77,34.682291667,24.17345191 "2817","chic",65.5,53,1994-09-17,NA,38.125,9.265625,24.391666667 "2818","chic",67,43.125,1994-09-18,NA,28,11.536458333,28.366666667 "2819","chic",70,55.25,1994-09-19,NA,61.5,15.584280303,43.616666667 "2820","chic",71.5,53,1994-09-20,NA,80.5,20.135869565,46.722101449 "2821","chic",71,48,1994-09-21,NA,82,30.494047619,48.477173913 "2822","chic",66.5,59.625,1994-09-22,NA,61.5,21.743106531,35.633333333 "2823","chic",65,59.25,1994-09-23,NA,49.125,11.700721154,34.410930736 "2824","chic",63.5,61.375,1994-09-24,NA,33,11.348958333,25.85 "2825","chic",60.5,50.75,1994-09-25,NA,24,16.166666667,29.975 "2826","chic",54.5,51.375,1994-09-26,NA,25,8.0511775362,28.629545455 "2827","chic",54,49.125,1994-09-27,NA,23,5.5261651845,17.733333333 "2828","chic",57,43.75,1994-09-28,NA,34,9.8156702899,24.358333333 "2829","chic",57.5,46.5,1994-09-29,NA,37.571428571,6.3229166667,31.758333333 "2830","chic",67.5,56.5,1994-09-30,NA,63,18.791666667,41.925 "2831","chic",58,47.125,1994-10-01,NA,15.5,20.572916667,18.391666667 "2832","chic",57,41.5,1994-10-02,NA,12.5,22.729166667,11.466666667 "2833","chic",57.5,45.75,1994-10-03,NA,18,22.63134058,19.723188406 "2834","chic",53.5,44.75,1994-10-04,NA,27,9.1486742424,23.035497835 "2835","chic",51,42.75,1994-10-05,NA,40.125,5.5420166337,31.9 "2836","chic",62,49.875,1994-10-06,NA,42,21.421875,33.35 "2837","chic",68,62.375,1994-10-07,NA,82.5,30.005208333,26.09469697 "2838","chic",56,47.125,1994-10-08,NA,20,2.7760416667,20.266666667 "2839","chic",47.5,32.125,1994-10-09,NA,16,10.109375,20.25 "2840","chic",46,31.75,1994-10-10,NA,NA,9.6510416667,26.058333333 "2841","chic",48.5,40.75,1994-10-11,NA,36.375,11.967000165,32.336024845 "2842","chic",51.5,47.75,1994-10-12,NA,48,8.2185235507,33.43784585 "2843","chic",55.5,49.875,1994-10-13,NA,53.5,6.40625,39.008333333 "2844","chic",58.5,51.875,1994-10-14,NA,46.5,13.573822464,29.864525692 "2845","chic",58,53.25,1994-10-15,NA,45,14.666666667,25.675 "2846","chic",66,54.875,1994-10-16,NA,38,19.75,30.475 "2847","chic",69.5,54.875,1994-10-17,NA,39.285714286,20.51879529,32.275 "2848","chic",65,60.125,1994-10-18,NA,48.5,9.5678112648,22.019202899 "2849","chic",64.5,47.375,1994-10-19,NA,25,11.289299242,21.090151515 "2850","chic",57,46.875,1994-10-20,NA,33,6.9759963768,27.334552042 "2851","chic",56.5,45.375,1994-10-21,NA,104,8.0018115942,42.115909091 "2852","chic",58.5,45.875,1994-10-22,NA,54.5,14.114583333,40.491666667 "2853","chic",52,35.5,1994-10-23,NA,21.125,10.953125,18.506666667 "2854","chic",47,27.625,1994-10-24,NA,33.5,11.528882576,20.708333333 "2855","chic",43,30.125,1994-10-25,NA,24,8.2710597826,19.877840909 "2856","chic",42,30.75,1994-10-26,NA,35,5.6816123188,26.375 "2857","chic",46,34.25,1994-10-27,NA,77.5,6.1055253623,30.354619565 "2858","chic",54,34.25,1994-10-28,NA,193,14.183423913,29.033333333 "2859","chic",57,40.875,1994-10-29,NA,41.875,16.760416667,28.475 "2860","chic",48.5,43.375,1994-10-30,NA,39,7.4270833333,37.25 "2861","chic",45.5,39.125,1994-10-31,NA,7.5,25.802083333,16.683333333 "2862","chic",44.5,32,1994-11-01,NA,24,7.5911835749,26.309189723 "2863","chic",51,35.75,1994-11-02,NA,59,9.1805555556,31.55 "2864","chic",60.5,62.125,1994-11-03,NA,63,8.3194444444,29.666666667 "2865","chic",58.5,55.625,1994-11-04,NA,16.125,1.893115942,22.655383023 "2866","chic",54,55.125,1994-11-05,NA,11,7.4861111111,15.491666667 "2867","chic",48,35.375,1994-11-06,NA,13.5,11.791666667,18.2 "2868","chic",46.5,39,1994-11-07,NA,19,6.5833333333,29.94469697 "2869","chic",55,50.375,1994-11-08,NA,38.5,4.2777777778,30.05 "2870","chic",47,33,1994-11-09,NA,10,23.286835749,15.988570487 "2871","chic",43,34.5,1994-11-10,NA,16.375,23.03030303,20.833003953 "2872","chic",46,30.75,1994-11-11,NA,30.5,9.7638888889,28.916666667 "2873","chic",46.5,46.375,1994-11-12,NA,29,3.0277777778,23.3 "2874","chic",58,56.25,1994-11-13,NA,24,11.569444444,15.575 "2875","chic",50.5,38.5,1994-11-14,NA,NA,5.5694444444,17.941666667 "2876","chic",41.5,34.125,1994-11-15,NA,18,9.1111111111,26.21525974 "2877","chic",43.5,35.25,1994-11-16,NA,38.75,10.111111111,31.608333333 "2878","chic",44,44.125,1994-11-17,NA,42,1.7741545894,24.083333333 "2879","chic",44.5,29.25,1994-11-18,NA,NA,9.3725845411,18.373550725 "2880","chic",38,31.625,1994-11-19,NA,45,1.7916666667,32.683333333 "2881","chic",52,38.5,1994-11-20,NA,24.5,6.6388888889,25.841666667 "2882","chic",43,28.25,1994-11-21,NA,17.5,14.828502415,16.674275362 "2883","chic",31,16.875,1994-11-22,NA,16.625,10.525362319,20.934650856 "2884","chic",36,23.125,1994-11-23,NA,38,5.625,25.666666667 "2885","chic",39,33.75,1994-11-24,NA,17,9.7916666667,19.633333333 "2886","chic",39,16.5,1994-11-25,NA,17,6.1388888889,30.708333333 "2887","chic",35,24.75,1994-11-26,NA,20.5,18.138888889,17.383333333 "2888","chic",47.5,44.375,1994-11-27,NA,22,9.6111111111,15.175 "2889","chic",36,24,1994-11-28,NA,14.625,12.43236715,12.297727273 "2890","chic",29.5,22.625,1994-11-29,NA,25,7.625,19.43452381 "2891","chic",29,24.25,1994-11-30,NA,36,2.9204545455,27.334090909 "2892","chic",42,29.5,1994-12-01,NA,75.5,6.5694444444,27.169400527 "2893","chic",46,33.5,1994-12-02,NA,52,8.6388888889,30.916666667 "2894","chic",48,44.375,1994-12-03,NA,27.5,4.3472222222,26.8 "2895","chic",48.5,47.75,1994-12-04,NA,43,1.4444444444,27.733333333 "2896","chic",43.5,39,1994-12-05,NA,47.5,0.1527777778,27.203985507 "2897","chic",35,33.125,1994-12-06,NA,8.5,4.726010101,16.659848485 "2898","chic",31,23.875,1994-12-07,NA,3,18.634057971,20.729380764 "2899","chic",30,27.5,1994-12-08,NA,18,13.819444444,23.708333333 "2900","chic",30.5,22.875,1994-12-09,NA,27,1.6527777778,29.523188406 "2901","chic",27,15.875,1994-12-10,NA,31,3.2916666667,31.733333333 "2902","chic",19,8.75,1994-12-11,NA,23,8.1666666667,25.141666667 "2903","chic",21.5,18.25,1994-12-12,NA,NA,1.5694444444,26.316666667 "2904","chic",23.5,16.875,1994-12-13,NA,48.5,0.4915458937,33.342424242 "2905","chic",27.5,25.125,1994-12-14,NA,36,4.2364404919,28.835144928 "2906","chic",32.5,34.375,1994-12-15,NA,43.5,0.3611111111,30.454519451 "2907","chic",36.5,36,1994-12-16,NA,41,0.6944444444,34.391666667 "2908","chic",37,31.125,1994-12-17,NA,31.5,3.4861111111,27.408333333 "2909","chic",29.5,22.125,1994-12-18,NA,19,9.0972222222,25.05 "2910","chic",28,27.75,1994-12-19,NA,26.5,3.3514492754,29.6 "2911","chic",38,33.625,1994-12-20,NA,33.5,0.8174681599,32.256818182 "2912","chic",40.5,31.875,1994-12-21,NA,58.5,0.9160628019,44.295588235 "2913","chic",39.5,36.75,1994-12-22,NA,69.875,1.8888888889,50.281538462 "2914","chic",38.5,37.875,1994-12-23,NA,16,8.2620772947,24.474967062 "2915","chic",33.5,28.875,1994-12-24,NA,22,10.125,23.45 "2916","chic",39.5,27,1994-12-25,NA,27,6.8472222222,32.411111111 "2917","chic",36,33.25,1994-12-26,NA,34.5,2.3333333333,40.374634503 "2918","chic",40.5,37.25,1994-12-27,NA,40,3.0833333333,31.569444444 "2919","chic",38,30.125,1994-12-28,NA,16.142857143,7.8260869565,23.162878788 "2920","chic",35,22.875,1994-12-29,NA,14,18.805555556,17.516666667 "2921","chic",32,24.875,1994-12-30,NA,34,5.7222222222,28.079292929 "2922","chic",32,29.875,1994-12-31,NA,32,1.2638888889,25.922101449 "2923","chic",19.5,5.625,1995-01-01,NA,22.5,14.702020202,15.723214286 "2924","chic",14.5,10.5,1995-01-02,NA,20,12.777777778,21.239583333 "2925","chic",11,-2.875,1995-01-03,NA,22.555555556,9.1957070707,25.055871212 "2926","chic",3,-7.5,1995-01-04,NA,27,9,27.24048913 "2927","chic",9,7,1995-01-05,NA,35.5,5.0966183575,29.370923913 "2928","chic",22.5,22,1995-01-06,NA,32,1.3725845411,31.114583333 "2929","chic",19.5,13.5,1995-01-07,NA,24.5,5.0833333333,28.1875 "2930","chic",12,3.25,1995-01-08,NA,36.5,5.0833333333,29.197916667 "2931","chic",17.5,11.875,1995-01-09,NA,37.777777778,4.7222222222,38.479166667 "2932","chic",23.5,24.5,1995-01-10,NA,45.5,4.8834541063,36.199275362 "2933","chic",33,37.5,1995-01-11,NA,68,0.5169082126,37.770833333 "2934","chic",42,37.75,1995-01-12,NA,29,1.2101449275,30.3125 "2935","chic",35.5,33.75,1995-01-13,NA,21,0.8629227053,27.260416667 "2936","chic",37,32.75,1995-01-14,NA,10.5,1.625,19.135416667 "2937","chic",33,25.25,1995-01-15,NA,9.8571428571,9.2916666667,15.640398551 "2938","chic",34,29.375,1995-01-16,NA,16,11.319444444,19.552083333 "2939","chic",36.5,38.375,1995-01-17,NA,28,0.9734299517,23.110054348 "2940","chic",35.5,22.625,1995-01-18,NA,24.5,3.9027777778,25.552083333 "2941","chic",34.5,33,1995-01-19,NA,12,6.1107268336,17.997200264 "2942","chic",30,20.125,1995-01-20,NA,16.5,8.6950483092,22.598526021 "2943","chic",23.5,17.75,1995-01-21,NA,20.222222222,8.9444444444,18.395833333 "2944","chic",20,16.5,1995-01-22,NA,19,8.4722222222,24.59375 "2945","chic",20,14.25,1995-01-23,NA,24.5,3.75,33.15625 "2946","chic",15,6.75,1995-01-24,NA,45,2.8143939394,42.213809289 "2947","chic",18,9.25,1995-01-25,NA,66.5,1.6666666667,52.446969697 "2948","chic",18,13.25,1995-01-26,NA,58,3.2246376812,50.4375 "2949","chic",23.5,26,1995-01-27,NA,63.111111111,4.1008454106,45.310070817 "2950","chic",28.5,16,1995-01-28,NA,17,22.361111111,20.875 "2951","chic",25,20,1995-01-29,NA,9,22.25,18.052083333 "2952","chic",24,19.125,1995-01-30,NA,47,6.8573232323,41.541666667 "2953","chic",30.5,30.375,1995-01-31,NA,32,9.5555555556,26.546401515 "2954","chic",37,27.5,1995-02-01,NA,19.5,9.768115942,27.489130435 "2955","chic",33.5,26.625,1995-02-02,NA,16.444444444,17.4375,23.677083333 "2956","chic",30.5,24.25,1995-02-03,NA,31,8.0262681159,28.362812912 "2957","chic",20,3.5,1995-02-04,NA,17,18.6875,16.34375 "2958","chic",8.5,-4.625,1995-02-05,NA,17.5,18.395833333,19.916666667 "2959","chic",11,0,1995-02-06,NA,22,7.4375,30.354166667 "2960","chic",15,3.375,1995-02-07,NA,38.5,9.5027173913,28.781702899 "2961","chic",12,1.5,1995-02-08,NA,25.555555556,13.125,25.614583333 "2962","chic",24,25,1995-02-09,NA,34.5,4.6781400966,29.151268116 "2963","chic",26.5,4.875,1995-02-10,NA,38,12.291666667,20.31567029 "2964","chic",6.5,-13.25,1995-02-11,NA,69.5,20.138888889,13.84375 "2965","chic",7.5,2.375,1995-02-12,NA,22.5,11.722222222,20.864583333 "2966","chic",17,-0.75,1995-02-13,NA,37,8.9166666667,28.989583333 "2967","chic",18.5,11.375,1995-02-14,NA,39.285714286,6.181763285,32.524868248 "2968","chic",30.5,21.375,1995-02-15,NA,25,3.7222222222,24.197916667 "2969","chic",25,18.25,1995-02-16,NA,36.5,7.4740338164,31.481101779 "2970","chic",33,18.75,1995-02-17,NA,55,4.2045454545,39.675230567 "2971","chic",42.5,27,1995-02-18,NA,42.5,9.125,30.645833333 "2972","chic",38,28.375,1995-02-19,NA,24.5,13.666666667,23.302083333 "2973","chic",40.5,28.25,1995-02-20,NA,33,9.9027777778,27.541666667 "2974","chic",28,17.25,1995-02-21,NA,17,18.362318841,23.991477273 "2975","chic",38,30,1995-02-22,NA,41,3.5972222222,31.239583333 "2976","chic",41,21.5,1995-02-23,NA,43,13.245772947,28.050189394 "2977","chic",32,17.5,1995-02-24,NA,15.5,15.305555556,26.770833333 "2978","chic",39,26.375,1995-02-25,NA,21,12.069444444,24.09375 "2979","chic",30.5,27.5,1995-02-26,NA,23.333333333,13.097222222,19.614583333 "2980","chic",31.5,28.625,1995-02-27,NA,16.5,15.151570048,23.786684783 "2981","chic",27.5,20.875,1995-02-28,NA,18.5,15.775252525,26.373641304 "2982","chic",16.5,3.75,1995-03-01,NA,21.5,11.77173913,24.307971014 "2983","chic",17.5,6.625,1995-03-02,NA,26,7.125,36.642992424 "2984","chic",23,14,1995-03-03,NA,45.5,7.7373188406,41.074810606 "2985","chic",31.5,20.125,1995-03-04,NA,41.111111111,10.277777778,38.510416667 "2986","chic",35,32.75,1995-03-05,NA,39,4.5694444444,27.458333333 "2987","chic",33,32.125,1995-03-06,NA,29.5,10.888888889,26.84375 "2988","chic",30.5,20.875,1995-03-07,NA,19,7.7083333333,30.53125 "2989","chic",23.5,12.375,1995-03-08,NA,22.5,17.638888889,28.9375 "2990","chic",24.5,18.875,1995-03-09,NA,36.5,9.9233091787,39.157155797 "2991","chic",40.5,35.5,1995-03-10,NA,34.333333333,13.472222222,29.046130952 "2992","chic",51,38.75,1995-03-11,NA,30.5,27.597222222,28.695833333 "2993","chic",58.5,44.25,1995-03-12,NA,31.5,29.305555556,23.809027778 "2994","chic",61.5,44.25,1995-03-13,NA,56,17.560990338,40.388586957 "2995","chic",61,44.375,1995-03-14,NA,67.5,15.5,52.487689394 "2996","chic",59,43.375,1995-03-15,NA,65,18.141908213,49.556238422 "2997","chic",54,41,1995-03-16,NA,44.222222222,13.469806763,48.319128788 "2998","chic",42.5,33.5,1995-03-17,NA,21.5,21.748737374,25.947916667 "2999","chic",49,40.5,1995-03-18,NA,31.5,19.375,25.875 "3000","chic",50,42.25,1995-03-19,NA,56.5,10.638888889,24.052083333 "3001","chic",50.5,39.125,1995-03-20,NA,34.5,10.793478261,20.681068841 "3002","chic",43.5,30.125,1995-03-21,NA,22,13.597222222,24.766666667 "3003","chic",39,31.75,1995-03-22,NA,14.777777778,19.133838384,23.324404762 "3004","chic",36,28.75,1995-03-23,NA,10,21.219202899,23.742753623 "3005","chic",37,22.375,1995-03-24,NA,16.5,21.918478261,31.290178571 "3006","chic",42,22.5,1995-03-25,NA,24.5,22.291666667,31.729166667 "3007","chic",43.5,25.375,1995-03-26,NA,27.5,21.388888889,24.09375 "3008","chic",41.5,36.25,1995-03-27,NA,22,11.236111111,27.731060606 "3009","chic",41,37.625,1995-03-28,NA,21.222222222,1.1316425121,28.483901515 "3010","chic",40,33,1995-03-29,NA,28,4.4722222222,31.975378788 "3011","chic",40.5,29.5,1995-03-30,NA,21.5,6.7916666667,31.986413043 "3012","chic",36.5,29.875,1995-03-31,NA,25.5,6.672705314,28.032155797 "3013","chic",37,26.75,1995-04-01,NA,23,13.160714286,28.5 "3014","chic",44,27.5,1995-04-02,NA,18,21.75,21.25 "3015","chic",55,39,1995-04-03,NA,24.333333333,20.932194617,23.854166667 "3016","chic",33,1.375,1995-04-04,NA,23,22.260416667,18.145833333 "3017","chic",34.5,22.75,1995-04-05,NA,37.5,15.635416667,27.489583333 "3018","chic",52,28.625,1995-04-06,NA,42,23.297101449,21.869565217 "3019","chic",42.5,35.125,1995-04-07,NA,37.5,21.951992754,22.208333333 "3020","chic",43,36.375,1995-04-08,NA,40,13.807291667,22.666666667 "3021","chic",37.5,24.375,1995-04-09,NA,13.111111111,30.892857143,9.9583333333 "3022","chic",36.5,32.125,1995-04-10,NA,16,18.198822464,18.956974638 "3023","chic",49.5,48.25,1995-04-11,NA,36.5,10.464609867,25.760416667 "3024","chic",39.5,34.25,1995-04-12,NA,14,18.04589372,21.280344203 "3025","chic",49,29.625,1995-04-13,NA,21,31.619967794,19.184782609 "3026","chic",42.5,29.875,1995-04-14,NA,12.5,32.958333333,20.239583333 "3027","chic",46.5,36.375,1995-04-15,NA,26.111111111,28.7875,24.364583333 "3028","chic",51.5,39.375,1995-04-16,NA,37,18.1,33.104166667 "3029","chic",50.5,35.125,1995-04-17,NA,33,27.775,29.145833333 "3030","chic",61,42,1995-04-18,NA,47.5,27.116304348,18.734601449 "3031","chic",47.5,34.375,1995-04-19,NA,17.5,24.491485507,19.287137681 "3032","chic",44,44.75,1995-04-20,NA,27.5,17.28013834,23.147397892 "3033","chic",46.5,41.375,1995-04-21,NA,29.222222222,10.615942029,22.822916667 "3034","chic",51,35.125,1995-04-22,NA,19.5,22.191666667,25.59375 "3035","chic",45,32.375,1995-04-23,NA,19,21.645833333,28.104166667 "3036","chic",47.5,39.75,1995-04-24,NA,44.5,20.292417184,33.167929293 "3037","chic",47,35.875,1995-04-25,NA,30,20.108893281,26.921376812 "3038","chic",50,50.25,1995-04-26,NA,34,10.153326746,38.482748682 "3039","chic",47.5,36.5,1995-04-27,NA,18.333333333,19.182789855,27.195075758 "3040","chic",53,38.625,1995-04-28,NA,31.5,17.348913043,31.979166667 "3041","chic",49.5,34.875,1995-04-29,NA,28.5,16.533333333,31.84375 "3042","chic",44.5,36.875,1995-04-30,NA,7.5,25.691666667,16.138392857 "3043","chic",45.5,37.25,1995-05-01,NA,13,22.5751294,20.662202381 "3044","chic",50.5,31.75,1995-05-02,NA,16,22.445833333,24.03125 "3045","chic",49.5,32.125,1995-05-03,NA,32.777777778,18.366666667,38.527083333 "3046","chic",52.5,45.875,1995-05-04,NA,35.5,15.51437747,43.90327381 "3047","chic",55,40.625,1995-05-05,NA,48.5,20.837137681,34.989078675 "3048","chic",56,37.625,1995-05-06,NA,43,21.516666667,34.941666667 "3049","chic",62.5,46.75,1995-05-07,NA,44,37.304166667,27.066666667 "3050","chic",57.5,42.75,1995-05-08,NA,41.5,25.564130435,19.75 "3051","chic",61.5,54.625,1995-05-09,NA,43.777777778,21.364855072,30.308333333 "3052","chic",51,49,1995-05-10,NA,32,10.38134058,31.128199699 "3053","chic",59.5,47.625,1995-05-11,NA,27,18.420289855,30.6 "3054","chic",60,48.75,1995-05-12,NA,35,25.934963768,31.721076902 "3055","chic",62,62.625,1995-05-13,NA,32.5,23.854166667,21.058333333 "3056","chic",62.5,51.375,1995-05-14,NA,21,29.608333333,12.033333333 "3057","chic",61.5,44.125,1995-05-15,NA,29.777777778,21.608333333,38.691666667 "3058","chic",68.5,65.875,1995-05-16,NA,47.5,24.159469697,34.91884058 "3059","chic",58.5,37.625,1995-05-17,NA,15,21.922282609,19.511594203 "3060","chic",52.5,37.25,1995-05-18,NA,13.5,19.818115942,23.075527009 "3061","chic",60.5,41.75,1995-05-19,NA,36.5,20.945108696,35.125 "3062","chic",66,40.75,1995-05-20,NA,39.5,26.954166667,19.075 "3063","chic",60.5,40.625,1995-05-21,NA,29.222222222,27.7125,22.158333333 "3064","chic",62,46,1995-05-22,NA,67,26.108333333,38.559782609 "3065","chic",59.5,53.875,1995-05-23,NA,38,21.655072464,32.768115942 "3066","chic",51.5,46.375,1995-05-24,NA,10.5,22.610144928,17.177536232 "3067","chic",55,46,1995-05-25,NA,15,17.878442029,17.504076087 "3068","chic",55,43.625,1995-05-26,NA,21.5,22.554891304,24.291666667 "3069","chic",60.5,57.5,1995-05-27,NA,29.875,22.579166667,18.35 "3070","chic",65.5,55.375,1995-05-28,NA,21,27.966666667,11.716666667 "3071","chic",61,46.5,1995-05-29,NA,16.5,23.779166667,17.466666667 "3072","chic",67.5,48.125,1995-05-30,NA,47,20.594806763,38.972368421 "3073","chic",69.5,51.625,1995-05-31,NA,81,27.704291831,48.053985507 "3074","chic",71.5,55.25,1995-06-01,NA,65.5,29.982065217,44.726449275 "3075","chic",67.5,60.875,1995-06-02,NA,65,14.916847826,49.002898551 "3076","chic",67,57.25,1995-06-03,NA,41.5,34.841666667,33.258333333 "3077","chic",67,53.75,1995-06-04,NA,34,33.504891304,22.866666667 "3078","chic",67.5,56.875,1995-06-05,NA,46.5,33.680253623,30.091666667 "3079","chic",74,64.625,1995-06-06,NA,72.5,29.470619236,38.735 "3080","chic",71.5,59,1995-06-07,NA,36.5,33.913069358,23.275757576 "3081","chic",53.5,45,1995-06-08,NA,18.333333333,20.411627141,14.377272727 "3082","chic",59,51.75,1995-06-09,NA,42,16.782789855,24.103787879 "3083","chic",67.5,51,1995-06-10,NA,35,25.2,21.041666667 "3084","chic",59,44.875,1995-06-11,NA,17.5,21.458333333,20.141666667 "3085","chic",61,41.125,1995-06-12,NA,24,21.046014493,24.285869565 "3086","chic",67.5,45.75,1995-06-13,NA,58,16.651449275,44.258333333 "3087","chic",74,52,1995-06-14,NA,61.25,34.380797101,47.717424242 "3088","chic",72,53.25,1995-06-15,NA,79.5,43.118297101,43.882815735 "3089","chic",76.5,54.875,1995-06-16,NA,88.5,43.000905797,38.55 "3090","chic",77.5,61.625,1995-06-17,NA,77.5,45.645833333,35.65 "3091","chic",82,63.375,1995-06-18,NA,57.5,48.058333333,30.733333333 "3092","chic",82.5,65.25,1995-06-19,NA,61,45.005032206,41.608333333 "3093","chic",85,63.75,1995-06-20,NA,58.111111111,48.780253623,25.728623188 "3094","chic",78,61.75,1995-06-21,NA,53,37.991123188,25.312121212 "3095","chic",80,62.5,1995-06-22,NA,66,47.857756917,32.782971014 "3096","chic",79.5,55.75,1995-06-23,NA,65,63.375,31.102536232 "3097","chic",77.5,62.375,1995-06-24,NA,75.5,66.5875,35.033333333 "3098","chic",75.5,63.75,1995-06-25,NA,57,47.954166667,25.333333333 "3099","chic",75.5,62.625,1995-06-26,NA,47.111111111,37.132971014,23.558333333 "3100","chic",72.5,67.375,1995-06-27,NA,40.5,26.196557971,32.025 "3101","chic",74,65.25,1995-06-28,NA,54.5,25.885507246,32.432312253 "3102","chic",77,65.25,1995-06-29,NA,43,28.479463109,33.065283267 "3103","chic",71.5,51.125,1995-06-30,NA,46,30.006258235,23.233333333 "3104","chic",65.5,47.75,1995-07-01,NA,18,27.5875,15.633333333 "3105","chic",63.5,49.375,1995-07-02,NA,27.666666667,24.929166667,25.35 "3106","chic",71,57.5,1995-07-03,NA,51.5,44.391007905,21.33030303 "3107","chic",75.5,69.5,1995-07-04,NA,43,29.145833333,16.508333333 "3108","chic",75,63.875,1995-07-05,NA,58.5,31.082246377,18.162220026 "3109","chic",72,54,1995-07-06,NA,27.5,32.80942029,15.708333333 "3110","chic",70.5,55.625,1995-07-07,NA,42,27.3125,22.12826087 "3111","chic",70.5,54.25,1995-07-08,NA,36.75,27.570833333,30.016666667 "3112","chic",73,60.875,1995-07-09,NA,37,41.3,26.916666667 "3113","chic",73.5,63,1995-07-10,NA,52.5,26.924637681,37.15 "3114","chic",79,64.625,1995-07-11,NA,56,39.637121212,38.190151515 "3115","chic",84.5,73.125,1995-07-12,NA,77.5,45.308333333,27.890786749 "3116","chic",92,76.375,1995-07-13,NA,92.5,58.54952381,27.317753623 "3117","chic",91.5,75.625,1995-07-14,NA,54.5,52.003971572,24.773550725 "3118","chic",86,69,1995-07-15,NA,51,50.550833333,20.233333333 "3119","chic",83,67.75,1995-07-16,NA,29,43.045833333,15.383333333 "3120","chic",78.5,55.25,1995-07-17,NA,33,27.966666667,19.141666667 "3121","chic",74,54.75,1995-07-18,NA,39,24.714673913,23.225 "3122","chic",75.5,57.875,1995-07-19,NA,44,25.917012516,32.865909091 "3123","chic",73.5,67.625,1995-07-20,NA,41.333333333,18.540398551,36.555072464 "3124","chic",74,56,1995-07-21,NA,34,25.68442029,29.54057971 "3125","chic",76,68.5,1995-07-22,NA,39,22.329166667,38.516666667 "3126","chic",76,67,1995-07-23,NA,23,29.25,24.058333333 "3127","chic",79,68.25,1995-07-24,NA,44,27.641485507,35.4 "3128","chic",81.5,64.5,1995-07-25,NA,43.5,22.4875,39.166666667 "3129","chic",77,68,1995-07-26,NA,32.777777778,36.424595055,29.984057971 "3130","chic",80.5,67.375,1995-07-27,NA,38,41.070289855,23.227277433 "3131","chic",80.5,63.125,1995-07-28,NA,30,33.217753623,28.66557971 "3132","chic",82.5,69,1995-07-29,NA,40.5,29.295833333,30.891666667 "3133","chic",83.5,72.125,1995-07-30,NA,43.5,37.863257576,34.375 "3134","chic",84.5,68.25,1995-07-31,NA,82,40.908333333,32.183333333 "3135","chic",75,65.375,1995-08-01,NA,23.777777778,30.184782609,20.909090909 "3136","chic",74,71.375,1995-08-02,NA,28,23.403623188,27.067028986 "3137","chic",75,72.25,1995-08-03,NA,34,7.7307971014,37.175032938 "3138","chic",77,69.75,1995-08-04,NA,39,8.1221819646,33.7 "3139","chic",76.5,69.125,1995-08-05,NA,36,26.101851852,22.391666667 "3140","chic",78,68.875,1995-08-06,NA,26,33.212962963,15.075 "3141","chic",79.5,70.5,1995-08-07,NA,37.666666667,23.439412238,22.476086957 "3142","chic",79.5,71.75,1995-08-08,NA,57.5,28.310918972,24.164912281 "3143","chic",75,69,1995-08-09,NA,49,4.8981884058,39.91916996 "3144","chic",80,70.875,1995-08-10,NA,38,17.649275362,30.537318841 "3145","chic",82,72.75,1995-08-11,NA,55.5,26.965942029,27.514492754 "3146","chic",86.5,74.75,1995-08-12,NA,58.5,43.394318182,24.558333333 "3147","chic",87,74.75,1995-08-13,NA,48.222222222,39.199074074,18.066666667 "3148","chic",87,72.125,1995-08-14,NA,55,31.072435897,21.575 "3149","chic",78,72.75,1995-08-15,NA,30,26.267934783,22.364361001 "3150","chic",84,72.875,1995-08-16,NA,45,15.413652833,33.816666667 "3151","chic",81.5,73.375,1995-08-17,NA,34.5,26.753804348,30.29314888 "3152","chic",81,71.875,1995-08-18,NA,33.5,36.086429513,18.297463768 "3153","chic",81,71.125,1995-08-19,NA,32.222222222,22.775641026,27.65 "3154","chic",74,63.625,1995-08-20,NA,13,26.191666667,14.239583333 "3155","chic",75.5,60.25,1995-08-21,NA,32,22.081439394,36.678405797 "3156","chic",74,53.625,1995-08-22,NA,25.5,19.182971014,20.627272727 "3157","chic",74,62.875,1995-08-23,NA,47.5,19.820652174,32.986111111 "3158","chic",76,65.375,1995-08-24,NA,46,23.980460663,28.212862319 "3159","chic",81,66,1995-08-25,NA,52,32.017753623,23.838768116 "3160","chic",80,65.5,1995-08-26,NA,74,42.425,33.847222222 "3161","chic",77.5,70,1995-08-27,NA,85,41.575,22.055555556 "3162","chic",76,69.875,1995-08-28,NA,58.5,14.880978261,35.180555556 "3163","chic",80,68,1995-08-29,NA,48,17.9375,34.379807692 "3164","chic",83,67,1995-08-30,NA,86.5,39.19692029,31.291666667 "3165","chic",79,57.125,1995-08-31,NA,48.333333333,35.409782609,21.926915114 "3166","chic",69.5,53.625,1995-09-01,NA,22.5,20.581258235,23.950757576 "3167","chic",68.5,55.875,1995-09-02,NA,35.5,19.975,31.25 "3168","chic",72,55.625,1995-09-03,NA,34,34.2125,26.489583333 "3169","chic",75,59,1995-09-04,NA,60.5,47.045833333,36.40625 "3170","chic",76.5,61.125,1995-09-05,NA,90,28.579166667,52.119318182 "3171","chic",74.5,59.875,1995-09-06,NA,65.142857143,36.341485507,36.571969697 "3172","chic",62,55.875,1995-09-07,NA,22,16.59023386,18.481521739 "3173","chic",61,49.125,1995-09-08,NA,8.5,24.783876812,13.176449275 "3174","chic",58.5,46.375,1995-09-09,NA,13,23.308333333,17.566666667 "3175","chic",54.5,43.375,1995-09-10,NA,9,24.4125,10.933333333 "3176","chic",59,46.375,1995-09-11,NA,27.5,16.745108696,31 "3177","chic",65.5,59.625,1995-09-12,NA,55.666666667,16.44057971,46.858333333 "3178","chic",73,61.25,1995-09-13,NA,46,25.271195652,26.459222661 "3179","chic",66.5,54.5,1995-09-14,NA,26.5,20.076581028,19.869565217 "3180","chic",65.5,55.5,1995-09-15,NA,35.5,14.972463768,26.171376812 "3181","chic",73.5,65.25,1995-09-16,NA,40.5,26.270833333,20.708333333 "3182","chic",56.5,42.375,1995-09-17,NA,9,17.7375,8.925 "3183","chic",56,48,1995-09-18,NA,27.888888889,9.4871014493,25.2 "3184","chic",61.5,57.625,1995-09-19,NA,31.5,10.05394525,27.474440053 "3185","chic",55,48.375,1995-09-20,NA,21.5,8.6978663446,18.942490119 "3186","chic",45.5,40.125,1995-09-21,NA,12,10.615740741,19.441666667 "3187","chic",44,27.75,1995-09-22,NA,15,7.1123737374,20.836666667 "3188","chic",44,35.875,1995-09-23,NA,30.5,12.157407407,23.233333333 "3189","chic",49.5,37.625,1995-09-24,NA,22.333333333,17.027777778,24.6 "3190","chic",56,43.75,1995-09-25,NA,47.5,11.615740741,39.308333333 "3191","chic",60,43.125,1995-09-26,NA,59.5,13.598027375,36.891666667 "3192","chic",67,48,1995-09-27,NA,54,17.839774557,40.398033126 "3193","chic",67,46.875,1995-09-28,NA,87.5,21.648148148,53.133333333 "3194","chic",68,49.375,1995-09-29,NA,74,29.47826087,39.279356061 "3195","chic",75,55.25,1995-09-30,NA,77.25,47.87037037,16.583333333 "3196","chic",66.5,48.25,1995-10-01,NA,37.5,26.041666667,13.277777778 "3197","chic",64,54.5,1995-10-02,NA,53,11.990740741,33.680555556 "3198","chic",62,53.75,1995-10-03,NA,34.5,11.27757649,37.395833333 "3199","chic",58,50.375,1995-10-04,NA,37,13.374597424,27.697916667 "3200","chic",58,54.25,1995-10-05,NA,23.5,16.282407407,17.865942029 "3201","chic",57.5,51.25,1995-10-06,NA,26.125,5.6976650564,20.014945652 "3202","chic",49.5,42.375,1995-10-07,NA,10.5,5.725,13.583333333 "3203","chic",52.5,46.875,1995-10-08,NA,22.5,9.8981481481,22.354166667 "3204","chic",61.5,45.625,1995-10-09,NA,39,12.87962963,36.09375 "3205","chic",57,44.375,1995-10-10,NA,63,5.459742351,41.248205742 "3206","chic",62.5,49.875,1995-10-11,NA,87,11.618357488,51.020454545 "3207","chic",68.5,48.875,1995-10-12,NA,58.555555556,24.389090177,49.804347826 "3208","chic",70,52.625,1995-10-13,NA,81.5,29.341988728,36.328351449 "3209","chic",48,36.375,1995-10-14,NA,20.5,10.208333333,12.21875 "3210","chic",46.5,29.75,1995-10-15,NA,12,13.300925926,18.583333333 "3211","chic",48,30.625,1995-10-16,NA,33,7.625,35.520833333 "3212","chic",59.5,44.125,1995-10-17,NA,78.5,13.947665056,34.75 "3213","chic",58,47.125,1995-10-18,NA,33.777777778,12.070450886,28.395833333 "3214","chic",64,51.75,1995-10-19,NA,68,24.709541063,28.994112319 "3215","chic",44.5,39,1995-10-20,NA,13.5,3.8097826087,16.1875 "3216","chic",38.5,35.25,1995-10-21,NA,11.5,4.6157407407,15.479166667 "3217","chic",48,39,1995-10-22,NA,26,9.6712962963,24.854166667 "3218","chic",60,46.625,1995-10-23,NA,40,25.953703704,24.625 "3219","chic",42.5,34.75,1995-10-24,NA,16.666666667,10.226190476,17.885416667 "3220","chic",46.5,33.25,1995-10-25,NA,46,7.210547504,31.274003623 "3221","chic",51.5,44.625,1995-10-26,NA,39,6.9669887279,32.673007246 "3222","chic",53,45.75,1995-10-27,NA,21,11.562362758,19.203063241 "3223","chic",45.5,40.75,1995-10-28,NA,14,7.0648148148,22.489583333 "3224","chic",44,34.75,1995-10-29,NA,12.5,9.625,18.229166667 "3225","chic",43,38.625,1995-10-30,NA,13.111111111,8.5599838969,22.052083333 "3226","chic",44.5,45.375,1995-10-31,NA,14.5,6.3590982287,18.012310606 "3227","chic",55.5,59.25,1995-11-01,NA,28.5,3.3611111111,27.9375 "3228","chic",44.5,27.875,1995-11-02,NA,12,4.0235507246,15.730525362 "3229","chic",30,19.25,1995-11-03,NA,16.5,10.041666667,17.665225626 "3230","chic",27.5,16.625,1995-11-04,NA,12.5,8.8194444444,20.864583333 "3231","chic",28.5,28.625,1995-11-05,NA,18.444444444,5.2777777778,26.645833333 "3232","chic",40.5,39.5,1995-11-06,NA,36,4.625,26.729166667 "3233","chic",38,19,1995-11-07,NA,25,7.0138888889,22.06567029 "3234","chic",26,11.375,1995-11-08,NA,18.5,9.9969806763,25.758242754 "3235","chic",32.5,27.125,1995-11-09,NA,42,4.2083333333,28.54495614 "3236","chic",46.5,37.625,1995-11-10,NA,29,6.5972222222,25.75 "3237","chic",26.5,11.375,1995-11-11,NA,10.555555556,13.819444444,19.739583333 "3238","chic",22.5,20.125,1995-11-12,NA,17.5,4.7638888889,27.5625 "3239","chic",26,18.25,1995-11-13,NA,31,1.7361111111,37.21875 "3240","chic",27,15.75,1995-11-14,NA,34,3.9462560386,41.512228261 "3241","chic",27,22.25,1995-11-15,NA,27,4.9166666667,34.943452381 "3242","chic",32.5,22.75,1995-11-16,NA,33.5,2.8979468599,33.864583333 "3243","chic",34.5,32.5,1995-11-17,NA,35,2.5694444444,30.666666667 "3244","chic",36.5,28.75,1995-11-18,NA,30,1.125,28.739583333 "3245","chic",39,38.5,1995-11-19,NA,34.5,3.75,24.65625 "3246","chic",44.5,26,1995-11-20,NA,44,9.375,21.833333333 "3247","chic",28.5,15.875,1995-11-21,NA,26.5,10.75,24.34692029 "3248","chic",27.5,22.375,1995-11-22,NA,43.5,2.2638888889,32.354166667 "3249","chic",27,9.625,1995-11-23,NA,16,9.1805555556,23.416666667 "3250","chic",24,11.375,1995-11-24,NA,35,6.1666666667,34.5 "3251","chic",40,27.375,1995-11-25,NA,45,5.4305555556,28.458333333 "3252","chic",43,31.375,1995-11-26,NA,42,2.1388888889,28.986111111 "3253","chic",34.5,29.125,1995-11-27,NA,25,6.5694444444,29.347826087 "3254","chic",21,13.125,1995-11-28,NA,23,6.6461352657,39.226010101 "3255","chic",22,18.75,1995-11-29,NA,44.222222222,2.1055665349,50 "3256","chic",36.5,30.875,1995-11-30,NA,35.5,2.8423913043,33.75 "3257","chic",39,24.5,1995-12-01,NA,26.5,5.3421717172,29.336805556 "3258","chic",40.5,30.25,1995-12-02,NA,32.5,8.7777777778,29.020833333 "3259","chic",47,29.625,1995-12-03,NA,33,9.2083333333,23.5625 "3260","chic",36.5,29.75,1995-12-04,NA,20.5,10.569444444,29.864583333 "3261","chic",35,5.125,1995-12-05,NA,26.444444444,9.9033816425,25.650568182 "3262","chic",28,8.125,1995-12-06,NA,28.5,7.6425120773,27.122247318 "3263","chic",25,4.75,1995-12-07,NA,29,7.2222222222,33.394736842 "3264","chic",21.5,21,1995-12-08,NA,35,6.1388888889,35.044055944 "3265","chic",0.5,-2.875,1995-12-09,NA,75,20.152777778,13.458333333 "3266","chic",7.5,-3.75,1995-12-10,NA,37.5,16.944444444,18.114583333 "3267","chic",4.5,2.5,1995-12-11,NA,36.555555556,5.7777777778,39.145833333 "3268","chic",15.5,18.625,1995-12-12,NA,32.5,5.3556763285,41.581645257 "3269","chic",28.5,29.5,1995-12-13,NA,37.5,4.7916666667,28.446557971 "3270","chic",38,32.125,1995-12-14,NA,33.5,1.4698067633,24.182971014 "3271","chic",34,23.5,1995-12-15,NA,41.5,2.2083333333,36.151515152 "3272","chic",27,18.25,1995-12-16,NA,35.5,5.8194444444,32.885416667 "3273","chic",30,27,1995-12-17,NA,29.444444444,8.2083333333,24.354166667 "3274","chic",35,27.875,1995-12-18,NA,16,11.444444444,19.354166667 "3275","chic",30,21.875,1995-12-19,NA,11,24.547101449,16.191964286 "3276","chic",26,14.875,1995-12-20,NA,24.5,7.2361111111,28.041666667 "3277","chic",24,15.375,1995-12-21,NA,19,7.2638888889,33.125 "3278","chic",22,18.125,1995-12-22,NA,19,5.2777777778,38.007850242 "3279","chic",27,21.25,1995-12-23,NA,22.777777778,5.7222222222,28.555555556 "3280","chic",25,23.75,1995-12-24,NA,24,10.125,18.333333333 "3281","chic",22.5,10.5,1995-12-25,NA,22,18.208333333,19.111111111 "3282","chic",21,21,1995-12-26,NA,26,3.3097826087,32 "3283","chic",23,14.375,1995-12-27,NA,30.5,4.2946859903,34.195199275 "3284","chic",23,11.875,1995-12-28,NA,41,2.9891304348,38.968297101 "3285","chic",25,19,1995-12-29,NA,39,4.2916666667,31.976902174 "3286","chic",29.5,27.125,1995-12-30,NA,31.5,1.9583333333,29.65625 "3287","chic",34,32.25,1995-12-31,NA,35,1.9166666667,23.3125 "3288","chic",35,31.25,1996-01-01,NA,30,6.5694444444,17.916666667 "3289","chic",27.5,13.5,1996-01-02,NA,8,22,14.53321256 "3290","chic",21,17.625,1996-01-03,NA,18,17.446859903,27.002393892 "3291","chic",21,12.625,1996-01-04,NA,30.916666667,2.8218599034,41.682518116 "3292","chic",16,7.875,1996-01-05,NA,40.5,3.9861111111,38.40625 "3293","chic",19,17.375,1996-01-06,NA,20.5,11.402777778,31.833333333 "3294","chic",18.5,7.375,1996-01-07,NA,20,18.416666667,24.75 "3295","chic",13,13,1996-01-08,NA,44,6.7083333333,37.729166667 "3296","chic",27,20.625,1996-01-09,NA,37.5,5.5307971014,34.289078675 "3297","chic",21.5,18.125,1996-01-10,NA,33.416666667,5.3375603865,38.477657005 "3298","chic",26.5,24.5,1996-01-11,NA,27.5,5.6031746032,33.489130435 "3299","chic",28.5,27.125,1996-01-12,NA,31.5,4.5416666667,31.534090909 "3300","chic",32,30.75,1996-01-13,NA,41,1.625,38.552083333 "3301","chic",37.5,28.5,1996-01-14,NA,19,10.604166667,24.5625 "3302","chic",24,14.25,1996-01-15,NA,11.5,20.083333333,23.625 "3303","chic",32.5,40,1996-01-16,NA,36.416666667,1.1666666667,29.266304348 "3304","chic",47,49.125,1996-01-17,NA,35,4.7518115942,27.061011905 "3305","chic",36.5,19.75,1996-01-18,NA,17.5,13.180555556,18.819627193 "3306","chic",9,1.5,1996-01-19,NA,25,15.163043478,23 "3307","chic",15.5,12,1996-01-20,NA,24,4.6944444444,32.722222222 "3308","chic",25.5,26.25,1996-01-21,NA,28,4.8888888889,25.887077295 "3309","chic",37.5,33,1996-01-22,NA,27.615384615,6.5694444444,26.194444444 "3310","chic",33,33,1996-01-23,NA,28,3.6992753623,23.248118729 "3311","chic",20.5,4.375,1996-01-24,NA,21,12.03321256,25.914855072 "3312","chic",20,23.375,1996-01-25,NA,35,4.0917874396,35.521780303 "3313","chic",32,28.375,1996-01-26,NA,27,5.875,29.188158762 "3314","chic",16.5,3.875,1996-01-27,NA,38.5,20.097222222,20.0625 "3315","chic",19,15.125,1996-01-28,NA,22.615384615,8.9583333333,33.489583333 "3316","chic",18.5,-2.5,1996-01-29,NA,46,14.930555556,24.145833333 "3317","chic",2,-13.625,1996-01-30,NA,42.5,9.3008639911,34.48856352 "3318","chic",-3,-10,1996-01-31,NA,34.5,8.1325757576,34.547472003 "3319","chic",1.5,-12.875,1996-02-01,NA,33,9.8997584541,32.092391304 "3320","chic",-10.5,-21,1996-02-02,NA,35,9.5555555556,31.479166667 "3321","chic",-12,-18.875,1996-02-03,NA,25.615384615,7.7361111111,30.135416667 "3322","chic",-6,-7.875,1996-02-04,NA,21,9.5833333333,29.958333333 "3323","chic",11.5,5.25,1996-02-05,NA,51,6.4027777778,38.239583333 "3324","chic",18.5,20.625,1996-02-06,NA,58,5.4323671498,48.981266469 "3325","chic",38,34.75,1996-02-07,NA,37,4.7916666667,31.25 "3326","chic",39.5,34.5,1996-02-08,NA,28,2.6277777778,29.208333333 "3327","chic",39,37.75,1996-02-09,NA,28.076923077,3.9447463768,40.802083333 "3328","chic",44.5,29.625,1996-02-10,NA,27,14.354166667,21.4375 "3329","chic",32,19.625,1996-02-11,NA,15,22.104166667,14.791666667 "3330","chic",23,14.375,1996-02-12,NA,17,14.5625,27.072916667 "3331","chic",27.5,26.875,1996-02-13,NA,29,4.1186868687,30.9373706 "3332","chic",27.5,19.25,1996-02-14,NA,21,6.6237373737,32.552083333 "3333","chic",24,20.625,1996-02-15,NA,22.153846154,9.9583333333,30.712862319 "3334","chic",21,14.25,1996-02-16,NA,23,13.388888889,26.780344203 "3335","chic",23.5,10.625,1996-02-17,NA,28,10.972222222,25.479166667 "3336","chic",18.5,19.75,1996-02-18,NA,32,10.444444444,31.177083333 "3337","chic",33,31.875,1996-02-19,NA,35,5.0138888889,36.90625 "3338","chic",43.5,41.25,1996-02-20,NA,43,2.9667874396,36.044507576 "3339","chic",31.5,31.875,1996-02-21,NA,19.846153846,14.36352657,22.645833333 "3340","chic",35.5,34.875,1996-02-22,NA,35,6.98852657,23.226449275 "3341","chic",44.5,37.875,1996-02-23,NA,42,3.9444444444,24.283991228 "3342","chic",46,30.5,1996-02-24,NA,19,14.888888889,24.072916667 "3343","chic",46.5,39.25,1996-02-25,NA,31,7.3055555556,36.813858696 "3344","chic",40.5,40,1996-02-26,NA,50.5,4.6944444444,32.99365942 "3345","chic",38.5,28.375,1996-02-27,NA,31.916666667,4.5229468599,26.5625 "3346","chic",20,6.625,1996-02-28,NA,25,17.399154589,15.173135965 "3347","chic",17,6.375,1996-02-29,NA,20,15.950757576,23.821428571 "3348","chic",26,21,1996-03-01,NA,36,13.279040404,26.229166667 "3349","chic",15,-4.5,1996-03-02,NA,39,22.763888889,13.861111111 "3350","chic",12.5,0.75,1996-03-03,NA,22,16.111111111,18.041666667 "3351","chic",25,18.875,1996-03-04,NA,29.923076923,5.2777777778,37.361111111 "3352","chic",31.5,27.75,1996-03-05,NA,23.5,11.680555556,24.591856061 "3353","chic",20.5,10,1996-03-06,NA,17,25.111111111,21.494112319 "3354","chic",11.5,0.125,1996-03-07,NA,18,14.630050505,27.53125 "3355","chic",8,8.25,1996-03-08,NA,31,15.192028986,23.533967391 "3356","chic",17.5,14,1996-03-09,NA,29,12.5,34.140151515 "3357","chic",26,25.875,1996-03-10,NA,33.916666667,12.354166667,32.979166667 "3358","chic",37.5,28.375,1996-03-11,NA,31,9.2708333333,35.65625 "3359","chic",43,31.5,1996-03-12,NA,40,10.805555556,43.463224638 "3360","chic",45,39.75,1996-03-13,NA,59,7.6618357488,52.688496377 "3361","chic",47.5,39.5,1996-03-14,NA,54,16.888888889,39.84375 "3362","chic",40.5,30.75,1996-03-15,NA,32,16.472222222,31.247735507 "3363","chic",34.5,27.875,1996-03-16,NA,24.692307692,20.652777778,22.520833333 "3364","chic",31,32.625,1996-03-17,NA,36,6.2638888889,36.302083333 "3365","chic",34.5,24.625,1996-03-18,NA,54,9.5416666667,39.531702899 "3366","chic",35.5,25.875,1996-03-19,NA,26,32.479166667,22.373106061 "3367","chic",31.5,20.375,1996-03-20,NA,23,34.058876812,14.135416667 "3368","chic",29.5,20.125,1996-03-21,NA,18,20.636387164,26.982789855 "3369","chic",35,12.125,1996-03-22,NA,28.727272727,20.059782609,34.019927536 "3370","chic",39,22.125,1996-03-23,NA,57,17.916666667,42.104166667 "3371","chic",50.5,51,1996-03-24,NA,29,31.216666667,20.770833333 "3372","chic",35.5,12.125,1996-03-25,NA,33,23.695,13.976449275 "3373","chic",18.5,2.25,1996-03-26,NA,24.5,28.770833333,20.913825758 "3374","chic",24,20.25,1996-03-27,NA,26,24.59375,31.441287879 "3375","chic",37,25.5,1996-03-28,NA,34.454545455,19.475641026,33.364583333 "3376","chic",38.5,28.5,1996-03-29,NA,32,27.166666667,37.5625 "3377","chic",42,39.875,1996-03-30,NA,45,15.03125,33.364583333 "3378","chic",36.5,30.625,1996-03-31,NA,24,29.958333333,21.75 "3379","chic",35.5,19.625,1996-04-01,NA,15,29.458937198,25.520833333 "3380","chic",47.5,37.375,1996-04-02,NA,52,19.555098082,34.617794796 "3381","chic",52,37.5,1996-04-03,NA,42.384615385,16.974436393,36.979166667 "3382","chic",33.5,25.5,1996-04-04,NA,23,21.133454106,24.072916667 "3383","chic",32,19.75,1996-04-05,NA,8,27.689814815,25.604166667 "3384","chic",33,21.25,1996-04-06,NA,9,27.115740741,24.489583333 "3385","chic",32,17.375,1996-04-07,NA,9,25.125,22.270833333 "3386","chic",30,20.875,1996-04-08,NA,17.5,17.524557166,33.354166667 "3387","chic",36,25.75,1996-04-09,NA,26.846153846,14.269591097,34.25 "3388","chic",45.5,28.125,1996-04-10,NA,58,17.259601449,46.134057971 "3389","chic",64,48.5,1996-04-11,NA,128,33.612862319,34.272727273 "3390","chic",53,42.625,1996-04-12,NA,40,20.062681159,37.964673913 "3391","chic",40.5,29.375,1996-04-13,NA,15,19.533333333,18.041666667 "3392","chic",37.5,33.125,1996-04-14,NA,15,33.2375,13.822916667 "3393","chic",40,31.75,1996-04-15,NA,20.846153846,19.607608696,29.208333333 "3394","chic",42.5,31.625,1996-04-16,NA,21,22.023188406,30.714962121 "3395","chic",47,40.625,1996-04-17,NA,32,20.508152174,36.891757246 "3396","chic",63.5,54.375,1996-04-18,NA,54,30.463405797,26.714426877 "3397","chic",62.5,50.125,1996-04-19,NA,35,22.375543478,27.145833333 "3398","chic",52,40.5,1996-04-20,NA,25,15.191666667,18.927083333 "3399","chic",52,37.875,1996-04-21,NA,25.583333333,21.4625,26.333333333 "3400","chic",51.5,38.375,1996-04-22,NA,27,18.206439394,33.520833333 "3401","chic",45,31.125,1996-04-23,NA,16,22.300362319,24.461174242 "3402","chic",52.5,46.125,1996-04-24,NA,28,20.021195652,27.966666667 "3403","chic",61,43.875,1996-04-25,NA,52,25.555566535,22.433333333 "3404","chic",45.5,24.875,1996-04-26,NA,45,17.120652174,23.116666667 "3405","chic",45,30.375,1996-04-27,NA,28.846153846,19.439814815,29.291666667 "3406","chic",44,30.625,1996-04-28,NA,37.5,19.208333333,26.166666667 "3407","chic",40.5,37.25,1996-04-29,NA,14,21.022282609,23.566666667 "3408","chic",43.5,32.625,1996-04-30,NA,20,24.803804348,23.362121212 "3409","chic",50,32.625,1996-05-01,NA,41,24.001992754,24.786835749 "3410","chic",52.5,39,1996-05-02,NA,38,22.482427536,32.112608696 "3411","chic",52.5,42.625,1996-05-03,NA,34.538461538,24.991666667,28.75 "3412","chic",47.5,30.625,1996-05-04,NA,17,26.245833333,23.058333333 "3413","chic",49,41.25,1996-05-05,NA,20,21.970833333,22.95 "3414","chic",45.5,40.25,1996-05-06,NA,17,20.3875,23.283333333 "3415","chic",50.5,43.375,1996-05-07,NA,37,14.567391304,28.763636364 "3416","chic",57,56.5,1996-05-08,NA,57,5.2159782609,30.056884058 "3417","chic",58,54.142857143,1996-05-09,NA,36.166666667,4.0615942029,32.312681159 "3418","chic",51,38.25,1996-05-10,NA,16,15.6525,21.783333333 "3419","chic",45,28.5,1996-05-11,NA,8,23.625,15.791666667 "3420","chic",42.5,24.125,1996-05-12,NA,15,28.358333333,15.675 "3421","chic",45,33.25,1996-05-13,NA,21,15.678787879,38.358333333 "3422","chic",47.5,42.875,1996-05-14,NA,28,21.860688406,31.408333333 "3423","chic",54.5,52.125,1996-05-15,NA,50.384615385,17.273913043,30.450362319 "3424","chic",53.5,52.125,1996-05-16,NA,38,6.555733578,30.032378129 "3425","chic",69.5,71.875,1996-05-17,NA,38,27.025,23.983333333 "3426","chic",81,68.875,1996-05-18,NA,38,38.05,17.308333333 "3427","chic",81,65.25,1996-05-19,NA,86,33.783333333,12.8 "3428","chic",64,56,1996-05-20,NA,28,22.675,26.641666667 "3429","chic",65,52.625,1996-05-21,NA,26.461538462,23.701811594,30.816666667 "3430","chic",67,55.25,1996-05-22,NA,46,24.031785244,38.571666667 "3431","chic",56,46.75,1996-05-23,NA,27,15.453326746,34.254874835 "3432","chic",52,45.5,1996-05-24,NA,17,21.2375,22.303985507 "3433","chic",51.5,41.25,1996-05-25,NA,17,28.008333333,21.258333333 "3434","chic",54,47,1996-05-26,NA,18,37.166666667,14.333333333 "3435","chic",51,46.75,1996-05-27,NA,23.307692308,32.3625,12.416666667 "3436","chic",51.5,50,1996-05-28,NA,24,28.244021739,25.903787879 "3437","chic",51,34.875,1996-05-29,NA,19,29.451992754,24.584848485 "3438","chic",51.5,34,1996-05-30,NA,18,22.874637681,28.632453416 "3439","chic",57.5,50.375,1996-05-31,NA,41,30.681521739,34.632971014 "3440","chic",62.5,64,1996-06-01,NA,52,31.383333333,35.516666667 "3441","chic",67.5,57.142857143,1996-06-02,NA,18.846153846,41.116666667,13.758333333 "3442","chic",60.5,52.375,1996-06-03,NA,20,21.566666667,19.016666667 "3443","chic",57.5,55.875,1996-06-04,NA,23,6.2288043478,22.470289855 "3444","chic",61.5,54.875,1996-06-05,NA,38,30.178623188,24.05 "3445","chic",63.5,63.75,1996-06-06,NA,31,20.856521739,29.179879541 "3446","chic",54.5,53.25,1996-06-07,NA,24,16.870833333,28.666666667 "3447","chic",53,56.625,1996-06-08,NA,28.615384615,20.729166667,19.891666667 "3448","chic",56.5,56.75,1996-06-09,NA,17,23.75,16.425 "3449","chic",61.5,59.125,1996-06-10,NA,29,21.682608696,25.206884058 "3450","chic",60,59.125,1996-06-11,NA,22,28.420108696,28.489393939 "3451","chic",65.5,63.75,1996-06-12,NA,53,23.622644928,46.03115942 "3452","chic",75.5,68.5,1996-06-13,NA,55.5,32.232229908,36.674242424 "3453","chic",71.5,59.625,1996-06-14,NA,43.923076923,29.503961437,33.223913043 "3454","chic",71,51.75,1996-06-15,NA,46,33.995833333,33.108333333 "3455","chic",72.5,67,1996-06-16,NA,64,38.8,33.9375 "3456","chic",74,72.5,1996-06-17,NA,57,33.518348861,26.336428571 "3457","chic",73.5,69.75,1996-06-18,NA,31,23.847964897,23.109057971 "3458","chic",69.5,65.625,1996-06-19,NA,32.5,19.934847618,31.427964427 "3459","chic",73.5,71,1996-06-20,NA,47.583333333,28.214673913,36.87826087 "3460","chic",76.5,75.125,1996-06-21,NA,71,27.309156785,40.753030303 "3461","chic",71,57.125,1996-06-22,NA,28,33.0875,16.066666667 "3462","chic",61,54,1996-06-23,NA,28,28.25,20.616666667 "3463","chic",68.5,57.75,1996-06-24,NA,31,22.412137681,21.266666667 "3464","chic",65.5,50.75,1996-06-25,NA,24,24.886775362,21.875 "3465","chic",68,62.375,1996-06-26,NA,47.307692308,29.528804348,40.062549407 "3466","chic",74,68,1996-06-27,NA,63,45.890217391,52.208333333 "3467","chic",77.5,65.875,1996-06-28,NA,76,39.73134058,51.605434783 "3468","chic",83,74.25,1996-06-29,NA,73,58.395833333,22.475 "3469","chic",83,66.125,1996-06-30,NA,36,38.016666667,19.358333333 "3470","chic",75.5,57.625,1996-07-01,NA,31,30.453623188,30.25 "3471","chic",73,61.75,1996-07-02,NA,38.5,30.865036232,33.822463768 "3472","chic",65,48.875,1996-07-03,NA,13,24.395833333,15.816666667 "3473","chic",64,51.5,1996-07-04,NA,66,24.266666667,19.608333333 "3474","chic",70.5,57.125,1996-07-05,NA,69,30.8125,39.901515152 "3475","chic",73,61.75,1996-07-06,NA,60,55.025,34.333333333 "3476","chic",78,57.125,1996-07-07,NA,49,52.670833333,25.425 "3477","chic",71.5,55.125,1996-07-08,NA,42.076923077,26.558333333,27.741666667 "3478","chic",63,55,1996-07-09,NA,19,18.514130435,18.912318841 "3479","chic",63.5,46.625,1996-07-10,NA,24,19.302355072,22.707608696 "3480","chic",66,55.25,1996-07-11,NA,45,35.24057971,30.493478261 "3481","chic",73,66.375,1996-07-12,NA,51,33.192391304,37.241666667 "3482","chic",74.5,60.625,1996-07-13,NA,31,29.7875,20.258333333 "3483","chic",69,64.625,1996-07-14,NA,21.923076923,17.145833333,24.616666667 "3484","chic",71.5,62.375,1996-07-15,NA,37,22.408333333,25.833333333 "3485","chic",76.5,58.875,1996-07-16,NA,37,25.487862319,34.177766798 "3486","chic",73.5,69.75,1996-07-17,NA,32,18.895319693,39.257575758 "3487","chic",79,78.25,1996-07-18,NA,28,24.454347826,25.38629776 "3488","chic",72,57.375,1996-07-19,NA,17,20.547222222,14.045652174 "3489","chic",65,53.75,1996-07-20,NA,15.666666667,24.2875,10.991666667 "3490","chic",61.5,54,1996-07-21,NA,19,21.775,17.558333333 "3491","chic",65.5,67.625,1996-07-22,NA,35,22.532246377,26.641666667 "3492","chic",70.5,59,1996-07-23,NA,35,17.894993412,27.815151515 "3493","chic",73.5,61.625,1996-07-24,NA,25,17.160869565,27.52109077 "3494","chic",68.5,58.25,1996-07-25,NA,25,15.377536232,23.801086957 "3495","chic",69.5,58.625,1996-07-26,NA,24.583333333,16.698913043,22.108333333 "3496","chic",68.5,64.125,1996-07-27,NA,21,19.5875,22.383333333 "3497","chic",67.5,66.625,1996-07-28,NA,26,24.316666667,24.345 "3498","chic",70,62.75,1996-07-29,NA,34,22.1875,27.283333333 "3499","chic",68.5,57.875,1996-07-30,NA,25.5,16.125,26.764393939 "3500","chic",65.5,58.125,1996-07-31,NA,28,12.330072464,22.992424242 "3501","chic",66.5,59.875,1996-08-01,NA,28.769230769,16.418880837,30.679347826 "3502","chic",67.5,59.625,1996-08-02,NA,29,18.680683648,28.22826087 "3503","chic",68.5,62.625,1996-08-03,NA,41,22.555555556,28.145833333 "3504","chic",74,67.875,1996-08-04,NA,45,39.527777778,22.6875 "3505","chic",82,75.375,1996-08-05,NA,69,38.848067633,18.09375 "3506","chic",79.5,75.625,1996-08-06,NA,47,29.740740741,22.722908432 "3507","chic",83,74.375,1996-08-07,NA,45.076923077,27.909822866,25.833333333 "3508","chic",77,55,1996-08-08,NA,24,24.805756844,24.791666667 "3509","chic",71,57.875,1996-08-09,NA,25,17.720117845,23.145833333 "3510","chic",68.5,59.75,1996-08-10,NA,12,22.114935588,11.958333333 "3511","chic",69.5,65.125,1996-08-11,NA,30,16.958333333,29.520833333 "3512","chic",71,64.125,1996-08-12,NA,46,22.380291005,32.114583333 "3513","chic",74,67.625,1996-08-13,NA,44.307692308,25.839371981,30.001488095 "3514","chic",76,63.625,1996-08-14,NA,45,22.580387205,26.120841568 "3515","chic",69.5,60,1996-08-15,NA,27,15.043276973,24.314383105 "3516","chic",68.5,61.125,1996-08-16,NA,19,14.021537842,19.46875 "3517","chic",69,64.125,1996-08-17,NA,29,21.027777778,25.833333333 "3518","chic",70.5,69.375,1996-08-18,NA,34,25.925925926,22.739583333 "3519","chic",76,71.375,1996-08-19,NA,42.076923077,25.142310789,23.416666667 "3520","chic",77,71.25,1996-08-20,NA,48,20.067431562,26.847826087 "3521","chic",78,72.75,1996-08-21,NA,58,20.733805446,41.495223979 "3522","chic",79,71.125,1996-08-22,NA,59,30.76678744,27.001217532 "3523","chic",70,55.125,1996-08-23,NA,17,14.826313406,17.40625 "3524","chic",71,58.875,1996-08-24,NA,22,21.708333333,23.885416667 "3525","chic",69.5,64.5,1996-08-25,NA,33.923076923,26.760416667,30.9375 "3526","chic",72,65.75,1996-08-26,NA,46,32.557971014,29.583333333 "3527","chic",70,64.875,1996-08-27,NA,24,25.514090177,13.063405797 "3528","chic",68.5,63,1996-08-28,NA,39,21.351650564,22.75094697 "3529","chic",69.5,58.75,1996-08-29,NA,20,31.926731079,20.354166667 "3530","chic",69,61.25,1996-08-30,NA,23,29.773752013,20.697916667 "3531","chic",70.5,61.5,1996-08-31,NA,48.076923077,32.736111111,22.864583333 "3532","chic",73.5,60.75,1996-09-01,NA,53,37.263888889,31.03125 "3533","chic",71,62.5,1996-09-02,NA,53,42.902777778,26.34375 "3534","chic",73,67,1996-09-03,NA,83,37.314613527,33.21969697 "3535","chic",73,64.75,1996-09-04,NA,112,38.241545894,41.947916667 "3536","chic",74,68.375,1996-09-05,NA,68,45.087359098,24.185688406 "3537","chic",74,71.125,1996-09-06,NA,53.461538462,38.580515298,20.41576087 "3538","chic",73.5,69.625,1996-09-07,NA,51,21.939814815,27.09375 "3539","chic",73,67.25,1996-09-08,NA,62,20.989583333,29.59375 "3540","chic",68.5,64.625,1996-09-09,NA,32,20.843567251,22.927083333 "3541","chic",69.5,61.375,1996-09-10,NA,48,16.40599839,35.650297619 "3542","chic",67,57.125,1996-09-11,NA,39,9.2485909823,34.794054677 "3543","chic",58,50.25,1996-09-12,NA,16.818181818,8.5787037037,18.610960145 "3544","chic",56,46.625,1996-09-13,NA,22,10.010668277,19.856431159 "3545","chic",53,50.75,1996-09-14,NA,19,6.3888888889,18.333333333 "3546","chic",59,51.875,1996-09-15,NA,21,10.62037037,19.8125 "3547","chic",58.5,54.375,1996-09-16,NA,17,13.839975845,14.581974638 "3548","chic",60.5,52.25,1996-09-17,NA,11,17.944041868,10.458333333 "3549","chic",62,52.625,1996-09-18,NA,17.307692308,11.725040258,14.947334369 "3550","chic",61,51.75,1996-09-19,NA,29,17.231261894,21.885416667 "3551","chic",58.5,58.25,1996-09-20,NA,40,9.67431562,39.104166667 "3552","chic",64,54.875,1996-09-21,NA,42,9.9305555556,33.104166667 "3553","chic",62.5,50.25,1996-09-22,NA,28,16.133856683,20.238677536 "3554","chic",59,56.875,1996-09-23,NA,43,4.6729066023,36.256793478 "3555","chic",57,43.125,1996-09-24,NA,24.230769231,13.696676914,27.196557971 "3556","chic",53,46.125,1996-09-25,NA,46,12.347624799,29.98386251 "3557","chic",60.5,63.375,1996-09-26,NA,28,14.812092126,23.416666667 "3558","chic",58.5,48,1996-09-27,NA,14,6.524691358,17.739583333 "3559","chic",53.5,47,1996-09-28,NA,17,6.0892857143,21.125 "3560","chic",57.5,50.375,1996-09-29,NA,20,11.166666667,21.694444444 "3561","chic",63,52.875,1996-09-30,NA,27.461538462,13.869047619,35.25 "3562","chic",62,58.25,1996-10-01,NA,44,20.239583333,35.861111111 "3563","chic",57,40.875,1996-10-02,NA,24,13.916666667,20.516414141 "3564","chic",46.5,36.75,1996-10-03,NA,12,18.510416667,18.777777778 "3565","chic",47,40.375,1996-10-04,NA,25,10.802083333,30.428140097 "3566","chic",53.5,45.5,1996-10-05,NA,25,8.03125,33.75 "3567","chic",63.5,57.125,1996-10-06,NA,38.230769231,25.078125,29.486111111 "3568","chic",53.5,45.625,1996-10-07,NA,14,12.390625,18.836352657 "3569","chic",45.5,40.25,1996-10-08,NA,9,7.0700757576,20.529040404 "3570","chic",47.5,41.625,1996-10-09,NA,32,4.453125,32.416666667 "3571","chic",42.5,35.75,1996-10-10,NA,13,6.7244112319,21.309782609 "3572","chic",42,42.375,1996-10-11,NA,23,7.078125,29.625 "3573","chic",61,54.25,1996-10-12,NA,29.833333333,15.317708333,29.388888889 "3574","chic",66,62.125,1996-10-13,NA,40,24.057291667,32.902777778 "3575","chic",57,51,1996-10-14,NA,18,17.322916667,15.972222222 "3576","chic",64,54.625,1996-10-15,NA,48,12.396059783,39.472222222 "3577","chic",63,61.125,1996-10-16,NA,33,5.8122117918,36.619949495 "3578","chic",59,49.125,1996-10-17,NA,39,21.69067029,25.539251208 "3579","chic",46.5,28.375,1996-10-18,NA,20.153846154,9.2742300725,22.059343434 "3580","chic",45,34.625,1996-10-19,NA,24,6.9047619048,28.402777778 "3581","chic",47.5,48.25,1996-10-20,NA,35,6.244047619,31.222222222 "3582","chic",53,50,1996-10-21,NA,34,6.3780797101,37.185386473 "3583","chic",55.5,57.875,1996-10-22,NA,33,4.9472990777,27.145696091 "3584","chic",43,40.625,1996-10-23,NA,15.5,4.8145380435,17.430555556 "3585","chic",48,43.875,1996-10-24,NA,26.153846154,6.0905797101,24.180555556 "3586","chic",52.5,49.125,1996-10-25,NA,32,11.935235507,32.916666667 "3587","chic",62,62.25,1996-10-26,NA,34,8.8489583333,23.180555556 "3588","chic",59,47.5,1996-10-27,NA,21,12.161458333,14.579710145 "3589","chic",46.5,37.625,1996-10-28,NA,38,6.0717844203,28.958333333 "3590","chic",50.5,54.125,1996-10-29,NA,27,6.3358242754,30.709541063 "3591","chic",44.5,22.857142857,1996-10-30,NA,18.384615385,13.948233696,16.20531401 "3592","chic",33,21.25,1996-10-31,NA,30,12.676403986,19.43236715 "3593","chic",31,21.625,1996-11-01,NA,25,8.6458333333,24.888888889 "3594","chic",29,24.125,1996-11-02,NA,18,8.5991847826,24.055555556 "3595","chic",35.5,26.875,1996-11-03,NA,30,6.5104166667,25.708333333 "3596","chic",42,33.5,1996-11-04,NA,37,2.15625,31.208333333 "3597","chic",46.5,47.375,1996-11-05,NA,34.692307692,1.8020833333,34.370772947 "3598","chic",54,60.25,1996-11-06,NA,32,3.2379658385,29.944444444 "3599","chic",43,36.875,1996-11-07,NA,20,2.6805555556,28.210144928 "3600","chic",37,33.25,1996-11-08,NA,32,2.7306763285,28.861111111 "3601","chic",34.5,28,1996-11-09,NA,13.5,9.9305555556,20.333333333 "3602","chic",28,21.875,1996-11-10,NA,15,12.555555556,19.833333333 "3603","chic",26.5,12.625,1996-11-11,NA,13.384615385,9.9722222222,28.638888889 "3604","chic",23,11,1996-11-12,NA,20,7.3611111111,32.388888889 "3605","chic",22.5,11.375,1996-11-13,NA,28,3.3888888889,36.5 "3606","chic",25,18.857142857,1996-11-14,NA,23,10.82910628,30.599747475 "3607","chic",40,22.5,1996-11-15,NA,30,6.3611111111,28.916666667 "3608","chic",48,32.125,1996-11-16,NA,31,6.9722222222,25.569444444 "3609","chic",41.5,25,1996-11-17,NA,14.083333333,10.180555556,14.236111111 "3610","chic",31,24.75,1996-11-18,NA,21,4.1666666667,23.625 "3611","chic",29.5,19,1996-11-19,NA,19,3.4782608696,29.108695652 "3612","chic",29,29.625,1996-11-20,NA,23,8.9722222222,26.945906433 "3613","chic",34,26.375,1996-11-21,NA,17.5,9.5277777778,28.784090909 "3614","chic",34.5,29.375,1996-11-22,NA,31,4.9305555556,32.271354853 "3615","chic",35.5,34.625,1996-11-23,NA,28.583333333,1.8194444444,20.972222222 "3616","chic",35,30.375,1996-11-24,NA,18,6.1527777778,19.125 "3617","chic",26.5,19.125,1996-11-25,NA,11,14.094806763,23.234126984 "3618","chic",20,9.625,1996-11-26,NA,26,7.7361111111,29.680555556 "3619","chic",22.5,18.75,1996-11-27,NA,36,2.4836956522,31.219202899 "3620","chic",29.5,25.625,1996-11-28,NA,28,4.2083333333,26.430555556 "3621","chic",33.5,31.375,1996-11-29,NA,26.583333333,2.8472222222,29.666666667 "3622","chic",40.5,36.75,1996-11-30,NA,16,3.5277777778,18.305555556 "3623","chic",30.5,22.875,1996-12-01,NA,17,8.5277777778,17.138888889 "3624","chic",27.5,24.875,1996-12-02,NA,28,7.7638888889,24.611111111 "3625","chic",30,23,1996-12-03,NA,27,2.1262626263,28.277777778 "3626","chic",26.5,25.25,1996-12-04,NA,35,1.8882850242,30.98869126 "3627","chic",32.5,32.25,1996-12-05,NA,22.846153846,2.1962560386,26.802536232 "3628","chic",33.5,28.625,1996-12-06,NA,26,1.902173913,27.628842776 "3629","chic",30.5,24.875,1996-12-07,NA,25.5,7.0833333333,26.875 "3630","chic",28.5,22.25,1996-12-08,NA,19,13.958333333,16.736111111 "3631","chic",28.5,23.375,1996-12-09,NA,22,5.4722222222,21.152777778 "3632","chic",35.5,34.75,1996-12-10,NA,39,1.8888888889,28.643115942 "3633","chic",37,34.5,1996-12-11,NA,18.769230769,5.0609903382,20.017512077 "3634","chic",36.5,33.75,1996-12-12,NA,22,3.2777777778,17.472826087 "3635","chic",34.5,34.75,1996-12-13,NA,28,2.1533816425,25.629830918 "3636","chic",36.5,31.75,1996-12-14,NA,28,2.5833333333,23.208333333 "3637","chic",38,25.375,1996-12-15,NA,17,6.4027777778,17.388888889 "3638","chic",29,26.125,1996-12-16,NA,29,8.4166666667,24.902777778 "3639","chic",24,13.375,1996-12-17,NA,26.846153846,4.2958937198,21.958333333 "3640","chic",13,2.125,1996-12-18,NA,33,9.2361111111,17.590909091 "3641","chic",8,5.75,1996-12-19,NA,41,7.125,19.361111111 "3642","chic",9.5,8.625,1996-12-20,NA,30,5.6906565657,23.295289855 "3643","chic",26.5,25.625,1996-12-21,NA,37,7,21.388888889 "3644","chic",34.5,36.875,1996-12-22,NA,20,2.9722222222,25.055555556 "3645","chic",42.5,40.625,1996-12-23,NA,17.583333333,2.0694444444,24.986111111 "3646","chic",20,5.375,1996-12-24,NA,24,15.687198068,15.986111111 "3647","chic",4.5,3,1996-12-25,NA,17,12.597222222,19.583333333 "3648","chic",14,12,1996-12-26,NA,30.5,4.7638888889,35.259057971 "3649","chic",26,31.75,1996-12-27,NA,36.5,1.9396135266,32.751207729 "3650","chic",37,37.75,1996-12-28,NA,23,1.6805555556,22.347222222 "3651","chic",30,22.875,1996-12-29,NA,29.307692308,3.2361111111,19.986111111 "3652","chic",27.5,29.875,1996-12-30,NA,42,1.9722222222,24.194444444 "3653","chic",27.5,30.125,1996-12-31,NA,33,2.9287439614,27.573232323 "3654","chic",36,37.5,1997-01-01,NA,19,1.7777777778,19.416666667 "3655","chic",45,47.25,1997-01-02,NA,41.5,1.595959596,21.243686869 "3656","chic",40,38,1997-01-03,NA,31,2.4027777778,19.277777778 "3657","chic",51.5,45.5,1997-01-04,NA,24.384615385,2.8339371981,15.520833333 "3658","chic",27,11.25,1997-01-05,NA,22.5,16.319444444,7.7291666667 "3659","chic",17,5.75,1997-01-06,NA,18.5,12.833333333,19.833333333 "3660","chic",16,7,1997-01-07,NA,25.5,9.5646135266,28.348731884 "3661","chic",19,17.75,1997-01-08,NA,34.5,5.1884057971,31.444444444 "3662","chic",26,24,1997-01-09,NA,21.5,9.8194444444,27.763888889 "3663","chic",16,5.375,1997-01-10,NA,24.230769231,6.1594202899,23.015096618 "3664","chic",1.5,-6.625,1997-01-11,NA,21.5,11.944444444,22.555555556 "3665","chic",1,-8.875,1997-01-12,NA,21,12.180555556,22.583333333 "3666","chic",3,1.5,1997-01-13,NA,33.5,4.6527777778,33.612318841 "3667","chic",10,11.5,1997-01-14,NA,53,2.9679951691,40.696256039 "3668","chic",19,23.25,1997-01-15,NA,30,2.1998792271,35.220959596 "3669","chic",9.5,-9.75,1997-01-16,NA,26.545454545,18.694444444,20.861111111 "3670","chic",-3,-10.375,1997-01-17,NA,24,12.688405797,28.236111111 "3671","chic",0,-4.125,1997-01-18,NA,32,10.875,32.166666667 "3672","chic",14,22.625,1997-01-19,NA,31.5,4.8888888889,32.361111111 "3673","chic",31,27.25,1997-01-20,NA,25.5,13.277777778,32.486111111 "3674","chic",35,41.625,1997-01-21,NA,31,9.7083333333,32.569444444 "3675","chic",36.5,20.75,1997-01-22,NA,17.375,17.439393939,19.413888889 "3676","chic",26,18.75,1997-01-23,NA,18.5,14.523550725,25.375 "3677","chic",32,29.5,1997-01-24,NA,31,4.693236715,24.986111111 "3678","chic",14.5,-1.375,1997-01-25,NA,24.5,12.861111111,21.069444444 "3679","chic",11,17.125,1997-01-26,NA,28,7.8055555556,30.722222222 "3680","chic",17,8.375,1997-01-27,NA,29.5,6.25,33.5 "3681","chic",2,-6.375,1997-01-28,NA,27.461538462,11.221014493,35.432971014 "3682","chic",8,11,1997-01-29,NA,52.5,4.1944444444,48.902777778 "3683","chic",16.5,16.375,1997-01-30,NA,45.5,2.7083333333,40.273989899 "3684","chic",31.5,33.75,1997-01-31,NA,27.5,9.2807971014,32.486111111 "3685","chic",35,29.666666667,1997-02-01,NA,28.5,12.862318841,34.577898551 "3686","chic",36.5,29.625,1997-02-02,NA,34.5,9.5277777778,32.319444444 "3687","chic",30,28,1997-02-03,NA,20.615384615,19.125,26.125 "3688","chic",34.5,32,1997-02-04,NA,24,9.2192028986,24.566338854 "3689","chic",30,24.25,1997-02-05,NA,17.5,14.069444444,26.686594203 "3690","chic",26,21.875,1997-02-06,NA,22.5,14.855676329,27.402777778 "3691","chic",25.5,23.375,1997-02-07,NA,31.5,12.319444444,31.208333333 "3692","chic",25.5,22.5,1997-02-08,NA,18.5,14.645833333,26.652777778 "3693","chic",26,21,1997-02-09,NA,28.769230769,8.2083333333,39.041666667 "3694","chic",27,21.75,1997-02-10,NA,29,11.354166667,35.347222222 "3695","chic",23.5,19.5,1997-02-11,NA,28,15.916666667,29.75 "3696","chic",21,11.6,1997-02-12,NA,18.5,18.5,26.902777778 "3697","chic",20.5,16.375,1997-02-13,NA,28.5,15.583333333,29.944444444 "3698","chic",25.5,23,1997-02-14,NA,38.5,10.854166667,31.893719807 "3699","chic",20,15.25,1997-02-15,NA,27.230769231,16.520833333,30.638888889 "3700","chic",18.5,8.125,1997-02-16,NA,22,14.729166667,30.569444444 "3701","chic",30,32.625,1997-02-17,NA,33,12.75,33.166666667 "3702","chic",48.5,41.375,1997-02-18,NA,27,25.579951691,29.143939394 "3703","chic",37.5,27.5,1997-02-19,NA,26,17.208333333,30.583333333 "3704","chic",35.5,44.125,1997-02-20,NA,34,3.5138888889,37.262681159 "3705","chic",36,29.625,1997-02-21,NA,6.5384615385,14.471014493,21.116545894 "3706","chic",26,24.25,1997-02-22,NA,14.5,21.875,25.777777778 "3707","chic",28,14.625,1997-02-23,NA,16.5,22.476190476,19.347222222 "3708","chic",21.5,10.875,1997-02-24,NA,23,15.792874396,34.555555556 "3709","chic",25.5,27.125,1997-02-25,NA,40,11.009057971,35.722222222 "3710","chic",36.5,35,1997-02-26,NA,33.5,5.3907004831,33.891963109 "3711","chic",34.5,30.25,1997-02-27,NA,18.538461538,9.0972222222,31.042270531 "3712","chic",37.5,36,1997-02-28,NA,33,12.027777778,27.68115942 "3713","chic",45.5,44,1997-03-01,NA,32,12.722222222,25.694444444 "3714","chic",35,27.375,1997-03-02,NA,18.5,28.458333333,17.236111111 "3715","chic",33.5,29.375,1997-03-03,NA,19,25.027777778,23 "3716","chic",38,28.875,1997-03-04,NA,30,12.138888889,26.837121212 "3717","chic",33,28.625,1997-03-05,NA,29.692307692,14.125,26.27294686 "3718","chic",26.5,13.375,1997-03-06,NA,29,21.935990338,24.897342995 "3719","chic",35.5,35.25,1997-03-07,NA,29.5,14.180555556,33.513888889 "3720","chic",39,28.25,1997-03-08,NA,20.5,25.958333333,21.180555556 "3721","chic",37,32.625,1997-03-09,NA,27,9.5694444444,26.819444444 "3722","chic",44,33.25,1997-03-10,NA,27,16.597222222,28.055555556 "3723","chic",37,23.375,1997-03-11,NA,18.769230769,25.666666667,27.513888889 "3724","chic",33.5,25,1997-03-12,NA,18.5,28.23852657,30.878787879 "3725","chic",37.5,30.5,1997-03-13,NA,27.5,24.041666667,22.930555556 "3726","chic",26.5,15.5,1997-03-14,NA,22,21.430555556,21.083333333 "3727","chic",19,8.375,1997-03-15,NA,16,28.666666667,19.166666667 "3728","chic",24.5,23.75,1997-03-16,NA,19,24.236111111,21.305555556 "3729","chic",45,33.625,1997-03-17,NA,31.307692308,18.638888889,29.125 "3730","chic",33.5,27,1997-03-18,NA,19.5,36.094444444,19.259259259 "3731","chic",35.5,28.875,1997-03-19,NA,28.5,27.416666667,32.628968254 "3732","chic",46,31.875,1997-03-20,NA,37.5,25.945238095,37.621031746 "3733","chic",53.5,42.5,1997-03-21,NA,53,19.194927536,31.578502415 "3734","chic",37.5,28.625,1997-03-22,NA,21.5,26.95,29.5 "3735","chic",32.5,20.375,1997-03-23,NA,14.230769231,25.425,19.027777778 "3736","chic",33,32.375,1997-03-24,NA,28,20.260606061,26.375 "3737","chic",40.5,30,1997-03-25,NA,25.5,15.204347826,27.305555556 "3738","chic",44,36.75,1997-03-26,NA,23.5,20.795525127,25.86783989 "3739","chic",60.5,40.125,1997-03-27,NA,44,26.607487923,26.972222222 "3740","chic",55.5,53.875,1997-03-28,NA,39,13.310990338,32.597222222 "3741","chic",43.5,41,1997-03-29,NA,21.076923077,15.233333333,16.819444444 "3742","chic",37.5,33.75,1997-03-30,NA,11,22.783333333,18 "3743","chic",38.5,22,1997-03-31,NA,18,26.624637681,29.069444444 "3744","chic",44.5,28.125,1997-04-01,NA,51.5,15.091931438,47.718434343 "3745","chic",53,29.875,1997-04-02,NA,50.5,13.821014493,42.65821256 "3746","chic",59.5,49.875,1997-04-03,NA,45,12.822348485,38.01010101 "3747","chic",62.5,48.25,1997-04-04,NA,51.076923077,31.119746377,34.291666667 "3748","chic",60.5,54.375,1997-04-05,NA,20,28.654710145,17.055555556 "3749","chic",45,21.75,1997-04-06,NA,35,29.333333333,8.8333333333 "3750","chic",34,18.375,1997-04-07,NA,29.5,27.375,14.152777778 "3751","chic",28.5,9.25,1997-04-08,NA,23,22.437862319,22.777777778 "3752","chic",30,18.875,1997-04-09,NA,18.5,22.5875,28.308574879 "3753","chic",30.5,22,1997-04-10,NA,24.230769231,21.633695652,34.892621871 "3754","chic",33.5,32,1997-04-11,NA,25,25.622421142,26.944444444 "3755","chic",33.5,30.375,1997-04-12,NA,20,24.314814815,23.111111111 "3756","chic",38.5,24.625,1997-04-13,NA,17.5,30.550925926,26.333333333 "3757","chic",41.5,28.125,1997-04-14,NA,44.5,19.050543478,43.611111111 "3758","chic",49,36.25,1997-04-15,NA,57,29.011050725,33.972222222 "3759","chic",43,25.625,1997-04-16,NA,23.307692308,22.287318841,23.78030303 "3760","chic",40.5,25.75,1997-04-17,NA,16,18.482789855,24.117753623 "3761","chic",40,34.75,1997-04-18,NA,42.5,13.191485507,52.55298913 "3762","chic",45.5,30.875,1997-04-19,NA,26,23.604166667,34.177083333 "3763","chic",49,42.25,1997-04-20,NA,37.5,23.3875,37.041666667 "3764","chic",45,31,1997-04-21,NA,19,34.454166667,27.052083333 "3765","chic",43,33.625,1997-04-22,NA,13.076923077,30.030978261,18.6875 "3766","chic",48.5,34,1997-04-23,NA,10,26.878985507,22.703442029 "3767","chic",47.5,36.5,1997-04-24,NA,12,22.418115942,28.104166667 "3768","chic",48,27.75,1997-04-25,NA,21.5,23.710144928,31.5 "3769","chic",49.5,24.25,1997-04-26,NA,38.5,23.0875,40.145833333 "3770","chic",47.5,40.25,1997-04-27,NA,28,28.270833333,28.0625 "3771","chic",50.5,40.75,1997-04-28,NA,61,19.596557971,53.010416667 "3772","chic",60,45.25,1997-04-29,NA,72,35.841666667,33.552083333 "3773","chic",55,50,1997-04-30,NA,47,26.171376812,28.171672078 "3774","chic",48.5,36.875,1997-05-01,NA,22,21.246014493,24.543025362 "3775","chic",48.5,45.5,1997-05-02,NA,33,10.294927536,33.610507246 "3776","chic",49,40.375,1997-05-03,NA,18,22.433333333,25.09375 "3777","chic",51.5,33.25,1997-05-04,NA,19.615384615,29.066666667,29.84375 "3778","chic",62,38.875,1997-05-05,NA,68,30.770108696,22.228672596 "3779","chic",55.5,35,1997-05-06,NA,29.5,24.558876812,31.760416667 "3780","chic",52.5,49.25,1997-05-07,NA,38,20.648369565,34.779356061 "3781","chic",61,42.75,1997-05-08,NA,33.5,29.725905797,20.447916667 "3782","chic",50.5,36,1997-05-09,NA,19,21.127618577,18.928977273 "3783","chic",52.5,32.625,1997-05-10,NA,26.769230769,21.804166667,25.135416667 "3784","chic",59.5,43.875,1997-05-11,NA,31.5,27.6875,18.166666667 "3785","chic",52.5,32.5,1997-05-12,NA,35.5,26.245833333,16.760416667 "3786","chic",45.5,38.75,1997-05-13,NA,25,18.199670619,21.47826087 "3787","chic",49.5,40.625,1997-05-14,NA,31,13.129166667,32.875 "3788","chic",45,35.5,1997-05-15,NA,15.5,13.208333333,19.941666667 "3789","chic",51,41.375,1997-05-16,NA,36.615384615,22.803571429,24.024046529 "3790","chic",50.5,38.25,1997-05-17,NA,21,29.754166667,17.777898551 "3791","chic",59.5,63.875,1997-05-18,NA,34.5,23.679166667,25.941666667 "3792","chic",54,42.375,1997-05-19,NA,26.5,19.762318841,24.627173913 "3793","chic",51.5,38.125,1997-05-20,NA,24.5,17.582789855,28.496969697 "3794","chic",48,34.375,1997-05-21,NA,12,19.051439741,21.162121212 "3795","chic",50.5,34.625,1997-05-22,NA,28.153846154,19.364789196,28.726086957 "3796","chic",58,40.75,1997-05-23,NA,47,26.335326087,33.946508564 "3797","chic",68.5,56.125,1997-05-24,NA,54,41.1,29.341666667 "3798","chic",50,44.5,1997-05-25,NA,25,37.279166667,13.158333333 "3799","chic",50,35.875,1997-05-26,NA,9.5,33.129166667,10.941666667 "3800","chic",56,39.375,1997-05-27,NA,26,30.054891304,18.232246377 "3801","chic",58.5,56.875,1997-05-28,NA,30.307692308,21.823913043,22.051416337 "3802","chic",58,50.75,1997-05-29,NA,22.5,18.192753623,22.853623188 "3803","chic",61,51.75,1997-05-30,NA,32,29.310655468,26.69673913 "3804","chic",59,53.375,1997-05-31,NA,24,37.308333333,24.625 "3805","chic",60.5,51.25,1997-06-01,NA,19.5,44.5875,12.641666667 "3806","chic",58,54.5,1997-06-02,NA,21,29.690036232,18.682608696 "3807","chic",61.5,52.625,1997-06-03,NA,24.538461538,30.509601449,19.369927536 "3808","chic",59,47.5,1997-06-04,NA,29,30.219565217,33.072101449 "3809","chic",62,56,1997-06-05,NA,44.5,30.983385093,36.375 "3810","chic",63.5,58.75,1997-06-06,NA,36,23.263949275,27.608333333 "3811","chic",58.5,55.375,1997-06-07,NA,20.5,22.183333333,21.666666667 "3812","chic",61,48.625,1997-06-08,NA,21.5,41.029166667,18.383333333 "3813","chic",62.5,51.75,1997-06-09,NA,33,41.040892622,29.197727273 "3814","chic",66.5,53.875,1997-06-10,NA,47.5,40.620833333,38.650757576 "3815","chic",67.5,63.125,1997-06-11,NA,54,20.151070487,50.989130435 "3816","chic",70,63.625,1997-06-12,NA,51,20.7578722,41.913636364 "3817","chic",71,52,1997-06-13,NA,41.5,28.341304348,34.554347826 "3818","chic",56.5,41.875,1997-06-14,NA,11.5,21.3625,16.216666667 "3819","chic",63,59.75,1997-06-15,NA,32,35.641666667,21.266666667 "3820","chic",67,53.375,1997-06-16,NA,25,32.817934783,22.175 "3821","chic",60.5,50.375,1997-06-17,NA,19,23.1875,17.209090909 "3822","chic",67,61.125,1997-06-18,NA,45.5,30.551811594,30.962681159 "3823","chic",70,65.875,1997-06-19,NA,60.5,32.435688406,39.900131752 "3824","chic",81.5,72.875,1997-06-20,NA,65,40.474311594,24.501086957 "3825","chic",75.5,64.75,1997-06-21,NA,27.25,29.694444444,23.158333333 "3826","chic",77,66.875,1997-06-22,NA,29,37.691666667,32.158333333 "3827","chic",82.5,69.625,1997-06-23,NA,58.5,30.54057971,29.9 "3828","chic",84,60,1997-06-24,NA,113.5,33.23423913,26.116666667 "3829","chic",78,62.75,1997-06-25,NA,47,29.657278346,26.887121212 "3830","chic",73.5,55.25,1997-06-26,NA,29.5,29.511231884,31.086283644 "3831","chic",72.5,59,1997-06-27,NA,44.833333333,32.057246377,42.15615942 "3832","chic",74,62,1997-06-28,NA,48.5,46.3,36.625 "3833","chic",75,65.25,1997-06-29,NA,66.5,56.541666667,35.291666667 "3834","chic",76,69.25,1997-06-30,NA,35,20.777766798,32.141666667 "3835","chic",77.5,68.625,1997-07-01,NA,49,38.145833333,33.347826087 "3836","chic",79.5,55.75,1997-07-02,NA,70,31.353804348,16.692753623 "3837","chic",68.5,54.25,1997-07-03,NA,23.166666667,18.179166667,12.183333333 "3838","chic",61.5,51.875,1997-07-04,NA,26,10.9375,14.991666667 "3839","chic",65.5,50.75,1997-07-05,NA,25.5,21.758333333,16.666666667 "3840","chic",70,57.75,1997-07-06,NA,23.5,31.995833333,17.216666667 "3841","chic",65.5,52.5,1997-07-07,NA,19,27.358926219,13.625 "3842","chic",71,58,1997-07-08,NA,42,31.316847826,21.860869565 "3843","chic",62,50.75,1997-07-09,NA,12.75,28.332608696,15.497727273 "3844","chic",64.5,51,1997-07-10,NA,25.5,25.075959079,22.306521739 "3845","chic",68.5,59.125,1997-07-11,NA,45,34.233333333,31.120652174 "3846","chic",74.5,63.5,1997-07-12,NA,57.5,48.254166667,32.925 "3847","chic",82.5,71.75,1997-07-13,NA,53,39.4625,19.625 "3848","chic",83,62.375,1997-07-14,NA,43,28.912137681,22.941666667 "3849","chic",79,64.25,1997-07-15,NA,27.333333333,25.170635705,24.190151515 "3850","chic",82.5,59.875,1997-07-16,NA,42,33.533349802,25.481431159 "3851","chic",84,68.625,1997-07-17,NA,60,44.505564182,30.298989899 "3852","chic",79,69.125,1997-07-18,NA,56.5,20.833514493,38.127173913 "3853","chic",74.5,60.625,1997-07-19,NA,21,30.970833333,14.633333333 "3854","chic",76.5,71.625,1997-07-20,NA,32,36.8125,18.008333333 "3855","chic",72,65.125,1997-07-21,NA,25.666666667,31.630615942,19.775 "3856","chic",69,64.375,1997-07-22,NA,23.5,27.653474967,17.058333333 "3857","chic",69,59.75,1997-07-23,NA,26.5,31.119927536,19.910144928 "3858","chic",72.5,64.75,1997-07-24,NA,40,38.394202899,25.147101449 "3859","chic",76,75.75,1997-07-25,NA,68,37.735144928,24.346666667 "3860","chic",85.5,73.375,1997-07-26,NA,57,43.740833333,18.475 "3861","chic",81.5,73.75,1997-07-27,NA,35.454545455,27.625,28.625 "3862","chic",74.5,57.375,1997-07-28,NA,19,21.74469697,14.979545455 "3863","chic",66.5,50.875,1997-07-29,NA,8.5,20.735688406,9.7174242424 "3864","chic",68.5,52.375,1997-07-30,NA,16.5,21.333333333,16.495059289 "3865","chic",69,56.25,1997-07-31,NA,34,24.795833333,26.7 "3866","chic",74.5,58.875,1997-08-01,NA,67.5,42.495833333,34.95 "3867","chic",81.5,59.375,1997-08-02,NA,47.666666667,43.731481481,29.016666667 "3868","chic",78,66.5,1997-08-03,NA,40,37.046296296,30.516666667 "3869","chic",71,57.75,1997-08-04,NA,14.5,21.897745572,11.599967062 "3870","chic",62.5,45.875,1997-08-05,NA,10.5,20.282051282,13.353787879 "3871","chic",64.5,54,1997-08-06,NA,36.5,16.141666667,33.378656126 "3872","chic",67,55.5,1997-08-07,NA,54,26.895289855,36.856521739 "3873","chic",69.5,52.875,1997-08-08,NA,44.416666667,34.748809524,36.1 "3874","chic",70.5,66,1997-08-09,NA,45,26.633333333,23.191666667 "3875","chic",75.5,65.5,1997-08-10,NA,39,25.141666667,14.125 "3876","chic",67.5,62.125,1997-08-11,NA,14.5,16.032608696,13.366666667 "3877","chic",69.5,67.875,1997-08-12,NA,28.5,5.925,21.925 "3878","chic",68.5,58.75,1997-08-13,NA,17,17.765036232,15.476449275 "3879","chic",65.5,63.125,1997-08-14,NA,27.75,20.405253623,22.434057971 "3880","chic",77,70,1997-08-15,NA,36.5,21.663768116,22.741666667 "3881","chic",80,69.875,1997-08-16,NA,32,32.769166667,16.9 "3882","chic",68.5,64,1997-08-17,NA,11,23.045833333,14.333333333 "3883","chic",63.5,54.375,1997-08-18,NA,7.5,17.595289855,11.591666667 "3884","chic",64,60,1997-08-19,NA,27.5,16.450181159,23.108827404 "3885","chic",67,59.375,1997-08-20,NA,28.083333333,15.121376812,23.897463768 "3886","chic",63.5,52.875,1997-08-21,NA,14.5,17.598188406,19.411904762 "3887","chic",64,54.875,1997-08-22,NA,22.5,12.244927536,23.094927536 "3888","chic",65.5,57.75,1997-08-23,NA,28,17.7375,25.85 "3889","chic",70.5,62.75,1997-08-24,NA,22,28.883333333,12.05 "3890","chic",65.5,59.5,1997-08-25,NA,29.5,27.577355072,16.088768116 "3891","chic",69,68.75,1997-08-26,NA,43.666666667,18.832032279,31.504710145 "3892","chic",77,67.5,1997-08-27,NA,48,16.682318841,31.821969697 "3893","chic",68.5,58.125,1997-08-28,NA,15,18.507427536,10.882575758 "3894","chic",67,58.875,1997-08-29,NA,25.5,18.541666667,16.564751553 "3895","chic",65,68.125,1997-08-30,NA,37.5,18.304166667,19.979166667 "3896","chic",72,62.125,1997-08-31,NA,21,28.2625,11.90625 "3897","chic",70.5,65.875,1997-09-01,NA,30.333333333,27.0375,22.135416667 "3898","chic",68,51.75,1997-09-02,NA,29.5,12.196014493,18.666666667 "3899","chic",58.5,47.125,1997-09-03,NA,7.5,17.076992754,9.65 "3900","chic",59,44.875,1997-09-04,NA,26.5,15.150181159,22.179004329 "3901","chic",60.5,51,1997-09-05,NA,46.5,16.792819499,32.146212121 "3902","chic",74.5,64.75,1997-09-06,NA,40,32.204166667,23.458333333 "3903","chic",66,60.125,1997-09-07,NA,19,23.192210145,12.733333333 "3904","chic",67.5,62.875,1997-09-08,NA,23,18.775181159,15.647463768 "3905","chic",68.5,60.375,1997-09-09,NA,28,20.252536232,17.766666667 "3906","chic",64.5,55.375,1997-09-10,NA,16.5,14.611413043,17.501811594 "3907","chic",61.5,53.75,1997-09-11,NA,21.5,8.6878787879,20.991666667 "3908","chic",61.5,52.75,1997-09-12,NA,34.5,12.277355072,29.528623188 "3909","chic",63.5,58.625,1997-09-13,NA,39.583333333,19.716666667,33.641666667 "3910","chic",69,62.375,1997-09-14,NA,47.5,33.304166667,30.208333333 "3911","chic",69.5,65.375,1997-09-15,NA,73,34.18115942,29.416666667 "3912","chic",74.5,68.875,1997-09-16,NA,77,39.7175,23.39047619 "3913","chic",70,50.875,1997-09-17,NA,31,15.470471014,26.272859025 "3914","chic",69,50.375,1997-09-18,NA,96,21.563949275,29.834090909 "3915","chic",73,67.875,1997-09-19,NA,34,23.176630435,29.01884058 "3916","chic",58.5,48.5,1997-09-20,NA,7.5,16.095833333,11.3 "3917","chic",57,46.125,1997-09-21,NA,13,10.329166667,22.608333333 "3918","chic",57.5,51.875,1997-09-22,NA,31,5.8447463768,33.058333333 "3919","chic",59,46.375,1997-09-23,NA,15.5,11.225543478,20.691666667 "3920","chic",56.5,47.375,1997-09-24,NA,27.5,9.7019927536,29.191666667 "3921","chic",66,55.125,1997-09-25,NA,27.5,16.321047431,26.432608696 "3922","chic",60,51.125,1997-09-26,NA,16.5,15.477536232,16.5 "3923","chic",62.5,54.125,1997-09-27,NA,27,18.7375,26.216666667 "3924","chic",64,48,1997-09-28,NA,23.5,15.35,25.708333333 "3925","chic",65,44.125,1997-09-29,NA,82.5,17.868589744,16.160507246 "3926","chic",59.5,47,1997-09-30,NA,20,10.017572464,18.616125541 "3927","chic",52,42.5,1997-10-01,NA,17.5,15.667028986,18.30273386 "3928","chic",61,51.875,1997-10-02,NA,56.5,15.114492754,30.010416667 "3929","chic",73,60.75,1997-10-03,NA,68,30.458333333,32.414855072 "3930","chic",68,55.75,1997-10-04,NA,42.5,18.282407407,29.604166667 "3931","chic",70,54.875,1997-10-05,NA,45,28.851851852,24.208333333 "3932","chic",70.5,56.375,1997-10-06,NA,66.5,21.24537037,41.479166667 "3933","chic",73.5,58.875,1997-10-07,NA,54.416666667,19.752415459,41.027044513 "3934","chic",72.5,60.375,1997-10-08,NA,65,32.2568438,27.65625 "3935","chic",64,44.75,1997-10-09,NA,35,15.860708535,22.056612319 "3936","chic",59,47.25,1997-10-10,NA,36.5,9.1944444444,28.833333333 "3937","chic",61.5,44.25,1997-10-11,NA,25.5,18.49537037,28.041666667 "3938","chic",70,56.125,1997-10-12,NA,34.5,31.922705314,17.042572464 "3939","chic",59.5,39.375,1997-10-13,NA,20.083333333,13.226851852,14.947916667 "3940","chic",42.5,30.25,1997-10-14,NA,16.5,8.5785024155,19.760416667 "3941","chic",42.5,36.75,1997-10-15,NA,39.5,4.3582930757,35.5625 "3942","chic",47.5,38.5,1997-10-16,NA,35,8.6115136876,31.442564229 "3943","chic",45.5,39.25,1997-10-17,NA,37.5,7.2973027375,36.112058081 "3944","chic",44.5,36.375,1997-10-18,NA,40,7.4583333333,33.958333333 "3945","chic",50,45.25,1997-10-19,NA,35,14.587962963,24.722222222 "3946","chic",45.5,32.625,1997-10-20,NA,17,7.0404589372,23.943910256 "3947","chic",42.5,20.625,1997-10-21,NA,24,10.376610306,20.94067029 "3948","chic",36,23.5,1997-10-22,NA,27,12.430207876,24.982007576 "3949","chic",44.5,31.25,1997-10-23,NA,43.5,3.9094202899,28.75625 "3950","chic",46,44.375,1997-10-24,NA,31.5,1.5416666667,28.1875 "3951","chic",47,37.875,1997-10-25,NA,21.230769231,16.259259259,14.885416667 "3952","chic",40,36,1997-10-26,NA,7.5,22.939814815,8.9270833333 "3953","chic",32.5,25.571428571,1997-10-27,NA,14,12.394927536,25.4375 "3954","chic",39,36.125,1997-10-28,NA,30.5,6.0169082126,27.761363636 "3955","chic",44,36,1997-10-29,NA,44.5,3.7073268921,36.454257246 "3956","chic",51,50.25,1997-10-30,NA,44.5,12.56884058,30.244565217 "3957","chic",59.5,52.5,1997-10-31,NA,36.384615385,11.821658615,24.152173913 "3958","chic",50,36.125,1997-11-01,NA,18.5,8.2916666667,14.677083333 "3959","chic",38.5,30.125,1997-11-02,NA,8,9.2395833333,11.708333333 "3960","chic",36.5,34.125,1997-11-03,NA,17,2.34375,18.354166667 "3961","chic",39,35.25,1997-11-04,NA,20,1.3854166667,18.288496377 "3962","chic",40,40.5,1997-11-05,NA,28.5,3.3768115942,23.236413043 "3963","chic",45,39.875,1997-11-06,NA,21.153846154,6.8842592593,19.78125 "3964","chic",43,35.25,1997-11-07,NA,12.5,15.229166667,20.375 "3965","chic",44,34.125,1997-11-08,NA,17,11.270833333,25.447916667 "3966","chic",42.5,34.875,1997-11-09,NA,26,5.2708333333,23.71875 "3967","chic",36.5,22.125,1997-11-10,NA,16.5,4.9166666667,26.323369565 "3968","chic",28.5,18.25,1997-11-11,NA,24.5,3.9375,28.0625 "3969","chic",26.5,16.75,1997-11-12,NA,28.153846154,5.5217391304,27.916213768 "3970","chic",31.5,22.25,1997-11-13,NA,31,7.0416666667,29.371376812 "3971","chic",36,31.25,1997-11-14,NA,14,13.083333333,26.625 "3972","chic",29,24.375,1997-11-15,NA,15,5.2083333333,26.895833333 "3973","chic",22,14,1997-11-16,NA,12.5,12.395833333,23.020833333 "3974","chic",25.5,24,1997-11-17,NA,37,4.4791666667,30.114583333 "3975","chic",32,25.125,1997-11-18,NA,36.307692308,4.0833333333,28.942934783 "3976","chic",27.5,22.625,1997-11-19,NA,42,2.5652173913,32.453227931 "3977","chic",33.5,37.5,1997-11-20,NA,50,0.9565217391,35.520833333 "3978","chic",35.5,29.625,1997-11-21,NA,19,16.9375,21.510416667 "3979","chic",34.5,25.625,1997-11-22,NA,30,8.25,23.583333333 "3980","chic",26,20.75,1997-11-23,NA,18.5,10.145833333,19.083333333 "3981","chic",26.5,17.125,1997-11-24,NA,31.846153846,4.8541666667,34.58740942 "3982","chic",47,41.25,1997-11-25,NA,44,7.4538043478,27.922424948 "3983","chic",43,23.625,1997-11-26,NA,33,6.5625,26.734848485 "3984","chic",37.5,39,1997-11-27,NA,23,3.8125,23.916666667 "3985","chic",49,45.25,1997-11-28,NA,28,2.6458333333,20 "3986","chic",45.5,47.125,1997-11-29,NA,41,3.1875,16.71875 "3987","chic",42,31.875,1997-11-30,NA,16.230769231,13,11.895833333 "3988","chic",37,31.125,1997-12-01,NA,6,19.375,16.762310606 "3989","chic",36.5,30,1997-12-02,NA,25,7.0235507246,24.913949275 "3990","chic",36.5,32.75,1997-12-03,NA,29.5,1.4375,23.418560606 "3991","chic",32,21.375,1997-12-04,NA,15.5,4.8125,20.728713768 "3992","chic",26,17.375,1997-12-05,NA,22,4.2083333333,17.71875 "3993","chic",28.5,25.75,1997-12-06,NA,19.538461538,6.7916666667,18.333333333 "3994","chic",30,27,1997-12-07,NA,17.5,6.9375,17.739583333 "3995","chic",28.5,26.875,1997-12-08,NA,25.5,4.3333333333,21.175724638 "3996","chic",33,30.625,1997-12-09,NA,41.5,1.6458333333,24.446022727 "3997","chic",34.5,31,1997-12-10,NA,10,11.1875,24.108242754 "3998","chic",33.5,25,1997-12-11,NA,13.5,15.22826087,28.591938406 "3999","chic",27.5,21.25,1997-12-12,NA,25.076923077,7.7989130435,25.270833333 "4000","chic",26.5,22.25,1997-12-13,NA,28.5,4.8333333333,24.958333333 "4001","chic",31,25.875,1997-12-14,NA,35.5,3.1458333333,33.71875 "4002","chic",37.5,30.875,1997-12-15,NA,40.5,2.5416666667,30.419507576 "4003","chic",39,30,1997-12-16,NA,42,2.5625,32.15625 "4004","chic",37,26.5,1997-12-17,NA,40.5,5.2916666667,43.367753623 "4005","chic",38.5,32.75,1997-12-18,NA,44.416666667,1.6956521739,31.25 "4006","chic",40.5,33.125,1997-12-19,NA,53,1.6875,37.506628788 "4007","chic",33,23.875,1997-12-20,NA,15.5,6.3958333333,23.53125 "4008","chic",32.5,25,1997-12-21,NA,16.5,15.520833333,19.479166667 "4009","chic",34.5,33,1997-12-22,NA,19.5,5.625,22.979166667 "4010","chic",34,27.625,1997-12-23,NA,36.5,1.9673913043,24.770833333 "4011","chic",34,31.5,1997-12-24,NA,31.846153846,5.6458333333,21.760416667 "4012","chic",30.5,24.5,1997-12-25,NA,18,5.5,19.052083333 "4013","chic",28.5,23.75,1997-12-26,NA,26.5,3.5416666667,19.421195652 "4014","chic",23,13.75,1997-12-27,NA,19.5,3.6875,31.010416667 "4015","chic",25.5,28.75,1997-12-28,NA,23.5,3.5833333333,22.697916667 "4016","chic",29.5,23.625,1997-12-29,NA,22.5,2.0878623188,26.145833333 "4017","chic",21.5,17.25,1997-12-30,NA,23.076923077,4.1992753623,30.788043478 "4018","chic",18,5.25,1997-12-31,NA,24.5,8.6041666667,29.318387681 "4019","chic",28,22.5,1998-01-01,NA,23,12.819444444,17.883333333 "4020","chic",44,35.9,1998-01-02,NA,28,8.4305555556,21.425 "4021","chic",47,46.9,1998-01-03,NA,23.5,10.319444444,16.025 "4022","chic",45,40,1998-01-04,NA,12,7.1111111111,13.883333333 "4023","chic",48,46.7,1998-01-05,11.5,20.615384615,2.8000109794,20.916073781 "4024","chic",43,41.1,1998-01-06,NA,30,5.3888888889,19.95530303 "4025","chic",38,34.2,1998-01-07,NA,6,14.138888889,11.422826087 "4026","chic",34,30.8,1998-01-08,NA,4.5,15.964371981,14.633333333 "4027","chic",25,25.3,1998-01-09,NA,20,10.277777778,20.28442029 "4028","chic",12,2.8,1998-01-10,NA,23.5,11.125,16.458333333 "4029","chic",18,7.1,1998-01-11,10.2,30.75,5.7083333333,28.475 "4030","chic",23,20.6,1998-01-12,NA,27,2.1944444444,24.908333333 "4031","chic",7,-6,1998-01-13,NA,41.5,6.2107487923,33.917424242 "4032","chic",17,15.4,1998-01-14,NA,46.5,9.0694444444,28.951515152 "4033","chic",28,23.1,1998-01-15,NA,30,3.4861111111,30.745454545 "4034","chic",28,23.6,1998-01-16,NA,19.5,8.4190821256,23.685507246 "4035","chic",23,21.9,1998-01-17,38.1,32.461538462,3.1805555556,25.3 "4036","chic",16,13.5,1998-01-18,NA,41.5,3.6388888889,31.216666667 "4037","chic",24,19.1,1998-01-19,NA,44.5,1.6805555556,35.15 "4038","chic",26,21.3,1998-01-20,NA,51.5,3.5307971014,35.375 "4039","chic",31,26.8,1998-01-21,NA,42,5.125,24.725 "4040","chic",32,29.9,1998-01-22,NA,39,1.7946859903,26.485507246 "4041","chic",28,25.8,1998-01-23,33.95,38.692307692,1.75,29.376298701 "4042","chic",28,24.2,1998-01-24,NA,44.5,2.2222222222,35.166666667 "4043","chic",28,22.9,1998-01-25,NA,24,8.5555555556,23.816666667 "4044","chic",31,28.6,1998-01-26,NA,38,1.6666666667,31.525 "4045","chic",33,30.4,1998-01-27,NA,34,1.4734299517,36.417391304 "4046","chic",36,32.5,1998-01-28,NA,34,1.2234299517,33.193115942 "4047","chic",37,30.6,1998-01-29,21.4,30.166666667,3.0972222222,30.316666667 "4048","chic",31,25.6,1998-01-30,NA,21,4.6527777778,31.122474747 "4049","chic",35,29.1,1998-01-31,NA,31.5,4.5,27.427272727 "4050","chic",39,31,1998-02-01,NA,23.5,6.2361111111,23.866666667 "4051","chic",33,26.6,1998-02-02,NA,19.5,8.7638888889,23.975 "4052","chic",34,28.9,1998-02-03,NA,21.5,12.652777778,25.237582345 "4053","chic",32,25.6,1998-02-04,13.9,12.769230769,24.73852657,14.08442029 "4054","chic",32,27.4,1998-02-05,NA,8,27.642512077,14.639624506 "4055","chic",36,29.4,1998-02-06,NA,14.5,22.7397343,23.5 "4056","chic",34,28.7,1998-02-07,NA,25,18.111111111,20.691666667 "4057","chic",33,28.3,1998-02-08,NA,24.5,23.472222222,20.883333333 "4058","chic",35,28.8,1998-02-09,NA,69,4.5416666667,45.39469697 "4059","chic",39,33.9,1998-02-10,29.5,62.846153846,4.9776570048,36.241633729 "4060","chic",41,38.6,1998-02-11,NA,34,4.2916666667,29.301086957 "4061","chic",35,28.3,1998-02-12,NA,16,12.180555556,24.283333333 "4062","chic",36,31.4,1998-02-13,NA,30,5.7805555556,26.091666667 "4063","chic",38,31,1998-02-14,NA,29,3.9583333333,26.633333333 "4064","chic",43,32,1998-02-15,NA,26,7.5833333333,25.833333333 "4065","chic",42,35.3,1998-02-16,22.55,33.692307692,11.430555556,22.216666667 "4066","chic",41,38.8,1998-02-17,NA,16,11.291666667,19.681818182 "4067","chic",39,35.3,1998-02-18,NA,8,14.436868687,22.920869565 "4068","chic",40,35,1998-02-19,NA,20.5,5.5214646465,27.844400527 "4069","chic",39,33.5,1998-02-20,NA,19.5,8.3768939394,27.870238095 "4070","chic",38,30.1,1998-02-21,NA,25.5,12.583333333,28.9 "4071","chic",44,35,1998-02-22,27.75,39.076923077,11.833333333,23.3 "4072","chic",41,29.7,1998-02-23,NA,29,18.958333333,32.00256917 "4073","chic",45,36.7,1998-02-24,NA,36.5,7.895531401,30.449242424 "4074","chic",42,34.6,1998-02-25,NA,34.5,17.827898551,25.332608696 "4075","chic",54,36.7,1998-02-26,NA,31,14.402777778,27.867259552 "4076","chic",42,37.7,1998-02-27,NA,24.5,14.823067633,26.025 "4077","chic",41,33.2,1998-02-28,16.5,21.230769231,12.680555556,28.108333333 "4078","chic",35,28.5,1998-03-01,NA,11,11,20.116666667 "4079","chic",33,31.5,1998-03-02,NA,20,4.1666666667,29.023550725 "4080","chic",34,30.4,1998-03-03,NA,9,17.611111111,24.781818182 "4081","chic",34,24.1,1998-03-04,NA,12,21.408816425,23.24254386 "4082","chic",36,24.1,1998-03-05,NA,10.5,19.610507246,21.800724638 "4083","chic",34,27.9,1998-03-06,19.6,31.923076923,9.0946969697,29.224670619 "4084","chic",36,28.1,1998-03-07,NA,24.5,22.569444444,20.491666667 "4085","chic",38,34.2,1998-03-08,NA,15,21.763888889,12.983333333 "4086","chic",26,20.7,1998-03-09,NA,23,30.029239766,12.347222222 "4087","chic",18,4.9,1998-03-10,NA,17,20.430555556,24.927083333 "4088","chic",18,2.3,1998-03-11,NA,20,16.138888889,29.894927536 "4089","chic",18,6.7,1998-03-12,18.9,36.909090909,15.024456522,32.538913043 "4090","chic",29,20.7,1998-03-13,NA,38,17.282155797,29.351449275 "4091","chic",28,14,1998-03-14,NA,18,28.263888889,22.383333333 "4092","chic",27,20.9,1998-03-15,NA,15.5,29.180555556,24.019202899 "4093","chic",30,22.6,1998-03-16,NA,26,30.203502415,20.558333333 "4094","chic",36,31.7,1998-03-17,NA,37.5,16.305555556,26.328869048 "4095","chic",45,41.9,1998-03-18,26.4,35.166666667,4.8907004831,31.310547786 "4096","chic",37,34.2,1998-03-19,NA,9,21.25,22.075 "4097","chic",35,27.1,1998-03-20,NA,8,39.05,13.227536232 "4098","chic",37,24.7,1998-03-21,NA,6.5,37.9,14.741666667 "4099","chic",36,22.6,1998-03-22,NA,12.5,26.85,27.058333333 "4100","chic",38,21.6,1998-03-23,NA,33.5,18.183333333,38.5 "4101","chic",40,23.3,1998-03-24,15.95,31.461538462,17.600131752,36.113768116 "4102","chic",51,38.6,1998-03-25,NA,30.5,21.832971014,28.981916996 "4103","chic",68,53.9,1998-03-26,NA,68.5,35.464855072,17.051515152 "4104","chic",67,52.3,1998-03-27,NA,68.5,34.344444444,18.140469917 "4105","chic",57,50.9,1998-03-28,NA,15.5,31.229166667,15.270833333 "4106","chic",62,54.3,1998-03-29,NA,33,22.864583333,16.739583333 "4107","chic",73,59.4,1998-03-30,15.6,30.083333333,27.25,14.665755735 "4108","chic",59,51.7,1998-03-31,NA,21.5,24.675724638,20.316102014 "4109","chic",44,36.6,1998-04-01,NA,12.5,20.963768116,19.379347826 "4110","chic",44,37.1,1998-04-02,9.1,14.5,14.873757336,21.367424242 "4111","chic",41,35,1998-04-03,7,10.5,20.604578393,16.88442029 "4112","chic",41,28.1,1998-04-04,2.1,6.5,29.439393939,13.2 "4113","chic",41,23.7,1998-04-05,6.4,16,21.356060606,23.016666667 "4114","chic",48,32.6,1998-04-06,14.9,33.5,20.916666667,29.233333333 "4115","chic",52,39.4,1998-04-07,27.6,43,20.343316104,25.181884058 "4116","chic",48,46.3,1998-04-08,22.7,20.5,9.6612318841,26.203985507 "4117","chic",43,32.8,1998-04-09,14.3,13.5,26.044120553,16.783498024 "4118","chic",46,27,1998-04-10,11.9,15.5,25.795833333,24.991666667 "4119","chic",50,34.9,1998-04-11,16.95,31,22.433333333,32.575 "4120","chic",64,38.5,1998-04-12,NA,34,44.883333333,13.575 "4121","chic",62,46.7,1998-04-13,NA,40,33.825,20.466666667 "4122","chic",58,48.1,1998-04-14,NA,24.5,23.518939394,23.731666667 "4123","chic",53,46.6,1998-04-15,23.6,36,15.570697089,26.233366271 "4124","chic",42,40,1998-04-16,8.5,13,11.790843215,20.012241985 "4125","chic",45,30.2,1998-04-17,11.55,20.153846154,18.49571805,30.188103865 "4126","chic",50,32.1,1998-04-18,16.1,36,22.598484848,29.694444444 "4127","chic",52,33,1998-04-19,20,26,29.303030303,29.840277778 "4128","chic",52,40.8,1998-04-20,NA,41,24.311100132,34.604166667 "4129","chic",50,46.2,1998-04-21,NA,23.5,30.602898551,20.20770202 "4130","chic",53,37.1,1998-04-22,NA,21.5,31.315082645,25.52483165 "4131","chic",56,35.6,1998-04-23,18.5,44.692307692,18.311544796,47.81557971 "4132","chic",62,36.5,1998-04-24,16.8,44,26.775362319,30.439492754 "4133","chic",56,46.8,1998-04-25,23.2,35,30.704545455,22.025 "4134","chic",48,43.3,1998-04-26,18.4,24,28.34469697,12.675 "4135","chic",45,27.5,1998-04-27,8.5,10.5,31.361495389,12.025 "4136","chic",46,33.8,1998-04-28,18.2,24.5,22.685606061,21.833333333 "4137","chic",54,48.4,1998-04-29,29.45,51,14.460863576,23.542028986 "4138","chic",55,51.3,1998-04-30,39.4,34,10.786231884,25.313095238 "4139","chic",59,53.7,1998-05-01,35.4,28.5,14.295125165,31.429045894 "4140","chic",57,52,1998-05-02,33.3,35,20.662878788,26.798611111 "4141","chic",53,50.3,1998-05-03,19.3,18.5,22.882575758,15.784722222 "4142","chic",60,47,1998-05-04,18.9,28,21.817358366,27.152777778 "4143","chic",62,54.1,1998-05-05,28,43,21.319080129,35.479166667 "4144","chic",68,56.8,1998-05-06,23.9,35,25.022727273,33.032004831 "4145","chic",57,56,1998-05-07,32.1,34.5,24.270421607,33.991666667 "4146","chic",62,51.3,1998-05-08,16.9,21,36.540560888,17.867210145 "4147","chic",58,43.5,1998-05-09,7.9,13.5,26.678030303,14.59375 "4148","chic",58,40.1,1998-05-10,6.6,11,29.117424242,14.8125 "4149","chic",61,48.1,1998-05-11,11.75,28.666666667,23.074380165,22.232575758 "4150","chic",63,55.1,1998-05-12,23.5,46,35.247349982,22.975 "4151","chic",68,52.5,1998-05-13,15.6,35,31.668297101,28.940010352 "4152","chic",68,55.4,1998-05-14,26.2,48,35.276646904,38.431818182 "4153","chic",75,65.8,1998-05-15,56.5,91,38.573007246,29.032608696 "4154","chic",72,50.9,1998-05-16,7.3,37.5,36.254166667,15.583333333 "4155","chic",68,49.2,1998-05-17,10.6,34,28.754166667,31.841666667 "4156","chic",76,49.4,1998-05-18,13.2,79,38.111050725,31.274637681 "4157","chic",79,61,1998-05-19,25.9,78,37.38003663,44.208333333 "4158","chic",65,52.8,1998-05-20,12.2,37.5,21.954528986,34.276119895 "4159","chic",64,46.9,1998-05-21,5.7,26,26.747578936,21.832756917 "4160","chic",57,47.9,1998-05-22,9,28,22.734848485,17.388888889 "4161","chic",61,45.5,1998-05-23,10.1,31.923076923,34,14.541666667 "4162","chic",61,54.3,1998-05-24,19.4,27,33.253787879,16.263888889 "4163","chic",62,48.3,1998-05-25,11.6,17.5,37.946969697,17.3125 "4164","chic",63,45.7,1998-05-26,27.7,40.5,26.911725955,38.246980676 "4165","chic",67,52.8,1998-05-27,29.5,59.5,37.261198946,39.269570707 "4166","chic",75,64.3,1998-05-28,25.6,72,34.332227555,30.119565217 "4167","chic",74,62.3,1998-05-29,12.3,29.846153846,29,32.944444444 "4168","chic",73,62.7,1998-05-30,18.9,49.5,33.473484848,27.680555556 "4169","chic",70,60.2,1998-05-31,10.4,29.5,40.265151515,11.631944444 "4170","chic",63,45.7,1998-06-01,10,29.5,28.191534914,21.736111111 "4171","chic",63,50.7,1998-06-02,7.8,38.5,26.732932088,22.011904762 "4172","chic",55,45.7,1998-06-03,7.1,22,14.867753623,24.515645586 "4173","chic",56,37.7,1998-06-04,6.85,26.5,23.338768116,24.673611111 "4174","chic",50,41.6,1998-06-05,9.4,9.5,21.355895916,14.263888889 "4175","chic",54,38.9,1998-06-06,11.8,20.5,9.125,28.770833333 "4176","chic",58,41.1,1998-06-07,8.4,15,23.893939394,20.020833333 "4177","chic",56,46,1998-06-08,19,33.5,18.475955204,31 "4178","chic",61,59,1998-06-09,33.8,26,17.890810277,25.496678744 "4179","chic",68,58,1998-06-10,27.15,37,23.241600791,25.755901405 "4180","chic",68,65.8,1998-06-11,23.1,31.5,18.768774704,27.445350242 "4181","chic",74,61.5,1998-06-12,11.7,27,33.762396694,19.742451691 "4182","chic",69,58.2,1998-06-13,15.5,18.5,33.564393939,23.368055556 "4183","chic",67,57.5,1998-06-14,20,26.5,29.090909091,27.340277778 "4184","chic",70,58.7,1998-06-15,19.4,23,29.634297521,21.555555556 "4185","chic",70,61.2,1998-06-16,14.1,39.5,16.033267457,31.314484127 "4186","chic",73,63.7,1998-06-17,20.3,37,22.492259552,31.13647343 "4187","chic",77,69.3,1998-06-18,22,52.5,37.262730353,25.679292929 "4188","chic",73,61.2,1998-06-19,9.7,28,32.883893281,23.270833333 "4189","chic",78,68,1998-06-20,16.7,33,33.882575758,26.173611111 "4190","chic",79,66,1998-06-21,13.7,21.5,34.46969697,22.118055556 "4191","chic",74,61.9,1998-06-22,12.55,31.083333333,28.768939394,24.361111111 "4192","chic",74,60.6,1998-06-23,15.7,38.5,41.721343874,29.348484848 "4193","chic",83,70.2,1998-06-24,25.4,59,37.882650617,28.765206412 "4194","chic",83,70.8,1998-06-25,21.3,58.5,45.459980237,19.775664251 "4195","chic",79,68.4,1998-06-26,15.6,34,39.07176764,24.546497585 "4196","chic",82,70.3,1998-06-27,21.4,43,49.655525847,21.152777778 "4197","chic",78,69,1998-06-28,11.45,22.181818182,40.823174931,18.326388889 "4198","chic",77,68.2,1998-06-29,14.6,31,22.815687935,30.934480676 "4199","chic",74,60.5,1998-06-30,9.1,19.5,28.320322793,18.763285024 "4200","chic",70,56.7,1998-07-01,22.1,27.5,25.444664032,20.173611111 "4201","chic",73,57.8,1998-07-02,25.7,53.5,28.428030303,31.566468254 "4202","chic",79,65.4,1998-07-03,21.6,43.5,35.143939394,24.930555556 "4203","chic",69,62.4,1998-07-04,15.25,23.923076923,26.560606061,12.430555556 "4204","chic",70,56.3,1998-07-05,8.2,19,26.931818182,11.715277778 "4205","chic",78,69,1998-07-06,24.4,36.5,31.587944664,24.555555556 "4206","chic",72,66.7,1998-07-07,18.8,31.5,35.76284585,16.185515873 "4207","chic",74,64.9,1998-07-08,14.7,19.5,36.114295125,16.03321256 "4208","chic",75,64.2,1998-07-09,25.4,33,33.604383759,26.451449275 "4209","chic",73,62.4,1998-07-10,20.6,30.916666667,31.491735537,19.546023119 "4210","chic",71,55.9,1998-07-11,13.5,23,39.791666667,18.666666667 "4211","chic",71,55.6,1998-07-12,19.8,26,39.689393939,25.736111111 "4212","chic",73,60.3,1998-07-13,30.3,64.5,37.018864535,37.930555556 "4213","chic",78,67.1,1998-07-14,41.4,75,40.080901728,32.590536577 "4214","chic",79,66.1,1998-07-15,32.6,57.5,40.230701282,24.525966184 "4215","chic",80,57.9,1998-07-16,NA,32.583333333,24.805072464,23.044219368 "4216","chic",75,64.7,1998-07-17,NA,39.5,29.161796537,17.798611111 "4217","chic",77,65.5,1998-07-18,NA,52.5,32.875,31.395833333 "4218","chic",81,71.8,1998-07-19,NA,32,36.170454545,17.125 "4219","chic",79,68.1,1998-07-20,NA,36.5,29.234848485,26.868055556 "4220","chic",85,72.9,1998-07-21,NA,60.5,36.890491875,22.136363636 "4221","chic",76,67.6,1998-07-22,9.8,23.833333333,20.594322673,27.948342117 "4222","chic",73,56.6,1998-07-23,13.7,35,22.104249012,21.655220685 "4223","chic",72,51.1,1998-07-24,8.5,25.5,22.70685112,23.41968599 "4224","chic",70,55.4,1998-07-25,11.3,28.5,25.386363636,25.284722222 "4225","chic",70,56.8,1998-07-26,11.6,23,28.598484848,21.666666667 "4226","chic",74,65.1,1998-07-27,25.2,44,30.003787879,22.116792929 "4227","chic",79,64.9,1998-07-28,11.35,44.153846154,26.954216074,20.075757576 "4228","chic",77,55.2,1998-07-29,16,20,34.114295125,15.242236025 "4229","chic",72,57.5,1998-07-30,16.8,29,21.855566535,23.26660628 "4230","chic",71,54.7,1998-07-31,13.9,12,26.34914361,10.124615722 "4231","chic",72,57.3,1998-08-01,11.8,30,32.784090909,20.319444444 "4232","chic",72,55.9,1998-08-02,11.6,29,40.553030303,23.930555556 "4233","chic",78,64.8,1998-08-03,36.4,61.538461538,34.802206851,24.715277778 "4234","chic",70,68.6,1998-08-04,16,25.5,21.275556953,26.948863636 "4235","chic",76,70.7,1998-08-05,NA,27,24.072628458,20.229166667 "4236","chic",78,71.3,1998-08-06,NA,36,22.883818421,20.115173474 "4237","chic",75,70.8,1998-08-07,NA,30,12.684486166,25.680555556 "4238","chic",77,70.7,1998-08-08,NA,30,20.8125,19.076388889 "4239","chic",77,70.1,1998-08-09,32.5,35.615384615,22.766666667,23.569444444 "4240","chic",76,68.5,1998-08-10,NA,33,29.897077179,22.177631579 "4241","chic",71,63.4,1998-08-11,NA,35,25.193181818,15.688982213 "4242","chic",70,60.9,1998-08-12,20.7,29,30.586282788,15.432229908 "4243","chic",71,60.2,1998-08-13,22.9,41.5,32.950323392,27.897727273 "4244","chic",71,64.4,1998-08-14,28.4,60,28.310950413,42.229166667 "4245","chic",71,64.3,1998-08-15,13.95,28.461538462,22.992424242,20.743055556 "4246","chic",72,62.9,1998-08-16,16.4,24.5,29.037878788,17.743055556 "4247","chic",75,69,1998-08-17,29,53.5,25.578839639,31.534722222 "4248","chic",68,63.9,1998-08-18,8.8,16.5,23.267786561,16.22054787 "4249","chic",69,55.1,1998-08-19,16,34,22.775338792,20.965277778 "4250","chic",73,65.4,1998-08-20,24.4,51.5,27.133893281,32.763449715 "4251","chic",80,70.8,1998-08-21,29.3,48.272727273,33.168174884,24.826388889 "4252","chic",78,69.5,1998-08-22,21.3,40,34.10745614,18.104166667 "4253","chic",81,71.2,1998-08-23,39.6,59,45.863636364,14.326388889 "4254","chic",76,71.4,1998-08-24,23.4,54,20.87774484,27.116243961 "4255","chic",76,63.9,1998-08-25,13.2,26.5,26.916042577,23.625 "4256","chic",73,60.9,1998-08-26,14.8,34,26.782444005,26.089838603 "4257","chic",72,64.5,1998-08-27,18.95,32.416666667,28.263429752,27.307092666 "4258","chic",69,66.4,1998-08-28,21.5,35.5,14.712121212,33.146825397 "4259","chic",76,63.1,1998-08-29,11.3,29,22.037878788,23.75 "4260","chic",70,55.7,1998-08-30,7.2,20,23.488636364,18.805555556 "4261","chic",69,54.6,1998-08-31,8.6,28,20.158342316,24.586489899 "4262","chic",69,58.5,1998-09-01,14.3,45,19.47697329,31.972132035 "4263","chic",65,50.1,1998-09-02,24.15,44.692307692,22.676383399,28.077020202 "4264","chic",68,57.9,1998-09-03,19.3,42,25.617424242,31.740985162 "4265","chic",69,54.2,1998-09-04,14.7,25.5,36.789855072,20.093253968 "4266","chic",70,61.4,1998-09-05,27.3,45,33.066666667,37.041666667 "4267","chic",81,70.4,1998-09-06,31.5,50.5,50.6625,20.3125 "4268","chic",66,57.1,1998-09-07,10.3,21.5,30.375,14.486111111 "4269","chic",63,46.9,1998-09-08,5.15,14.692307692,18.028236915,16.906181379 "4270","chic",63,50.3,1998-09-09,7.4,17.5,16.171277997,20.707427536 "4271","chic",63,52.8,1998-09-10,14.8,39.5,17.325128758,35.664772727 "4272","chic",71,53.1,1998-09-11,21.7,48,30.593768715,44.892512077 "4273","chic",74,56.7,1998-09-12,24.5,57,37.393939394,44.451388889 "4274","chic",74,62.7,1998-09-13,28.1,58.5,37.075757576,37.763888889 "4275","chic",72,67.5,1998-09-14,26.45,48,24.151185771,27.875 "4276","chic",70,67,1998-09-15,11.2,18,16.509716733,14.758080808 "4277","chic",72,64.9,1998-09-16,12.9,17.5,25.589247215,12.284456406 "4278","chic",68,58.4,1998-09-17,15.3,21.5,28.644268775,17.197368421 "4279","chic",68,57.8,1998-09-18,20.9,46,28.234683794,27.550422705 "4280","chic",72,60.9,1998-09-19,33.7,58.5,37.625,35.722222222 "4281","chic",76,66.3,1998-09-20,30.3,47.583333333,22.022727273,27.798611111 "4282","chic",63,51.8,1998-09-21,5.5,13.5,14.639328063,14.585748792 "4283","chic",58,47.7,1998-09-22,4.6,10,19.676948052,13.3125 "4284","chic",56,41.5,1998-09-23,9.9,27,11.922760211,28.824879227 "4285","chic",59,53.6,1998-09-24,21.3,37,8.4253952569,33.302371542 "4286","chic",66,64.1,1998-09-25,31.6,57.5,12.304347826,34.633454106 "4287","chic",79,65.8,1998-09-26,29.65,53.230769231,39.59469697,18.534722222 "4288","chic",73,63.8,1998-09-27,19.2,34.5,32.768939394,13.694444444 "4289","chic",63,52.5,1998-09-28,9.4,28.5,19.385944424,22.355072464 "4290","chic",63,57,1998-09-29,21.3,44.5,7.9321176189,40.13134058 "4291","chic",64,57.9,1998-09-30,17.7,35.5,15.720280872,28.16746267 "4292","chic",53,35.7,1998-10-01,5.1,14.5,11.807476943,20.658695652 "4293","chic",49,41.9,1998-10-02,7.55,23.384615385,12.828422566,24.241666667 "4294","chic",55,49.3,1998-10-03,7.1,12.5,21.757575758,11.25 "4295","chic",60,50.3,1998-10-04,8.4,15,21.96969697,9.675 "4296","chic",65,61.4,1998-10-05,32.5,37,12.383399209,19.4 "4297","chic",65,61.2,1998-10-06,9.3,15.5,10.654940711,18.813768116 "4298","chic",56,49.2,1998-10-07,7.3,17,4.7053194993,17.891666667 "4299","chic",54,44.8,1998-10-08,5.15,11.307692308,12.696195652,18.25 "4300","chic",53,45.6,1998-10-09,16.3,29,6.7065217391,29.275 "4301","chic",53,46.4,1998-10-10,26.4,45.5,9.9666666667,31.4 "4302","chic",56,49.1,1998-10-11,30.9,34.5,22.191666667,28.341666667 "4303","chic",60,46.9,1998-10-12,18.1,39.5,10.9625,33.741666667 "4304","chic",49,36.8,1998-10-13,6.9,24,7.0092226614,21.716666667 "4305","chic",48,40.4,1998-10-14,6.45,25.153846154,6.1551383399,21.386001318 "4306","chic",58,48.4,1998-10-15,14.8,26.5,7.3969202899,27.109632035 "4307","chic",68,57.2,1998-10-16,24.9,45.5,25.153442029,27.55 "4308","chic",67,64.4,1998-10-17,32.2,46.5,24.370833333,21.25 "4309","chic",57,48.1,1998-10-18,6.3,14,16.2875,9.575 "4310","chic",52,39.2,1998-10-19,9,25,7.9376811594,23.441666667 "4311","chic",50,33.9,1998-10-20,6.45,19.916666667,9.8799571805,27.524242424 "4312","chic",48,34.5,1998-10-21,NA,15.5,10.431142951,22.914393939 "4313","chic",45,31.1,1998-10-22,NA,23.5,7.3923418972,29.216666667 "4314","chic",52,36.3,1998-10-23,NA,44,7.6685606061,32.061923584 "4315","chic",54,38.9,1998-10-24,18.2,45.5,11.220833333,31.5 "4316","chic",55,44.8,1998-10-25,23.8,35.5,7.6708333333,34.875 "4317","chic",62,49.7,1998-10-26,28.6,55.307692308,10.783546462,46.733333333 "4318","chic",63,58.6,1998-10-27,36.1,64.5,5.209057971,39.391666667 "4319","chic",54,52.3,1998-10-28,11.7,16.5,12.293939394,20.037878788 "4320","chic",52,51.9,1998-10-29,29,33,5.1025032938,25.136904762 "4321","chic",61,58.4,1998-10-30,41,45,1.4791666667,23.025 "4322","chic",57,52.7,1998-10-31,11.5,15.5,4.725,13.133333333 "4323","chic",54,50,1998-11-01,5.55,8.8333333333,19.641666667,8.8 "4324","chic",49,39.8,1998-11-02,5.5,8,22.3,10.776515152 "4325","chic",41,33.4,1998-11-03,3.7,7.5,28.775,10.975 "4326","chic",37,32.8,1998-11-04,10.2,11,19.65942029,25.927042161 "4327","chic",39,27.4,1998-11-05,10.8,20,5.5243589744,30.467929293 "4328","chic",38,25.8,1998-11-06,13.5,23,6.9876893939,30.271821476 "4329","chic",35,26.1,1998-11-07,21.25,38.384615385,5.7916666667,31.635416667 "4330","chic",37,31.8,1998-11-08,33.7,34,5.84375,30.40625 "4331","chic",43,37.3,1998-11-09,36.5,45,6.1385869565,28.19067029 "4332","chic",52,41.2,1998-11-10,9.8,31,14.708333333,12.616666667 "4333","chic",41,28.5,1998-11-11,11.3,25,14.208333333,18.9 "4334","chic",40,31.1,1998-11-12,19.4,28,1.8055555556,33.196969697 "4335","chic",43,34.6,1998-11-13,20.5,31.090909091,8.5618686869,31.847727273 "4336","chic",50,40.2,1998-11-14,16.6,27,6.8194444444,23.816666667 "4337","chic",43,32.2,1998-11-15,15.1,16,14.25,16.758333333 "4338","chic",48,39.1,1998-11-16,23.5,31.5,3.5416666667,22.25 "4339","chic",42,34.6,1998-11-17,18.9,27,4.1388888889,25.575 "4340","chic",48,38.7,1998-11-18,24.1,35.5,3.9772727273,25.622727273 "4341","chic",45,31.1,1998-11-19,12.95,25.846153846,5.3508454106,14.993206522 "4342","chic",31,24.4,1998-11-20,14.8,17,5.3571428571,22.036904762 "4343","chic",34,24.4,1998-11-21,16.5,28,5.5,27.041666667 "4344","chic",49,34.9,1998-11-22,11.7,40.5,12.597222222,20.558333333 "4345","chic",50,35.4,1998-11-23,10.9,34,9.3472222222,25.561956522 "4346","chic",46,30.1,1998-11-24,17.6,34.5,3.375,37.326515152 "4347","chic",50,35.8,1998-11-25,14.7,33.307692308,1.1997929607,30.541356108 "4348","chic",50,32.3,1998-11-26,NA,20,6.875,21.583333333 "4349","chic",48,35.7,1998-11-27,NA,50.5,2.5,35.983333333 "4350","chic",54,48.6,1998-11-28,28,39,8.3055555556,28.941666667 "4351","chic",63,58.4,1998-11-29,31.7,43.5,10.347222222,15.516666667 "4352","chic",52,50.7,1998-11-30,25.1,31,9.5138888889,17.766666667 "4353","chic",45,37.7,1998-12-01,17.85,22.846153846,3.6376811594,25.025 "4354","chic",55,45.8,1998-12-02,14.8,29,5.8472222222,25.816831357 "4355","chic",61,54.9,1998-12-03,22.9,37,6.0740557751,24.474011858 "4356","chic",61,59.3,1998-12-04,31.6,42.5,0.5555555556,24.391666667 "4357","chic",59,56.6,1998-12-05,23.9,30,4.8055555556,21.25 "4358","chic",50,49.2,1998-12-06,15.6,17,4.8194444444,14.108333333 "4359","chic",39,31.6,1998-12-07,11.8,9.1666666667,15.527777778,19.145238095 "4360","chic",38,29,1998-12-08,24.9,25,2.9444444444,33.539492754 "4361","chic",39,29.5,1998-12-09,20.7,27.5,3.0896464646,31.04047619 "4362","chic",35,29,1998-12-10,23,22.5,1.8925120773,30.091666667 "4363","chic",39,26.1,1998-12-11,15,28.5,2.9402173913,32.025 "4364","chic",38,26.1,1998-12-12,18,27,3.7222222222,34.158333333 "4365","chic",38,31.2,1998-12-13,19.5,24.615384615,9.1666666667,28.316666667 "4366","chic",36,32.1,1998-12-14,22.9,40.5,4.6183574879,40.964888011 "4367","chic",44,31.2,1998-12-15,NA,31.5,3.2032828283,28.123715415 "4368","chic",37,27.2,1998-12-16,NA,18,2.5833333333,32.437878788 "4369","chic",32,22.3,1998-12-17,14.2,19.5,5.431763285,29.566666667 "4370","chic",43,30.1,1998-12-18,14.3,40,5.25,24.247727273 "4371","chic",35,26.3,1998-12-19,17.75,21.666666667,6.0416666667,18.658333333 "4372","chic",31,27.6,1998-12-20,19.2,16.5,2.8055555556,24.725 "4373","chic",23,18.8,1998-12-21,22.6,22.5,3.6919191919,24.796969697 "4374","chic",10,-1.9,1998-12-22,14.8,24,11.898550725,23.791304348 "4375","chic",17,5.7,1998-12-23,15.8,25,5.8810386473,27.947727273 "4376","chic",19,4.8,1998-12-24,11,24,7.3333333333,28.1 "4377","chic",25,11.1,1998-12-25,11.8,17.583333333,11.888888889,19.575 "4378","chic",26,12.3,1998-12-26,NA,31,9.2083333333,22.608333333 "4379","chic",36,24,1998-12-27,NA,29.5,6.875,21.758333333 "4380","chic",29,23.3,1998-12-28,NA,33,2.3774154589,32.618642951 "4381","chic",22,18.4,1998-12-29,NA,28,9.5694444444,21.708333333 "4382","chic",7,-1.6,1998-12-30,NA,28,6.0138888889,32.430105402 "4383","chic",13,5.1,1998-12-31,20.4,23.9,6.3888888889,28.169762846 "4384","chic",14,7.7,1999-01-01,NA,21.5,15.611111111,21.491666667 "4385","chic",22,21,1999-01-02,NA,NA,25.763888889,12.641666667 "4386","chic",16,8.4,1999-01-03,NA,29.5,19.388888889,19.041666667 "4387","chic",-2,-6.9,1999-01-04,NA,16.5,8.5972222222,28.45 "4388","chic",1,-6.1,1999-01-05,NA,28,4.8194444444,35.125 "4389","chic",12,9.8,1999-01-06,22.333333333,22,5.5169082126,32.853623188 "4390","chic",1,-6.7,1999-01-07,NA,38,3.6527777778,45.908333333 "4391","chic",16,10.9,1999-01-08,14.1,23,12.736111111,36.250757576 "4392","chic",4,-1.1,1999-01-09,NA,23,9.1805555556,32.183333333 "4393","chic",6,-0.4,1999-01-10,NA,22.5,15.652777778,23.375 "4394","chic",5,0,1999-01-11,NA,29,6.7222222222,40.966666667 "4395","chic",20,14.1,1999-01-12,NA,31.142857143,6.6165458937,34.914855072 "4396","chic",20,15.4,1999-01-13,NA,6,28.222222222,12.397727273 "4397","chic",18,12.6,1999-01-14,NA,22.5,14.805555556,26.656060606 "4398","chic",23,20.2,1999-01-15,NA,33.5,2.9690382082,32.764888011 "4399","chic",30,29.8,1999-01-16,NA,31.5,6.3333333333,29.075 "4400","chic",28,31.3,1999-01-17,NA,33.5,5.0416666667,30.283333333 "4401","chic",29,25.8,1999-01-18,13.3,10.857142857,19.013888889,16.890217391 "4402","chic",27,20,1999-01-19,NA,30,6.4722222222,40.895454545 "4403","chic",30,28.8,1999-01-20,28.6,48,3.9583333333,44.491770186 "4404","chic",37,32.6,1999-01-21,NA,46,4.2916666667,35.109057971 "4405","chic",42,41.5,1999-01-22,NA,18,2.7638888889,35.448484848 "4406","chic",39,35.3,1999-01-23,NA,10,4.9444444444,24.016666667 "4407","chic",33,30,1999-01-24,21.45,16.142857143,14.875,21.591666667 "4408","chic",28,24.6,1999-01-25,NA,19,7.4583333333,26.241666667 "4409","chic",29,23.4,1999-01-26,NA,29.5,5.61352657,31.925 "4410","chic",42,34,1999-01-27,NA,40,8.1388888889,24.193478261 "4411","chic",33,27.4,1999-01-28,NA,27,7.6805555556,24.81969697 "4412","chic",33,25.6,1999-01-29,NA,29.5,9.8399758454,31.675 "4413","chic",34,28,1999-01-30,31.928571429,38,15.222222222,24.666666667 "4414","chic",36,27.5,1999-01-31,32.5,22.5,20.597222222,16.108333333 "4415","chic",40,38.4,1999-02-01,NA,21.5,4.3611111111,22.255263158 "4416","chic",38,32.4,1999-02-02,NA,10.5,4.7548309179,28.0625 "4417","chic",41,27.4,1999-02-03,NA,28.5,12.958333333,26.829710145 "4418","chic",31,21.1,1999-02-04,NA,20.5,14.032828283,24.194128788 "4419","chic",31,24.2,1999-02-05,19.6375,23.857142857,3.0555555556,32.684848485 "4420","chic",40,30.4,1999-02-06,NA,24.5,8.4305555556,27.5 "4421","chic",33,29.8,1999-02-07,NA,27.5,11.972222222,19.033333333 "4422","chic",37,36.2,1999-02-08,27.6,29.5,4.4321475626,29.679658385 "4423","chic",44,29.8,1999-02-09,NA,17.5,8.5063131313,36.087252964 "4424","chic",44,27.2,1999-02-10,NA,38,9.2083333333,41.525 "4425","chic",49,47.8,1999-02-11,17.38,24.857142857,12.081521739,16.270454545 "4426","chic",23,13.1,1999-02-12,NA,21,22.097222222,16.966666667 "4427","chic",23,10.8,1999-02-13,NA,26,14.763888889,27.116666667 "4428","chic",34,21.9,1999-02-14,13.3,27.5,12.666666667,27.075 "4429","chic",45,30.6,1999-02-15,NA,37,12.736111111,28.841666667 "4430","chic",39,32.1,1999-02-16,NA,31,6.6944444444,22.380434783 "4431","chic",27,20.4,1999-02-17,15.25,16.428571429,11.107323232,23.645909091 "4432","chic",29,21.8,1999-02-18,NA,30.5,9.356884058,33.460766046 "4433","chic",28,20.9,1999-02-19,NA,11,22.929347826,20.725 "4434","chic",25,17,1999-02-20,10.25,10.5,20.791666667,20.916666667 "4435","chic",28,15.7,1999-02-21,NA,4.5,32.180555556,12.475 "4436","chic",26,9.4,1999-02-22,NA,18.5,23.972222222,22.183333333 "4437","chic",29,14.9,1999-02-23,19.8,32.857142857,11.40821256,23.34384058 "4438","chic",27,22.9,1999-02-24,39.9,52.5,3.375,31.75 "4439","chic",33,26.5,1999-02-25,NA,30,6.1618357488,30.191304348 "4440","chic",36,27.9,1999-02-26,48.1,40.5,5.6473429952,34.739026915 "4441","chic",43,39.2,1999-02-27,NA,35,3.8194444444,27.716666667 "4442","chic",37,32.1,1999-02-28,NA,10.5,12.5,15.083333333 "4443","chic",38,25.3,1999-03-01,10.1,18.25,21.236111111,25.358333333 "4444","chic",37,33.1,1999-03-02,NA,30,2.2803030303,35.934090909 "4445","chic",31,18.7,1999-03-03,NA,10.5,17.736111111,22.675 "4446","chic",30,18.4,1999-03-04,18.8,20.5,12.7602657,33.443478261 "4447","chic",35,28.7,1999-03-05,NA,30.5,11.861111111,25.453623188 "4448","chic",25,19.7,1999-03-06,NA,7,32.208333333,12.466666667 "4449","chic",21,14.4,1999-03-07,11.842857143,17,35,18.733333333 "4450","chic",24,16.2,1999-03-08,NA,35,25.152777778,21.95 "4451","chic",29,26.4,1999-03-09,NA,15,21.680555556,20.041666667 "4452","chic",29,20.3,1999-03-10,NA,6.5,33.638888889,17.794894598 "4453","chic",28,20.4,1999-03-11,NA,15,22.363554018,35.116304348 "4454","chic",27,19.6,1999-03-12,NA,11,28.915719697,26.163768116 "4455","chic",28,18.1,1999-03-13,10.914285714,19.142857143,29.9375,22.408333333 "4456","chic",32,18.9,1999-03-14,NA,7,37.239583333,13.266666667 "4457","chic",31,19.2,1999-03-15,NA,30,14.728713768,45.225 "4458","chic",43,29.8,1999-03-16,20,36.5,12.866304348,37.568807642 "4459","chic",50,40.7,1999-03-17,NA,43,30.253321256,19.120652174 "4460","chic",38,27.1,1999-03-18,NA,17,27.899621212,19.431818182 "4461","chic",36,23.7,1999-03-19,10.483333333,18,23.625043133,27.475 "4462","chic",39,27.2,1999-03-20,NA,28.5,19.673611111,33.740942029 "4463","chic",38,23.2,1999-03-21,NA,11,32.451388889,15.425 "4464","chic",36,21.3,1999-03-22,NA,22.5,22.547101449,30.65 "4465","chic",38,21,1999-03-23,NA,40.5,15.420289855,38.803623188 "4466","chic",35,21.9,1999-03-24,NA,17.5,34.324275362,21.74057971 "4467","chic",32,23.3,1999-03-25,9.9142857143,18.285714286,32.43236715,24.883333333 "4468","chic",35,25.9,1999-03-26,11,14,31.451388889,25.1 "4469","chic",41,26.3,1999-03-27,NA,36,22.930555556,35.225 "4470","chic",43,33.7,1999-03-28,NA,49.5,18.923611111,29.65 "4471","chic",48,24.5,1999-03-29,NA,33.5,16.889190821,36.406291173 "4472","chic",55,28.5,1999-03-30,NA,75,25.443593544,33.25 "4473","chic",60,41.3,1999-03-31,26.814285714,61,31.072957839,21.197916667 "4474","chic",58,51.7,1999-04-01,NA,38,15.714831117,26.25 "4475","chic",64,54.6,1999-04-02,NA,43.5,15.276515152,34.1 "4476","chic",63,57.8,1999-04-03,NA,35,15.981060606,23.55 "4477","chic",56,47.3,1999-04-04,NA,18,22.488636364,15.983333333 "4478","chic",50,43.2,1999-04-05,NA,19,20.414456522,19.643478261 "4479","chic",53,42.4,1999-04-06,11.616666667,15.142857143,23.496703198,19.837878788 "4480","chic",55,42.7,1999-04-07,NA,47,27.814229249,34.547463768 "4481","chic",55,43.7,1999-04-08,14.5,35.5,29.009552042,28.476449275 "4482","chic",45,40,1999-04-09,8.4,12,30.861660079,18.1 "4483","chic",47,35,1999-04-10,NA,18,33.882575758,12.783333333 "4484","chic",46,39.7,1999-04-11,NA,14.5,22.352272727,16 "4485","chic",45,32.1,1999-04-12,10.925,21.428571429,23.553359684,26.883333333 "4486","chic",50,33.3,1999-04-13,19.9,32.5,19.896245059,32.95 "4487","chic",49,26,1999-04-14,NA,47,26.782938076,38.298550725 "4488","chic",49,39.4,1999-04-15,16.95,25.5,35.46864894,18.658465086 "4489","chic",44,37.3,1999-04-16,NA,11,26.333498024,26.910507246 "4490","chic",44,34,1999-04-17,NA,11.5,16.844098884,25.066666667 "4491","chic",42,37.1,1999-04-18,19.185714286,24.285714286,12.358333333,29.741666667 "4492","chic",42,36.5,1999-04-19,NA,35,12.752155947,32.35 "4493","chic",45,39.4,1999-04-20,25.9,35.5,22.390480896,28.244565217 "4494","chic",54,48,1999-04-21,NA,31,24.761693017,23.649303595 "4495","chic",48,47.2,1999-04-22,NA,31.5,11.696859903,23.236111111 "4496","chic",43,35.6,1999-04-23,NA,6,29.293725296,15.658730159 "4497","chic",44,24.6,1999-04-24,7.1375,13.428571429,31.85,18.625 "4498","chic",48,30.5,1999-04-25,NA,23,32.2375,23.625 "4499","chic",51,33.4,1999-04-26,NA,31,37.25,29.479166667 "4500","chic",50,41.5,1999-04-27,NA,32,28.877814708,22.279491342 "4501","chic",51,38.4,1999-04-28,NA,14.5,30.032863217,15.64520202 "4502","chic",52,32.7,1999-04-29,NA,15.5,34.964838603,16.796218767 "4503","chic",51,29,1999-04-30,9.1,22.285714286,30.857213439,26.467171717 "4504","chic",56,30.5,1999-05-01,NA,24,31.06002331,29.541666667 "4505","chic",58,37.3,1999-05-02,NA,30.5,43.125,27.270833333 "4506","chic",64,42.8,1999-05-03,NA,44.5,39.988636364,33.221230159 "4507","chic",67,52.2,1999-05-04,NA,61,41.249490957,27.319444444 "4508","chic",70,57.2,1999-05-05,NA,63.5,35.620059289,18.588768116 "4509","chic",58,52.8,1999-05-06,11.475,22.5,19.729443646,23.285024155 "4510","chic",56,46.9,1999-05-07,NA,26,21.534255599,18.185144928 "4511","chic",53,48.2,1999-05-08,NA,14,12.290151515,16.366666667 "4512","chic",51,42.7,1999-05-09,NA,11.5,18.587121212,15.95 "4513","chic",58,46.5,1999-05-10,NA,32,33.382971014,22.433333333 "4514","chic",67,52.1,1999-05-11,NA,60,34.133386376,28.669565217 "4515","chic",62,52.7,1999-05-12,21.383333333,41.142857143,28.881258235,25.807246377 "4516","chic",51,41,1999-05-13,NA,16.5,28.341597796,18.086050725 "4517","chic",53,41.3,1999-05-14,NA,16,26.998682477,18.452777778 "4518","chic",60,54.8,1999-05-15,45.6,45.5,22.424242424,23.555555556 "4519","chic",69,63.1,1999-05-16,NA,43.5,37.018939394,19.895833333 "4520","chic",69,62.6,1999-05-17,NA,28,29.673089592,18.906944444 "4521","chic",61,52.3,1999-05-18,8.6375,15.375,22.284914361,21.830555556 "4522","chic",61,44.8,1999-05-19,NA,30,21.06044137,29.319158197 "4523","chic",64,49.1,1999-05-20,NA,41,36.173418972,30.56900527 "4524","chic",66,56.8,1999-05-21,34.7,54.5,47.50872859,27.777777778 "4525","chic",59,52.8,1999-05-22,NA,16.5,35.40530303,11.291666667 "4526","chic",60,50.7,1999-05-23,NA,20.5,18.242424242,20.425 "4527","chic",51,40.7,1999-05-24,6.4333333333,13,17.482647622,17.6625 "4528","chic",56,38.7,1999-05-25,NA,35,26.765480896,19.277777778 "4529","chic",60,40.4,1999-05-26,NA,23,24.131752306,22.709568511 "4530","chic",64,41.3,1999-05-27,NA,53,25.764837106,40.712285903 "4531","chic",75,53.8,1999-05-28,NA,54,29.565711462,35.814814815 "4532","chic",76,54.4,1999-05-29,NA,53.5,46.458333333,33.008333333 "4533","chic",70,56,1999-05-30,32.4,48.571428571,51.848484848,26.758333333 "4534","chic",73,63.4,1999-05-31,NA,32,30.553853755,15.5 "4535","chic",65,59.7,1999-06-01,NA,27.5,17.28870224,20.891666667 "4536","chic",64,57.7,1999-06-02,NA,16,15.170125165,21.657439782 "4537","chic",58,47.7,1999-06-03,NA,16.5,22.818900467,16.962423144 "4538","chic",64,56.6,1999-06-04,NA,29.5,32.333587855,23.046717172 "4539","chic",75,68,1999-06-05,17.516666667,26.142857143,30.367424242,21.183333333 "4540","chic",80,69.9,1999-06-06,NA,41,33.049242424,16.891666667 "4541","chic",81,63.8,1999-06-07,NA,38.5,36.40554258,19.083333333 "4542","chic",80,63.2,1999-06-08,NA,45.5,38.272397892,28.178571429 "4543","chic",79,63.2,1999-06-09,NA,44.5,27.102661995,35.266908213 "4544","chic",79,66.7,1999-06-10,NA,50,28.910737813,36.042874396 "4545","chic",78,67.5,1999-06-11,32.783333333,43.285714286,32.799736495,34.839673913 "4546","chic",75,68.2,1999-06-12,36,39.5,39.678030303,30.958333333 "4547","chic",65,63.5,1999-06-13,NA,21.5,28.196969697,19.604166667 "4548","chic",66,55,1999-06-14,NA,13.5,25.582674572,14.965277778 "4549","chic",58,37.9,1999-06-15,NA,8.5,25.893280632,10.791666667 "4550","chic",61,44.7,1999-06-16,NA,18,28.812372739,16.721014493 "4551","chic",57,42.9,1999-06-17,6.3625,13.142857143,25.388339921,13.23218599 "4552","chic",59,47.6,1999-06-18,NA,27.5,27.499505929,20.489130435 "4553","chic",68,49.9,1999-06-19,NA,26.5,38.446969697,20.159722222 "4554","chic",67,54.4,1999-06-20,26,39,52.965909091,19.263888889 "4555","chic",72,59.8,1999-06-21,NA,57,53.406545694,27.722222222 "4556","chic",74,66.2,1999-06-22,NA,71,33.9745671,40.428030303 "4557","chic",76,67.3,1999-06-23,49.042857143,57.571428571,45.566033357,27.472880984 "4558","chic",76,65.9,1999-06-24,NA,26,28.378315196,24.169297792 "4559","chic",75,58.2,1999-06-25,NA,40.5,30.26729249,34.598128019 "4560","chic",76,66.2,1999-06-26,24.9,37.5,35.599173554,27.090277778 "4561","chic",78,70.6,1999-06-27,NA,44.5,41.520833333,23 "4562","chic",77,69.2,1999-06-28,NA,44,31.366930171,21.247474747 "4563","chic",66,51.1,1999-06-29,8.2125,20.625,23.531361754,16.964847652 "4564","chic",68,54.7,1999-06-30,NA,26,28.691864295,27.28373408 "4565","chic",74,64.3,1999-07-01,NA,31.5,27.278820817,23.815151515 "4566","chic",77,67.3,1999-07-02,NA,30.5,28.772727273,21.661835749 "4567","chic",84,76.2,1999-07-03,NA,55.5,28.988636364,12.738095238 "4568","chic",86,74.1,1999-07-04,NA,45,29.893939394,10.232051282 "4569","chic",87,74.4,1999-07-05,24.5,32.875,33.291666667,10.270833333 "4570","chic",79,62.7,1999-07-06,NA,27.5,28.404808959,23.151428571 "4571","chic",75,53.7,1999-07-07,NA,28,29.813390825,30.816666667 "4572","chic",76,60.4,1999-07-08,20.4,59,38.988905857,29.396969697 "4573","chic",76,65,1999-07-09,NA,40.5,34.69077135,17.176010101 "4574","chic",64,51.5,1999-07-10,NA,11.5,23.791666667,10.0625 "4575","chic",67,50.3,1999-07-11,10.4625,23.571428571,21.340909091,22.208333333 "4576","chic",68,50.8,1999-07-12,NA,37,25.563405797,29.357487923 "4577","chic",70,55.7,1999-07-13,NA,64,33.029554438,35.219065657 "4578","chic",74,59.2,1999-07-14,NA,71.5,45.651006109,30.882453416 "4579","chic",78,62.8,1999-07-15,NA,71,51.47414361,23.05102657 "4580","chic",82,68.3,1999-07-16,NA,82.5,45.881258235,22.229166667 "4581","chic",75,70.6,1999-07-17,19.45,29.285714286,26.098484848,17.416666667 "4582","chic",77,66.6,1999-07-18,NA,28,31.946969697,17.152777778 "4583","chic",79,70.1,1999-07-19,NA,35,26.93422865,19.763888889 "4584","chic",76,70.4,1999-07-20,23.3,26.5,27.932971014,17.044191919 "4585","chic",83,72.1,1999-07-21,NA,39,30.270421607,24.256944444 "4586","chic",82,73.4,1999-07-22,NA,40,27.166561864,21.643115942 "4587","chic",83,72.8,1999-07-23,18.785714286,33.875,25.668867529,29.458333333 "4588","chic",82,73.2,1999-07-24,NA,23.5,34.643939394,25.135416667 "4589","chic",85,70.6,1999-07-25,NA,25,37.375,18.229166667 "4590","chic",80,69.5,1999-07-26,20.4,41.5,24.024374177,30.175 "4591","chic",79,68.3,1999-07-27,NA,26,26.257246377,21.608333333 "4592","chic",82,71.8,1999-07-28,NA,35.5,34.002140975,22.534090909 "4593","chic",83,76.6,1999-07-29,22.616666667,42.857142857,30.489190322,25.026515152 "4594","chic",90,77.1,1999-07-30,NA,54,34.170652174,27.479770531 "4595","chic",83,71.4,1999-07-31,NA,30,37.695833333,18.409722222 "4596","chic",74,60.1,1999-08-01,NA,12,26.157692308,9.6527777778 "4597","chic",71,56.3,1999-08-02,NA,13.5,17.257034632,15.361111111 "4598","chic",71,59,1999-08-03,NA,37,23.492572464,30.630555556 "4599","chic",76,58.3,1999-08-04,13.633333333,29.142857143,23.770184526,25.261363636 "4600","chic",73,55.6,1999-08-05,10.9,19.5,20.493083004,22.712595677 "4601","chic",76,62,1999-08-06,NA,43,28.683959157,23.812719587 "4602","chic",72,67.7,1999-08-07,NA,38.5,22.174242424,25.083333333 "4603","chic",66,57,1999-08-08,NA,10,25.386363636,7.8819444444 "4604","chic",66,56.2,1999-08-09,NA,26,22.282444005,19.4375 "4605","chic",78,63.8,1999-08-10,15.828571429,31.428571429,31.218050066,20.361111111 "4606","chic",75,61.1,1999-08-11,NA,34.5,17.917325428,25.7594148 "4607","chic",70,65.9,1999-08-12,NA,26,14.04355312,29.152256258 "4608","chic",72,65.6,1999-08-13,NA,28,22.563241107,12.918176329 "4609","chic",64,52.7,1999-08-14,NA,8.5,22.208333333,10.048611111 "4610","chic",66,54.4,1999-08-15,NA,16.5,20.587121212,20.118055556 "4611","chic",73,57.9,1999-08-16,21.366666667,32.857142857,30.061055216,27.993055556 "4612","chic",75,60.6,1999-08-17,NA,34,28.674901186,23.433207071 "4613","chic",67,62.7,1999-08-18,NA,36,6.8282279315,36.461489899 "4614","chic",68,62.3,1999-08-19,12,16.5,23.575787519,15.085090031 "4615","chic",67,57.2,1999-08-20,NA,16.5,22.619071146,19.804649758 "4616","chic",65,57.4,1999-08-21,NA,28.5,18.477272727,34.979166667 "4617","chic",67,57.1,1999-08-22,20.371428571,28.571428571,22.62962963,34.340277778 "4618","chic",72,64.2,1999-08-23,NA,36.5,20.527822309,33.979166667 "4619","chic",71,67.1,1999-08-24,NA,33.5,29.317687747,19.423611111 "4620","chic",70,66.1,1999-08-25,28.8,24,32.690891125,20.802226457 "4621","chic",72,64.6,1999-08-26,NA,33.5,25.93955863,25.147041063 "4622","chic",74,66.1,1999-08-27,29.3,57.5,24.515942029,42.297101449 "4623","chic",80,69.7,1999-08-28,39.54,56.571428571,31.5125,30.65 "4624","chic",69,56,1999-08-29,NA,13.5,29.95,7.6416666667 "4625","chic",62,51.8,1999-08-30,NA,17.5,26.018657068,12.683333333 "4626","chic",65,54.4,1999-08-31,NA,28,25.30171278,22.296014493 "4627","chic",70,57.3,1999-09-01,NA,62.5,35.859072087,36.589646465 "4628","chic",74,62.1,1999-09-02,NA,83.5,40.057506887,49.549242424 "4629","chic",76,61.5,1999-09-03,44.957142857,74,48.116555875,42.982789855 "4630","chic",79,61.6,1999-09-04,NA,60.5,57.488636364,26.701388889 "4631","chic",77,63.5,1999-09-05,NA,59,54.962121212,25.458333333 "4632","chic",66,54.9,1999-09-06,NA,14,25.318181818,11.048611111 "4633","chic",65,55.2,1999-09-07,NA,28,16.384222661,25.791666667 "4634","chic",71,54.2,1999-09-08,NA,37.5,19.415019763,31.543560606 "4635","chic",62,46.6,1999-09-09,8.4,40.285714286,13.406800216,21.221014493 "4636","chic",62,45.2,1999-09-10,NA,52,15.038537549,29.140041722 "4637","chic",64,48.7,1999-09-11,NA,48,21.946969697,29.722222222 "4638","chic",68,58.9,1999-09-12,NA,31,26.412878788,22.833333333 "4639","chic",59,49.9,1999-09-13,NA,18.5,7.8633069829,16.423611111 "4640","chic",59,44.4,1999-09-14,NA,23.5,10.22842556,20.610981712 "4641","chic",55,46.2,1999-09-15,9.8166666667,24.285714286,10.45685112,22.583745059 "4642","chic",59,47.8,1999-09-16,8.7,18,13.71945742,20.670438861 "4643","chic",59,48.1,1999-09-17,NA,25,14.664196311,23.216485507 "4644","chic",62,49,1999-09-18,NA,42.5,20.268939394,32.635416667 "4645","chic",64,53.5,1999-09-19,NA,43.5,31.488636364,26.090277778 "4646","chic",58,45.9,1999-09-20,NA,13,13.2434573,12.75 "4647","chic",51,44.6,1999-09-21,5.65,11.875,15.880434783,14.549603175 "4648","chic",57,39.8,1999-09-22,NA,30,13.699440053,33.804798764 "4649","chic",66,46.3,1999-09-23,NA,44.5,24.895915679,26.643911946 "4650","chic",57,47.1,1999-09-24,6,9,21.251482213,10.425614844 "4651","chic",62,48.4,1999-09-25,NA,38,26.9125,25.395833333 "4652","chic",72,49.3,1999-09-26,NA,72,46.670833333,20.756944444 "4653","chic",66,58.7,1999-09-27,11.1,23.571428571,37.123484848,14.201388889 "4654","chic",58,56.7,1999-09-28,8.3,12.5,18.045315192,19.25297619 "4655","chic",56,43.7,1999-09-29,NA,11,12.624011858,19.203804348 "4656","chic",56,38.9,1999-09-30,9.1,29.5,13.511231884,26.263466184 "4657","chic",51,35,1999-10-01,NA,27,9.0634881423,28.652272727 "4658","chic",46,40.8,1999-10-02,NA,19,10.175,20.833333333 "4659","chic",44,40.2,1999-10-03,7.45,14.75,16.408333333,15.3 "4660","chic",47,38,1999-10-04,NA,13.5,15.766666667,20.685714286 "4661","chic",51,36.8,1999-10-05,NA,33,9.3844202899,30.808333333 "4662","chic",52,41.8,1999-10-06,10.55,20.5,17.611775362,17.569851259 "4663","chic",59,42.4,1999-10-07,NA,28.5,14.469433465,28.836725955 "4664","chic",61,54.1,1999-10-08,NA,49.5,14.422348485,28.836034256 "4665","chic",59,57.6,1999-10-09,34.857142857,47,5.9458333333,24.1 "4666","chic",66,58,1999-10-10,NA,24.5,23.1,16.825 "4667","chic",55,46.1,1999-10-11,NA,27,14.354166667,26.108333333 "4668","chic",62,47.2,1999-10-12,NA,56.5,20.896014493,28.753787879 "4669","chic",56,44,1999-10-13,NA,27,14.238586957,19.791017316 "4670","chic",48,34.8,1999-10-14,NA,25,10.819746377,23.230797101 "4671","chic",64,46.3,1999-10-15,16.4,44.285714286,24.847282609,23.923814229 "4672","chic",58,54.2,1999-10-16,NA,43.5,23.216666667,20.833333333 "4673","chic",45,33.8,1999-10-17,NA,9.5,14.895833333,17.020833333 "4674","chic",44,34.4,1999-10-18,14.7,23,4.7847826087,24.533333333 "4675","chic",50,33.5,1999-10-19,NA,36.5,9.1001811594,24.925 "4676","chic",44,30.7,1999-10-20,NA,31,6.8682971014,22.94673913 "4677","chic",52,36.3,1999-10-21,11.5,36.428571429,10.437318841,27.431521739 "4678","chic",51,26.6,1999-10-22,NA,29.5,20.138768116,15.083333333 "4679","chic",43,25.7,1999-10-23,NA,14.5,20.720833333,12.208333333 "4680","chic",40,22.1,1999-10-24,NA,13.5,13.75,23.141666667 "4681","chic",50,28.1,1999-10-25,NA,51,13.216988728,31.207608696 "4682","chic",53,29.4,1999-10-26,NA,46.5,11.324456522,32.7 "4683","chic",48,37,1999-10-27,16.2625,38.857142857,9.8317523057,27.090118577 "4684","chic",64,43.3,1999-10-28,NA,68,15.075,33.291666667 "4685","chic",62,47,1999-10-29,NA,71,26.623089592,38.090909091 "4686","chic",66,50.7,1999-10-30,NA,68.5,38.691666667,23.108333333 "4687","chic",58,49.3,1999-10-31,NA,46.5,14.766666667,24.925 "4688","chic",59,46.9,1999-11-01,NA,54.5,12.767676768,30.241666667 "4689","chic",42,22.6,1999-11-02,5.18,20.285714286,16.972826087,19.61547619 "4690","chic",37,17.7,1999-11-03,NA,28.5,12.944444444,27.253787879 "4691","chic",46,24.2,1999-11-04,NA,79.5,8.7753623188,37.851773455 "4692","chic",55,34.3,1999-11-05,22.2,51.5,11.362318841,33.958333333 "4693","chic",45,20.3,1999-11-06,NA,29,10.388888889,33.987878788 "4694","chic",44,32.3,1999-11-07,NA,36,17.305555556,31.298529412 "4695","chic",55,41,1999-11-08,18.414285714,42.142857143,5.8611111111,42.919047619 "4696","chic",67,48.5,1999-11-09,NA,51,22.083333333,29.808333333 "4697","chic",58,46.7,1999-11-10,NA,49.5,23.194444444,21.4352657 "4698","chic",44,38,1999-11-11,NA,18,18.277777778,20.016666667 "4699","chic",47,41.2,1999-11-12,NA,61.5,2.6976284585,31.354183136 "4700","chic",54,43.8,1999-11-13,NA,66,12.416666667,35.141666667 "4701","chic",45,30.5,1999-11-14,7.7285714286,23.75,18.986111111,17.108333333 "4702","chic",41,26.3,1999-11-15,NA,22,6.5833333333,29.833333333 "4703","chic",38,29.3,1999-11-16,NA,16.5,12.013888889,23.341666667 "4704","chic",40,25,1999-11-17,13.7,25,7.1497584541,32.30952381 "4705","chic",58,36.2,1999-11-18,NA,91,14.569444444,27.410714286 "4706","chic",49,37.7,1999-11-19,NA,80,11.725241546,18.19057971 "4707","chic",39,35.2,1999-11-20,26.2125,37.625,0.8541666667,15.116666667 "4708","chic",42,42,1999-11-21,NA,51,1.5625,20.458333333 "4709","chic",54,46,1999-11-22,NA,58,5.5833333333,29.20442029 "4710","chic",52,50,1999-11-23,NA,38,6.5467171717,19.859057971 "4711","chic",40,30.7,1999-11-24,NA,19,6.1225845411,21.265942029 "4712","chic",36,27.8,1999-11-25,NA,30,5.7222222222,30.683333333 "4713","chic",37,32.2,1999-11-26,23.45,29.625,6.5694444444,27.784848485 "4714","chic",41,30.1,1999-11-27,NA,15,6.4722222222,25.25 "4715","chic",34,25,1999-11-28,NA,11,7.0138888889,25.975 "4716","chic",32,19.9,1999-11-29,11.2,17,7.6527777778,27.266666667 "4717","chic",30,15.3,1999-11-30,20.6,25,3.9516908213,34.206521739 "4718","chic",36,20.8,1999-12-01,NA,38,3.9293478261,26.774332571 "4719","chic",50,32.9,1999-12-02,16.44,31.142857143,5.9444444444,30.514285714 "4720","chic",53,48,1999-12-03,18.5,43,8.2669082126,28.415307971 "4721","chic",49,48.5,1999-12-04,NA,39.5,2.4166666667,25.9375 "4722","chic",39,34.3,1999-12-05,NA,5.5,10.763888889,13.96875 "4723","chic",29,22.6,1999-12-06,NA,16.5,6.9583333333,25.90625 "4724","chic",33,29.1,1999-12-07,NA,26,3.4305555556,23.1875 "4725","chic",38,33.5,1999-12-08,24.957142857,28.285714286,2.2826086957,25.950757576 "4726","chic",43,38.6,1999-12-09,NA,44.5,4.6944444444,28.218479437 "4727","chic",31,23.4,1999-12-10,NA,17.5,6.9886363636,22.785037879 "4728","chic",31,25,1999-12-11,12.6,24,4.7083333333,30.229166667 "4729","chic",35,30.6,1999-12-12,23.8,19.5,1.5972222222,24.958333333 "4730","chic",35,31.2,1999-12-13,NA,38,7.5809178744,24.312753623 "4731","chic",38,34.2,1999-12-14,13.7625,15.285714286,10.550724638,21.135869565 "4732","chic",36,33.9,1999-12-15,NA,19,2.4444444444,24.25 "4733","chic",27,20.3,1999-12-16,NA,18.5,4.047705314,19.069565217 "4734","chic",23,17.9,1999-12-17,13.5,17.5,7.8907004831,24.629830918 "4735","chic",19,14.6,1999-12-18,NA,26.5,7.1805555556,30.908333333 "4736","chic",32,29.1,1999-12-19,NA,32,3.4027777778,22.416666667 "4737","chic",21,11,1999-12-20,12.7,24.75,13.566425121,16.906250484 "4738","chic",8,-1.6,1999-12-21,12.6,27,7.9015151515,28.162022398 "4739","chic",13,5.8,1999-12-22,NA,24.5,4.6733091787,33.725 "4740","chic",10,3.8,1999-12-23,20.8,39,6.2361111111,29.6 "4741","chic",14,4.7,1999-12-24,NA,35,7.1111111111,31.266666667 "4742","chic",19,14,1999-12-25,NA,45.5,7.1388888889,23.741666667 "4743","chic",28,14.3,1999-12-26,6.7285714286,26.75,20.027777778,15.566666667 "4744","chic",19,11.6,1999-12-27,NA,29.5,10.848429952,27.095238095 "4745","chic",21,16.4,1999-12-28,NA,23,8.4583333333,26.041666667 "4746","chic",36,30.2,1999-12-29,12.8,24.5,3.6443236715,25.538571429 "4747","chic",34,28.9,1999-12-30,NA,13,9.7518115942,25.040266798 "4748","chic",34,25.9,1999-12-31,NA,21.5,5.6805555556,27.5 "4749","chic",42,32.2,2000-01-01,25.7,29.333333333,4.6212121212,24.069444444 "4750","chic",48,42.3,2000-01-02,30.6,47.5,16.527777778,16.3125 "4751","chic",35,33.7,2000-01-03,12.45,11.5,9.0990338164,15.114583333 "4752","chic",28,22.2,2000-01-04,11.55,19,11.059178744,23.801785714 "4753","chic",20,16.6,2000-01-05,18.6,23.5,4.3526570048,20.349802372 "4754","chic",34,25.3,2000-01-06,18.4,32,3.7618577075,22.088043478 "4755","chic",25,13.3,2000-01-07,16.8,27,7.9381313131,26.1 "4756","chic",37,28.5,2000-01-08,15.5,27,6.1944444444,23.766666667 "4757","chic",39,38.5,2000-01-09,25.7,25.5,1.8055555556,21.241666667 "4758","chic",42,34.9,2000-01-10,15.185714286,17,7.9444444444,19.732142857 "4759","chic",33,21.5,2000-01-11,7.8,24.5,11.819444444,17.765349144 "4760","chic",31,21.7,2000-01-12,11.3,18,11.933574879,21.394565217 "4761","chic",25,18.4,2000-01-13,12.1,19.142857143,8.7361111111,26.708695652 "4762","chic",20,14.5,2000-01-14,20.45,28,3.1117149758,35.158333333 "4763","chic",34,24.2,2000-01-15,19.65,35,3.3194444444,23.841666667 "4764","chic",31,19.4,2000-01-16,11.675,16,20.5,13.783333333 "4765","chic",22,12.7,2000-01-17,11.7,23.5,17.944444444,20.066666667 "4766","chic",25,20.9,2000-01-18,20.1,24.5,4.1400966184,28.315584416 "4767","chic",21,15.7,2000-01-19,23.05,33.285714286,3.0277777778,41.322463768 "4768","chic",10,2.1,2000-01-20,16,22.5,12.834541063,27.923809524 "4769","chic",5,-3.2,2000-01-21,31.8,46.5,6.3926767677,38.187022398 "4770","chic",17,14.5,2000-01-22,27.757142857,31.5,5.4305555556,36.375 "4771","chic",16,4.3,2000-01-23,19.8,27,14.638888889,20.1 "4772","chic",6,-0.6,2000-01-24,25.4,36,6.1805555556,36.1 "4773","chic",17,8.5,2000-01-25,15.085714286,23.857142857,10.575757576,28.091060606 "4774","chic",15,5.4,2000-01-26,10.1,31,9.1944444444,31.817457181 "4775","chic",20,11.5,2000-01-27,16.7,26,10.85326087,35.511363636 "4776","chic",21,14.5,2000-01-28,30.614285714,48.5,6.1944444444,47.25 "4777","chic",24,19.1,2000-01-29,17.1,32,21.305555556,22.066666667 "4778","chic",28,23.3,2000-01-30,32.1,28,8.8194444444,30.341666667 "4779","chic",20,14.4,2000-01-31,32.425,33.857142857,11.652777778,32.775 "4780","chic",25,16.5,2000-02-01,21.1,28.5,9.4027777778,33.53452381 "4781","chic",21,16,2000-02-02,31.7,41,6.5,37.121320346 "4782","chic",33,26.7,2000-02-03,25.05,28,10.186868687,29.039328063 "4783","chic",25,19,2000-02-04,15.5,20.5,12.208937198,30.066304348 "4784","chic",21,16.5,2000-02-05,19.8,27,11.472222222,28.208333333 "4785","chic",23,21.6,2000-02-06,34.3,37.666666667,6.3055555556,33.28125 "4786","chic",26,23.3,2000-02-07,25,25.5,14.3647343,30.136568627 "4787","chic",22,21.6,2000-02-08,30.6,39,9.8611111111,42.684782609 "4788","chic",41,30.2,2000-02-09,37.25,41.5,11.520531401,29.14229249 "4789","chic",35,32.1,2000-02-10,40.4,55,7.8888888889,30.016666667 "4790","chic",24,13.9,2000-02-11,8.5,16,19.430555556,24.891666667 "4791","chic",24,14.5,2000-02-12,20.028571429,27.166666667,21.375,26.491666667 "4792","chic",30,26.8,2000-02-13,26.75,36,11.819444444,21.991666667 "4793","chic",26,22.5,2000-02-14,13.45,17,13.178030303,30.771212121 "4794","chic",31,28.1,2000-02-15,26.833333333,29.5,4.9861111111,31.991666667 "4795","chic",28,19,2000-02-16,15.4,25,16.464975845,28.981431159 "4796","chic",27,18.6,2000-02-17,25.2,34,14.300724638,30.87594697 "4797","chic",30,27.8,2000-02-18,14.828571429,20.142857143,24.041666667,17.511363636 "4798","chic",29,21.7,2000-02-19,21.5,16,22.373737374,23.766666667 "4799","chic",27,19.7,2000-02-20,26.3,26,23.083333333,28.6 "4800","chic",35,29.1,2000-02-21,24.342857143,40,8.3055555556,37.345652174 "4801","chic",49,40.3,2000-02-22,21.1,39,8.3055555556,32.231818182 "4802","chic",59,40.6,2000-02-23,26.8,61,26.486111111,31.834057971 "4803","chic",49,49.9,2000-02-24,19.642857143,22.166666667,15.268978606,26.65538961 "4804","chic",55,50.3,2000-02-25,17.2,48.5,15.327898551,25.399275362 "4805","chic",56,51.7,2000-02-26,9.7,28.5,24.611111111,15.616666667 "4806","chic",45,30.7,2000-02-27,4.9625,11.5,21.833333333,13.068627451 "4807","chic",43,26.8,2000-02-28,18.1,37,10.5,36.41547619 "4808","chic",54,34.4,2000-02-29,12.4,35,19.967391304,28.324275362 "4809","chic",46,32.9,2000-03-01,9.9125,15.833333333,23.591269841,18.892236025 "4810","chic",33,23.8,2000-03-02,7,11.5,25.766908213,19.247463768 "4811","chic",35,24.1,2000-03-03,11.6,27,20,31.033333333 "4812","chic",46,30.7,2000-03-04,19.9625,37,13.013888889,33.025 "4813","chic",52,36.5,2000-03-05,25.8,32,11.861111111,31.308333333 "4814","chic",51,32.1,2000-03-06,23.2,51.5,16.625,40.408333333 "4815","chic",66,49.7,2000-03-07,21.2875,38.285714286,21.75,30.395843215 "4816","chic",67,50.9,2000-03-08,21.3,78,27.486111111,24.903623188 "4817","chic",46,32.7,2000-03-09,7.3,42.5,18.196859903,13.316666667 "4818","chic",30,21.9,2000-03-10,8.9875,11,19.246376812,18.569565217 "4819","chic",30,19,2000-03-11,5.9,6,27.458333333,14.2 "4820","chic",34,19.3,2000-03-12,17.9,20,13.430555556,31.575 "4821","chic",39,33.4,2000-03-13,30.2625,33.571428571,4.125,32.263333333 "4822","chic",45,32.6,2000-03-14,26.1,45.5,13.993961353,25.342028986 "4823","chic",50,41.9,2000-03-15,29.9,34,16.55615942,25.854710145 "4824","chic",33,22.3,2000-03-16,5.6142857143,5.5,37.416666667,11.825 "4825","chic",32,18.5,2000-03-17,7.5,11,34.505693582,15.151811594 "4826","chic",34,20.8,2000-03-18,15.1,18,21.25,20.733333333 "4827","chic",39,34.1,2000-03-19,21.742857143,26.857142857,15.041666667,16.066666667 "4828","chic",49,46.4,2000-03-20,17.05,19.5,14.283333333,21.758333333 "4829","chic",47,45.3,2000-03-21,28.9,36,1.8594202899,25.616666667 "4830","chic",51,44,2000-03-22,34.4625,52.5,7.1321428571,35.068181818 "4831","chic",50,43.7,2000-03-23,39.8,62.5,14.905434783,36.352743271 "4832","chic",57,49,2000-03-24,25.5,39,18.098550725,29.6 "4833","chic",53,32.8,2000-03-25,6.6285714286,18.714285714,30.45,15.991666667 "4834","chic",52,31.8,2000-03-26,7.8,24.5,30.591666667,22.241666667 "4835","chic",47,31.2,2000-03-27,7.2,21,27.824637681,18.866666667 "4836","chic",39,31.1,2000-03-28,8.1285714286,14,14.989130435,25.035869565 "4837","chic",40,29.3,2000-03-29,9.7,18.5,16.529545455,23.881258235 "4838","chic",40,31,2000-03-30,15,27,19.75,27.9 "4839","chic",45,28.1,2000-03-31,27.957142857,51.571428571,10.065217391,50.811231884 "4840","chic",52,33.9,2000-04-01,22.9,48,14.069444444,37.233333333 "4841","chic",51,42.5,2000-04-02,40.3,46,21.671296296,25.925 "4842","chic",52,34.3,2000-04-03,26.342857143,45,17.792391304,27.066666667 "4843","chic",38,19.7,2000-04-04,7.1,18.5,23.79692029,24.372727273 "4844","chic",44,23.8,2000-04-05,14.7,61,22.35,30.960714286 "4845","chic",53,27.3,2000-04-06,8.4285714286,78.166666667,23.84365942,21.348550725 "4846","chic",41,32.7,2000-04-07,9.4,29,13.890530303,23.427083333 "4847","chic",34,23,2000-04-08,8.7,22.5,25.858333333,22.864583333 "4848","chic",45,26.7,2000-04-09,12.1125,21.5,21.698245614,22.278333333 "4849","chic",37,28.1,2000-04-10,9.1,17.5,26.980193237,16.269202899 "4850","chic",34,33.1,2000-04-11,12.1,12,20.959943639,22.373484848 "4851","chic",39,25.3,2000-04-12,18.0375,28.571428571,19.815217391,29.512681159 "4852","chic",49,28.3,2000-04-13,19.4,39,21.061594203,33.241666667 "4853","chic",58,42.8,2000-04-14,21,72,23.776515152,28.108333333 "4854","chic",56,46.9,2000-04-15,23.4625,46,23.356060606,15.575 "4855","chic",44,40.9,2000-04-16,14.8,20,17.797760211,15.739583333 "4856","chic",41,38.9,2000-04-17,16.4,14.5,14.69534632,17.045952381 "4857","chic",48,42.5,2000-04-18,29.385714286,35.285714286,7.8055455743,28.605789474 "4858","chic",52,48.8,2000-04-19,46.7,45.5,8.8286621152,25.882251082 "4859","chic",53,50.2,2000-04-20,25.25,27,12.609788597,22.566666667 "4860","chic",44,35,2000-04-21,7.5714285714,8,28.343873518,18.891666667 "4861","chic",48,31.4,2000-04-22,17.75,24.5,20.033152174,37.358333333 "4862","chic",47,40.3,2000-04-23,13,20.5,31.55,21.491666667 "4863","chic",52,32.6,2000-04-24,9.2666666667,18.714285714,32.965942029,20.716304348 "4864","chic",49,23.4,2000-04-25,13,13,34.913088394,21.025 "4865","chic",52,24.2,2000-04-26,12.25,24.5,26.483342744,34.115217391 "4866","chic",53,26.3,2000-04-27,17.628571429,60,23.004611331,43.864583333 "4867","chic",54,32.2,2000-04-28,14.9,52.5,28.845041322,34.65 "4868","chic",48,39.1,2000-04-29,5.4,10.5,22.223484848,11.191666667 "4869","chic",54,40,2000-04-30,14.6625,35.333333333,23.015151515,29.558333333 "4870","chic",57,49.2,2000-05-01,24.7,45,21.131392981,39.181186869 "4871","chic",57,43.1,2000-05-02,12.4,36,25.718439334,30.612456083 "4872","chic",63,48.6,2000-05-03,17.325,45.5,30.835025153,34.719367589 "4873","chic",72,58.1,2000-05-04,12.6,62.5,31.499176548,23.238095238 "4874","chic",74,59.3,2000-05-05,18.6,65,33.841567852,24.069444444 "4875","chic",74,61.3,2000-05-06,13.4875,38.285714286,32.016666667,15.944444444 "4876","chic",71,65,2000-05-07,14.65,29.5,25.2875,15.850198413 "4877","chic",76,67.5,2000-05-08,23,85,24.940711462,16.354641132 "4878","chic",59,55,2000-05-09,8.6571428571,15.5,20.772891963,16.652777778 "4879","chic",55,45,2000-05-10,8,21.5,20.487318841,23.307065217 "4880","chic",67,59.9,2000-05-11,22.5,43.5,19.276385133,28.437238931 "4881","chic",73,66.8,2000-05-12,25.725,38,22.821146245,21.051630435 "4882","chic",53,38.4,2000-05-13,5,31.5,24.537878788,13.375 "4883","chic",52,33,2000-05-14,7.2,20,32.102272727,18.972222222 "4884","chic",57,35,2000-05-15,11.475,37,18.507575758,37.446969697 "4885","chic",61,49.6,2000-05-16,22.1,41,19.04417766,32.107954545 "4886","chic",61,56.5,2000-05-17,40.3,48,14.451880465,29.492796756 "4887","chic",58,51.8,2000-05-18,15.05,24.857142857,27.899044796,17.958333333 "4888","chic",46,40.3,2000-05-19,5.6,5.5,25.239624506,14.034722222 "4889","chic",55,37.8,2000-05-20,9.7,16.5,23.318526171,22.016414141 "4890","chic",57,48.6,2000-05-21,17.814285714,29.5,26.59469697,24.744318182 "4891","chic",67,56.4,2000-05-22,15.7,51.5,19.036067194,32.516908213 "4892","chic",69,52,2000-05-23,9.9,42,24.736330698,29.841994479 "4893","chic",68,42.2,2000-05-24,11.0125,59.142857143,33.985177866,26.201690821 "4894","chic",64,36.5,2000-05-25,9.1,56.5,29.275706671,26.544642857 "4895","chic",61,48.5,2000-05-26,18.4,58.5,17.315546772,38.584088164 "4896","chic",60,55.9,2000-05-27,26.6125,31.5,32.325757576,13.618055556 "4897","chic",55,52,2000-05-28,13.5,10.5,25.390151515,11.525 "4898","chic",56,47.4,2000-05-29,7,9.5,25.863636364,14.25 "4899","chic",65,61.4,2000-05-30,22.828571429,32.714285714,26.421143251,29.211476608 "4900","chic",67,64.8,2000-05-31,28,46.5,13.869729908,28.504370629 "4901","chic",73,65.5,2000-06-01,22.8,49,33.452902828,23.623445998 "4902","chic",60,52.8,2000-06-02,10.025,22,25.873966942,17.965277778 "4903","chic",55,44.9,2000-06-03,2.8,12,29.450757576,13.118055556 "4904","chic",56,50.6,2000-06-04,12.8,20,28.031126482,14.449275362 "4905","chic",54,47,2000-06-05,9.575,15.142857143,30.64091508,13.004960317 "4906","chic",60,41.8,2000-06-06,8.7,36,20.423134507,28.65523637 "4907","chic",64,46.8,2000-06-07,13.25,65.5,33.561511858,30.248023715 "4908","chic",78,59.8,2000-06-08,17.228571429,55,50.619235837,24.581349206 "4909","chic",77,57.5,2000-06-09,18.3,76,55.761034256,24.19047619 "4910","chic",80,67,2000-06-10,15.9,82.5,32.049242424,16.166666667 "4911","chic",70,66.8,2000-06-11,10.671428571,21.142857143,16.022727273,10.575 "4912","chic",57,56,2000-06-12,9.2,11.5,8.5941558442,10.517532468 "4913","chic",69,63.8,2000-06-13,13.7,29,12.969038208,24.729296066 "4914","chic",72,64.6,2000-06-14,10.642857143,33,27.556735837,22.674107143 "4915","chic",70,58.8,2000-06-15,9.3,21,26.696894838,16.791666667 "4916","chic",67,60.3,2000-06-16,8.5,22.5,23.031785244,17.958031401 "4917","chic",60,45.3,2000-06-17,4.2,11.833333333,25.759469697,11.506944444 "4918","chic",65,46.9,2000-06-18,6,11.5,29.393939394,15.625 "4919","chic",66,57,2000-06-19,15.9,40.5,30.643939394,25.998106061 "4920","chic",74,68.6,2000-06-20,16.2625,31.5,21.42630854,19.654166667 "4921","chic",74,58,2000-06-21,6.5,16.5,26.475431189,15.430088933 "4922","chic",72,56.2,2000-06-22,7.2,23,28.597826087,16.611111111 "4923","chic",71,61.7,2000-06-23,14.228571429,27.666666667,24.218050066,30.096906566 "4924","chic",71,67.5,2000-06-24,9.4,23.5,22.761363636,17.361111111 "4925","chic",75,65.1,2000-06-25,16.45,25.5,29.922348485,20.555555556 "4926","chic",72,63.9,2000-06-26,9.925,19,22.381198347,22.157738095 "4927","chic",68,52.6,2000-06-27,8.7,20.5,19.686264822,22.496031746 "4928","chic",62,57,2000-06-28,11.4,30,10.016963109,29.578298513 "4929","chic",66,52.3,2000-06-29,10.2625,22.25,20.104990119,22.932971014 "4930","chic",66,54.7,2000-06-30,14.3,28,20.96355851,29.555555556 "4931","chic",71,61.2,2000-07-01,18.2,27,34.745388669,20.003321256 "4932","chic",74,70,2000-07-02,24.257142857,32,35.711380105,13.888888889 "4933","chic",68,64.7,2000-07-03,11.9,15,21.27363307,13.583333333 "4934","chic",70,64.5,2000-07-04,15.9,22,27.28030303,11.965277778 "4935","chic",76,65,2000-07-05,18.75,31.25,40.792572464,16.224418094 "4936","chic",74,64.2,2000-07-06,16.9,26.5,38.00994131,15.646464646 "4937","chic",70,58,2000-07-07,7.6,22,24.574769433,13.753385956 "4938","chic",73,64,2000-07-08,17.525,38,34.34469697,18.763888889 "4939","chic",81,70.7,2000-07-09,25.5,46.5,37.204545455,12.923611111 "4940","chic",73,68.3,2000-07-10,10.6,20.5,29.315719697,20.948918533 "4941","chic",69,64,2000-07-11,13.7125,25.166666667,32.617844203,11.827651515 "4942","chic",72,58.1,2000-07-12,14.2,25.5,36.794384058,17.683333333 "4943","chic",75,64.5,2000-07-13,18.1,36.5,33.199522398,25.795454545 "4944","chic",77,63.4,2000-07-14,11.514285714,23,32.657279315,18.29265873 "4945","chic",73,60.1,2000-07-15,9.9,16,26.871212121,11.902777778 "4946","chic",73,57.7,2000-07-16,14.4,21.5,22.685606061,19.3125 "4947","chic",77,63.4,2000-07-17,12.9,29.285714286,23.814888011,22.924873737 "4948","chic",66,54.3,2000-07-18,4.8,17,21.262763505,7.0645128824 "4949","chic",63,53.9,2000-07-19,5.35,11.5,19.413283028,11.021121542 "4950","chic",67,56.3,2000-07-20,10.25,36,17.387830878,22.229166667 "4951","chic",67,51.1,2000-07-21,9.1,19.5,16.585991907,20.159851622 "4952","chic",63,53.9,2000-07-22,6.9,16.5,17.15530303,13.59375 "4953","chic",63,49.7,2000-07-23,5.7571428571,13.714285714,17.59469697,11.545138889 "4954","chic",66,53.6,2000-07-24,12.1,24,29.728919631,17.416666667 "4955","chic",69,56.7,2000-07-25,17.9,37,30.779232543,30.227506039 "4956","chic",73,60.8,2000-07-26,26.2625,62,35.882493412,29.769065657 "4957","chic",77,65.8,2000-07-27,33,59,32.030961792,32.36489899 "4958","chic",74,65.5,2000-07-28,20.15,30,32.234346928,24.692330918 "4959","chic",73,65.9,2000-07-29,19.9625,27.285714286,48.208333333,10.170138889 "4960","chic",71,67.1,2000-07-30,25.3,20.5,35.313076416,11.026871981 "4961","chic",70,66.2,2000-07-31,17.5,24.5,17.7862768,24.4375 "4962","chic",73,67.2,2000-08-01,15.771428571,31.5,18.036127081,26.372997712 "4963","chic",76,64.6,2000-08-02,12.3,34,26.080368906,15.899255715 "4964","chic",63,54.5,2000-08-03,3.1,5.5,27.655632411,9.8298611111 "4965","chic",67,53.8,2000-08-04,11.014285714,27.2,22.742094862,25.184027778 "4966","chic",67,61.3,2000-08-05,17.7,33.5,23.535984848,25.15625 "4967","chic",78,70.6,2000-08-06,22.9,32,30.507305195,15.0625 "4968","chic",76,66.5,2000-08-07,13.4125,22,18.427772573,20.679473304 "4969","chic",77,69.4,2000-08-08,10.3,30,20.756587615,21.790260524 "4970","chic",79,67,2000-08-09,13.1,38.5,25.810387529,19.152146465 "4971","chic",74,62.3,2000-08-10,13.1125,26.2,22.85564888,22.298611111 "4972","chic",71,60.8,2000-08-11,11.8,23.5,17.583333333,20.024206349 "4973","chic",71,61,2000-08-12,12.6,25.5,23.505681818,22.270833333 "4974","chic",74,62.5,2000-08-13,13.5625,23,25.9375,22.104166667 "4975","chic",76,67.9,2000-08-14,28.4,50,30.888609414,25.590593434 "4976","chic",82,68.8,2000-08-15,29,53.5,38.968230168,21.005050505 "4977","chic",70,54.9,2000-08-16,6.0125,17.5,21.224967062,12.202445652 "4978","chic",68,62.3,2000-08-17,13.6,22,21.562711745,19.489772727 "4979","chic",67,59.5,2000-08-18,8.3,12.5,22.846545994,14.868055556 "4980","chic",64,56,2000-08-19,9.4875,19.5,17.395833333,12.795138889 "4981","chic",65,54,2000-08-20,8.7,11.5,27.837121212,12.979166667 "4982","chic",67,56.3,2000-08-21,19.1,27.5,29.004940711,23.159722222 "4983","chic",76,67.6,2000-08-22,29.825,41.166666667,28.753540843,26.785722474 "4984","chic",76,69,2000-08-23,27.6,46.5,28.412302372,24.118055556 "4985","chic",71,58.5,2000-08-24,20.6,29.5,25.22067014,21.807671958 "4986","chic",70,59,2000-08-25,24.9375,53.5,23.865942029,36.174818841 "4987","chic",73,64.6,2000-08-26,33.1,48,29.876893939,23.864583333 "4988","chic",72,64.3,2000-08-27,15.5,18.5,41.793560606,7.2955917874 "4989","chic",75,64.2,2000-08-28,23.6875,37.285714286,31.251893939,20.611111111 "4990","chic",77,68.7,2000-08-29,33.7,44.5,28.352025692,18.816919192 "4991","chic",77,70.6,2000-08-30,41.7,59,29.678853755,19.30298913 "4992","chic",80,68.2,2000-08-31,34.65,56.5,35.470772947,30.799094203 "4993","chic",80,69,2000-09-01,31.3,57.5,40.819275833,32.7 "4994","chic",79,67.3,2000-09-02,15.6,31.5,37.386574074,20.308333333 "4995","chic",77,66.8,2000-09-03,18.771428571,33.714285714,36.282407407,16.920833333 "4996","chic",66,55.1,2000-09-04,4.9,9,24.409722222,6.1583333333 "4997","chic",63,45.2,2000-09-05,3.9,12.5,29.873655029,10.993400621 "4998","chic",61,48.4,2000-09-06,13.5625,30.5,24.777355072,24.058020422 "4999","chic",74,60.5,2000-09-07,20.4,48,26.027083333,29.435833333 "5000","chic",75,66.8,2000-09-08,20.2,42,14.951449275,29.669191919 "5001","chic",76,67.4,2000-09-09,17.75,26.714285714,18.239583333,17.6875 "5002","chic",78,70.5,2000-09-10,13.4,20,13.829166667,13.572916667 "5003","chic",75,67.9,2000-09-11,15.55,37,20.094655797,19.39614899 "5004","chic",63,52.9,2000-09-12,7.6428571429,16.5,17.416666667,20.193014706 "5005","chic",63,49.7,2000-09-13,13.7,41.5,11.55615942,35.01876294 "5006","chic",65,52.5,2000-09-14,8.75,23.5,18.606966403,27.326388889 "5007","chic",56,40.1,2000-09-15,5.25,13.142857143,12.659090909,19.977807971 "5008","chic",56,41,2000-09-16,6.9,14.5,13.820075758,23.791666667 "5009","chic",68,47.7,2000-09-17,10.9,25,27.945322793,22.972222222 "5010","chic",69,53.2,2000-09-18,18.071428571,57,23.710968379,41.39794686 "5011","chic",75,51.1,2000-09-19,17.4,69.5,39.623652533,30.532828283 "5012","chic",58,53,2000-09-20,10.9,21.5,9.2270256917,23.494565217 "5013","chic",54,40.5,2000-09-21,6.3125,17,14.848020721,18.939141414 "5014","chic",58,51.3,2000-09-22,15,27,7.4078557312,26.136926329 "5015","chic",63,58.2,2000-09-23,13.1,13.5,12.359354414,16.839975845 "5016","chic",53,46.2,2000-09-24,3.875,4.5,22.507575758,8.2083333333 "5017","chic",49,40.2,2000-09-25,6.6,7,17.207509881,15.488518728 "5018","chic",56,41.2,2000-09-26,12.3,28.5,10.170364714,31.640782828 "5019","chic",59,46.6,2000-09-27,9.925,22,15.378129117,21.724637681 "5020","chic",55,41.1,2000-09-28,8.8,16,15.248697449,17.535326087 "5021","chic",61,42.1,2000-09-29,11.6,37.5,10.217852437,28.962911726 "5022","chic",65,48.1,2000-09-30,16.15,47.5,24,22.92 "5023","chic",72,50.7,2000-10-01,21.5,65,47.092753623,15.038043478 "5024","chic",69,53.8,2000-10-02,17.1,46,29.193939394,23.296969697 "5025","chic",59,49.7,2000-10-03,14.2375,30,14.379018445,20.650098814 "5026","chic",57,47.1,2000-10-04,4.8,10,27.580797101,12.107971014 "5027","chic",52,48.2,2000-10-05,8.1,13.5,16.84990942,18.210177866 "5028","chic",41,29.4,2000-10-06,8.3875,14.5,14.415439723,19.394927536 "5029","chic",40,26.7,2000-10-07,5.3,13,10.846014493,15.85 "5030","chic",39,26.6,2000-10-08,4.6,8,12.427083333,16.370175439 "5031","chic",44,25.9,2000-10-09,10.366666667,18.285714286,7.8063405797,29.331521739 "5032","chic",49,27,2000-10-10,17.4,33.5,7.6597002635,31.539530397 "5033","chic",53,30.2,2000-10-11,16,52.5,8.775,39.419047619 "5034","chic",58,36.3,2000-10-12,16.1,79,20.067267787,39.757954545 "5035","chic",66,39.6,2000-10-13,17.9,81,29.013315217,32.541666667 "5036","chic",67,49.3,2000-10-14,19.4,54.5,24.922916667,31.041666667 "5037","chic",55,47.6,2000-10-15,11.428571429,19.571428571,17.052083333,17.529166667 "5038","chic",51,46.6,2000-10-16,14.8,27,15.569565217,19.805797101 "5039","chic",52,45.5,2000-10-17,19.7,28.5,10.014204545,26.255952381 "5040","chic",54,45.7,2000-10-18,23.828571429,57.5,9.2684782609,37.993181818 "5041","chic",62,47.3,2000-10-19,14.45,45.5,12.80111166,35.744746377 "5042","chic",66,49.1,2000-10-20,18.2,57,22.837096509,35.103571429 "5043","chic",58,50.3,2000-10-21,19.771428571,39,20.65625,22.891666667 "5044","chic",59,51.8,2000-10-22,26.05,35,11.641485507,24.282608696 "5045","chic",65,60.5,2000-10-23,39.8,55.5,3.1515151515,37.191666667 "5046","chic",63,60.3,2000-10-24,34.185714286,31.5,10.174365942,22.916666667 "5047","chic",62,57.9,2000-10-25,26.4,33,11.79384058,23.860079051 "5048","chic",68,58.3,2000-10-26,41.4,65.5,18.045380435,32.055434783 "5049","chic",61,53.4,2000-10-27,21.214285714,29.714285714,15.250905797,19.826315789 "5050","chic",50,41.4,2000-10-28,4,8.5,23.34375,10.283333333 "5051","chic",46,36.8,2000-10-29,10.9,23.5,16.375,17.029166667 "5052","chic",50,32.7,2000-10-30,12.414285714,24,11.066485507,28.008333333 "5053","chic",59,37.6,2000-10-31,13.85,36.5,5.4569746377,30.641666667 "5054","chic",63,44.6,2000-11-01,18.95,38.5,7.8472222222,32.234649123 "5055","chic",55,48.6,2000-11-02,20.542857143,31.666666667,5.6805555556,26.637681159 "5056","chic",48,34.8,2000-11-03,9.35,30,7.4414251208,25.871343874 "5057","chic",46,31.4,2000-11-04,11.25,28.5,6.7192028986,28.349637681 "5058","chic",46,31,2000-11-05,12.071428571,26,14.308080808,24.694474153 "5059","chic",49,38,2000-11-06,15.65,30,18.612922705,19.182291667 "5060","chic",49,41.9,2000-11-07,12.25,13.5,4.8617149758,16.009922596 "5061","chic",40,31.5,2000-11-08,10.1,17.714285714,3.0060386473,21.739583333 "5062","chic",39,37,2000-11-09,8.3,10.5,4.8562801932,17.02513587 "5063","chic",37,31.6,2000-11-10,17.05,17.5,3.5694444444,19.75 "5064","chic",38,32.1,2000-11-11,18.625,22,4.9305555556,21.989583333 "5065","chic",45,37.3,2000-11-12,16.5,14.5,5.7361111111,17.578125 "5066","chic",36,29.7,2000-11-13,NA,16,3.8333333333,17.03125 "5067","chic",32,26.4,2000-11-14,10.866666667,13.571428571,7,16.305871212 "5068","chic",31,23.6,2000-11-15,NA,26.5,7.5416666667,24.258928571 "5069","chic",36,29.2,2000-11-16,14.85,26.5,4.904589372,18.32798913 "5070","chic",30,20.8,2000-11-17,13.114285714,15,8.3490338164,19.902626812 "5071","chic",27,18.3,2000-11-18,15.5,27,12.222222222,15.948822464 "5072","chic",30,22,2000-11-19,10.9,17.5,11.208333333,16.791666667 "5073","chic",24,17.9,2000-11-20,10.025,20.428571429,10.215909091,16.132102273 "5074","chic",19,8,2000-11-21,11,24,10.722222222,25.378968254 "5075","chic",22,11,2000-11-22,24.7,30,4.7916666667,32.479166667 "5076","chic",29,17,2000-11-23,26.6,33,4.2916666667,34.21875 "5077","chic",32,19.2,2000-11-24,28.2,34,3.788647343,33.384057971 "5078","chic",38,32.6,2000-11-25,17.75,28,7.375,24.786458333 "5079","chic",39,36.6,2000-11-26,20.014285714,23.285714286,1.0416666667,19.010416667 "5080","chic",34,30.5,2000-11-27,41.7,40.5,1.1388888889,19.360054348 "5081","chic",34,29.7,2000-11-28,20.45,28.5,2.6944444444,23.166666667 "5082","chic",35,33.1,2000-11-29,19.3625,21,1.3194444444,22.303977273 "5083","chic",34,30.7,2000-11-30,16.75,16.5,4.8712121212,23.851222826 "5084","chic",34,24.8,2000-12-01,3.95,7,21.166666667,17.866666667 "5085","chic",31,21.6,2000-12-02,3.9142857143,6.4285714286,27.708333333,15.525 "5086","chic",28,19.3,2000-12-03,13.2,16,6.1388888889,31.409848485 "5087","chic",32,24,2000-12-04,18.05,30.5,6.125,21.114393939 "5088","chic",21,2.8,2000-12-05,7.36,18,13.207125604,22.97173913 "5089","chic",15,8,2000-12-06,18.1,23,4.8333333333,25.436471861 "5090","chic",25,23.5,2000-12-07,27.6,26.5,1.7741545894,25.321212121 "5091","chic",18,11.8,2000-12-08,20.2625,30,7.0694444444,27.616666667 "5092","chic",16,13.1,2000-12-09,26.5,37.5,3.1944444444,35.258333333 "5093","chic",30,24.8,2000-12-10,24.45,27,2.4444444444,23.125 "5094","chic",23,21.2,2000-12-11,7.86,14,15.569444444,18.483333333 "5095","chic",4,0.3,2000-12-12,25.1,28,8.2361111111,32.116666667 "5096","chic",8,7.9,2000-12-13,23.4,37,3.9335748792,34.745243544 "5097","chic",17,17.1,2000-12-14,29.575,33.571428571,2.6527777778,41.783333333 "5098","chic",17,17.4,2000-12-15,39.65,39,1.4631642512,35.46884058 "5099","chic",25,27,2000-12-16,20.55,16.5,1.2083333333,26.041666667 "5100","chic",8,0.6,2000-12-17,12.957142857,18.5,13.416666667,16.116666667 "5101","chic",8,3.5,2000-12-18,24.75,27.5,3.6041666667,33.525 "5102","chic",14,9.2,2000-12-19,14.15,25.5,6.7916666667,35.133135705 "5103","chic",6,4.7,2000-12-20,24.157142857,38.571428571,3.1657608696,39.00877193 "5104","chic",6,0.1,2000-12-21,19.3,35,10.923913043,24.349130435 "5105","chic",-1,-7.1,2000-12-22,16.7,24.5,7.7916666667,30.888043478 "5106","chic",8,5.1,2000-12-23,23.233333333,33,4.6041666667,35.160869565 "5107","chic",5,-1.4,2000-12-24,21.7,35.5,8.9791666667,31.766666667 "5108","chic",5,-1.7,2000-12-25,18.25,40.5,4.5,41.8 "5109","chic",11,9.2,2000-12-26,20.1,25.833333333,6.9375,36.85 "5110","chic",12,7.6,2000-12-27,27.25,38,5.0833333333,33.022463768 "5111","chic",13,9,2000-12-28,21.55,31.5,7.2708333333,36.125774045 "5112","chic",21,16.9,2000-12-29,17.366666667,23,11.708333333,33.303787879 "5113","chic",27,23,2000-12-30,6.2,8.5,17.145833333,23.916666667 "5114","chic",16,16.3,2000-12-31,14.45,10.5,12.854166667,30.041666667 "5115","chic",15,9.9,2001-01-01,18.633333333,28.2,7.2708333333,37.041666667 "5116","chic",12,6.1,2001-01-02,27.1,26,4.9753787879,43.004464286 "5117","chic",18,18.3,2001-01-03,27.2,30,5.9166666667,31.8125 "5118","chic",25,21.3,2001-01-04,25,25,7.625,30.75 "5119","chic",29,23.7,2001-01-05,11.05,24,9.2780797101,31.328598485 "5120","chic",25,19.4,2001-01-06,18.4,22,6,33.239583333 "5121","chic",28,22.8,2001-01-07,15.766666667,21.8,8.625,27.75 "5122","chic",19,13,2001-01-08,7.5,17,7.9791666667,34.479166667 "5123","chic",17,11.4,2001-01-09,26,NA,7.6041666667,36.0625 "5124","chic",26,19.1,2001-01-10,26.65,31,4.75,35.721590909 "5125","chic",29,23.7,2001-01-11,37.45,36,2.1974637681,42.041990166 "5126","chic",30,29.3,2001-01-12,41.1,35,1.8623188406,40.528532609 "5127","chic",34,31.6,2001-01-13,30.3,31.833333333,4.5833333333,27.635416667 "5128","chic",34,33.9,2001-01-14,28,22,0.5,26.1875 "5129","chic",33,31.4,2001-01-15,19.2,13.5,1.5833333333,17.510416667 "5130","chic",29,25,2001-01-16,23.58,15,4.25,23.964583333 "5131","chic",23,19.3,2001-01-17,27.4,30,4.4375,30.495535714 "5132","chic",25,20.6,2001-01-18,34.7,43,4.3822463768,31.30298913 "5133","chic",22,17.8,2001-01-19,18.1375,26,8.0461956522,27.96875 "5134","chic",18,9.9,2001-01-20,12.65,20,10.625,29.4375 "5135","chic",17,10.5,2001-01-21,30.6,34,5.1458333333,30.90625 "5136","chic",18,14.6,2001-01-22,49.471428571,68,3.125,43.677083333 "5137","chic",28,22.7,2001-01-23,45.7,45,3.1875,36.792045455 "5138","chic",22,16.6,2001-01-24,19.1,31,8.1534090909,33.667860672 "5139","chic",19,11,2001-01-25,16.5,28.5,7.1585144928,34.682017544 "5140","chic",26,21.7,2001-01-26,24,34,4.625,28.770833333 "5141","chic",21,12.5,2001-01-27,11.95,14.5,19.0625,21.78125 "5142","chic",22,15.2,2001-01-28,23.457142857,29,7.4583333333,30.614583333 "5143","chic",36,33,2001-01-29,26.8,31,4.8522727273,29.042748918 "5144","chic",36,33.6,2001-01-30,17.15,11,6.25,34.385416667 "5145","chic",31,29,2001-01-31,24.066666667,24.333333333,4.9990942029,26.037878788 "5146","chic",18,15.3,2001-02-01,21.7,29,10.645833333,28.483734403 "5147","chic",5,-1.7,2001-02-02,22,32.5,10.479166667,25.065217391 "5148","chic",20,16.4,2001-02-03,17.175,25.5,5.0833333333,23.8125 "5149","chic",30,29,2001-02-04,26.75,18,4.5833333333,28.604166667 "5150","chic",29,24.4,2001-02-05,32.95,35,5.4565217391,28.088068182 "5151","chic",28,25.3,2001-02-06,30.171428571,36.5,5.8632246377,33.991666667 "5152","chic",26,24.7,2001-02-07,47.5,34,4.7291666667,38.598755411 "5153","chic",44,42.2,2001-02-08,39.5,44.5,5.1875,35.259057971 "5154","chic",37,35.9,2001-02-09,12.74,22.5,14.875,23.890398551 "5155","chic",16,7.2,2001-02-10,10.45,16.5,15.863970588,25.057971014 "5156","chic",19,12.4,2001-02-11,12.85,19,14.074404762,23.751893939 "5157","chic",29,23.2,2001-02-12,22.5375,29,6.1458333333,26.697916667 "5158","chic",35,29.7,2001-02-13,37.3,34,7.1739130435,29.547916667 "5159","chic",33,31.1,2001-02-14,22.8,18.5,10.1875,22.182871024 "5160","chic",29,23.9,2001-02-15,15.071428571,12,23.854166667,18.55932971 "5161","chic",23,17.3,2001-02-16,20.35,23,16.5625,28.982336957 "5162","chic",13,0.3,2001-02-17,10.1,11,16.979166667,19.646286232 "5163","chic",18,6.1,2001-02-18,9.475,16.4,17.5,18.875 "5164","chic",35,26.2,2001-02-19,22.8,64,10.5,22.819293478 "5165","chic",27,17.1,2001-02-20,28.65,30,18.75,30.501488095 "5166","chic",15,-0.9,2001-02-21,8.5375,16,23.195652174,20.681612319 "5167","chic",23,18.6,2001-02-22,20.3,21.5,13.416666667,23.71875 "5168","chic",24,14.8,2001-02-23,18.1,23.5,25.416666667,24.235548419 "5169","chic",43,35.7,2001-02-24,28.675,31.5,9.5625,21.09375 "5170","chic",42,29.1,2001-02-25,10,12,25.270833333,11.614583333 "5171","chic",31,22,2001-02-26,22.1,21,18.72826087,28.454257246 "5172","chic",23,8.2,2001-02-27,9.9833333333,11,19.558712121,24.554924242 "5173","chic",20,2,2001-02-28,6.8,18,15.282608696,26.479166667 "5174","chic",31,15.5,2001-03-01,7.2,27,14.875,25.769886364 "5175","chic",35,29,2001-03-02,30.057142857,35,7.5208333333,30.25 "5176","chic",36,25.1,2001-03-03,47.4,49.5,6.1875,48.71875 "5177","chic",30,21,2001-03-04,11.3,14.5,23,20.653985507 "5178","chic",23,11.6,2001-03-05,7.3714285714,22.5,19.354166667,20.297348485 "5179","chic",28,17.1,2001-03-06,5.7,20,15.519021739,28.538496377 "5180","chic",33,19.2,2001-03-07,15.3,31,17.291666667,28.930555556 "5181","chic",31,21.7,2001-03-08,16.557142857,25,22.294642857,27.116185897 "5182","chic",31,18,2001-03-09,10.2,19.5,13.625,32.747282609 "5183","chic",34,25,2001-03-10,22.95,45.5,16.833333333,33.177083333 "5184","chic",33,23.5,2001-03-11,10.728571429,9,29.125,14.010416667 "5185","chic",40,34.2,2001-03-12,24.7,31.5,10.354166667,25.345643939 "5186","chic",37,29.7,2001-03-13,24.3,18.5,22.895833333,21.287878788 "5187","chic",38,32.9,2001-03-14,15,20,14.391304348,32.673913043 "5188","chic",39,35.7,2001-03-15,20.05,17,20.236111111,21.229166667 "5189","chic",32,30,2001-03-16,14.6,7,33.277777778,16.854166667 "5190","chic",32,24.5,2001-03-17,7.54,6,30.305555556,21.72192029 "5191","chic",32,21.5,2001-03-18,11.5,16.5,25.083333333,30.895833333 "5192","chic",36,23.1,2001-03-19,16.15,23,24.925505051,35.270833333 "5193","chic",38,25.2,2001-03-20,15.95,28.833333333,27.971618357,32.845561594 "5194","chic",41,26.6,2001-03-21,22.9,34.5,25.995772947,36.21577381 "5195","chic",42,33.4,2001-03-22,36.05,39,18.152777778,41.739912281 "5196","chic",42,30.7,2001-03-23,27.2,32.5,21.277777778,26.677083333 "5197","chic",29,12.6,2001-03-24,11.65,20.5,28.527777778,15.1875 "5198","chic",22,7.8,2001-03-25,8.2,24,20.847222222,14.020833333 "5199","chic",25,11.1,2001-03-26,10.025,16.333333333,14.791666667,22.678743961 "5200","chic",32,18.8,2001-03-27,14.3,20.5,16.720410628,31.552083333 "5201","chic",36,22.2,2001-03-28,25.2,45,19.354468599,35.208333333 "5202","chic",41,32.1,2001-03-29,34.575,37,21.373682477,30.944444444 "5203","chic",42,31.9,2001-03-30,40.3,49,26.569444444,28.305555556 "5204","chic",46,34.9,2001-03-31,38.4,44.5,21.611111111,25.944444444 "5205","chic",40,24.4,2001-04-01,10.685714286,13.666666667,25.795833333,22.027777778 "5206","chic",45,27.2,2001-04-02,21.75,37.5,15.578030303,39.541666667 "5207","chic",41,32.5,2001-04-03,20.55,17,37.998550725,19.936111111 "5208","chic",42,30.9,2001-04-04,27.5875,31,28.775,28.488095238 "5209","chic",48,37.4,2001-04-05,30.4,55,16.023369565,39.263888889 "5210","chic",53,51.6,2001-04-06,38.9,39,11.909848485,25.020833333 "5211","chic",64,48.8,2001-04-07,14.2375,43.833333333,32.404166667,17.614583333 "5212","chic",61,41.7,2001-04-08,10.5,22.5,34.483333333,19.510416667 "5213","chic",52,43.3,2001-04-09,11,22.5,26.871376812,22.018568841 "5214","chic",47,43.8,2001-04-10,25.575,24.5,13.951811594,20.809659091 "5215","chic",64,58,2001-04-11,16.4,24,15.678442029,20.885416667 "5216","chic",57,40.4,2001-04-12,5.9,38,30.680747694,14.510281385 "5217","chic",48,36.4,2001-04-13,9.075,24.666666667,20.616666667,27.510416667 "5218","chic",52,35.1,2001-04-14,15.4,26,25.554166667,31.591856061 "5219","chic",49,39.5,2001-04-15,8.1,21.5,39.866666667,15.96875 "5220","chic",36,24,2001-04-16,8.0285714286,17,26.267753623,18.40625 "5221","chic",38,24,2001-04-17,6.95,14.5,29.657971014,21.903679654 "5222","chic",41,24.4,2001-04-18,16.4,33,16.329528986,41.640398551 "5223","chic",51,31.7,2001-04-19,13.2,37.4,28.254347826,32.465909091 "5224","chic",64,54.5,2001-04-20,17.3,56,34.233333333,21.541666667 "5225","chic",69,58.8,2001-04-21,13.6,44.5,29.225,15.145833333 "5226","chic",65,55.5,2001-04-22,13.828571429,30,23.558333333,17.489583333 "5227","chic",58,50.2,2001-04-23,10.85,53,25.735507246,13.393568841 "5228","chic",52,31.1,2001-04-24,10.4,21,27.953639657,25.510416667 "5229","chic",51,38.3,2001-04-25,13.157142857,25.4,19.159782609,37.823563665 "5230","chic",61,43.3,2001-04-26,11.8,63.5,31.225115283,28.858630952 "5231","chic",52,32.5,2001-04-27,7.9,17,35.899275362,21.895833333 "5232","chic",53,35.8,2001-04-28,10.528571429,18.5,29.233333333,24.4375 "5233","chic",61,34.5,2001-04-29,10.4,28,35.325,22.989583333 "5234","chic",68,45.3,2001-04-30,17.7,65.5,36.858695652,33.03125 "5235","chic",73,53.2,2001-05-01,20.414285714,59.666666667,42.820092227,23.715291502 "5236","chic",73,53.4,2001-05-02,19.6,89.5,36.700362319,24.25 "5237","chic",72,52.6,2001-05-03,22.7,97.5,42.220289855,27.886363636 "5238","chic",55,46.2,2001-05-04,8.7875,17,33.520289855,20.692481884 "5239","chic",58,46.3,2001-05-05,8.1,18,30.7625,14.145833333 "5240","chic",65,48.4,2001-05-06,14.4,32.5,32.770833333,19.166666667 "5241","chic",60,54.1,2001-05-07,15.45,27.333333333,18.778804348,26.791666667 "5242","chic",62,45.3,2001-05-08,7.3,51.5,26.476268116,27.583333333 "5243","chic",67,46.1,2001-05-09,10.7,59,36.853689065,29.293560606 "5244","chic",70,55.8,2001-05-10,15.875,68,36.12192029,28.09469697 "5245","chic",54,50.2,2001-05-11,6.25,16,21.128442029,16.8 "5246","chic",48,33.3,2001-05-12,5.3,7.5,31.156884058,13.717028986 "5247","chic",53,33,2001-05-13,13.3875,31,22.975,28.325 "5248","chic",54,46.3,2001-05-14,10.4,42,20.002256258,34.991666667 "5249","chic",72,62.5,2001-05-15,17.1,43,30.133514493,29.479347826 "5250","chic",77,62.4,2001-05-16,25.35,41,33.364179842,27.705401845 "5251","chic",74,61.7,2001-05-17,21.9,46,24.329981884,40.907818459 "5252","chic",65,40,2001-05-18,9.9,20.5,37.377355072,18.361775362 "5253","chic",61,41.4,2001-05-19,8,21.5,36.170833333,19.8 "5254","chic",63,48.6,2001-05-20,11.9,23.5,41.000543478,20.573550725 "5255","chic",62,56.9,2001-05-21,13.6,23.5,24.217753623,19.958333333 "5256","chic",53,42.2,2001-05-22,6.6125,25,20.560869565,17.898188406 "5257","chic",54,43.5,2001-05-23,9.5,26,12.621362695,28.868073593 "5258","chic",51,45.9,2001-05-24,13.2,16.5,14.107588567,26.704166667 "5259","chic",51,44.7,2001-05-25,14.9,20.333333333,11.636070853,27.949275362 "5260","chic",48,44.3,2001-05-26,12.7,13.5,19.447061192,18.711594203 "5261","chic",55,49.2,2001-05-27,14.9,21,25.253220612,20.3 "5262","chic",59,51.8,2001-05-28,20.6375,23.5,22.587962963,26.358333333 "5263","chic",53,43.6,2001-05-29,7.8,11.5,20.622685185,23.25297619 "5264","chic",53,35.1,2001-05-30,4.8,11.5,27.71855334,18.038059947 "5265","chic",53,44.9,2001-05-31,13.271428571,26,22.494021739,21.697101449 "5266","chic",57,49.5,2001-06-01,11.2,15.5,24.214476285,23.099637681 "5267","chic",53,48,2001-06-02,6.25,8.5,22.770833333,15.125 "5268","chic",52,44.5,2001-06-03,4.825,5,15.425,9.6708333333 "5269","chic",51,44,2001-06-04,6.1,8.5,19.5875,11.467572464 "5270","chic",53,51.7,2001-06-05,18.8,19,12.000634058,20.2625 "5271","chic",57,54.4,2001-06-06,29.175,35.333333333,15.472282609,21.536189535 "5272","chic",59,53.2,2001-06-07,16.1,21.5,22.379166667,25.095833333 "5273","chic",61,51.6,2001-06-08,15.3,29,21.815942029,32.787318841 "5274","chic",66,55.7,2001-06-09,17.4875,43.5,29.429166667,35.516666667 "5275","chic",74,62,2001-06-10,18.2,35.5,42.854166667,16.266666667 "5276","chic",76,66.2,2001-06-11,23.2,50,34.754710145,29.734090909 "5277","chic",75,65.6,2001-06-12,16.2375,34.333333333,37.984873188,29.325 "5278","chic",80,69.5,2001-06-13,36.3,61,51.819836957,29.813768116 "5279","chic",80,68.5,2001-06-14,30.1,57.5,41.34280303,21.408333333 "5280","chic",70,62.1,2001-06-15,9.1875,25,19.973188406,24.133333333 "5281","chic",71,57.5,2001-06-16,7.8,24,32.616666667,21.625 "5282","chic",71,55.4,2001-06-17,11.3,27,34.622916667,25.816666667 "5283","chic",78,61.4,2001-06-18,13.45,36.5,48.324728261,21.878623188 "5284","chic",75,61.5,2001-06-19,13.7,39.5,46.477042161,18.469927536 "5285","chic",70,52.9,2001-06-20,14.65,19,30.08125,24.929058442 "5286","chic",62,54.9,2001-06-21,16.6625,22.5,23.385610766,28.537163561 "5287","chic",60,54.3,2001-06-22,14.2,20,20.4875,20.266666667 "5288","chic",62,52.8,2001-06-23,13.55,21,19.541666667,24.566666667 "5289","chic",66,55,2001-06-24,21.371428571,30.166666667,34.195833333,30.383333333 "5290","chic",72,58.9,2001-06-25,21.85,45.5,39.36548913,33.608333333 "5291","chic",74,57.9,2001-06-26,24.8,43,42.681538208,36.149275362 "5292","chic",75,61.1,2001-06-27,31.3,57.5,42.110144928,37.222101449 "5293","chic",75,62.9,2001-06-28,41.3,66,42.958333333,36.94 "5294","chic",77,63.9,2001-06-29,38.85,70.5,42.545833333,35.098550725 "5295","chic",78,64.9,2001-06-30,30.175,45.666666667,46.945833333,21.816666667 "5296","chic",64,52,2001-07-01,7.2,16,22.739583333,8.65 "5297","chic",62,42.7,2001-07-02,6.6,20.5,21.40625,17.641666667 "5298","chic",72,63.3,2001-07-03,9.3714285714,26,20.245108696,26.371325052 "5299","chic",78,58.8,2001-07-04,19,27.5,30.983333333,20.866666667 "5300","chic",64,49.2,2001-07-05,6.7,19.5,22.019021739,14.283333333 "5301","chic",66,49.7,2001-07-06,10.2625,22,26.062228261,24.902898551 "5302","chic",74,71.8,2001-07-07,18.15,34.5,28.014311594,20.166666667 "5303","chic",79,63.2,2001-07-08,14.3,26,23.096618357,24.183333333 "5304","chic",79,67.4,2001-07-09,22.6,36.5,27.064451581,31.742424242 "5305","chic",81,61.2,2001-07-10,17,35.5,33.704710145,27.344047619 "5306","chic",69,51.7,2001-07-11,5.45,10,24.964583333,13.838636364 "5307","chic",69,53.4,2001-07-12,8.1571428571,20.2,18.031826416,21.222348485 "5308","chic",68,50.9,2001-07-13,7.6,20,16.197233202,22.077608696 "5309","chic",74,50.4,2001-07-14,11.1,30.5,28.5125,27.675 "5310","chic",74,57.2,2001-07-15,19.971428571,47.5,38.2875,30.833333333 "5311","chic",75,60.5,2001-07-16,26.1,58,40.893115942,34.444480519 "5312","chic",79,70,2001-07-17,39,67.5,41.867424242,33.038636364 "5313","chic",78,72.9,2001-07-18,31.142857143,47.8,26.657287549,25.624374177 "5314","chic",77,73,2001-07-19,28.5,42,32.781776094,29.462318841 "5315","chic",82,72.2,2001-07-20,32.3,58.5,33.003804348,33.675 "5316","chic",83,73.4,2001-07-21,21.985714286,39.5,30.441666667,30.291666667 "5317","chic",82,72,2001-07-22,19.3,25.5,29.3125,29.608333333 "5318","chic",83,75.1,2001-07-23,20.6,34,21.033313205,32.020833333 "5319","chic",79,71.8,2001-07-24,15.7125,32.4,33.297916667,25.05 "5320","chic",71,67.5,2001-07-25,10.4,20.5,30.728985507,16.483872549 "5321","chic",73,62.9,2001-07-26,9.2,11,27.952684453,12.196969697 "5322","chic",71,58.4,2001-07-27,10.9125,25,30.580434783,18.833333333 "5323","chic",72,66.2,2001-07-28,26.3,37.5,27.745454545,30.527272727 "5324","chic",78,70.3,2001-07-29,27.4,37.5,37.435416667,17.983333333 "5325","chic",80,69.9,2001-07-30,29.5125,48.166666667,41.087318841,23.325 "5326","chic",83,73.1,2001-07-31,27.1,45,42.145212215,26.918939394 "5327","chic",84,72.9,2001-08-01,43.7,81.5,45.177355072,27.442391304 "5328","chic",79,73.7,2001-08-02,15.085714286,38.5,22.363548137,33.087779974 "5329","chic",75,70.5,2001-08-03,15.2,23,26.983876812,21.963043478 "5330","chic",76,63.8,2001-08-04,10.3,20,23.439583333,21.108333333 "5331","chic",76,68.5,2001-08-05,21.8375,32.5,37.848007246,30.058333333 "5332","chic",81,68.1,2001-08-06,22.7,50,32.351630435,33.075 "5333","chic",85,73.7,2001-08-07,27.15,40.5,39.596648551,28.741666667 "5334","chic",85,72.6,2001-08-08,38.8375,70,37.980468154,27.627432712 "5335","chic",84,72.6,2001-08-09,38.2,66,36.73245224,26.467424242 "5336","chic",70,59.9,2001-08-10,6.35,13.5,23.507487923,13.817624224 "5337","chic",69,56,2001-08-11,5.7375,16.666666667,22.485416667,14.366666667 "5338","chic",72,59.3,2001-08-12,13.8,27,28.327717391,24.216666667 "5339","chic",67,58.6,2001-08-13,7.75,18,25.902083333,15.6125 "5340","chic",66,52.1,2001-08-14,6.8875,16.5,21.69384058,19.519202899 "5341","chic",67,56,2001-08-15,16.3,38.5,22.354174901,38.013095238 "5342","chic",68,63.7,2001-08-16,21.6,31,21.577140975,25.841666667 "5343","chic",70,55.6,2001-08-17,8.9875,20.5,15.377173913,21.83452381 "5344","chic",66,61,2001-08-18,10.8,22,12.295833333,29.475 "5345","chic",68,59.9,2001-08-19,7.2,16.5,23.035416667,12.5375 "5346","chic",69,55.8,2001-08-20,10.5125,36,12.116666667,20.870833333 "5347","chic",72,59.7,2001-08-21,19.9,48,17.939039855,27.9375 "5348","chic",77,68.1,2001-08-22,21.4,44,23.027173913,29.382142857 "5349","chic",72,67.7,2001-08-23,22,30.5,29.855451252,19.111742424 "5350","chic",74,67.7,2001-08-24,28.85,38,37.215711462,19.303787879 "5351","chic",74,70.2,2001-08-25,19.55,26,20.633333333,22.966666667 "5352","chic",75,65.1,2001-08-26,11.975,24.5,26.638888889,21.433333333 "5353","chic",74,65.2,2001-08-27,17.1,39.5,19.698268921,32.708333333 "5354","chic",68,57.3,2001-08-28,11.3,24.5,19.076599327,18.5625 "5355","chic",69,57.7,2001-08-29,15.175,32.8,22.836553945,25.857726332 "5356","chic",77,65.1,2001-08-30,16.6,36.5,29.165049172,28.27414361 "5357","chic",68,59.9,2001-08-31,6.1,21.5,18.858423913,16.206818182 "5358","chic",60,49.8,2001-09-01,4.6625,14,25.58125,11.325 "5359","chic",64,55,2001-09-02,11.65,27,21.054166667,26.191666667 "5360","chic",74,63,2001-09-03,18.05,37,34.022916667,19.991666667 "5361","chic",67,57.8,2001-09-04,5.65,14.6,22.188043478,13.195833333 "5362","chic",66,58.5,2001-09-05,8.95,31.5,23.651630435,22.016287879 "5363","chic",73,63.5,2001-09-06,20.4,43,32.727322134,29.404084321 "5364","chic",78,69.5,2001-09-07,12.475,20,20.802173913,16.993115942 "5365","chic",72,65.1,2001-09-08,10,30.5,28.129166667,15.3 "5366","chic",64,60.9,2001-09-09,8.1,21,11.1875,19.275 "5367","chic",65,50.6,2001-09-10,7.1714285714,19.4,12.96352108,22.308333333 "5368","chic",64,54.9,2001-09-11,13.6,28,15.599818841,31.836594203 "5369","chic",69,56.8,2001-09-12,14.4,51.5,26.439945652,34.848913043 "5370","chic",63,51.6,2001-09-13,5.1125,15.5,23.346195652,9.831884058 "5371","chic",59,43.8,2001-09-14,3.8,15,22.228820817,12.111758893 "5372","chic",58,46.8,2001-09-15,9.1,21,18.464583333,18.287121212 "5373","chic",60,49.3,2001-09-16,16.485714286,30.833333333,24.064583333,21.395833333 "5374","chic",59,54.3,2001-09-17,24.8,38.5,13.063405797,38.225 "5375","chic",62,58.3,2001-09-18,27.5,34.5,34.80923913,23.723188406 "5376","chic",62,59.9,2001-09-19,16,17,17.115398551,20.868144175 "5377","chic",63,54.6,2001-09-20,16.9,55,14.949818841,26.937060041 "5378","chic",62,58.5,2001-09-21,13.7,28.5,10.09384058,26.69384058 "5379","chic",63,54.4,2001-09-22,14.425,24.833333333,14.572916667,27.175 "5380","chic",58,54.5,2001-09-23,11,21.5,14.654166667,18.170833333 "5381","chic",50,38.2,2001-09-24,3.2,11,15.002091568,16.825296443 "5382","chic",49,34.4,2001-09-25,5.4142857143,15.5,13.772826087,23.9375 "5383","chic",60,40.2,2001-09-26,6,20.5,15.613823013,25.308625731 "5384","chic",54,44.9,2001-09-27,6,17,15.79990942,23.6875 "5385","chic",54,47.4,2001-09-28,5.4428571429,11.166666667,15.349818841,15.90530303 "5386","chic",56,48.8,2001-09-29,9.5,17,13.79375,20.916666667 "5387","chic",58,49.7,2001-09-30,16.7,37.5,11.808333333,31.9375 "5388","chic",64,52.7,2001-10-01,18.075,62,12.439406487,43.912202381 "5389","chic",64,53.7,2001-10-02,19.4,74.5,23.337478041,40.215909091 "5390","chic",66,51.5,2001-10-03,16.2,66.5,35.486010467,21.476973684 "5391","chic",55,48.7,2001-10-04,12.725,23.5,6.4537037037,24.864583333 "5392","chic",46,40.6,2001-10-05,8.7,18.5,5.2854907773,25.114583333 "5393","chic",40,27.9,2001-10-06,7.2,25.5,10.659722222,20.09375 "5394","chic",41,27.6,2001-10-07,12.2875,24,12.099537037,24.833333333 "5395","chic",52,37.9,2001-10-08,10.7,30.5,18.077898551,23.024003623 "5396","chic",65,47.6,2001-10-09,14.7,52,29.400462963,21.168560606 "5397","chic",60,56.6,2001-10-10,14.928571429,25.666666667,17.162037037,19.048295455 "5398","chic",58,47.1,2001-10-11,9.4,36,12.679750403,27.777462121 "5399","chic",56,52.3,2001-10-12,9.5,30.5,9.5833333333,24.59375 "5400","chic",60,57.2,2001-10-13,11.242857143,26.5,7.8726851852,21.166666667 "5401","chic",53,43.3,2001-10-14,5.8,12,13.972222222,13.583333333 "5402","chic",47,38.1,2001-10-15,6.4,32.5,6.0454545455,18.65625 "5403","chic",45,35.1,2001-10-16,6.3142857143,11.4,7.9962121212,20.002717391 "5404","chic",42,28.6,2001-10-17,7.05,41,8.6316425121,27.356060606 "5405","chic",51,34.7,2001-10-18,7.8,68.5,13.363005051,27.496376812 "5406","chic",53,35.4,2001-10-19,8.3142857143,39.5,10.5034219,31.25 "5407","chic",56,39.3,2001-10-20,10.1,58.5,13.12037037,33.65625 "5408","chic",59,46.2,2001-10-21,16.3,44.5,17.118055556,25.135416667 "5409","chic",56,53.3,2001-10-22,21.571428571,35.5,10.453374323,29.072916667 "5410","chic",62,57.7,2001-10-23,15.4,44,11.333132045,27.315340909 "5411","chic",52,50.3,2001-10-24,7.7,33,10.489346101,19.776041667 "5412","chic",38,26.1,2001-10-25,7.4125,34,17.846389621,12.592579522 "5413","chic",39,25.5,2001-10-26,6.5,22.5,14.15257649,19.0625 "5414","chic",38,23.6,2001-10-27,7,26,15.749295491,24 "5415","chic",43,28,2001-10-28,10.625,18.5,13.287037037,23.035778986 "5416","chic",52,37.5,2001-10-29,9.1,39.5,11.990740741,25.510416667 "5417","chic",50,43.9,2001-10-30,18.55,39.5,3.8758783487,23.833333333 "5418","chic",59,38,2001-10-31,16.9875,92.5,23.734034182,30.033143939 "5419","chic",62,50.4,2001-11-01,15.1,83,25.583937198,25.227128623 "5420","chic",56,36.8,2001-11-02,8.2,38.5,13.125,24.979166667 "5421","chic",51,33.6,2001-11-03,14.214285714,36.166666667,8.9722222222,34.864583333 "5422","chic",49,37.5,2001-11-04,10.3,35,14.378968254,24.260416667 "5423","chic",43,31,2001-11-05,19.9,59,4.3472222222,41.34077381 "5424","chic",48,31.1,2001-11-06,13.5875,75.5,5.6328502415,35.536458333 "5425","chic",56,43.3,2001-11-07,23.5,84.5,6.9329710145,41.519474638 "5426","chic",45,37.9,2001-11-08,15.8,42,9.625,26.341032609 "5427","chic",40,29.8,2001-11-09,14.7,32,5.6527777778,27.833333333 "5428","chic",49,33.4,2001-11-10,10.1,40,14.055555556,17.270833333 "5429","chic",43,32.5,2001-11-11,6,15.5,19.458333333,19.71875 "5430","chic",42,32.3,2001-11-12,20.0375,44.5,4.0555555556,34.21875 "5431","chic",52,33.4,2001-11-13,15.9,78.5,7.9722222222,32.030208333 "5432","chic",57,49.1,2001-11-14,38.9,95,9.1781400966,38.563155594 "5433","chic",61,53.5,2001-11-15,39.5125,59.666666667,11.111111111,31.740942029 "5434","chic",50,47,2001-11-16,27.05,46.5,8.259057971,24.65625 "5435","chic",52,47.4,2001-11-17,33.4,73,2.8333333333,29.630208333 "5436","chic",56,51.7,2001-11-18,38.075,62,5.6527777778,25.109375 "5437","chic",46,33.9,2001-11-19,10.7,28,11.529589372,23.160714286 "5438","chic",36,23.2,2001-11-20,6.7,29,7.5,26.222222222 "5439","chic",44,29.7,2001-11-21,11.5,29.6,4.7916666667,26.172101449 "5440","chic",48,30.3,2001-11-22,10.8,35.5,9.4861111111,22.437198068 "5441","chic",52,39.9,2001-11-23,15.3,34.5,12.328282828,26.820707071 "5442","chic",57,51.5,2001-11-24,10.142857143,27,19.173309179,15.276721014 "5443","chic",46,38.5,2001-11-25,4.4,12,9.0138888889,11.0625 "5444","chic",43,40.4,2001-11-26,17.7,35.5,6.2693236715,21.729166667 "5445","chic",44,37.6,2001-11-27,13.8375,21.166666667,4.9166666667,18.802083333 "5446","chic",39,34.3,2001-11-28,19.1,23.5,2.9747474747,19.18115942 "5447","chic",42,40.1,2001-11-29,5,12.5,2.9861111111,17.338541667 "5448","chic",45,42.5,2001-11-30,6.1,13,1.2361111111,16.476799242 "5449","chic",36,32.8,2001-12-01,19,33.5,7.4027777778,18.447916667 "5450","chic",39,35.4,2001-12-02,16.75,29,6.8611111111,24.833333333 "5451","chic",49,42.9,2001-12-03,20.1375,28.666666667,5.6274154589,32.226934524 "5452","chic",58,51.1,2001-12-04,14.3,58,6.9565217391,28.260416667 "5453","chic",56,50.1,2001-12-05,19.6,81.5,22.861111111,21.177083333 "5454","chic",44,30.9,2001-12-06,9.8125,33,8.5555555556,27.128787879 "5455","chic",41,34.1,2001-12-07,12.9,23.5,11.118686869,24.479166667 "5456","chic",39,32.7,2001-12-08,21.1,31.5,10.736111111,24.447916667 "5457","chic",31,21.9,2001-12-09,19.8125,23.166666667,5.6388888889,26.375 "5458","chic",39,23.1,2001-12-10,22.35,51,3.9027777778,33.994791667 "5459","chic",36,26.9,2001-12-11,29.1,55,3.077294686,38.493432971 "5460","chic",43,40.9,2001-12-12,27.2,51.5,1.7222222222,30.199810606 "5461","chic",39,36.6,2001-12-13,15,19,2.9633838384,22.322916667 "5462","chic",35,32.1,2001-12-14,27.5,36.5,2.2850241546,26.078125 "5463","chic",35,34.6,2001-12-15,22.542857143,25.8,4.2361111111,27.770833333 "5464","chic",42,41.8,2001-12-16,17.6,20,2.5694444444,25.411458333 "5465","chic",40,38.5,2001-12-17,14.8,17,3.0422705314,21.46875 "5466","chic",39,32.3,2001-12-18,19.7375,50.5,3.7427536232,26.566690163 "5467","chic",36,25.6,2001-12-19,10.7,22.5,8.6642512077,24.385416667 "5468","chic",33,18.8,2001-12-20,9.9,30,5.9722222222,29.467597167 "5469","chic",31,20,2001-12-21,18.1875,39,3.5416666667,36.513888889 "5470","chic",41,34.4,2001-12-22,11,24,10.731280193,24.245169082 "5471","chic",27,18,2001-12-23,9.8,46,17.134057971,10.125 "5472","chic",18,12,2001-12-24,7.8,34,19.513888889,14.013888889 "5473","chic",17,8.3,2001-12-25,10.2,23.5,15.25,15.805555556 "5474","chic",14,8.1,2001-12-26,11.6,41.5,8.7727821695,19.875 "5475","chic",23,17.1,2001-12-27,15.3125,28,11.902777778,18.819444444 "5476","chic",21,12.1,2001-12-28,12.1,37,14.277777778,22.617753623 "5477","chic",14,4.1,2001-12-29,8.2,32,17.569444444,18.145833333 "5478","chic",13,4.8,2001-12-30,11.525,27.5,15.069444444,15.479166667 "5479","chic",14,3.7,2001-12-31,17.4,31,11.191919192,22.047222222 "5480","chic",18,6,2002-01-01,16,51.5,5.7083333333,30.864583333 "5481","chic",21,11.9,2002-01-02,25.785714286,49.6,3.6944444444,41.875 "5482","chic",20,11.3,2002-01-03,20.1,50,5.847826087,35.735054348 "5483","chic",28,17.5,2002-01-04,16,71,8.4070048309,24.011775362 "5484","chic",32,25.9,2002-01-05,20.0875,40,4.3055555556,21.708333333 "5485","chic",29,22.6,2002-01-06,13.3,26.5,11.375,19.520833333 "5486","chic",22,12.4,2002-01-07,10.1,24,9.2336956522,25.31642316 "5487","chic",31,22,2002-01-08,14.7625,24.6,6.0277777778,23.03125 "5488","chic",47,33.7,2002-01-09,11.4,29.5,3.9722222222,22.022109684 "5489","chic",39,30.9,2002-01-10,13.15,23,5.7210144928,27.21875 "5490","chic",38,27,2002-01-11,12.125,19.5,10.625,21.802083333 "5491","chic",35,24.7,2002-01-12,10.4,16.5,10.375,20.770833333 "5492","chic",33,22.7,2002-01-13,8.9,19.5,7.5416666667,22.104166667 "5493","chic",35,30.8,2002-01-14,16.8,19.333333333,3.6805555556,21.555059524 "5494","chic",32,23.6,2002-01-15,18.6,17,10.277173913,18.510416667 "5495","chic",29,23.5,2002-01-16,15.45,22.5,5.0277777778,24.536849473 "5496","chic",19,14.4,2002-01-17,17.9375,21.5,8.0820707071,25.354166667 "5497","chic",16,6.5,2002-01-18,16.1,28.5,6.8333333333,30.15625 "5498","chic",20,12.4,2002-01-19,19.5,30,7.7361111111,30.614583333 "5499","chic",29,22.8,2002-01-20,20.7125,22.833333333,13.416666667,17.979166667 "5500","chic",31,25.7,2002-01-21,18.5,24.5,9.0416666667,23.708333333 "5501","chic",44,24.7,2002-01-22,11.7,37.5,10.361111111,27.333333333 "5502","chic",42,39.2,2002-01-23,18.7,38.5,8.0585748792,23.135416667 "5503","chic",36,24.2,2002-01-24,11.8,17.5,15.263285024,21.161355402 "5504","chic",39,20.7,2002-01-25,8.8,30,12.101449275,22.375 "5505","chic",44,25.6,2002-01-26,9.475,15.666666667,14.166666667,21.697916667 "5506","chic",49,30.3,2002-01-27,7,28,19.902777778,18.260416667 "5507","chic",41,33.5,2002-01-28,16.6,32,12.257246377,24.21875 "5508","chic",34,29.6,2002-01-29,9.5857142857,15,16.041666667,19.041666667 "5509","chic",32,28.3,2002-01-30,15.05,11.5,15.35205314,22.152626812 "5510","chic",32,NA,2002-01-31,8.65,9.5,12.022727273,21.270833333 "5511","chic",27,22.5,2002-02-01,9.2714285714,12,15.189975845,26.270833333 "5512","chic",21,17.7,2002-02-02,19.2,32,11.555555556,29.895833333 "5513","chic",27,20.1,2002-02-03,16.8,22,20.981884058,19.494112319 "5514","chic",18,5.8,2002-02-04,9.7571428571,21,14.89484127,27.699728261 "5515","chic",20,12.2,2002-02-05,18.8,38.5,7.9583333333,35.482638889 "5516","chic",29,19.2,2002-02-06,25,49.5,4.2291666667,36.64990942 "5517","chic",32,26.1,2002-02-07,34.857142857,41.166666667,8.2119565217,36.704545455 "5518","chic",36,28.3,2002-02-08,34.85,60,5.875,32.805871212 "5519","chic",40,32.9,2002-02-09,21.4,30.5,11.083333333,28.885416667 "5520","chic",37,29.3,2002-02-10,10.014285714,20,19.458333333,17.90625 "5521","chic",29,19.8,2002-02-11,8.1,28,15.125,22.875 "5522","chic",35,22,2002-02-12,6.05,22.5,20.270833333,17.25 "5523","chic",25,11,2002-02-13,7.7125,17.25,12.758152174,29.395780051 "5524","chic",38,21.7,2002-02-14,8.2,46.5,15.541666667,23.304924242 "5525","chic",39,27.6,2002-02-15,12.8,33.5,12.05736715,19.871212121 "5526","chic",37,24.5,2002-02-16,6.5857142857,13.5,17.791666667,18.291666667 "5527","chic",33,20.2,2002-02-17,5.8,11,20.458333333,19.65625 "5528","chic",38,22.9,2002-02-18,10.5,31,12.680555556,24.75 "5529","chic",42,39.9,2002-02-19,14.85,20.4,12.930555556,24.306914251 "5530","chic",44,42.8,2002-02-20,11.4,20,9.6666666667,16.145833333 "5531","chic",32,26.2,2002-02-21,8.4,12.5,13.937417655,21.559782609 "5532","chic",30,18.4,2002-02-22,8.4714285714,15,16.069444444,27.664855072 "5533","chic",36,24.8,2002-02-23,10.5,25,13.847222222,24.166666667 "5534","chic",50,31.6,2002-02-24,11.6,30.5,20.472222222,16.645833333 "5535","chic",42,30.9,2002-02-25,9.8285714286,18.333333333,20.777777778,17.117918314 "5536","chic",26,19.6,2002-02-26,8.4,26.5,17.833333333,20.239583333 "5537","chic",21,10.8,2002-02-27,9.2,26,18.315217391,23.66861631 "5538","chic",23,14,2002-02-28,14.9875,43.5,11.666666667,26.348484848 "5539","chic",26,17.2,2002-03-01,17.8,27.5,16.319444444,28.90625 "5540","chic",28,27.9,2002-03-02,15.9,19,12.916666667,32.166666667 "5541","chic",11,3.3,2002-03-03,7.2,15.5,30.125,14.885416667 "5542","chic",6,-0.6,2002-03-04,12.8,29,18.951086957,25.361607143 "5543","chic",23,17.9,2002-03-05,22.7,29,8.8007246377,36.723484848 "5544","chic",35,28.1,2002-03-06,21.942857143,20,16.138888889,30.010416667 "5545","chic",36,30.6,2002-03-07,33.7,41,16.196256039,25.213768116 "5546","chic",51,46.5,2002-03-08,13.6,12,18.972222222,23.166666667 "5547","chic",42,30.9,2002-03-09,9.4571428571,23.5,28.875,8.3020833333 "5548","chic",21,7.2,2002-03-10,7.55,20.5,27.550724638,12.041666667 "5549","chic",33,21,2002-03-11,13.35,33,11.169082126,30.697916667 "5550","chic",40,31.3,2002-03-12,25.325,53,6.7904589372,31.125 "5551","chic",48,37.6,2002-03-13,24.1,48,13.513888889,30.844655797 "5552","chic",50,41,2002-03-14,27,34,18.822463768,22.166666667 "5553","chic",47,31.5,2002-03-15,11.114285714,19.4,20.930555556,15.125 "5554","chic",37,26.3,2002-03-16,5.5,10.5,36.305555556,11.302083333 "5555","chic",38,30.4,2002-03-17,16.1,23.5,18.444444444,20.8125 "5556","chic",42,32,2002-03-18,20.925,23.5,15.926328502,25.412202381 "5557","chic",42,35.5,2002-03-19,30.45,41,9.1111111111,28.59375 "5558","chic",40,34,2002-03-20,16.8,20.5,19.888888889,27.083333333 "5559","chic",28,12.9,2002-03-21,10.928571429,20.166666667,22.875,16.403985507 "5560","chic",26,8.1,2002-03-22,10.7,34.5,24.180555556,14.734848485 "5561","chic",39,15.8,2002-03-23,12.1,39,26.75,17.927083333 "5562","chic",34,22.9,2002-03-24,7.5375,19,35.097222222,11.412137681 "5563","chic",28,19.1,2002-03-25,7.1,19,26.333333333,11.368506494 "5564","chic",32,23.7,2002-03-26,12.25,16,22.069444444,19.677083333 "5565","chic",36,22.1,2002-03-27,20.5625,31.166666667,14.388888889,33.911503623 "5566","chic",40,32.6,2002-03-28,31.5,52.5,10.338768116,30.59375 "5567","chic",41,39.3,2002-03-29,20.5,31.5,9.4166666667,34.385416667 "5568","chic",43,29.2,2002-03-30,8.225,12,20.361111111,20.177083333 "5569","chic",38,27.3,2002-03-31,10.6,17,19.513888889,22.15625 "5570","chic",34,27.1,2002-04-01,13.3,25,14.033854167,28.233695652 "5571","chic",39,34.5,2002-04-02,19.125,24.5,16.294384058,25.730654762 "5572","chic",35,28.1,2002-04-03,9.7,15,21.031311759,23.128787879 "5573","chic",31,25,2002-04-04,9,15,23.056272645,22.816123188 "5574","chic",33,24.8,2002-04-05,18.642857143,28,18.180593297,29.197916667 "5575","chic",34,22.8,2002-04-06,15.9,25,23.8671875,30.322916667 "5576","chic",42,34.5,2002-04-07,15.6,24,22.934895833,21.208333333 "5577","chic",49,48.3,2002-04-08,23.475,27.5,18.567708333,37.102272727 "5578","chic",43,38.8,2002-04-09,9.8,18,18.864356884,26.760416667 "5579","chic",49,35.6,2002-04-10,15.25,31,21.564302445,29.705492424 "5580","chic",63,41.3,2002-04-11,11.425,45,30.126006441,26.417874396 "5581","chic",57,51.4,2002-04-12,13.7,36,19.760649978,22.291666667 "5582","chic",52,45.5,2002-04-13,16,24,19.847222222,30.444444444 "5583","chic",59,50.3,2002-04-14,17.914285714,26.166666667,29.407407407,20.25 "5584","chic",75,59,2002-04-15,14.1,62,35.097222222,19.943495514 "5585","chic",78,60.8,2002-04-16,14.4,41,36.185401113,17.125 "5586","chic",75,58.1,2002-04-17,13.4625,47,28.634442249,24.339975845 "5587","chic",76,61.1,2002-04-18,13.7,67,29.638779095,21.868961353 "5588","chic",56,46.8,2002-04-19,5.7,22,30.391203704,17.583333333 "5589","chic",45,29.6,2002-04-20,4.1428571429,6.8,41.009259259,7.8020833333 "5590","chic",41,38.3,2002-04-21,5.7,9,30.247685185,10.197916667 "5591","chic",40,33.5,2002-04-22,6.8,8,25.566324477,22.460416667 "5592","chic",46,36.9,2002-04-23,17.4,22,20.129437491,32.925595238 "5593","chic",58,44.5,2002-04-24,11.5,19,26.656300322,21.848020186 "5594","chic",46,26.5,2002-04-25,7.8,NA,24.841888084,17.044642857 "5595","chic",45,25.7,2002-04-26,9.9,30.25,23.932266506,26.260416667 "5596","chic",48,37.4,2002-04-27,12.6,34,24.657407407,20.604166667 "5597","chic",50,41.4,2002-04-28,6.6,14,27.810185185,12.317708333 "5598","chic",51,37.8,2002-04-29,10.928571429,38,25.134048822,25.634848485 "5599","chic",54,33.8,2002-04-30,8.5,29,20.593699678,29.241666667 "5600","chic",53,35.3,2002-05-01,9.3,35,22.495791246,28.692391304 "5601","chic",49,35.3,2002-05-02,8.5125,13.833333333,31.228480457,18.099122807 "5602","chic",46,27,2002-05-03,4.3,15,20.905897746,22.7375 "5603","chic",52,34.6,2002-05-04,9.5,18,27.780092593,27.2125 "5604","chic",59,44.6,2002-05-05,10.325,16,33.784722222,18.233333333 "5605","chic",68,59.8,2002-05-06,11,17,26.401469404,24.65 "5606","chic",56,44.9,2002-05-07,6.4,7,27.555061484,13.945833333 "5607","chic",55,54.2,2002-05-08,16.225,23.8,14.67944847,19.90530303 "5608","chic",58,41.8,2002-05-09,7.35,28,25.611312399,14.004166667 "5609","chic",56,28.1,2002-05-10,9.3,37,31.418880837,23.25 "5610","chic",51,39.2,2002-05-11,14.55,29.5,32.846354167,21.054166667 "5611","chic",48,46.8,2002-05-12,10.7,17,24.020833333,20.083333333 "5612","chic",50,40.6,2002-05-13,9.3,16,27.634872273,22.710714286 "5613","chic",54,42.2,2002-05-14,12.3125,19.166666667,22.191525765,29.9375 "5614","chic",58,48.2,2002-05-15,12.7,59,33.633426658,24.978409091 "5615","chic",55,50.2,2002-05-16,8,21,22.449074074,21.418939394 "5616","chic",41,32.7,2002-05-17,2.9125,6,26.409506556,13.204166667 "5617","chic",44,32.5,2002-05-18,5.75,15,25.523148148,18.345833333 "5618","chic",46,35.6,2002-05-19,10.15,14.5,28.138888889,17.966666667 "5619","chic",41,30.1,2002-05-20,3.4857142857,7.6666666667,31.275042088,12.900595238 "5620","chic",45,29.8,2002-05-21,6.4,16,20.90942029,27.704166667 "5621","chic",55,37.6,2002-05-22,14.25,27,28.34863124,23.07442029 "5622","chic",65,52.4,2002-05-23,18.9875,56.5,33.765096618,24.296428571 "5623","chic",54,39.1,2002-05-24,6.7,7,24.063707729,14.116666667 "5624","chic",49,46,2002-05-25,11.3,13.5,16.372685185,17.9125 "5625","chic",55,45.4,2002-05-26,9.775,17,25.324074074,20.25 "5626","chic",64,51,2002-05-27,13.9,21.5,37.99537037,20.091666667 "5627","chic",69,57.6,2002-05-28,27.2,42,26.172659567,34.948106061 "5628","chic",73,62,2002-05-29,13.925,49,24.100140902,25.6 "5629","chic",75,63.7,2002-05-30,19.1,56,30.493055556,25.479744817 "5630","chic",77,56.4,2002-05-31,10.7,59.5,31.587962963,27.033333333 "5631","chic",76,53.1,2002-06-01,9.875,39.166666667,40.576388889,24.525 "5632","chic",62,45.6,2002-06-02,9.7,22,33.974537037,17.161904762 "5633","chic",62,56,2002-06-03,18.1,36.5,21.816383679,22.636956522 "5634","chic",65,64.1,2002-06-04,20.5625,35,8.3394360269,38.027898551 "5635","chic",56,53.9,2002-06-05,10.85,11,14.343699678,18.302717391 "5636","chic",58,51.8,2002-06-06,11.55,16,25.172641268,21.294047619 "5637","chic",64,53.1,2002-06-07,17.175,29,22.874899356,32.045833333 "5638","chic",71,58.6,2002-06-08,25,45,43.953703704,27.266666667 "5639","chic",72,59.6,2002-06-09,30.05,54,51.719907407,23.5875 "5640","chic",80,70.6,2002-06-10,18.6375,48,28.484500805,22.541666667 "5641","chic",76,69.5,2002-06-11,9.6,21,22.632045089,18.168506494 "5642","chic",64,60.1,2002-06-12,9.8,17,15.888257576,15.563744589 "5643","chic",60,57.2,2002-06-13,10.4375,20.833333333,13.197866345,17.770833333 "5644","chic",61,55.7,2002-06-14,7.1,15.5,15.753385302,24.066666667 "5645","chic",67,54.1,2002-06-15,7.6,13,26.527777778,16.358333333 "5646","chic",66,48.4,2002-06-16,6.4857142857,12.5,24.9296875,17.316666667 "5647","chic",67,53.5,2002-06-17,12.4,27.5,18.087296196,32.582971014 "5648","chic",70,55.7,2002-06-18,15.5,42,38.28493266,26.000181159 "5649","chic",75,60.6,2002-06-19,24.9625,47.666666667,45.01245471,29.975 "5650","chic",82,67.4,2002-06-20,33,80.5,47.426731079,30.767028986 "5651","chic",80,69,2002-06-21,31.3,67.5,37.351429147,38.541666667 "5652","chic",80,65.4,2002-06-22,35.4,75.5,46.625,35.158333333 "5653","chic",82,63.5,2002-06-23,42.5,65,54.880434783,30.039130435 "5654","chic",78,63.9,2002-06-24,34.2,88,54.448412698,37.985144928 "5655","chic",81,70.3,2002-06-25,23.9875,39.833333333,19.888468013,33.735984848 "5656","chic",79,66.4,2002-06-26,9.9,26.5,34.366545894,20.915422078 "5657","chic",74,64.3,2002-06-27,8.2,18,23.515096618,16.556521739 "5658","chic",74,60.3,2002-06-28,13.6625,29,17.310487118,25.416666667 "5659","chic",74,63.6,2002-06-29,21.8,37,30.550925926,27.616666667 "5660","chic",81,73.1,2002-06-30,20.95,38.5,39.455729167,18.516666667 "5661","chic",84,70.6,2002-07-01,20.042857143,65,23.174013688,19.308333333 "5662","chic",84,65.8,2002-07-02,21.6,69.5,22.778381643,20.235507246 "5663","chic",84,70,2002-07-03,28.7,95,36.378396739,31.369163026 "5664","chic",80,68.3,2002-07-04,16.6375,35.5,33.377604167,14.675 "5665","chic",75,60.7,2002-07-05,6.7,16.5,30.564814815,10.8 "5666","chic",75,61,2002-07-06,17.1,24.5,36.319444444,23.908333333 "5667","chic",77,64.6,2002-07-07,25.4125,44.6,51.143518519,27.779166667 "5668","chic",81,70.4,2002-07-08,33.1,64,45.349692578,27.678571429 "5669","chic",74,70.2,2002-07-09,12.3,32,31.561392915,16.886594203 "5670","chic",74,60.1,2002-07-10,9.9428571429,19,31.304045894,10.902355072 "5671","chic",69,52.9,2002-07-11,7.3,17,32.134963768,12.659090909 "5672","chic",68,53.5,2002-07-12,10.9,24.5,38.795153986,19.794565217 "5673","chic",70,53.4,2002-07-13,12.271428571,23.8,44.46875,21.508333333 "5674","chic",72,53,2002-07-14,17.1,27.5,45.119791667,30.616666667 "5675","chic",76,60.4,2002-07-15,26.3,51,42.839031339,44.93452381 "5676","chic",79,62.7,2002-07-16,25.528571429,63,42.097624799,36.008333333 "5677","chic",78,66.3,2002-07-17,40.9,91.5,40.225543478,40.655698287 "5678","chic",82,66.2,2002-07-18,38.85,72.5,44.980454911,26.069047619 "5679","chic",74,65.1,2002-07-19,20.375,34.833333333,27.375100644,18.2125 "5680","chic",76,66.7,2002-07-20,21.9,39,39.710648148,18.5875 "5681","chic",87,74.9,2002-07-21,21,35,42.178240741,15.108333333 "5682","chic",83,70.3,2002-07-22,15.5875,44,33.671296296,22.933333333 "5683","chic",70,57.4,2002-07-23,3,7.5,27.946155395,11.184963768 "5684","chic",71,52.6,2002-07-24,5.7,18.5,34.004528986,16.287121212 "5685","chic",73,64.8,2002-07-25,18.8,30.2,27.495571659,30.75 "5686","chic",79,71.7,2002-07-26,32.4,51.5,36.838264895,28.791666667 "5687","chic",80,73.8,2002-07-27,17.4,28,28.916666667,21.358333333 "5688","chic",81,74.6,2002-07-28,16.057142857,23.5,28.493055556,17.158333333 "5689","chic",77,71.4,2002-07-29,12.3,24.5,20.61763468,21.608333333 "5690","chic",80,68.9,2002-07-30,13.5,27.5,33.535929952,33.966238472 "5691","chic",82,68.1,2002-07-31,17.9875,30.833333333,34.353462158,34.478219697 "5692","chic",85,74,2002-08-01,21.3,56.5,39.983796296,26.822916667 "5693","chic",72,62.2,2002-08-02,6,11.5,31.24537037,17.518385781 "5694","chic",75,66.9,2002-08-03,16.4125,38.5,40.930555556,23.583333333 "5695","chic",82,72.1,2002-08-04,22.9,47.5,43.541666667,18.641666667 "5696","chic",77,68.4,2002-08-05,12.3,17,35.710648148,17.929166667 "5697","chic",69,56.6,2002-08-06,3.6375,11,23.565336334,9.5541666667 "5698","chic",67,54.9,2002-08-07,6.2,12,25.470410628,14.4875 "5699","chic",69,58.1,2002-08-08,8.9,20.5,29.193291612,19.005735931 "5700","chic",70,58.4,2002-08-09,16.5375,33.5,39.406782354,27.92 "5701","chic",74,62.6,2002-08-10,27.85,41.5,47.893518519,29.908333333 "5702","chic",80,67.4,2002-08-11,30.8,46,51.083333333,20.691666667 "5703","chic",79,68.6,2002-08-12,23.05,40,41.833067999,19.642857143 "5704","chic",76,70,2002-08-13,12.7,29.5,29.800925926,19.897134387 "5705","chic",70,63.8,2002-08-14,9.4,24.5,15.834641707,19.519264069 "5706","chic",74,68,2002-08-15,13.9125,39.5,25.544960474,19.225378788 "5707","chic",75,69,2002-08-16,12,24,14.042763158,22.983333333 "5708","chic",76,69.3,2002-08-17,12.9,32,23.513888889,12.491666667 "5709","chic",66,53.4,2002-08-18,7.7,19.166666667,24.506944444,17.883333333 "5710","chic",66,61.3,2002-08-19,9.2,12,19.390277778,19.079166667 "5711","chic",66,58,2002-08-20,10.4,22.5,19.707729469,25.419565217 "5712","chic",75,70,2002-08-21,23.075,41,31.357067047,21.029166667 "5713","chic",74,69.9,2002-08-22,10.7,16,25.506743156,26.3 "5714","chic",73,70.2,2002-08-23,18.35,18,20.383856683,22.961730072 "5715","chic",74,67.8,2002-08-24,16.6875,27.833333333,21.386574074,22.867300725 "5716","chic",74,67.7,2002-08-25,17.1,22.5,28.178240741,21.572916667 "5717","chic",74,65.6,2002-08-26,11.4,17,25.023148148,15.755208333 "5718","chic",74,68,2002-08-27,14.1125,23,32.817230274,16.119791667 "5719","chic",72,64.7,2002-08-28,10.8,20,27.601851852,13.652272727 "5720","chic",70,62.7,2002-08-29,13.6,24,38.27928744,19.507246377 "5721","chic",73,63.3,2002-08-30,20.528571429,35.4,42.206924316,22.629166667 "5722","chic",73,63.5,2002-08-31,24.3,36,45.997685185,21.391666667 "5723","chic",74,66.2,2002-09-01,31.4,45,37.787037037,24.566666667 "5724","chic",74,68.8,2002-09-02,22.171428571,46.5,43.800925926,14.370833333 "5725","chic",72,57.3,2002-09-03,8.9,17.5,25.372181965,20.189393939 "5726","chic",72,57,2002-09-04,8.6,34.5,21.158413849,27.596195652 "5727","chic",72,60.5,2002-09-05,7.9,24,25.239606207,18.859601449 "5728","chic",71,61,2002-09-06,21,33,31.682971014,37.279166667 "5729","chic",74,61.8,2002-09-07,31.95,59.5,38.82037037,40.058333333 "5730","chic",76,66,2002-09-08,44.042857143,65,42.884259259,39.625 "5731","chic",78,69.5,2002-09-09,39.4,70.5,29.062097424,45.258333333 "5732","chic",76,64.9,2002-09-10,25.4,75.5,27.186896135,29.116666667 "5733","chic",64,50.8,2002-09-11,7.1571428571,15.5,22.849738325,19.510416667 "5734","chic",64,52.6,2002-09-12,13.55,47,16.988489972,34.601490448 "5735","chic",64,55,2002-09-13,15.8,51,25.654468599,38.203804348 "5736","chic",68,57.3,2002-09-14,23.814285714,41,37.476851852,32.927083333 "5737","chic",63,56.4,2002-09-15,5.95,9,26.946759259,11.072916667 "5738","chic",62,51.9,2002-09-16,9.2,34,14.725845411,32.9375 "5739","chic",65,56.2,2002-09-17,20.5625,41.333333333,24.571814156,39.238095238 "5740","chic",71,66.1,2002-09-18,21.3,31,25.058501684,28.68305336 "5741","chic",76,71.5,2002-09-19,12.45,42,14.314640975,20.989583333 "5742","chic",67,66.6,2002-09-20,5.7142857143,40,9.6382850242,17.916666667 "5743","chic",69,56.7,2002-09-21,8.6,18,24.075520833,19.03125 "5744","chic",56,45.2,2002-09-22,5.25,12.5,17.817708333,18.916666667 "5745","chic",54,41.6,2002-09-23,7.6,21,17.328787879,26.805059524 "5746","chic",52,41.5,2002-09-24,5.25,15,18.284319646,22.677083333 "5747","chic",59,47.6,2002-09-25,10.45,37,18.415477236,27.52585639 "5748","chic",62,53.8,2002-09-26,29.914285714,53,21.468410326,36.554924242 "5749","chic",60,55.2,2002-09-27,13.5,21.5,27.17017663,20.88125 "5750","chic",62,57,2002-09-28,29.4,38,28.388020833,21.833333333 "5751","chic",72,63.7,2002-09-29,26.957142857,40.333333333,36.276041667,16.84375 "5752","chic",77,56.9,2002-09-30,19.5,56.5,36.564829193,22.575892857 "5753","chic",75,64.8,2002-10-01,23.7,45,25.544270833,31.870265152 "5754","chic",66,62.7,2002-10-02,15.2125,23,16.976675725,23.604166667 "5755","chic",61,58.5,2002-10-03,13.3,23.5,14.369678442,17.208333333 "5756","chic",63,59.3,2002-10-04,11.9,19,15.157155797,17.416666667 "5757","chic",55,44.2,2002-10-05,8.1625,17.666666667,13.270833333,20.364583333 "5758","chic",58,45.7,2002-10-06,7.5,14,23.1484375,15.5625 "5759","chic",48,33.4,2002-10-07,7.1,14.5,13.997395833,24.884769669 "5760","chic",56,37.4,2002-10-08,9.375,35.5,9.5892857143,30.895833333 "5761","chic",57,48.5,2002-10-09,15.6,44.5,9.5737401186,31.078598485 "5762","chic",62,51.1,2002-10-10,22.4,51.5,10.572916667,33.760416667 "5763","chic",61,50.6,2002-10-11,30.485714286,54.833333333,10.707087862,34.666666667 "5764","chic",61,54.1,2002-10-12,25.7,28.5,14.21875,21.472222222 "5765","chic",42,27.5,2002-10-13,5.2,9.5,15.559895833,17.416666667 "5766","chic",44,27.1,2002-10-14,10.114285714,27.5,10.169270833,29.166666667 "5767","chic",50,33.5,2002-10-15,11.6,30,11.127151268,29.27020202 "5768","chic",42,30.9,2002-10-16,8.6,12.5,14.832087862,26.602092352 "5769","chic",41,35.8,2002-10-17,11.7,20.5,6.2156929348,28.222222222 "5770","chic",49,42,2002-10-18,15.2,42,7.125,25.638888889 "5771","chic",42,32.4,2002-10-19,7.6,10,14.822916667,19.902777778 "5772","chic",41,31.2,2002-10-20,16.28,19,11.877604167,24.736111111 "5773","chic",45,35.3,2002-10-21,18.15,42,11.325520833,32.502525253 "5774","chic",44,34.8,2002-10-22,14.4,21,8.6073369565,23.838164251 "5775","chic",43,37.8,2002-10-23,8.0125,14.333333333,12.712991718,20.195652174 "5776","chic",44,38.3,2002-10-24,7.5,11,11.5936853,21.319444444 "5777","chic",45,43.2,2002-10-25,19.9,29,5.3697916667,21.634963768 "5778","chic",43,39.8,2002-10-26,15.8625,14.5,4.1953125,20.114583333 "5779","chic",42,31,2002-10-27,9.3,9,14.007612179,16.802083333 "5780","chic",44,36.3,2002-10-28,8.8,11,18.049689441,16.8125 "5781","chic",44,34.5,2002-10-29,7.875,12.333333333,18.148809524,16.257440476 "5782","chic",45,35,2002-10-30,7.4333333333,9,20.161684783,20.138134058 "5783","chic",40,32.1,2002-10-31,15.9,16,8.9827898551,26.125 "5784","chic",33,19.9,2002-11-01,11.475,18.5,11.789393939,21.934782609 "5785","chic",38,22.6,2002-11-02,10.8,21,11.041666667,21.822916667 "5786","chic",36,27.9,2002-11-03,19.2,20,6.9083333333,22.6875 "5787","chic",39,30,2002-11-04,25.485714286,36.666666667,6.9447826087,28.349702381 "5788","chic",38,35.4,2002-11-05,26.9,29.5,2.3854166667,28.740036232 "5789","chic",40,33.7,2002-11-06,26.6,27,8.3451086957,23.375 "5790","chic",44,35.6,2002-11-07,19.614285714,51.5,11.031702899,26.480460663 "5791","chic",56,36.7,2002-11-08,7.5,39,22.364583333,21.979166667 "5792","chic",58,52.7,2002-11-09,15.3,37,23.333333333,14.083333333 "5793","chic",51,53.1,2002-11-10,18.0625,26.5,14.729166667,12.46875 "5794","chic",39,34.5,2002-11-11,10.8,24,4.1770833333,16.59375 "5795","chic",40,30.5,2002-11-12,17.15,21,6.0406785244,22.958333333 "5796","chic",46,34.2,2002-11-13,15.5,36.5,6.7798913043,23.461309524 "5797","chic",47,37.9,2002-11-14,9.2,17.5,12.197916667,21.439764493 "5798","chic",38,28.6,2002-11-15,4.65,4,29.104166667,14.25 "5799","chic",34,25.8,2002-11-16,4.1,7.1666666667,27.364583333,14.447916667 "5800","chic",32,25.8,2002-11-17,10.9,11.5,14.635416667,25.072916667 "5801","chic",35,30.4,2002-11-18,27.65,36.5,2.884057971,33.195075758 "5802","chic",44,33.5,2002-11-19,17.885714286,22,5.4954710145,24.177083333 "5803","chic",44,34,2002-11-20,13.8,32.5,3.3020833333,30.40625 "5804","chic",39,32.8,2002-11-21,13.2,28.5,11.105072464,24.449275362 "5805","chic",31,24.9,2002-11-22,8.4875,15.5,12.458333333,28.350543478 "5806","chic",39,28.5,2002-11-23,14.6,22,8.0833333333,25.09375 "5807","chic",32,24.4,2002-11-24,7.1,10.5,10.697916667,19.364583333 "5808","chic",26,18.1,2002-11-25,9.5857142857,19.5,6.8645833333,29.489583333 "5809","chic",25,21.6,2002-11-26,22.35,25.5,2.7930253623,37.53422619 "5810","chic",22,16.8,2002-11-27,21.4,23,6.004076087,35.473214286 "5811","chic",24,20.2,2002-11-28,24.814285714,32.5,7.9479166667,23.614583333 "5812","chic",40,29.4,2002-11-29,6.2,17,12.447916667,15.114583333 "5813","chic",29,15.3,2002-11-30,4.7,15,22.645833333,11.90625 "5814","chic",25,9.8,2002-12-01,6.55,18,14.958333333,17.291666667 "5815","chic",29,22.2,2002-12-02,7.8,14.5,13.885416667,26.87594697 "5816","chic",19,14.6,2002-12-03,11.4,24,11.878623188,36.635416667 "5817","chic",19,12.8,2002-12-04,18.4625,35.666666667,5.125,44.468297101 "5818","chic",20,12.6,2002-12-05,20,24,9.3229166667,30.135416667 "5819","chic",21,13.6,2002-12-06,19.8,41,5.5018939394,25.827898551 "5820","chic",35,25.8,2002-12-07,20.528571429,25.5,7.3958333333,21.479166667 "5821","chic",22,10.9,2002-12-08,8.8,18.5,14.125,24.552083333 "5822","chic",20,10.3,2002-12-09,19.9,51,6.1512681159,40.920001647 "5823","chic",34,18.8,2002-12-10,20.8,43.5,3.875,38.21875 "5824","chic",32,17.4,2002-12-11,27.3,75,3.2432065217,47.760416667 "5825","chic",34,30,2002-12-12,28.65,30,2.0964673913,28.335037879 "5826","chic",36,33.3,2002-12-13,37.9375,35,3.4207427536,26.013392857 "5827","chic",35,30.1,2002-12-14,30.4,34.5,6.21875,20.145833333 "5828","chic",38,30,2002-12-15,13.8,19.5,12.239583333,16.458333333 "5829","chic",32,22.3,2002-12-16,6.3142857143,14,23.21875,16.713315217 "5830","chic",34,27.1,2002-12-17,16.6,27.5,8.8532608696,22.354166667 "5831","chic",46,47.5,2002-12-18,15.1,23,11.816123188,22.385416667 "5832","chic",45,36.1,2002-12-19,13.6875,17,7.0144927536,15.375 "5833","chic",32,26,2002-12-20,6.8,12,11.03125,12.614583333 "5834","chic",31,24.1,2002-12-21,8.5,13,14.71875,14.34375 "5835","chic",28,20.4,2002-12-22,9.0571428571,15,15.114583333,11.552083333 "5836","chic",28,16.6,2002-12-23,9.7,13.5,12.677083333,17.90625 "5837","chic",26,21.1,2002-12-24,13.7,15,11.354166667,25.53125 "5838","chic",26,22.4,2002-12-25,7.675,10,18.291666667,12.510416667 "5839","chic",24,18.5,2002-12-26,18.7,21.5,9.1666666667,19.743371212 "5840","chic",26,22.7,2002-12-27,25.9,32.5,4.8111413043,28.260416667 "5841","chic",31,28.2,2002-12-28,33.342857143,36.666666667,5.125,25.71875 "5842","chic",31,29.3,2002-12-29,42.3,39,6.6354166667,25.75 "5843","chic",49,43.5,2002-12-30,16.3,23,10.416666667,19.90719697 "5844","chic",35,20.7,2002-12-31,11.575,15,10.239583333,24.395833333 "5845","chic",30,22.5,2003-01-01,4.2,7,26.302083333,10.916666667 "5846","chic",30,25,2003-01-02,9.4,7.5,22.674365942,19.367424242 "5847","chic",27,20.9,2003-01-03,12.657142857,21.8,10.057971014,32.669191919 "5848","chic",25,21.6,2003-01-04,25.4,25.5,5.75,33.611111111 "5849","chic",31,30.2,2003-01-05,32.9,24.5,2.5,26.027777778 "5850","chic",30,21.5,2003-01-06,11.042857143,15,13.6875,27.599206349 "5851","chic",37,27.7,2003-01-07,16.3,21.5,8.6354166667,18.958333333 "5852","chic",46,30.6,2003-01-08,11.4,21.5,9.1229166667,20.402777778 "5853","chic",37,23.8,2003-01-09,6.6571428571,14.8,17.585144928,20.958333333 "5854","chic",21,9.1,2003-01-10,9.6,18,20.039402174,19.430555556 "5855","chic",14,2.3,2003-01-11,6.2,13,20.322916667,15.875 "5856","chic",21,8.1,2003-01-12,8.9571428571,20.5,14.395833333,22.638888889 "5857","chic",24,5.7,2003-01-13,11.7,18.5,17.418478261,24.160714286 "5858","chic",14,5.8,2003-01-14,NA,22,14.666666667,24.472222222 "5859","chic",13,1.3,2003-01-15,15.6,29.8,11.59375,31.722222222 "5860","chic",22,4.6,2003-01-16,NA,37,9.3020833333,38.55 "5861","chic",17,1.9,2003-01-17,10.2,29,17.80932971,29.425505051 "5862","chic",15,6.6,2003-01-18,15.65,22,16.885416667,22.791666667 "5863","chic",16,8.9,2003-01-19,11.7,27,16.125,21.166666667 "5864","chic",17,-0.7,2003-01-20,10.9,42.5,20.25,25.722222222 "5865","chic",12,-5.2,2003-01-21,11.785714286,29.6,17.479619565,27.956349206 "5866","chic",9,-5.3,2003-01-22,12.5,20,18.860795455,23.402777778 "5867","chic",4,-9.3,2003-01-23,11.1,22,18.729166667,24.932971014 "5868","chic",9,-4,2003-01-24,16.8875,31,10.374547101,29.252192982 "5869","chic",25,11.5,2003-01-25,NA,30,13.270833333,21.736111111 "5870","chic",10,-2.5,2003-01-26,9,32,24.583333333,20.180555556 "5871","chic",7,0.1,2003-01-27,19.242857143,37.25,9.705615942,40.458333333 "5872","chic",26,20.5,2003-01-28,29.4,53,4.6109601449,36.902777778 "5873","chic",21,17.1,2003-01-29,19.8,19,11.49048913,33.513888889 "5874","chic",25,20.3,2003-01-30,22.8,30,8.2291666667,35.247474747 "5875","chic",34,30.4,2003-01-31,24.5,40,3.4479166667,26.958333333 "5876","chic",33,29.5,2003-02-01,30.3,29,6.6770833333,22.605555556 "5877","chic",37,33.9,2003-02-02,35.228571429,44.75,6.5833333333,20.458333333 "5878","chic",39,37,2003-02-03,30.4,46,3.6417572464,29.33459596 "5879","chic",21,12.5,2003-02-04,8.9,15,20.524003623,16.513888889 "5880","chic",18,4.5,2003-02-05,11.65,27,13.541666667,27.375 "5881","chic",24,13.9,2003-02-06,NA,19,14.263586957,26.486111111 "5882","chic",13,1.8,2003-02-07,9.3,19,18.03125,23.324275362 "5883","chic",20,9.5,2003-02-08,12.9375,22.666666667,19.020833333,18.555555556 "5884","chic",15,0,2003-02-09,NA,18,21.15625,22.083333333 "5885","chic",18,9.8,2003-02-10,NA,17,15.374094203,25.119949495 "5886","chic",19,4.9,2003-02-11,11.171428571,39,19.333333333,21.458333333 "5887","chic",13,0.3,2003-02-12,13.1,34,22.46875,21.388888889 "5888","chic",22,7.4,2003-02-13,18.5,38,12.458333333,35.694444444 "5889","chic",25,19.9,2003-02-14,27.628571429,60.5,12.765398551,47.140873016 "5890","chic",24,15.1,2003-02-15,5.3,9.5,34.083333333,12.833333333 "5891","chic",23,12.9,2003-02-16,3.8,9,34.78125,12.444444444 "5892","chic",27,21.8,2003-02-17,14.35,20.5,22.364583333,27.625 "5893","chic",31,27.4,2003-02-18,27.5,28,10.548007246,30.867063492 "5894","chic",33,19.6,2003-02-19,15.5,31.5,13,33.180555556 "5895","chic",39,23.8,2003-02-20,15.4,24,11.109601449,35.527777778 "5896","chic",37,24.8,2003-02-21,28.6,45.5,5.1666666667,40.597222222 "5897","chic",28,24.2,2003-02-22,13.9,19,21.072916667,21.027777778 "5898","chic",20,7.1,2003-02-23,6.7375,15.5,29.895833333,17.125 "5899","chic",15,8.8,2003-02-24,16.1,21.5,19.482336957,28.444444444 "5900","chic",8,-2.5,2003-02-25,30.9,35.5,11.536684783,37.708333333 "5901","chic",18,9.4,2003-02-26,28.9125,37.2,11.65530303,41.869047619 "5902","chic",21,12.9,2003-02-27,NA,37,13.875,43.369565217 "5903","chic",27,15.4,2003-02-28,46.2,62.5,8.7753623188,57.564393939 "5904","chic",NA,22.9,2003-03-01,47.7375,47.5,9.4166666667,37.444444444 "5905","chic",21,15,2003-03-02,18.8,19.5,21.145833333,17.694444444 "5906","chic",20,14.6,2003-03-03,15.2,24.5,13.501811594,33.263888889 "5907","chic",25,23.3,2003-03-04,20.257142857,26.6,13.267210145,32.972222222 "5908","chic",22,15.6,2003-03-05,14.1,12.5,30.408967391,22.583333333 "5909","chic",20,16.8,2003-03-06,21.3,20,25.520833333,33.638888889 "5910","chic",29,25.5,2003-03-07,27.5625,34,10.943387681,30.042729931 "5911","chic",28,22.3,2003-03-08,28.2,27,13.697916667,28.694444444 "5912","chic",10,-4.2,2003-03-09,7.8,11.5,31.739583333,13.208333333 "5913","chic",11,0.9,2003-03-10,12.714285714,27.6,20.877717391,28.76984127 "5914","chic",31,18.4,2003-03-11,22.9,47,15.597908432,29.527777778 "5915","chic",36,30.5,2003-03-12,32.1,42,15.739583333,29.5 "5916","chic",31,24.4,2003-03-13,14,13,30.072916667,24.380434783 "5917","chic",39,23.6,2003-03-14,NA,44,12.864583333,41.394444444 "5918","chic",45,37.3,2003-03-15,22.05,33.5,6.9895833333,36.263888889 "5919","chic",55,47,2003-03-16,36.428571429,43,18.177083333,29.361111111 "5920","chic",57,45.6,2003-03-17,33.7,33.5,13.606431159,40.319115064 "5921","chic",41,38.2,2003-03-18,37.2,44.5,28.582880435,27.538888889 "5922","chic",43,36.4,2003-03-19,28.0625,30.5,21.21875,27.791666667 "5923","chic",54,47.6,2003-03-20,NA,39.5,7.90625,33.767857143 "5924","chic",44,35,2003-03-21,8.3,15.5,16.901721014,20.399470899 "5925","chic",43,35.2,2003-03-22,15.6,22.4,17.291666667,18.831349206 "5926","chic",52,34.7,2003-03-23,20.65,36,17.947916667,26.626388889 "5927","chic",58,41,2003-03-24,15.1,49,26.775362319,32.416666667 "5928","chic",49,33.5,2003-03-25,8.8,23,19.541666667,31.594444444 "5929","chic",45,28.7,2003-03-26,NA,45.5,19.162202381,38.326086957 "5930","chic",54,33.8,2003-03-27,14.5,29.5,22.15625,31.236111111 "5931","chic",49,42.7,2003-03-28,11.8,18,18.473731884,19.111111111 "5932","chic",32,22.3,2003-03-29,NA,8,30.5,15.625 "5933","chic",33,20.9,2003-03-30,NA,13,19.479166667,28.138888889 "5934","chic",40,26.7,2003-03-31,13.475,30,20.367753623,27.674242424 "5935","chic",60,40,2003-04-01,25.3,50.5,27.053571429,28.413461538 "5936","chic",54,38.4,2003-04-02,29.8,51,19.717261905,31.817028986 "5937","chic",42,37.9,2003-04-03,38.9625,57,7.4135610766,23.548309179 "5938","chic",36,35.1,2003-04-04,NA,10,7.5367494824,20.597222222 "5939","chic",29,20.4,2003-04-05,6,8.5,32.199404762,12.263888889 "5940","chic",34,23.2,2003-04-06,6.5571428571,8,37.80952381,8.8888888889 "5941","chic",32,30.3,2003-04-07,9.6,12,25.407608696,16.944444444 "5942","chic",32,28.2,2003-04-08,13,10,31.80952381,19.248188406 "5943","chic",36,25.7,2003-04-09,7.5571428571,15,34.469073499,30.013888889 "5944","chic",42,21.8,2003-04-10,8.9,28,23.071428571,43.258838384 "5945","chic",51,26,2003-04-11,16.9,58.5,22.952380952,43.4375 "5946","chic",43,29,2003-04-12,3.9857142857,6.5,36.904761905,14.108333333 "5947","chic",48,32.9,2003-04-13,11.7,22,30.145833333,26.166666667 "5948","chic",67,39.3,2003-04-14,16.8,66.5,39.634489303,19.797348485 "5949","chic",75,42.9,2003-04-15,12.214285714,61.4,40.468944099,20.40497076 "5950","chic",55,36.8,2003-04-16,10.7,35,27.464285714,21.914141414 "5951","chic",42,33.5,2003-04-17,12.65,22,23.32034632,23.222222222 "5952","chic",43,35.1,2003-04-18,17.325,17,22.411102484,23.611111111 "5953","chic",60,50,2003-04-19,16.7,39,25.711309524,23.888888889 "5954","chic",59,49.5,2003-04-20,8.1,12.5,33.803571429,12.083333333 "5955","chic",47,37.6,2003-04-21,6.6125,11.2,20.07815735,17.208937198 "5956","chic",46,27.5,2003-04-22,6.6,13.5,31.779761905,28.569444444 "5957","chic",43,23,2003-04-23,NA,16.5,32.125,35.204545455 "5958","chic",49,28.4,2003-04-24,13.542857143,37,27.288690476,34.722222222 "5959","chic",50,28.5,2003-04-25,7.85,29.5,34.257305195,28.483333333 "5960","chic",48,24,2003-04-26,5.8,15.5,36.110119048,26.569444444 "5961","chic",56,28,2003-04-27,13.5125,34.8,39.642857143,33.333333333 "5962","chic",66,39.5,2003-04-28,16.8,59,28.070522774,41.678571429 "5963","chic",54,38.4,2003-04-29,10.3,22,27.834109731,35.761111111 "5964","chic",57,48,2003-04-30,19.114285714,24.5,14.130952381,37.592171717 "5965","chic",50,47.4,2003-05-01,NA,10.5,15.946428571,27.552083333 "5966","chic",45,27.4,2003-05-02,7.2,12,37.410714286,18.473958333 "5967","chic",46,26.3,2003-05-03,7.6428571429,16.6,31.526785714,23.3125 "5968","chic",48,35,2003-05-04,12.4,19.5,29.547619048,21.041666667 "5969","chic",61,51.9,2003-05-05,11.3,18,30.94060559,18.686282468 "5970","chic",60,47.1,2003-05-06,8.9285714286,20.5,28.990036232,24.781702899 "5971","chic",53,46.6,2003-05-07,14.3,19,26.866055254,24.005208333 "5972","chic",55,47.8,2003-05-08,NA,23,23.471361519,25.09375 "5973","chic",69,56.8,2003-05-09,15.075,34.8,25.72339221,32.510416667 "5974","chic",65,57.9,2003-05-10,15.7,21.5,26.447916667,30.072916667 "5975","chic",60,44.5,2003-05-11,NA,8.5,22.899553571,7.9479166667 "5976","chic",59,38.3,2003-05-12,5.6571428571,30.5,31.297173501,20.700757576 "5977","chic",61,35.8,2003-05-13,13.75,22,26.227435947,29.148550725 "5978","chic",53,44.2,2003-05-14,16.2,25,17.027287138,38.21875 "5979","chic",52,45.4,2003-05-15,13,19.4,35.572916667,22.359375 "5980","chic",55,45.6,2003-05-16,19.1,21,30.450520833,28.972334957 "5981","chic",59,50.3,2003-05-17,26.4,21.5,35.674479167,17.59375 "5982","chic",60,52.3,2003-05-18,22.628571429,22,30.7109375,15.364583333 "5983","chic",66,61.4,2003-05-19,37.3,40.5,13.214900362,22.588541667 "5984","chic",58,45.3,2003-05-20,11.3,14,24.953125,17.765625 "5985","chic",51,36,2003-05-21,4.75,12,20.943727355,14.84375 "5986","chic",50,33.6,2003-05-22,NA,17.5,31.244225543,23.499255952 "5987","chic",53,35.2,2003-05-23,10.8,24.5,31.393229167,33.082927489 "5988","chic",57,38.7,2003-05-24,9.7,20,33.864583333,23 "5989","chic",57,42.8,2003-05-25,6.8,10,32.71875,14.510416667 "5990","chic",59,44.8,2003-05-26,8.3,12.5,28.130208333,18.411458333 "5991","chic",62,46.3,2003-05-27,10.214285714,25,21.161767128,28.245738636 "5992","chic",65,52,2003-05-28,20.7,50.5,16.221055665,36.030438312 "5993","chic",58,46.8,2003-05-29,10.1,17,15.865149457,26.005208333 "5994","chic",58,51.8,2003-05-30,17.5125,46.5,17.747426713,36.15625 "5995","chic",48,42.7,2003-05-31,6.2,9.5,28.424479167,15.333333333 "5996","chic",51,34.4,2003-06-01,4.8,13,26.375,22.5 "5997","chic",53,42.8,2003-06-02,16.8,31,19.205492424,37.637784091 "5998","chic",57,46.9,2003-06-03,24.7,18.5,38.973052536,30.192708333 "5999","chic",58,41.8,2003-06-04,11.3,25,31.84375,30.609375 "6000","chic",63,44.9,2003-06-05,16.714285714,39,27.708333333,41.505952381 "6001","chic",61,51.7,2003-06-06,25.5,55,22.78125,45.916666667 "6002","chic",66,53.3,2003-06-07,19.4,28,38.893229167,26.9375 "6003","chic",62,56.1,2003-06-08,10.271428571,16,26.200520833,20.364583333 "6004","chic",65,53.2,2003-06-09,9.1,22.5,32.804450758,21.875 "6005","chic",66,60.3,2003-06-10,15.1,36,30.432291667,31.833333333 "6006","chic",61,52.6,2003-06-11,9.7428571429,11.5,31.190104167,16.726934524 "6007","chic",61,55.1,2003-06-12,17.5,22,28.466506094,24.69047619 "6008","chic",64,58.3,2003-06-13,NA,21,21.927083333,28.598958333 "6009","chic",65,54.7,2003-06-14,10.125,19.8,33.916666667,21.807291667 "6010","chic",66,54.4,2003-06-15,8.6,13.5,31.046875,13.447916667 "6011","chic",66,48.9,2003-06-16,11.6,22,34.084012681,24.354454875 "6012","chic",67,47.2,2003-06-17,15.75,38.5,42.654706028,38.439538043 "6013","chic",74,58.7,2003-06-18,25.6,75,32.967741271,43.714583333 "6014","chic",60,39.8,2003-06-19,5.6,9,33.166769598,11.375 "6015","chic",59,40.9,2003-06-20,6.7285714286,22.4,27.330729167,22.447916667 "6016","chic",64,46.9,2003-06-21,12.9,28,25.526041667,30.083333333 "6017","chic",70,51.7,2003-06-22,20,38,40.0078125,32.541666667 "6018","chic",75,55.4,2003-06-23,22.1625,52.5,43.346014493,32.510890152 "6019","chic",79,62.4,2003-06-24,NA,68.5,56.166079957,26.864583333 "6020","chic",82,65.1,2003-06-25,33.9,66,56.136662138,22.949337121 "6021","chic",68,56,2003-06-26,6.7428571429,18.6,25.480978261,15.625 "6022","chic",70,51.6,2003-06-27,11.5,34,33.447916667,20.927083333 "6023","chic",73,60.6,2003-06-28,11.3,25,35.268229167,20.6875 "6024","chic",74,56.6,2003-06-29,9.775,22.5,29.354166667,21.447916667 "6025","chic",72,53.9,2003-06-30,12.7,50,28.221693841,32.926177536 "6026","chic",73,53.4,2003-07-01,19.85,40.5,42.09335886,31.552083333 "6027","chic",75,55.5,2003-07-02,22.385714286,45.6,50.205615942,34.748835404 "6028","chic",79,65.4,2003-07-03,24.05,71.5,35.343523551,34.723958333 "6029","chic",84,68.4,2003-07-04,32.9,47.5,45.661458333,21.34375 "6030","chic",78,66.2,2003-07-05,18.271428571,24.5,50.861979167,18.713541667 "6031","chic",78,68.6,2003-07-06,13.9,26.5,40.932291667,16.411458333 "6032","chic",79,70.8,2003-07-07,12.75,42,25.251132246,23.828125 "6033","chic",72,64.6,2003-07-08,8.6125,18.5,24.096354167,22.442481884 "6034","chic",69,61.2,2003-07-09,7.6,16.5,30.094717556,17.816287879 "6035","chic",73,63.5,2003-07-10,6.8,14.5,26.01415308,15.661458333 "6036","chic",69,56.5,2003-07-11,5.6625,18,22.397365196,15.741394928 "6037","chic",71,54.5,2003-07-12,8.4,18,22.947916667,21.8125 "6038","chic",70,56.3,2003-07-13,15.2,27.5,31.395833333,28.354166667 "6039","chic",70,58.9,2003-07-14,22.9125,35.8,31.440330616,31.786458333 "6040","chic",77,64.4,2003-07-15,NA,25,39.302083333,17.84375 "6041","chic",72,57.1,2003-07-16,8.7,19,21.176403986,26.12817029 "6042","chic",75,65.1,2003-07-17,14.985714286,35.5,29.904098732,29.155844156 "6043","chic",66,53.2,2003-07-18,6.2,11.5,26.12035779,16.070075758 "6044","chic",68,53.2,2003-07-19,9,22,31.135416667,24.395833333 "6045","chic",76,65.4,2003-07-20,14.485714286,26.75,30.721354167,20.666666667 "6046","chic",75,64.4,2003-07-21,10,18,35.667798913,18.290178571 "6047","chic",68,58.2,2003-07-22,5.8,9.5,21.278532609,9.9161931818 "6048","chic",67,53.1,2003-07-23,4.4125,8.5,19.4765625,11.947916667 "6049","chic",67,47.8,2003-07-24,6.4,25,15.797441123,21.166213768 "6050","chic",71,57.7,2003-07-25,17.5,52.5,32.281363225,24.875 "6051","chic",77,63.2,2003-07-26,23.9,37.8,49.065104167,14.270833333 "6052","chic",74,63.1,2003-07-27,14.7,21,32.1171875,11.802083333 "6053","chic",65,58,2003-07-28,10.2,22,22.159986413,16.447043219 "6054","chic",68,51.4,2003-07-29,15.25,36.5,24.308197464,25.951992754 "6055","chic",69,55.9,2003-07-30,20.1,45.5,28.68138587,36.993453557 "6056","chic",75,63,2003-07-31,27.3,54,34.650094697,28.065340909 "6057","chic",75,64.4,2003-08-01,23.8625,37,32.3828125,30.554924242 "6058","chic",72,62.4,2003-08-02,10.5,25.5,24.606770833,21.479166667 "6059","chic",71,64.1,2003-08-03,14.5,20.5,20.760416667,24.833333333 "6060","chic",69,62.4,2003-08-04,17.9,20.5,29.521173007,22.208333333 "6061","chic",71,62.6,2003-08-05,19.8,35.5,25.647871377,31.870018116 "6062","chic",74,65.6,2003-08-06,23.2,47.5,15.680181571,42.1875 "6063","chic",73,64.6,2003-08-07,11.714285714,23,22.641366107,19.453218244 "6064","chic",69,64.3,2003-08-08,6.9,10,18.932291667,10.735507246 "6065","chic",70,60.8,2003-08-09,6.2,11,22.158854167,13.395833333 "6066","chic",73,59.4,2003-08-10,11.6375,18.5,24.065104167,16.385416667 "6067","chic",69,64,2003-08-11,9.8,18.5,17.369565217,17.275 "6068","chic",71,64.4,2003-08-12,11.3,13.5,24.649147727,11.213541667 "6069","chic",72,66.6,2003-08-13,17.3375,28.6,29.757019928,14.641304348 "6070","chic",77,71.4,2003-08-14,33.5,50.5,37.686173654,26.6875 "6071","chic",79,71.6,2003-08-15,36.8,55,24.884624094,28.830492424 "6072","chic",83,69.1,2003-08-16,23.5875,41.5,41.109375,16.71875 "6073","chic",78,63.4,2003-08-17,14.6,19,33.0078125,10.442708333 "6074","chic",73,60,2003-08-18,12.6,26.5,25.169981061,23.383152174 "6075","chic",71,60.4,2003-08-19,17.185714286,30.25,25.882586051,31.502717391 "6076","chic",77,67.7,2003-08-20,37.3,59,40.343297101,31.072443182 "6077","chic",84,70.4,2003-08-21,27.4,63,46.723505435,24.227678571 "6078","chic",71,57.2,2003-08-22,10.471428571,17,24.010190217,14.886837121 "6079","chic",69,55.9,2003-08-23,6.6,14,19.7421875,14.557291667 "6080","chic",72,62.3,2003-08-24,15,25,33.229166667,18.322916667 "6081","chic",83,67.1,2003-08-25,26.814285714,52.4,47.633718297,26.278985507 "6082","chic",82,69.1,2003-08-26,19.7,50.5,40.3125,34.075757576 "6083","chic",74,62.6,2003-08-27,15.3,20,30.297101449,24.380208333 "6084","chic",76,65.7,2003-08-28,18.157142857,44.5,37.081748188,26.234375 "6085","chic",76,63.4,2003-08-29,13.5,25,31.035714286,21.333333333 "6086","chic",68,51.3,2003-08-30,2.5,7,27.452380952,9.6145833333 "6087","chic",66,57.5,2003-08-31,8.65,18,26.169642857,13.828125 "6088","chic",63,61.4,2003-09-01,6.8,7,32.928571429,7.6979166667 "6089","chic",67,59.9,2003-09-02,12.5,21,31.823757764,21.859375 "6090","chic",72,58.8,2003-09-03,14.25,30.5,22.012001812,25.463768116 "6091","chic",62,51.7,2003-09-04,5.3,11.5,18.611186594,19.20014881 "6092","chic",62,50.9,2003-09-05,11.4,32.5,14.183197464,28.833333333 "6093","chic",66,53.3,2003-09-06,13.575,25.5,24.453125,32.682291667 "6094","chic",73,60.3,2003-09-07,16.7,30.5,31.005208333,30.739583333 "6095","chic",72,61.7,2003-09-08,23.3,68,22.044384058,43.84375 "6096","chic",72,63.1,2003-09-09,26.5,45,29.454483696,30.966856061 "6097","chic",72,63.3,2003-09-10,37.9,51.5,32.334300889,29.671648551 "6098","chic",74,60.6,2003-09-11,37.8,58.5,39.226222826,26.863224638 "6099","chic",72,60.7,2003-09-12,32.6125,46.25,29.950407609,29.620833333 "6100","chic",75,63,2003-09-13,35.7,47.5,39.859375,21.885416667 "6101","chic",67,61.2,2003-09-14,15.9,17,24.911458333,16.572916667 "6102","chic",63,47.5,2003-09-15,9.325,27.5,13.011837121,26.427083333 "6103","chic",66,50,2003-09-16,9.5,58.5,17.481122365,35.979166667 "6104","chic",68,52.7,2003-09-17,17.6,41.5,28.682291667,35.315340909 "6105","chic",68,54.2,2003-09-18,24.9,40.2,37.390625,31.46875 "6106","chic",58,47.2,2003-09-19,16.8,25,15.913043478,18.270833333 "6107","chic",56,43,2003-09-20,8.7,26,16.713541667,19.989583333 "6108","chic",62,50.5,2003-09-21,15.7,30,32.390625,19.541666667 "6109","chic",62,54.5,2003-09-22,6.5,24.5,19.106060606,20.427083333 "6110","chic",59,42.6,2003-09-23,12.2,29,15.234827899,22.9375 "6111","chic",62,50.1,2003-09-24,10.3625,25,17.146059783,24.104166667 "6112","chic",53,38.6,2003-09-25,12.3,28,11.977807971,19.78030303 "6113","chic",57,48.7,2003-09-26,6.7,28,7.3779438406,28.884469697 "6114","chic",54,42.6,2003-09-27,5.6,14.5,12.708333333,12.989583333 "6115","chic",52,41.6,2003-09-28,7.9,11.5,12.434129902,11.270833333 "6116","chic",50,36.6,2003-09-29,12.7,23,10.541666667,19.20923913 "6117","chic",48,32.2,2003-09-30,5.2714285714,21,11.616168478,19.489583333 "6118","chic",44,26,2003-10-01,6.6,29.5,10.797619048,22.444444444 "6119","chic",42,22.2,2003-10-02,7.7,34.5,7.5178571429,25.945267896 "6120","chic",48,37.7,2003-10-03,12.1625,71,7.7864906832,31.291666667 "6121","chic",49,36.9,2003-10-04,14.7,25,11.607142857,24.527777778 "6122","chic",47,40.5,2003-10-05,9.4,23.5,16.125,20.944444444 "6123","chic",48,37.5,2003-10-06,8.625,22.6,16.242494824,27.333333333 "6124","chic",61,49.4,2003-10-07,7.4,54,12.26242236,37.666666667 "6125","chic",64,53.1,2003-10-08,11.6,68,18.689182195,40.944444444 "6126","chic",62,54.5,2003-10-09,32.0875,65,8.8245341615,47.25 "6127","chic",64,57.9,2003-10-10,34,58.5,14.470238095,34.361111111 "6128","chic",66,59.3,2003-10-11,18.3,33,20.773809524,21.916666667 "6129","chic",58,42.2,2003-10-12,6.5428571429,20,17.363095238,16.347222222 "6130","chic",57,41.3,2003-10-13,17.4,60.5,12.30952381,38.194444444 "6131","chic",53,47.6,2003-10-14,14.6,10.5,18.527432712,24.452020202 "6132","chic",50,35.7,2003-10-15,7.9285714286,23.5,12.369047619,26.513888889 "6133","chic",45,35.8,2003-10-16,8.9,21.5,10.390269151,27.940052701 "6134","chic",44,30.5,2003-10-17,8.1,30,8.8035714286,37.638888889 "6135","chic",57,41.9,2003-10-18,10.857142857,28,12.428571429,30.180555556 "6136","chic",56,47.3,2003-10-19,10.6,20.5,22.5,22 "6137","chic",66,51.6,2003-10-20,9.6,58,25.011904762,29.194444444 "6138","chic",55,44.9,2003-10-21,14.1125,38.5,17.632246377,25.541666667 "6139","chic",48,38.5,2003-10-22,12.9,12.5,17.49068323,20.638888889 "6140","chic",46,40.8,2003-10-23,6.8,28.5,12.401765283,27.168470418 "6141","chic",48,42.8,2003-10-24,16.6875,37.4,10.755952381,29.486111111 "6142","chic",52,45.3,2003-10-25,17.1,24,4.6904761905,26.361111111 "6143","chic",40,33.5,2003-10-26,10,8.5,6.806547619,12.680555556 "6144","chic",38,32.3,2003-10-27,14.5125,22,4.7494824017,19.444444444 "6145","chic",48,38.7,2003-10-28,8,27.5,8.2989130435,15.993055556 "6146","chic",44,35.7,2003-10-29,NA,18.5,7.260365411,16.541035354 "6147","chic",55,49,2003-10-30,10.925,25.4,19.233178054,24.24040404 "6148","chic",58,52.6,2003-10-31,NA,35.5,10.755952381,16.868055556 "6149","chic",47,41.7,2003-11-01,NA,15,9.9895833333,13.416666667 "6150","chic",52,50.9,2003-11-02,12.375,13.5,3.8645833333,14.8125 "6151","chic",49,49.1,2003-11-03,9.6,11,6.518115942,12 "6152","chic",59,57,2003-11-04,4.7,28.5,8.6173007246,21.097222222 "6153","chic",42,34.2,2003-11-05,11.5875,15.6,8.25,17.993055556 "6154","chic",38,22,2003-11-06,NA,15,8.9375,25.557065217 "6155","chic",35,17.3,2003-11-07,19,21.5,14.436141304,26.876984127 "6156","chic",27,18.1,2003-11-08,7.6857142857,15,13.177083333,26.347222222 "6157","chic",31,16.9,2003-11-09,15,19,10.989583333,31.986111111 "6158","chic",38,30.2,2003-11-10,25.6,26.5,6.200634058,33.666666667 "6159","chic",50,50.1,2003-11-11,21.4625,31.2,3.375,17.194444444 "6160","chic",48,39.9,2003-11-12,12.5,48.5,12.510869565,15.527777778 "6161","chic",35,15.8,2003-11-13,16.7,16,14.831974638,23.153381643 "6162","chic",36,23.1,2003-11-14,9.825,26,6.2291666667,28.13510101 "6163","chic",40,39.8,2003-11-15,14.2,17,4.8541666667,19.569444444 "6164","chic",45,43.7,2003-11-16,14.3,13,2.9166666667,18.305555556 "6165","chic",44,44.7,2003-11-17,22.875,27.2,6.665719697,25.152777778 "6166","chic",55,55.1,2003-11-18,9.1,15,7.678442029,22.28442029 "6167","chic",47,34.7,2003-11-19,14,17,9.375,27.166666667 "6168","chic",50,40.4,2003-11-20,7.7857142857,26.5,9.4660326087,28.031746032 "6169","chic",46,36.5,2003-11-21,7.7,10,15.489583333,19.25 "6170","chic",53,48,2003-11-22,24.2,28.5,5.3541666667,23.361111111 "6171","chic",48,47.1,2003-11-23,8.1125,11.6,17.739583333,10.819444444 "6172","chic",25,14,2003-11-24,7.4,32,17.198822464,14.674603175 "6173","chic",33,21.6,2003-11-25,16,28.5,8.28125,26.284090909 "6174","chic",40,28.3,2003-11-26,15.0875,30.5,5.5670289855,29.805555556 "6175","chic",41,37.4,2003-11-27,19.5,17.5,6.0520833333,24.888888889 "6176","chic",33,22.5,2003-11-28,15.8,15.5,17.197916667,19.111111111 "6177","chic",31,21.3,2003-11-29,9.5125,13.75,16.135416667,18.819444444 "6178","chic",46,27.4,2003-11-30,5.6,12,16.229166667,19.097222222 "6179","chic",35,14.4,2003-12-01,6.5,18.5,18.629076087,23.013888889 "6180","chic",30,13,2003-12-02,6.4571428571,15.5,10.500905797,34.828282828 "6181","chic",34,22.3,2003-12-03,9,23.5,11.65625,29.888888889 "6182","chic",37,29.7,2003-12-04,15.8,23,3.9393115942,28.062710438 "6183","chic",37,30.9,2003-12-05,8.0125,15,16.177083333,24.5 "6184","chic",34,26.9,2003-12-06,11.8,16,6.03125,28.194444444 "6185","chic",34,28.5,2003-12-07,21.1,21,4.5833333333,24.625 "6186","chic",40,33.9,2003-12-08,21.95,21,3.0520833333,28.868686869 "6187","chic",45,41.9,2003-12-09,26.8,33.5,1.097826087,27.23989899 "6188","chic",41,40.4,2003-12-10,12,11.5,6.71875,23.569444444 "6189","chic",22,14.3,2003-12-11,7.7285714286,12,12.161972991,21.533333333 "6190","chic",17,6.4,2003-12-12,18.8,27.5,6.8958333333,34.990942029 "6191","chic",21,16.7,2003-12-13,18.3,24,10.166666667,35.729166667 "6192","chic",28,23.8,2003-12-14,17.825,20,10.666666667,29.0625 "6193","chic",31,27.7,2003-12-15,22.5,18,7.0692934783,28.779166667 "6194","chic",34,26.5,2003-12-16,13.3,16,9.4266304348,19.708333333 "6195","chic",23,18.5,2003-12-17,15,22.2,9.1142539526,24.166666667 "6196","chic",23,19.7,2003-12-18,36.3,26,5.25,29.566287879 "6197","chic",25,15.4,2003-12-19,9,25.5,15.177083333,22.833333333 "6198","chic",20,8.2,2003-12-20,7.9285714286,19,11.104166667,26.458333333 "6199","chic",37,25.9,2003-12-21,8.5,21.5,16.822916667,21.895833333 "6200","chic",42,33.1,2003-12-22,22.5,26,4.8958333333,25.130681818 "6201","chic",32,27.6,2003-12-23,14.314285714,14.8,4.6714673913,24.708333333 "6202","chic",22,14.5,2003-12-24,9.6,19,13.783333333,22.625 "6203","chic",27,15.4,2003-12-25,12.4,21,10.520833333,27.854166667 "6204","chic",30,22.5,2003-12-26,17.3625,24.5,2.8958333333,39.6875 "6205","chic",39,23.9,2003-12-27,11.3,18.5,7.5520833333,27.979166667 "6206","chic",45,32.9,2003-12-28,10.5,14.5,13.135416667,20.5 "6207","chic",39,26.7,2003-12-29,8.66,15.5,8.5951086957,21.208333333 "6208","chic",34,22.7,2003-12-30,10,17.5,10.984601449,19.533514493 "6209","chic",32,20.3,2003-12-31,17.5,15.5,12.385416667,24.910714286 "6210","chic",35,30.4,2004-01-01,14.385714286,17,6.8333333333,26.520833333 "6211","chic",49,47.5,2004-01-02,18.4,20.5,5.8854166667,20.75 "6212","chic",41,28.8,2004-01-03,10,9,10.072916667,20.625 "6213","chic",31,25.8,2004-01-04,4.65,7.4,23.083333333,10.6875 "6214","chic",17,12.4,2004-01-05,11,16,15.249094203,23.439393939 "6215","chic",3,-6,2004-01-06,17.2,24,19.588603426,19.111111111 "6216","chic",15,3.5,2004-01-07,13.8,24.5,10.097826087,29.333333333 "6217","chic",24,17.3,2004-01-08,11.5,25,8.3125,32.611111111 "6218","chic",22,17.2,2004-01-09,13.9,17,20.541666667,25.782608696 "6219","chic",21,16.5,2004-01-10,15.4125,24.2,9.875,28.194444444 "6220","chic",33,24.9,2004-01-11,NA,12,14.395833333,18.861111111 "6221","chic",35,27.4,2004-01-12,18,14,7.740942029,19.76010101 "6222","chic",30,19.4,2004-01-13,12.628571429,18,12.122961957,27.652777778 "6223","chic",27,21.1,2004-01-14,15,31.5,10.654166667,23.410353535 "6224","chic",19,7.1,2004-01-15,8.1,29,13.78125,34.217171717 "6225","chic",27,18.4,2004-01-16,19.15,30.4,7.1746323529,27.387681159 "6226","chic",31,28.3,2004-01-17,19.8,20,3.34375,25.902777778 "6227","chic",18,2.8,2004-01-18,7.6,14,20.385416667,13.583333333 "6228","chic",11,0.3,2004-01-19,6.075,18,17.34375,25.5 "6229","chic",15,2.2,2004-01-20,15.8,24,9.4057971014,39.204365079 "6230","chic",24,14.3,2004-01-21,20.2,26,10.173460145,26.041666667 "6231","chic",11,-7.2,2004-01-22,5.9444444444,23.8,20.810235507,18.307971014 "6232","chic",15,8.6,2004-01-23,12.8,36,8.3541666667,27.150793651 "6233","chic",15,10.9,2004-01-24,12.1,19,13.770833333,29.375 "6234","chic",18,7.5,2004-01-25,7.8857142857,29.5,26.739583333,18.166666667 "6235","chic",22,18.3,2004-01-26,15,24,19.020833333,24.397727273 "6236","chic",17,12.9,2004-01-27,16.4,13,13.914402174,29.606280193 "6237","chic",7,-0.8,2004-01-28,16.3,30,13.614583333,26.513888889 "6238","chic",2,-6.8,2004-01-29,18.3,29,10.754734848,33.5 "6239","chic",-3,-12.7,2004-01-30,18.3,32,13.276721014,28.497474747 "6240","chic",4,-4.2,2004-01-31,22.285714286,50,8.15625,36.902777778 "6241","chic",21,10.1,2004-02-01,22.3,45,13.416666667,35.513888889 "6242","chic",28,22.2,2004-02-02,17,49,5.3683712121,36.166666667 "6243","chic",21,17.4,2004-02-03,26.377777778,35,8.6077898551,33.679292929 "6244","chic",13,3.8,2004-02-04,19.7,55,10.517992424,44.510822511 "6245","chic",26,19.6,2004-02-05,8.2,24,17.4375,30.513888889 "6246","chic",28,23.6,2004-02-06,19.271428571,21.5,9.7604166667,34.541666667 "6247","chic",20,20,2004-02-07,20.9,14.5,19.513888889,27.888888889 "6248","chic",16,16,2004-02-08,20.45,19,16.708333333,32.033333333 "6249","chic",28,20.9,2004-02-09,14.657142857,20.6,26.002750329,24.592947014 "6250","chic",20,14.2,2004-02-10,28.9,22.5,22.942481884,23.430555556 "6251","chic",23,16.5,2004-02-11,18.5,31,12.011363636,38.04468599 "6252","chic",22,16,2004-02-12,22.1,30,16.666666667,28.916666667 "6253","chic",20,11.2,2004-02-13,24.5,17.5,21.770833333,23.258816425 "6254","chic",26,17.6,2004-02-14,9.3,26.5,23.979166667,21.703703704 "6255","chic",14,10.9,2004-02-15,6.5285714286,13.75,28.729166667,21.013888889 "6256","chic",16,7.7,2004-02-16,NA,31,13.270833333,41.666666667 "6257","chic",24,15.8,2004-02-17,43.4,49,8.2780797101,44.978174603 "6258","chic",29,23.5,2004-02-18,48.157142857,61,8.1621376812,43.708333333 "6259","chic",36,31.7,2004-02-19,40,41,5.3229166667,42.222222222 "6260","chic",39,35.1,2004-02-20,22.3,22,18.041666667,30.774758454 "6261","chic",33,26,2004-02-21,7.8666666667,14.4,26.65625,20.986111111 "6262","chic",34,28.1,2004-02-22,18.2,22.5,13.65625,31.611111111 "6263","chic",41,32.6,2004-02-23,27.5,25,11.897192029,29.275966184 "6264","chic",34,29.7,2004-02-24,19.2375,17.5,22.53759058,21.444444444 "6265","chic",31,24.6,2004-02-25,11,19,23.59375,27.443236715 "6266","chic",34,25.2,2004-02-26,18.5,25,17.552083333,29.698412698 "6267","chic",35,24.7,2004-02-27,30.711111111,50.8,12.020833333,33.794444444 "6268","chic",40,27.6,2004-02-28,24,37,10.989583333,33.069444444 "6269","chic",47,32.5,2004-02-29,18.2,21,20.668931159,32.458333333 "6270","chic",54,42.4,2004-03-01,10.266666667,13.5,25.125,23.645833333 "6271","chic",44,37.2,2004-03-02,15.95,17.5,16.316576087,15.416666667 "6272","chic",43,34.5,2004-03-03,28.15,33,12.700757576,27.343434343 "6273","chic",41,39.4,2004-03-04,29.175,37.2,6.8953804348,23.415935673 "6274","chic",50,41.8,2004-03-05,7.6,19,20.291666667,15.90428744 "6275","chic",41,31.3,2004-03-06,11,13.5,23.197916667,17.125 "6276","chic",40,28.3,2004-03-07,7.625,12,33.46875,10.638888889 "6277","chic",34,20.8,2004-03-08,11.8,20,21.854619565,23.402777778 "6278","chic",33,25.6,2004-03-09,11.8,12.5,25.224939614,25.132850242 "6279","chic",37,25.4,2004-03-10,13.825,26.4,20.645833333,29.797619048 "6280","chic",31,16.8,2004-03-11,10.5,47.5,17.53125,14.391214779 "6281","chic",25,7.1,2004-03-12,10.1,22.5,16.729166667,23.479166667 "6282","chic",33,18.4,2004-03-13,17.7125,24.5,14.75,36.708333333 "6283","chic",39,27.9,2004-03-14,13.4,17.5,29.5625,14.1875 "6284","chic",32,22.4,2004-03-15,7.3,9.5,27.695652174,26.736842105 "6285","chic",32,26.1,2004-03-16,10.677777778,17.75,27.308333333,21.826388889 "6286","chic",32,28.4,2004-03-17,23.1,22.5,7.4927536232,32.956521739 "6287","chic",32,30.9,2004-03-18,26.5,21,8.6941425121,38.888888889 "6288","chic",38,30.7,2004-03-19,20.1875,23.5,14.972222222,29.902777778 "6289","chic",47,28.8,2004-03-20,17,24,27.1875,19.861111111 "6290","chic",28,16.1,2004-03-21,7.3,11.5,31.6875,12.104166667 "6291","chic",30,10,2004-03-22,10.6625,23.4,19.721687371,26.854166667 "6292","chic",46,24.4,2004-03-23,30,43,22.655311853,30.840277778 "6293","chic",54,44.8,2004-03-24,26.5,28,18.351585145,29.160024155 "6294","chic",60,52.8,2004-03-25,17.9875,29,20.327969132,26.430555556 "6295","chic",56,54.9,2004-03-26,12.05,23,16.851922587,22.672619048 "6296","chic",51,47.4,2004-03-27,14,20.5,16.011904762,24.944444444 "6297","chic",61,52.5,2004-03-28,11.9,18.2,26.327380952,13.212301587 "6298","chic",51,37.8,2004-03-29,13.3,18.5,21.158263305,24.333333333 "6299","chic",48,37,2004-03-30,22.5,54.5,19.210986025,29.771135266 "6300","chic",42,32.1,2004-03-31,5.775,8.5,26.17092803,15.322222222 "6301","chic",42,27.9,2004-04-01,11.1,11,32.226190476,18.920634921 "6302","chic",44,23.7,2004-04-02,12.2,16,28.173097736,25.333333333 "6303","chic",43,23.8,2004-04-03,7.7625,24.8,27.481770833,23.541666667 "6304","chic",37,24.5,2004-04-04,2.6,6,37.916666667,11.291666667 "6305","chic",39,24.4,2004-04-05,11,32.5,29.033174819,29.732323232 "6306","chic",56,37.5,2004-04-06,21.8375,55.5,30.81132364,33.324074074 "6307","chic",52,32.4,2004-04-07,18.5,31,33.58449793,31.833333333 "6308","chic",46,35.9,2004-04-08,21,32,27.681677019,27.652777778 "6309","chic",45,29.8,2004-04-09,12.4375,28.2,20.24702381,33.333333333 "6310","chic",44,30.3,2004-04-10,15.5,25,22.62797619,29.027777778 "6311","chic",37,26.8,2004-04-11,5.9,6.5,32.285714286,12.597222222 "6312","chic",36,21.8,2004-04-12,3.4428571429,16,30.251604555,13.152777778 "6313","chic",38,25.4,2004-04-13,7.05,15,29.458333333,19.972222222 "6314","chic",49,27.5,2004-04-14,20.25,61,17.110248447,43.001984127 "6315","chic",61,33.9,2004-04-15,14.525,59.8,31.136904762,33.344309463 "6316","chic",70,45.6,2004-04-16,14.45,40,37.332945135,27.694444444 "6317","chic",64,51.6,2004-04-17,16.5,25,44.476190476,24.125 "6318","chic",69,50.7,2004-04-18,13.385714286,59.5,38.779761905,16.777777778 "6319","chic",60,48.4,2004-04-19,6.9,54,29.295419255,16.188664596 "6320","chic",54,48.4,2004-04-20,14.85,30.5,18.265010352,21.756642512 "6321","chic",54,48.5,2004-04-21,8.5555555556,17.8,26.33449793,18.555555556 "6322","chic",48,37.5,2004-04-22,7.4,9.5,27.135010823,21.263888889 "6323","chic",51,37,2004-04-23,16.1,23.5,22.970238095,33.080917874 "6324","chic",45,39.5,2004-04-24,16.3,33.5,26.94047619,24.972222222 "6325","chic",54,48.7,2004-04-25,9.3,13,25.25,15.736111111 "6326","chic",52,34.2,2004-04-26,11.6,27,27.883928571,19.088854382 "6327","chic",44,21.3,2004-04-27,6.4222222222,17.2,28.206898174,23.708333333 "6328","chic",64,42.3,2004-04-28,11.6,82,40.508944746,22.555555556 "6329","chic",69,51.9,2004-04-29,13.6,44.5,44.482401656,20.857487923 "6330","chic",51,45.5,2004-04-30,11.6,17,27.200569358,24.688492063 "6331","chic",46,37.8,2004-05-01,6.9,7,28.408854167,17.307291667 "6332","chic",42,30.3,2004-05-02,3.6,6.5,32.40625,10.744791667 "6333","chic",42,28.1,2004-05-03,6.9714285714,24.8,21.754302536,26.640625 "6334","chic",55,44.3,2004-05-04,11.1,44.5,27.511435688,25.489583333 "6335","chic",53,36.5,2004-05-05,10.5,26,25.294044384,25.510349026 "6336","chic",69,57.1,2004-05-06,18.0125,59,31.480823864,33.784601449 "6337","chic",51,36.4,2004-05-07,7.45,17,33.957540761,15.942708333 "6338","chic",67,50.4,2004-05-08,17.8,30,29.619791667,24.828125 "6339","chic",70,60.3,2004-05-09,15.144444444,34.25,34.127604167,20.083333333 "6340","chic",70,61.6,2004-05-10,16.15,52.5,29.305593297,23.5 "6341","chic",68,61.3,2004-05-11,19.1,41.5,33.937047101,24.99048913 "6342","chic",76,65.4,2004-05-12,14.5,39.5,28.965178277,22.052083333 "6343","chic",72,67.3,2004-05-13,12.7,13,17.972735507,24.125658762 "6344","chic",59,54.1,2004-05-14,8,8,11.324404762,19.505208333 "6345","chic",47,38.9,2004-05-15,3.2625,9,20.505952381,12.364583333 "6346","chic",54,45.8,2004-05-16,13,20,24.663690476,23.932291667 "6347","chic",70,62.6,2004-05-17,18.4,29,29.59057971,22.353070175 "6348","chic",57,47.2,2004-05-18,6.7285714286,10,34.016644022,20.200181159 "6349","chic",58,55.6,2004-05-19,12.8,19,23.943274457,26.520833333 "6350","chic",74,71.1,2004-05-20,17.8,35,23.765151515,22.504734848 "6351","chic",63,58.1,2004-05-21,11.966666667,33.6,28.09375,22.401041667 "6352","chic",65,61.6,2004-05-22,11.75,25,25.4921875,18.25 "6353","chic",68,61.7,2004-05-23,9.6,31.5,28.463541667,13.989583333 "6354","chic",56,47.5,2004-05-24,5.0285714286,14,26.76879529,12.229166667 "6355","chic",59,53.6,2004-05-25,11.3,29.5,23.006783185,23.028450264 "6356","chic",57,46.2,2004-05-26,8.4,23.5,17.027513587,23.411458333 "6357","chic",64,55.2,2004-05-27,12.955555556,31.25,23.256680254,25.471240942 "6358","chic",53,39.4,2004-05-28,NA,11.5,25.671875,17.072916667 "6359","chic",57,47.7,2004-05-29,8.7,27.5,25.747395833,23.182291667 "6360","chic",66,61,2004-05-30,15.7875,25,30.520833333,18.380208333 "6361","chic",62,NA,2004-05-31,5.5,12.5,27.028645833,16.609375 "6362","chic",65,50.4,2004-06-01,4.3,33,26.961616848,18.375 "6363","chic",59,50.7,2004-06-02,6.6333333333,15.8,21.719202899,18.796875 "6364","chic",59,40.7,2004-06-03,4.5,14.5,28.852015399,18.412202381 "6365","chic",58,43.7,2004-06-04,9.5,23.5,29.363564312,29.869047619 "6366","chic",61,47.6,2004-06-05,19.4125,43,38.947916667,29.614583333 "6367","chic",72,58.8,2004-06-06,22.2,38,40.78125,24.15625 "6368","chic",74,64.6,2004-06-07,19.8,68,39.783854167,22.979166667 "6369","chic",83,69,2004-06-08,19.344444444,42,30.219316123,21.779891304 "6370","chic",73,67,2004-06-09,10.8,47.5,20.747961957,16.417613636 "6371","chic",64,60.5,2004-06-10,6.6,21,10.636322464,17.571969697 "6372","chic",73,67.2,2004-06-11,14.814285714,32.5,14.985219038,19.046401515 "6373","chic",71,64.7,2004-06-12,10,20,31.059895833,16.702083333 "6374","chic",72,64.5,2004-06-13,10.6,19,35.932291667,13.472222222 "6375","chic",75,64.1,2004-06-14,9.0285714286,18.2,31.103929924,20.972222222 "6376","chic",71,57.4,2004-06-15,11.7,27,30.598278986,25.656060606 "6377","chic",72,65.4,2004-06-16,16.9,30,21.812160326,26.362092391 "6378","chic",72,60.4,2004-06-17,16.028571429,32.5,26.680480072,22.41576087 "6379","chic",71,58.1,2004-06-18,13.866666667,36.5,25.643229167,26.708333333 "6380","chic",56,39.7,2004-06-19,3.8,9,26.768229167,12.28125 "6381","chic",61,45.1,2004-06-20,10.944444444,19.8,26.604166667,22.458333333 "6382","chic",63,57.3,2004-06-21,14.1,28,13.203691123,31.8625 "6383","chic",65,49.7,2004-06-22,7.2,26.5,20.870697464,21.418560606 "6384","chic",70,54,2004-06-23,8.6125,56,28.483952981,23.5625 "6385","chic",62,47.5,2004-06-24,5.7,14,21.884737319,22.839900362 "6386","chic",61,44.2,2004-06-25,8.5,22.5,19.3359375,26.375 "6387","chic",64,47.8,2004-06-26,7.8875,23.2,23.135416667,21.583333333 "6388","chic",67,51.3,2004-06-27,12,26.5,26.0546875,23.229166667 "6389","chic",65,52.8,2004-06-28,14.5,22.5,23.104619565,23.664855072 "6390","chic",69,52.1,2004-06-29,11.285714286,47.5,22.667912138,26.729166667 "6391","chic",73,56.2,2004-06-30,15.9,58.5,26.417119565,33.661458333 "6392","chic",71,57,2004-07-01,14.7,54.5,37.763257576,27.87962344 "6393","chic",71,58.5,2004-07-02,14.977777778,41.4,40.932291667,18.505208333 "6394","chic",73,67.2,2004-07-03,18.2,38,31.786458333,17.40625 "6395","chic",76,66.6,2004-07-04,7.3,25,31.1953125,11.045138889 "6396","chic",68,60.7,2004-07-05,9.1375,15.5,31.635416667,7.6041666667 "6397","chic",73,64.9,2004-07-06,4.9,32,30.913156703,19.381825828 "6398","chic",64,57.6,2004-07-07,8,21,14.971014493,13.536458333 "6399","chic",65,52,2004-07-08,6.8571428571,18,28.474431818,15.697443182 "6400","chic",68,58.2,2004-07-09,13.7,33.5,26.472120098,14.822916667 "6401","chic",73,62.7,2004-07-10,17.4,24,35.705357143,13.03125 "6402","chic",74,67.3,2004-07-11,17.357142857,29.5,38.779761905,14.489583333 "6403","chic",78,67.4,2004-07-12,15.8,30,33.089529809,18.640625 "6404","chic",78,67.1,2004-07-13,6.4,44,26.254755435,23.698863636 "6405","chic",72,58.2,2004-07-14,9.1111111111,28.75,32.219089674,18.125 "6406","chic",72,56.3,2004-07-15,15.55,37,25.006793478,24.601255176 "6407","chic",73,62.8,2004-07-16,13.1,52.5,28.705729167,22.958333333 "6408","chic",70,60.7,2004-07-17,15,17,32.40625,7.8802083333 "6409","chic",71,59,2004-07-18,17.3,20,24.91500947,11.734375 "6410","chic",71,60,2004-07-19,24.2,59.5,26.736639493,23.958333333 "6411","chic",80,67.6,2004-07-20,25.375,40.2,35.630095109,25.84375 "6412","chic",79,72.8,2004-07-21,20,54.5,27.032095509,26.237215909 "6413","chic",79,68.4,2004-07-22,4.8,35.5,25.112318841,18.865131579 "6414","chic",65,50.8,2004-07-23,4.1125,9,26.998414855,10.161231884 "6415","chic",63,51,2004-07-24,6.8,17.5,28.166666667,9.15625 "6416","chic",67,53.2,2004-07-25,11.7,11.5,35.901041667,7.5520833333 "6417","chic",67,53.6,2004-07-26,9.75,20.4,29.444293478,21.580357143 "6418","chic",70,52.8,2004-07-27,18.05,30.5,29.46240942,31.315340909 "6419","chic",70,56.1,2004-07-28,25.9,62,28.088768116,38.317708333 "6420","chic",72,60.2,2004-07-29,23.742857143,42.5,33.564311594,27.454936594 "6421","chic",68,62.7,2004-07-30,25.35,51.5,22.459578804,33.963541667 "6422","chic",74,60.2,2004-07-31,17.2,29.5,28.9765625,22.21875 "6423","chic",77,62.5,2004-08-01,17.244444444,26,30.171875,26.359375 "6424","chic",78,67.7,2004-08-02,15.3,51.5,34.927083333,26.135416667 "6425","chic",78,67.7,2004-08-03,7.7,36,40.197844615,26.883852108 "6426","chic",70,61.4,2004-08-04,6.8875,10,27.291893116,11.70933618 "6427","chic",65,51,2004-08-05,8.5,9.5,28.574048913,8.2083333333 "6428","chic",65,49.2,2004-08-06,11.4,20,19.656476449,16.786458333 "6429","chic",65,52.2,2004-08-07,12.077777778,25,26.609375,21.651041667 "6430","chic",70,57,2004-08-08,19.5,28.5,31.440104167,19.890625 "6431","chic",75,61.3,2004-08-09,8.3,55.5,31.480298913,17.765625 "6432","chic",64,54.7,2004-08-10,6.2375,31.5,12.178894928,9.9123641304 "6433","chic",58,49,2004-08-11,5.7,29.5,11.778645833,10.807291667 "6434","chic",56,48.2,2004-08-12,6.7,17.5,13.020123106,15.928339097 "6435","chic",61,50.3,2004-08-13,7.5333333333,20.2,16.807291667,19.661684783 "6436","chic",60,48.4,2004-08-14,8.5,14.5,19.083333333,15.197916667 "6437","chic",62,49,2004-08-15,17.7,19.5,23.78125,17.875 "6438","chic",63,51.3,2004-08-16,15.8875,52.5,26.713994565,28.075892857 "6439","chic",72,62.3,2004-08-17,19.4,48,33.606678195,25.429924242 "6440","chic",70,64.4,2004-08-18,20,35.5,20.166440217,25.572916667 "6441","chic",64,50.9,2004-08-19,7.1111111111,17.8,20.444067029,14.424516908 "6442","chic",66,50.7,2004-08-20,11.8,42.5,10.927083333,28 "6443","chic",63,51.2,2004-08-21,9.8,22.5,24.026041667,19.229166667 "6444","chic",65,56.2,2004-08-22,16.175,36,30.6875,20.916666667 "6445","chic",72,63.7,2004-08-23,17.4,45.5,27.467844203,18.958333333 "6446","chic",73,67.4,2004-08-24,10,30,15.457223732,23.75 "6447","chic",72,66.5,2004-08-25,7.4,15,12.405230978,20.527777778 "6448","chic",75,70.2,2004-08-26,16.1,31.5,21.283514493,19.215277778 "6449","chic",78,69.5,2004-08-27,16.5,36.5,22.657382246,22.550422705 "6450","chic",68,61.9,2004-08-28,6.0125,6,22.546875,10.625 "6451","chic",61,53.9,2004-08-29,5.9,5,19.657738095,8.9930555556 "6452","chic",64,57.2,2004-08-30,16.4,32,14.639266304,24.213293651 "6453","chic",67,58.3,2004-08-31,15.342857143,32.4,19.219789608,27.467171717 "6454","chic",70,60.3,2004-09-01,NA,47.5,25.511548913,31.686298077 "6455","chic",73,62,2004-09-02,NA,42,33.84375,30.298557195 "6456","chic",73,64.3,2004-09-03,37.285714286,51.5,26.049479167,33.260416667 "6457","chic",73,63.2,2004-09-04,38.8,50.5,29.4609375,31.145833333 "6458","chic",76,66.5,2004-09-05,41.5,45,34.244791667,22.40625 "6459","chic",68,63.2,2004-09-06,20.7625,30.2,29.911458333,13.052083333 "6460","chic",66,51.3,2004-09-07,14.7,16,21.286458333,15.635416667 "6461","chic",65,53.9,2004-09-08,5.6,10,23.792119565,9.6614583333 "6462","chic",64,54.5,2004-09-09,7.1714285714,17,17.325520833,16.787878788 "6463","chic",66,54.4,2004-09-10,17.8,54,19.067708333,30.213541667 "6464","chic",70,57,2004-09-11,19.3,37,31.703125,34.473958333 "6465","chic",71,57.9,2004-09-12,28.528571429,42.75,40.901041667,27.973958333 "6466","chic",71,60.7,2004-09-13,NA,48.5,32.257822793,30.426759834 "6467","chic",75,64.7,2004-09-14,22.75,46.5,31.731925231,20.566576087 "6468","chic",77,65.9,2004-09-15,16.957142857,59,25.99830163,19.359375 "6469","chic",66,53.6,2004-09-16,9,18,23.825828157,19.984375 "6470","chic",62,49.1,2004-09-17,7.3,13.5,26.628787879,17.966856061 "6471","chic",64,52.2,2004-09-18,10.2125,24.2,24.630952381,23.057291667 "6472","chic",68,49.3,2004-09-19,10.7,16.5,28.267857143,18.854166667 "6473","chic",64,47.5,2004-09-20,NA,31,26.51242236,28.529664855 "6474","chic",67,50.5,2004-09-21,17.4875,61,30.207556936,38.338315217 "6475","chic",66,52.4,2004-09-22,26,71.5,30.686853002,39.449404762 "6476","chic",70,53.3,2004-09-23,27.9,60.5,33.017857143,39.614583333 "6477","chic",69,50.7,2004-09-24,12.911111111,35,23.217261905,31.166666667 "6478","chic",62,49.9,2004-09-25,9.8,15.5,20.767857143,19 "6479","chic",59,47.6,2004-09-26,NA,18,19.142857143,20.40625 "6480","chic",61,48.2,2004-09-27,18.471428571,42.5,15.678830228,40.854166667 "6481","chic",59,47.1,2004-09-28,NA,15.5,22.470496894,15.342708333 "6482","chic",54,44.9,2004-09-29,9.6,12.5,19.340838509,24.945707071 "6483","chic",54,41.2,2004-09-30,17.811111111,41.6,12.952380952,35.821428571 "6484","chic",62,49.2,2004-10-01,NA,51.5,25.067640693,31.444444444 "6485","chic",48,30.9,2004-10-02,7.8,11.5,17.25,17.041666667 "6486","chic",53,32.5,2004-10-03,7.7375,21.5,18.988095238,21.444444444 "6487","chic",47,30.3,2004-10-04,9.3,14,16.546807359,19.777777778 "6488","chic",46,29,2004-10-05,11.9,37.5,7.8039596273,32.1147343 "6489","chic",61,35.9,2004-10-06,11.4375,41,9.5587121212,36.541666667 "6490","chic",60,41.7,2004-10-07,18.8,46.5,20.413302277,38.617753623 "6491","chic",64,61.2,2004-10-08,24.55,34,16.514880952,22.555555556 "6492","chic",57,41,2004-10-09,10.35,18.5,16.291666667,26.555555556 "6493","chic",52,42.9,2004-10-10,9.9,14.5,18.80952381,19.444444444 "6494","chic",53,43.6,2004-10-11,13.1,19,20.744047619,23.472222222 "6495","chic",51,44.4,2004-10-12,13.2,29.2,16.081521739,23.393719807 "6496","chic",58,47.8,2004-10-13,24.8,29,13.87797619,28.666666667 "6497","chic",52,46.6,2004-10-14,12.35,17,11.264880952,23.138888889 "6498","chic",49,41.1,2004-10-15,8.6,11.5,9.2735507246,17.28321256 "6499","chic",43,29.5,2004-10-16,4.2,17,17.648809524,8.25 "6500","chic",43,28.9,2004-10-17,8.3,14,14.842261905,19.319444444 "6501","chic",45,39.3,2004-10-18,12.3875,18,13.346908526,22.140096618 "6502","chic",51,46.5,2004-10-19,13.1,17,11.620600414,17.584541063 "6503","chic",52,48,2004-10-20,14.75,12.5,14.285973085,18.794590643 "6504","chic",53,46.1,2004-10-21,11.6875,19.5,14.970238095,20.388888889 "6505","chic",54,49.3,2004-10-22,25.6,34,10.196299172,24.833333333 "6506","chic",66,54.8,2004-10-23,13.8,21,13.476190476,15.055555556 "6507","chic",55,43.4,2004-10-24,8.2333333333,14.2,14.4375,21.569444444 "6508","chic",57,44.9,2004-10-25,18.6,42,13.58139234,36.084541063 "6509","chic",57,52.1,2004-10-26,27.3,31,12.561853002,26.68021049 "6510","chic",58,52.1,2004-10-27,31.6125,28,14.472026162,26.301767677 "6511","chic",54,52.3,2004-10-28,43.6,41.5,6.2078804348,26.347222222 "6512","chic",69,65.9,2004-10-29,18.1,36.5,10.098052536,19.333333333 "6513","chic",61,44.2,2004-10-30,6,18.6,17.674479167,10.138888889 "6514","chic",51,41.2,2004-10-31,5.9,14,14.3671875,12.305555556 "6515","chic",50,46.1,2004-11-01,10.1,15,10.114583333,19.172222222 "6516","chic",47,41.6,2004-11-02,4.85,9.5,9.9479166667,23.388888889 "6517","chic",49,38.1,2004-11-03,8.4,16.5,16.439311594,21.950396825 "6518","chic",46,38.8,2004-11-04,11.9,14,12.24048913,25.417862839 "6519","chic",45,27.5,2004-11-05,6.975,16,15.989583333,24.583333333 "6520","chic",54,36.7,2004-11-06,10.3,26.5,12.583333333,22.5 "6521","chic",47,27.9,2004-11-07,6.5,15,20.083333333,16.208333333 "6522","chic",39,18.9,2004-11-08,7,25.5,9.5842391304,33.0625 "6523","chic",45,24.3,2004-11-09,13.2,38.5,7.6911231884,29.916666667 "6524","chic",55,38.3,2004-11-10,22.5,60.5,10.661231884,32.045289855 "6525","chic",44,30.8,2004-11-11,5.65,11.5,25.114583333,13.208333333 "6526","chic",39,26.9,2004-11-12,8.6,6,25.03125,17.277173913 "6527","chic",36,26.9,2004-11-13,8.95,23,17.84375,24.375 "6528","chic",38,26.4,2004-11-14,16.8875,27,7.8333333333,31.625 "6529","chic",40,33.1,2004-11-15,NA,46.5,2.196557971,34.597222222 "6530","chic",51,47.8,2004-11-16,29.6,42,2.7463768116,25.602657005 "6531","chic",59,55.8,2004-11-17,28.166666667,35,2.7306547619,20.152777778 "6532","chic",55,54.3,2004-11-18,28,28,4.1041666667,20.347222222 "6533","chic",52,51,2004-11-19,21.4,20.5,8.6961050725,23.472222222 "6534","chic",49,42.8,2004-11-20,10.525,11.5,11.166666667,14.277777778 "6535","chic",38,29,2004-11-21,11.6,16.5,11.239583333,19.333333333 "6536","chic",42,33.2,2004-11-22,22.6,39,3.5081521739,29.274891775 "6537","chic",45,38.6,2004-11-23,18.388888889,24.8,7.65625,19.539855072 "6538","chic",37,30.7,2004-11-24,12,8,25.229166667,14.638888889 "6539","chic",27,21.1,2004-11-25,11.6,12.5,12.916666667,25.111111111 "6540","chic",37,33,2004-11-26,11.657142857,17.5,4.9583333333,25.208333333 "6541","chic",42,39.7,2004-11-27,6.25,8,14.652777778,16.958333333 "6542","chic",39,24.9,2004-11-28,7.1,14,13.916666667,18.854166667 "6543","chic",35,32.8,2004-11-29,15.5125,17.2,3.7577341137,33.988247863 "6544","chic",36,33.4,2004-11-30,17.4,17.5,5.375,25.095410628 "6545","chic",29,23.9,2004-12-01,20.1,20.5,7.9461050725,21.958333333 "6546","chic",31,25,2004-12-02,21.525,31.5,4.1496212121,28.890873016 "6547","chic",30,21.8,2004-12-03,21,28,6.9166666667,27.263888889 "6548","chic",36,30.4,2004-12-04,14.4,28,7.5729166667,22.75 "6549","chic",37,34.9,2004-12-05,23.575,28.2,5.6458333333,20.152777778 "6550","chic",45,43.9,2004-12-06,21.9,23,4.0208333333,23.650362319 "6551","chic",46,43.4,2004-12-07,11.8,12,4.4293478261,20.458333333 "6552","chic",39,34.2,2004-12-08,13.942857143,27,7.5144927536,22.03442029 "6553","chic",44,40.2,2004-12-09,21.9,25.5,3.5,26.375 "6554","chic",41,39.5,2004-12-10,23.1,25,5.0833333333,20.125 "6555","chic",35,26.6,2004-12-11,5.85,8.6,18.166666667,15.291666667 "6556","chic",37,27.3,2004-12-12,8.75,15.5,18.643939394,10.361111111 "6557","chic",25,13,2004-12-13,10,20,18.635416667,15.743357488 "6558","chic",22,9.4,2004-12-14,7.9125,17,10.696105072,23.875 "6559","chic",28,15.1,2004-12-15,19.4,47,6.9008152174,24.457729469 "6560","chic",36,20.4,2004-12-16,10.5,32.5,9.8958333333,21.525252525 "6561","chic",26,16.1,2004-12-17,14.242857143,24.333333333,6.1041666667,32.402777778 "6562","chic",28,24.5,2004-12-18,16.4,30.5,8.9166666667,18.319444444 "6563","chic",11,-4.5,2004-12-19,5,47,21.385416667,17.013888889 "6564","chic",20,3.8,2004-12-20,7.7285714286,50,10.779438406,25.609782609 "6565","chic",25,13.8,2004-12-21,17.1,44.5,10.499094203,17.045289855 "6566","chic",11,-0.5,2004-12-22,12.8,23,12.21875,23.486111111 "6567","chic",12,-0.1,2004-12-23,7.675,26.5,17.041666667,21.625 "6568","chic",5,-7.4,2004-12-24,11.4,15,16.59375,23.25 "6569","chic",15,6.7,2004-12-25,19,27.5,10.479166667,21.597222222 "6570","chic",18,12.1,2004-12-26,21.85,27.5,8.4895833333,24.416666667 "6571","chic",17,12,2004-12-27,37.1,34.5,6.5317028986,36.505555556 "6572","chic",33,22.7,2004-12-28,25.5,41,4.1363224638,29.609903382 "6573","chic",33,29.1,2004-12-29,41.322222222,51.75,3.3333333333,27.550505051 "6574","chic",44,41.2,2004-12-30,35.5,28,7.0520833333,24.847222222 "6575","chic",43,36.1,2004-12-31,11.3,14,16.84375,15.333333333 "6576","chic",33,24.8,2005-01-01,10.525,16.5,9.2083333333,14.152777778 "6577","chic",44,39.6,2005-01-02,NA,16,6.4479166667,16.069444444 "6578","chic",34,31.5,2005-01-03,17.5,11.5,12.6875,18.625845411 "6579","chic",33,29,2005-01-04,8.8375,11.6,17.548460145,19.315217391 "6580","chic",29,25.5,2005-01-05,3.3,9,27.760416667,13.753787879 "6581","chic",20,18.6,2005-01-06,21.4,14,15.458333333,28.305555556 "6582","chic",18,16.7,2005-01-07,15.566666667,19.5,8.3600543478,31.041666667 "6583","chic",26,21.4,2005-01-08,26.7,24.5,5.2291666667,26.319444444 "6584","chic",30,27.6,2005-01-09,19.1,17,11.427083333,19.027777778 "6585","chic",32,26.1,2005-01-10,16.471428571,21,8.1761363636,25.319444444 "6586","chic",33,33.4,2005-01-11,16.2,20.5,4.1277173913,21.70410628 "6587","chic",48,45.6,2005-01-12,9.8,27.5,8.1875,24.899154589 "6588","chic",31,25.5,2005-01-13,10.1,9.5,9.2305253623,22.939009662 "6589","chic",10,-3.4,2005-01-14,10.5,20.5,17.20625,26.555555556 "6590","chic",10,-6.4,2005-01-15,8.8,14,18.270833333,25.583333333 "6591","chic",9,-5.6,2005-01-16,8.9666666667,13.4,23.864583333,18.375 "6592","chic",7,-7.8,2005-01-17,10.1,16,16.333333333,28.180555556 "6593","chic",12,1.7,2005-01-18,19.3,44,11.42798913,33.094202899 "6594","chic",29,22.3,2005-01-19,15.042857143,25.5,13.114583333,26.924242424 "6595","chic",26,20.9,2005-01-20,22,27.5,13.770833333,26.949494949 "6596","chic",21,13.5,2005-01-21,16.8,25,19.204257246,25.194444444 "6597","chic",17,12.2,2005-01-22,11.285714286,19.6,19.333333333,23.944444444 "6598","chic",16,7.2,2005-01-23,10.5,18.5,19.072916667,31.472222222 "6599","chic",26,17.3,2005-01-24,18.6,26.5,12.279891304,29.763504611 "6600","chic",33,27.1,2005-01-25,32.771428571,38.5,5.7042572464,36.403985507 "6601","chic",26,19.4,2005-01-26,12.5,20,19.28125,26.568181818 "6602","chic",13,9.3,2005-01-27,10.8,22,20.708333333,27.34469697 "6603","chic",15,5.1,2005-01-28,24.5,35.6,7.5384963768,40.425 "6604","chic",28,17.2,2005-01-29,32.7,37.5,3.7604166667,39 "6605","chic",30,26.2,2005-01-30,NA,23,12.40625,23.388888889 "6606","chic",28,22,2005-01-31,45.528571429,54,7.0833333333,43.58531746 "6607","chic",28,23.8,2005-02-01,26.65,28.5,12.800271739,35.041666667 "6608","chic",26,20,2005-02-02,52,50.5,6.2414772727,46.361111111 "6609","chic",30,25,2005-02-03,47.45,53.6,7.2690217391,48.597222222 "6610","chic",36,32.1,2005-02-04,61.5,57.5,4.8125,41.527777778 "6611","chic",46,35.5,2005-02-05,39.5,40.5,8.90625,29.055555556 "6612","chic",43,35.4,2005-02-06,26.342857143,27,6.9375,28.555555556 "6613","chic",39,39.3,2005-02-07,19.7,18,8.9791666667,26.331349206 "6614","chic",29,23,2005-02-08,12.9,5,19.232336957,18 "6615","chic",28,20,2005-02-09,12.014285714,17.8,12.697916667,28.722222222 "6616","chic",27,16.3,2005-02-10,22.1,28.5,19.1875,24.347222222 "6617","chic",33,23.5,2005-02-11,21.8,33.5,14.71875,23.541666667 "6618","chic",42,28.6,2005-02-12,20.914285714,29,13.677083333,27.486111111 "6619","chic",38,34.7,2005-02-13,23.4,28,13.458333333,21.208333333 "6620","chic",43,37.5,2005-02-14,NA,17,11.208333333,19.458333333 "6621","chic",38,34,2005-02-15,20.5875,25,5.0697463768,32.763888889 "6622","chic",30,18.2,2005-02-16,12.8,27.5,19.0625,19.9375 "6623","chic",22,8.4,2005-02-17,10.15,29.5,24.093297101,18.65530303 "6624","chic",19,2.8,2005-02-18,7.825,24.5,17.989583333,24.933574879 "6625","chic",32,18,2005-02-19,12,23,14.947916667,23.263888889 "6626","chic",34,32.6,2005-02-20,14.6,15,11.885416667,24.791666667 "6627","chic",35,28.7,2005-02-21,17.471428571,21.6,8.7083333333,22.291666667 "6628","chic",29,23.1,2005-02-22,22.8,28,11.635416667,32.110938578 "6629","chic",28,19.6,2005-02-23,23.9,45.5,10.806612319,43.166666667 "6630","chic",32,24.1,2005-02-24,27.35,35.5,10.869112319,40.518939394 "6631","chic",34,26,2005-02-25,28.6,40,13.927083333,26.125 "6632","chic",29,20.8,2005-02-26,12,15.5,30.479166667,19.583333333 "6633","chic",33,23.9,2005-02-27,20.285714286,24.2,14.96875,23.930555556 "6634","chic",31,27.4,2005-02-28,24.2,21,11.980978261,27.554830918 "6635","chic",23,12.5,2005-03-01,7.6,23,27.981431159,22.055555556 "6636","chic",20,5.9,2005-03-02,6.3625,20.5,24.03219697,25.666666667 "6637","chic",24,12.7,2005-03-03,18,38.5,12.447916667,42.187198068 "6638","chic",32,26.6,2005-03-04,36.9,54.5,5.3958333333,46.569444444 "6639","chic",38,30.5,2005-03-05,28.225,34.2,17.8125,24.194444444 "6640","chic",50,33.6,2005-03-06,14.7,26,29.5625,16.194444444 "6641","chic",42,29.3,2005-03-07,9.6,20.5,26.71875,18.561507937 "6642","chic",24,7,2005-03-08,7.325,25,25.703804348,22.078502415 "6643","chic",24,3.9,2005-03-09,9.7,24.5,19.5625,30.791666667 "6644","chic",29,22.4,2005-03-10,16.6,32,9.21875,33.347222222 "6645","chic",30,22.7,2005-03-11,11.985714286,20.5,23.09375,19.944444444 "6646","chic",26,10.7,2005-03-12,5.5,24.5,30.302083333,18.180555556 "6647","chic",23,7.6,2005-03-13,8.6,20.5,23.947916667,26.319444444 "6648","chic",29,19.6,2005-03-14,19.6125,51,9.9343297101,39.874568668 "6649","chic",31,17.4,2005-03-15,20.8,49,15.545742754,30.777173913 "6650","chic",37,21.1,2005-03-16,19.7,53.5,16.820199275,30.944444444 "6651","chic",32,26.8,2005-03-17,13.0625,22.4,26.104166667,25.958333333 "6652","chic",39,30.9,2005-03-18,28.7,43.5,21,26.506148441 "6653","chic",42,36.1,2005-03-19,26.95,27.5,19.145833333,18.458333333 "6654","chic",34,25,2005-03-20,12.9,15.5,32.520833333,17.486111111 "6655","chic",32,26.5,2005-03-21,16.7,19,23.124547101,27.134057971 "6656","chic",37,26.8,2005-03-22,NA,19.5,33.739130435,18.411835749 "6657","chic",34,26.2,2005-03-23,6.3857142857,12,32.40625,19.861111111 "6658","chic",36,25.6,2005-03-24,21.4,45,12.15625,45.944444444 "6659","chic",36,31,2005-03-25,16.1,14,29.677083333,23.152777778 "6660","chic",37,30.8,2005-03-26,17.685714286,22.5,24.28125,25.5 "6661","chic",38,28.1,2005-03-27,NA,34,16.25,37.069444444 "6662","chic",44,27.2,2005-03-28,NA,37.5,22.688405797,41.097826087 "6663","chic",52,31,2005-03-29,18.557142857,36.8,22.377264493,39.629227053 "6664","chic",66,44.3,2005-03-30,13.85,56.5,32.892210145,23.069444444 "6665","chic",49,38.1,2005-03-31,5.4,20.5,24.3125,21.222222222 "6666","chic",45,35.5,2005-04-01,10.8,24,18.560041408,32.443181818 "6667","chic",43,30.9,2005-04-02,6.05,15,32.291666667,18.125 "6668","chic",48,27.3,2005-04-03,7.5,24,22.44047619,31.26147343 "6669","chic",52,33.7,2005-04-04,18.1,47.5,25.742883023,38.083333333 "6670","chic",62,48.8,2005-04-05,16.7,40,36.107142857,23.625 "6671","chic",63,50.3,2005-04-06,NA,37,25.386775362,23.602842809 "6672","chic",48,35.5,2005-04-07,5.8714285714,11.5,40.779761905,13.401041667 "6673","chic",49,31.1,2005-04-08,5.4,17.5,33.982142857,26.53125 "6674","chic",52,32.5,2005-04-09,12.4,26.5,30.595238095,25.838541667 "6675","chic",62,42.3,2005-04-10,22.385714286,46.5,41.032738095,22.729166667 "6676","chic",65,32.6,2005-04-11,13.3,67,45.994824017,17.824728261 "6677","chic",48,34.6,2005-04-12,8.1,21,28.48388387,22.328869048 "6678","chic",47,24.9,2005-04-13,5.15,16,36.851061077,14.748958333 "6679","chic",47,23.4,2005-04-14,6.6,17.5,35.688146998,23.557291667 "6680","chic",48,28,2005-04-15,7.3,32.5,27.355519481,35.395833333 "6681","chic",56,34.4,2005-04-16,18.55,47.2,26.898809524,36.296875 "6682","chic",62,44.5,2005-04-17,29.6,40,37.199404762,32.6875 "6683","chic",64,44.9,2005-04-18,25.8,76.5,34.688405797,47.922554348 "6684","chic",71,48,2005-04-19,19.085714286,69,38.179089027,24.727581522 "6685","chic",57,46.8,2005-04-20,9.4,22.5,27.47826087,12.957386364 "6686","chic",50,30.6,2005-04-21,3.7,19.5,31.113095238,16.072916667 "6687","chic",42,38.4,2005-04-22,7.5125,14.2,29.847696687,18.59375 "6688","chic",39,26,2005-04-23,3.5,11,37.952380952,10.739583333 "6689","chic",44,24.1,2005-04-24,1.7,14,37.44047619,10.864583333 "6690","chic",53,29.4,2005-04-25,4.8428571429,40,32.410196687,18.989583333 "6691","chic",50,35.3,2005-04-26,5.8,28.5,25.317417184,15.274521222 "6692","chic",48,29.8,2005-04-27,6.35,37.5,27.285030316,15.958333333 "6693","chic",48,29.7,2005-04-28,10.3125,28.8,27.431677019,19.990327381 "6694","chic",46,25.7,2005-04-29,8.7,24.5,31.023809524,19.807291667 "6695","chic",46,26.1,2005-04-30,13.3,31.5,26.761904762,25.010416667 "6696","chic",42,26.6,2005-05-01,6.1857142857,25.5,20.672619048,14.84375 "6697","chic",40,25.1,2005-05-02,8,24,17.011904762,15.359649123 "6698","chic",43,24.1,2005-05-03,10.6,25.5,22.474964585,22.623867754 "6699","chic",48,24,2005-05-04,15.9,44.8,26.358850932,32.659564394 "6700","chic",54,29.2,2005-05-05,20.3,61.5,34.892857143,34.344882246 "6701","chic",63,43.1,2005-05-06,19.8,65.5,34.55893563,36.904761905 "6702","chic",53,44,2005-05-07,14.05,25.5,34.208333333,22.020833333 "6703","chic",64,47.3,2005-05-08,17.1,42,43.613095238,23.390625 "6704","chic",70,56.1,2005-05-09,16.4,62.5,31.925595238,23.296875 "6705","chic",71,51.7,2005-05-10,7.6625,33.25,31.12189441,22.877264493 "6706","chic",54,44.4,2005-05-11,NA,17,26.613095238,11.953125 "6707","chic",49,36.7,2005-05-12,5.1,17,24.401785714,12.135416667 "6708","chic",61,49.8,2005-05-13,17,36,18.169642857,25.385416667 "6709","chic",56,43.6,2005-05-14,6.9,14,28.860119048,11.166666667 "6710","chic",48,37.5,2005-05-15,2.4,10,19.693452381,11.75 "6711","chic",52,35.1,2005-05-16,4.8285714286,20.75,24.147056748,17.042119565 "6712","chic",60,42.8,2005-05-17,13.35,37,32.803442029,24.450892857 "6713","chic",66,46.3,2005-05-18,16.8,48,42.005952381,22.502840909 "6714","chic",62,56.7,2005-05-19,31.528571429,43.5,21.060559006,27.229166667 "6715","chic",58,44.9,2005-05-20,13.95,24.5,37.574404762,17.197916667 "6716","chic",58,44,2005-05-21,13.8,42,32.741071429,31.776041667 "6717","chic",69,47.8,2005-05-22,11.05,28,34.125,22.4375 "6718","chic",61,48.3,2005-05-23,9.8,18.5,32.413690476,13.956974638 "6719","chic",57,45.5,2005-05-24,8.7,13,27.042831263,16.393115942 "6720","chic",58,44.7,2005-05-25,7.05,19,25.463379917,20.021306818 "6721","chic",66,43.9,2005-05-26,10.8,39.5,22,29.894927536 "6722","chic",59,44,2005-05-27,8.7,37.5,22.688535197,22.392663043 "6723","chic",58,44.8,2005-05-28,7.2142857143,16.4,21.18452381,21.645833333 "6724","chic",57,44.4,2005-05-29,NA,17.5,23.130952381,24.260416667 "6725","chic",60,45.9,2005-05-30,NA,19.5,32.25,21.713541667 "6726","chic",59,49,2005-05-31,8.3285714286,14,22.890786749,20.819067029 "6727","chic",65,49.8,2005-06-01,15.4,27.5,37.219985178,21.838541667 "6728","chic",66,54.4,2005-06-02,19,35.5,34.79540308,23.166666667 "6729","chic",67,60.9,2005-06-03,27.1125,39,29.104166667,19.209177372 "6730","chic",72,63.5,2005-06-04,21.4,35.5,36.098958333,21.994791667 "6731","chic",78,62.4,2005-06-05,16,23.5,44.1796875,11.96875 "6732","chic",78,57.6,2005-06-06,7.2285714286,33,35.635416667,19.890398551 "6733","chic",77,62.4,2005-06-07,16.8,39.5,39.294497283,27.984827899 "6734","chic",78,65.1,2005-06-08,19.2,37,33.461503623,30.131793478 "6735","chic",77,63.4,2005-06-09,13.771428571,29.6,25.196671196,33.192708333 "6736","chic",78,68.1,2005-06-10,20.1,38,32.704370471,25.255208333 "6737","chic",80,67.5,2005-06-11,14.5,27,33.7109375,14.291666667 "6738","chic",75,66.5,2005-06-12,13.185714286,18,26.932291667,13.510416667 "6739","chic",78,64.2,2005-06-13,19.4,31,37.544795784,19.735863095 "6740","chic",74,60.1,2005-06-14,6.8,30,35.221611495,14.392436594 "6741","chic",64,57.3,2005-06-15,6.1875,17.4,18.729619565,14.727272727 "6742","chic",66,46.8,2005-06-16,6.8,19.5,26.009943182,19.927083333 "6743","chic",61,49,2005-06-17,5.6,9.5,20.999773551,13.807291667 "6744","chic",62,50.7,2005-06-18,4.2,8.5,19.036458333,13.859375 "6745","chic",65,53.5,2005-06-19,7,19,26.588541667,14.027777778 "6746","chic",69,54.5,2005-06-20,16.6,42.5,34.683197464,33.992788462 "6747","chic",75,58,2005-06-21,16.471428571,41,40.065217391,25.5 "6748","chic",72,44.6,2005-06-22,11.3,19,31.823410738,20.155838274 "6749","chic",77,60.8,2005-06-23,23.3,62.5,44.326313406,26.838541667 "6750","chic",86,63.4,2005-06-24,31.857142857,74,50.966485507,23.75 "6751","chic",80,66,2005-06-25,28.1,48,46.398809524,22.791666667 "6752","chic",82,66.1,2005-06-26,23,42.5,55.220238095,17.197916667 "6753","chic",82,64.6,2005-06-27,51.5375,79,55.235857213,28.549365942 "6754","chic",85,64.1,2005-06-28,31.2,57.5,50.291440217,26.553977273 "6755","chic",82,67.5,2005-06-29,22.2,47,43.02807971,25.85939992 "6756","chic",82,63.4,2005-06-30,15.885714286,38,45.117753623,19.4375 "6757","chic",69,51.6,2005-07-01,6.3,16,30.036458333,9.3229166667 "6758","chic",65,50.2,2005-07-02,4.2,13,30.791666667,9.2777777778 "6759","chic",70,55.8,2005-07-03,16.1125,26.8,38.401041667,15.659873188 "6760","chic",77,64.4,2005-07-04,23.2,32.5,36.604166667,12.96875 "6761","chic",75,61.6,2005-07-05,NA,22.5,30.286118659,13.370652174 "6762","chic",72,61.9,2005-07-06,12.685714286,16,33.866806653,10.326388889 "6763","chic",73,58,2005-07-07,9.9,21.5,36.095347063,11.253623188 "6764","chic",73,54.1,2005-07-08,9.3,18,37.255208333,18.062273551 "6765","chic",72,52.5,2005-07-09,16.35,37.5,42.192708333,21.729166667 "6766","chic",76,53.2,2005-07-10,15.4,28,57.90625,23.958333333 "6767","chic",76,58.8,2005-07-11,19.1,38,57.645153986,19.708333333 "6768","chic",79,65.5,2005-07-12,26.1875,35,58.841259058,14.816220238 "6769","chic",80,66,2005-07-13,19.1,25,39.333333333,10.162202381 "6770","chic",79,67,2005-07-14,19.6,31.5,34.525815217,12.50611413 "6771","chic",79,65.6,2005-07-15,15.757142857,28.4,27.396625906,16.098958333 "6772","chic",81,63.8,2005-07-16,19.6,29,38.088541667,16.59375 "6773","chic",84,67,2005-07-17,32.7,42.5,44.643229167,16.270833333 "6774","chic",83,64.6,2005-07-18,12.8375,37.5,36.447803442,13.018957039 "6775","chic",79,57.6,2005-07-19,10.9,35,36.913011128,19.398809524 "6776","chic",78,67.8,2005-07-20,15.6,37.5,26.120429842,27.680871212 "6777","chic",79,68.9,2005-07-21,12.375,23.8,35.373641304,22.459541063 "6778","chic",75,65.3,2005-07-22,10,14.5,36.317708333,16.033482143 "6779","chic",74,68.3,2005-07-23,NA,26,28.395833333,19.75 "6780","chic",90,70.9,2005-07-24,22.05,44,47.604166667,11.963541667 "6781","chic",81,71.4,2005-07-25,NA,32.5,30.840919384,27.977678571 "6782","chic",75,66.8,2005-07-26,NA,23,29.265306122,15.864583333 "6783","chic",65,53.3,2005-07-27,7.675,15.4,21.383265399,14.501636905 "6784","chic",66,52.1,2005-07-28,14.8,29,23.0859375,25.852807971 "6785","chic",72,58.2,2005-07-29,NA,32.5,26.4765625,22.359375 "6786","chic",73,59.7,2005-07-30,12.8375,22,32.434895833,18.911458333 "6787","chic",79,64.6,2005-07-31,20.8,29.5,40.848958333,20.166666667 "6788","chic",81,65,2005-08-01,28.7,56.5,41.949048913,26.83110119 "6789","chic",79,66.1,2005-08-02,44.4875,60,40.671308877,29.280344203 "6790","chic",84,69,2005-08-03,37.9,64,39.321105072,23.619318182 "6791","chic",82,66.1,2005-08-04,21.6,45.5,37.297441123,18.677083333 "6792","chic",73,56.5,2005-08-05,7.4285714286,27.5,28.036458333,17.817708333 "6793","chic",72,55.9,2005-08-06,11,20.5,33.395833333,19.552083333 "6794","chic",74,57.8,2005-08-07,25.9,40,44.994791667,28.375 "6795","chic",78,57.8,2005-08-08,31.6625,55.4,39.612884964,38.869729908 "6796","chic",80,63.5,2005-08-09,33,65.5,43.286345109,28.88451087 "6797","chic",79,65.9,2005-08-10,16,33.5,42.875305854,19.588636364 "6798","chic",72,67,2005-08-11,14.785714286,24,21.543478261,31.854166667 "6799","chic",79,68.9,2005-08-12,NA,27,30.790647645,23.9875 "6800","chic",72,61,2005-08-13,10.1,14,27.408854167,15.125 "6801","chic",69,57.5,2005-08-14,7.6,15,22.744791667,15.861111111 "6802","chic",71,62.4,2005-08-15,16.4,34.5,27.387567935,29.006944444 "6803","chic",74,62,2005-08-16,21.4,36.5,34.12182971,26.802083333 "6804","chic",71,60.8,2005-08-17,20.7625,41,39.419836957,23.953125 "6805","chic",77,68.9,2005-08-18,NA,41,26.453125,24.411458333 "6806","chic",79,66.9,2005-08-19,14.5,28,35.8140625,17.685974447 "6807","chic",78,67.7,2005-08-20,9.8857142857,18.6,27.2734375,15.791666667 "6808","chic",74,54.4,2005-08-21,7.9,12,24.380208333,13.83423913 "6809","chic",67,52.7,2005-08-22,4,8,22.741734601,10.161458333 "6810","chic",66,52.7,2005-08-23,5.0857142857,9,27.167912138,12.967617754 "6811","chic",67,56,2005-08-24,NA,28.5,28.014605978,15.166666667 "6812","chic",72,58.5,2005-08-25,18.5,46.5,35.561011905,22.131628788 "6813","chic",75,64.3,2005-08-26,31.3,49.4,37.456439394,30.95217803 "6814","chic",76,59.6,2005-08-27,18.6,30,31.65625,19.65625 "6815","chic",75,57.6,2005-08-28,12,19,35.005208333,16.755208333 "6816","chic",74,59,2005-08-29,13.357142857,26.5,33.420063406,23.711277174 "6817","chic",71,61.3,2005-08-30,15.9,22,32.328577899,19.275815217 "6818","chic",71,58.9,2005-08-31,8.1,18.5,17.507699275,19.365056818 "6819","chic",76,51.4,2005-09-01,9.8,33,21.322350543,28.192612986 "6820","chic",72,46.1,2005-09-02,8.6,37.5,22.612998188,26.791666667 "6821","chic",69,54.6,2005-09-03,10.25,17.5,21.447916667,19.25 "6822","chic",70,55.8,2005-09-04,12.285714286,24,25.5625,18.166666667 "6823","chic",73,57.6,2005-09-05,17.4,25,39.234375,17.921875 "6824","chic",74,56.8,2005-09-06,28.9,50,41.517663043,27.641304348 "6825","chic",78,60.3,2005-09-07,32.371428571,53.8,39.42821558,34.723214286 "6826","chic",72,64.7,2005-09-08,17.1,23,41.091917819,16.609375 "6827","chic",74,62.8,2005-09-09,20.1,39,36.581521739,21.598958333 "6828","chic",80,62.9,2005-09-10,37.8875,55,47.578125,19.385416667 "6829","chic",80,61.8,2005-09-11,56.5,65,51.739583333,18.875 "6830","chic",79,57.7,2005-09-12,44.3,78.5,44.542346014,28.048363095 "6831","chic",83,59.8,2005-09-13,28.675,59,39.342010458,25.748106061 "6832","chic",67,57.9,2005-09-14,8.5,18,23.868923611,14.678503788 "6833","chic",62,52.9,2005-09-15,6.6,12,23.1953125,14.09375 "6834","chic",62,55.4,2005-09-16,7.4285714286,12,23.973958333,16.25 "6835","chic",65,54.4,2005-09-17,9.7,21.5,20.109375,22.572916667 "6836","chic",68,55.8,2005-09-18,15,22,25.203125,24.380208333 "6837","chic",75,64.7,2005-09-19,19.685714286,29.6,25.567481884,19.96875 "6838","chic",69,55.9,2005-09-20,13.2,32.5,20.187952899,35.925271739 "6839","chic",70,54.7,2005-09-21,18.2,49,29.046583851,33.177083333 "6840","chic",75,64.5,2005-09-22,22.542857143,42.5,34.202691511,18.883928571 "6841","chic",65,52.9,2005-09-23,4.8,9.5,25.520562771,11.125 "6842","chic",67,59.2,2005-09-24,18.4,25.5,14.226190476,22.736111111 "6843","chic",71,67.4,2005-09-25,21.428571429,26,13.526785714,18.347222222 "6844","chic",60,58.6,2005-09-26,7.6,14.5,12.527820911,19.916666667 "6845","chic",61,51.2,2005-09-27,14.9,32.5,13.360295502,30.055555556 "6846","chic",62,53.2,2005-09-28,9.9166666667,28.5,18.413302277,24.75 "6847","chic",53,34.9,2005-09-29,5.3,14.5,12.323628364,19.402777778 "6848","chic",58,38,2005-09-30,7.9,33.5,15.563923395,26.986111111 "6849","chic",65,48.4,2005-10-01,16.4,29.2,25.952380952,28.277777778 "6850","chic",69,62,2005-10-02,21.7,28,29.452380952,19.569444444 "6851","chic",78,67.3,2005-10-03,23,43,25.239777433,21.16468254 "6852","chic",79,66.3,2005-10-04,23.15,46.5,27.52510352,22.652777778 "6853","chic",77,63.2,2005-10-05,NA,47,30.525362319,24.917874396 "6854","chic",58,38.8,2005-10-06,6.3,16.5,13.320781573,11.680555556 "6855","chic",49,37.6,2005-10-07,4.2714285714,10.75,15.145833333,14.422222222 "6856","chic",48,38.9,2005-10-08,4.5,6.5,26,11.486111111 "6857","chic",53,43.1,2005-10-09,4.4,7.5,27.773809524,10.736111111 "6858","chic",54,47.2,2005-10-10,7.8714285714,12.5,18.547619048,17.375 "6859","chic",58,52,2005-10-11,7.6,13.5,11.958333333,15.555555556 "6860","chic",59,54.4,2005-10-12,18.7,24.5,3.04373706,20.986111111 "6861","chic",61,53.2,2005-10-13,29.8,48.2,8.9943064182,29.387077295 "6862","chic",62,48.2,2005-10-14,16.1,38.5,15.145833333,28.152777778 "6863","chic",58,34.9,2005-10-15,5.4,20.5,23.75297619,23.222222222 "6864","chic",52,39.5,2005-10-16,7.9,12.5,16.946428571,20.055555556 "6865","chic",58,44.8,2005-10-17,11.65,29.5,14.66873706,28.013888889 "6866","chic",58,42.1,2005-10-18,11.2,36,12.816123188,31.493357488 "6867","chic",56,41.3,2005-10-19,5.6125,16.4,23.309759081,17.518759019 "6868","chic",51,40.3,2005-10-20,6.8,17,18.75,17.146135266 "6869","chic",53,41.3,2005-10-21,9.6,12.5,22.245230701,19.839285714 "6870","chic",46,39.9,2005-10-22,13.3375,18,8.2708333333,23.5 "6871","chic",40,36.7,2005-10-23,8.5,10,11.642857143,18.083333333 "6872","chic",46,37.9,2005-10-24,5,7,11.735119048,15.404589372 "6873","chic",45,37.7,2005-10-25,4.4875,8.25,14.627329193,18.137077295 "6874","chic",44,33.5,2005-10-26,7.6,14,10.098214286,25.128968254 "6875","chic",44,35.9,2005-10-27,10.8,19,10.035714286,27.666666667 "6876","chic",44,35.1,2005-10-28,16.925,25.5,10.206780538,33.180555556 "6877","chic",45,34.3,2005-10-29,22.6,37,11.491071429,27.875 "6878","chic",54,37,2005-10-30,20.7,25,26.160714286,18.041666667 "6879","chic",54,49.4,2005-10-31,31.925,39.2,11.425795219,21.577898551 "6880","chic",48,37.5,2005-11-01,16,27,6.9360507246,22.728535354 "6881","chic",52,35.4,2005-11-02,8.5,28.5,11.891666667,23.0102657 "6882","chic",62,40.7,2005-11-03,9.675,34.5,24.877173913,22.569444444 "6883","chic",60,38,2005-11-04,14.8,47.5,18.90625,24.791666667 "6884","chic",54,50.6,2005-11-05,27.2,32,11.472222222,18.208333333 "6885","chic",51,42,2005-11-06,5.9875,10.4,15.125,13.986111111 "6886","chic",49,43.2,2005-11-07,17.4,31,7.3707427536,25.064182195 "6887","chic",55,49.8,2005-11-08,40,36.5,4.1005434783,27.222222222 "6888","chic",54,37.8,2005-11-09,8.4375,25,17.895833333,11.916666667 "6889","chic",39,25.6,2005-11-10,NA,24,9.5625,23.805555556 "6890","chic",47,30.5,2005-11-11,14.8,41.5,8.1979166667,33.944444444 "6891","chic",54,38.7,2005-11-12,13.842857143,27.5,20.552083333,22.527777778 "6892","chic",49,35.7,2005-11-13,5.7,17.5,24.927083333,9.7638888889 "6893","chic",39,33.6,2005-11-14,8.3,17,10.46875,24.719806763 "6894","chic",46,42.5,2005-11-15,9.3,10.5,8.4510869565,16.597222222 "6895","chic",29,19.2,2005-11-16,4.7,27.5,16.96875,10.347222222 "6896","chic",22,7.8,2005-11-17,8.8,20.5,12.822916667,20.638888889 "6897","chic",30,21.1,2005-11-18,11.714285714,22.4,4.5277777778,24.958333333 "6898","chic",43,28.1,2005-11-19,15.8,25.5,11.388888889,26.729166667 "6899","chic",39,33,2005-11-20,19.1,17,9.8194444444,19.041666667 "6900","chic",42,31.5,2005-11-21,12.85,21,11.708333333,14.860869565 "6901","chic",32,19.3,2005-11-22,NA,19,12.987318841,26.166666667 "6902","chic",37,29.6,2005-11-23,NA,13.5,6.8121980676,21.854166667 "6903","chic",29,-0.6,2005-11-24,3.275,12.5,26.694444444,8.8333333333 "6904","chic",20,5.3,2005-11-25,5.5,16,11.541666667,22.6875 "6905","chic",32,20.4,2005-11-26,17.9,21,6.6805555556,27.104166667 "6906","chic",48,46,2005-11-27,19.166666667,16,11.666666667,20.958333333 "6907","chic",50,44.7,2005-11-28,12.4,18.5,15.236413043,16.075091575 "6908","chic",33,22.9,2005-11-29,7.9,14,11.591032609,13.094202899 "6909","chic",24,17.2,2005-11-30,12.614285714,17.8,9.1902173913,21.888888889 "6910","chic",25,18,2005-12-01,18.4,18.5,7.03125,24.444444444 "6911","chic",19,8.5,2005-12-02,NA,19.5,9.15625,23.291666667 "6912","chic",25,19,2005-12-03,13.342857143,20,10.333333333,25.194444444 "6913","chic",20,15.8,2005-12-04,15.3,15.5,13.177083333,21.708333333 "6914","chic",11,2.8,2005-12-05,NA,30,6.4479166667,28.388888889 "6915","chic",11,3.2,2005-12-06,24.616666667,33,4.7015398551,29.083333333 "6916","chic",8,-1.8,2005-12-07,37.8,39,3.9162137681,34.30952381 "6917","chic",16,15.6,2005-12-08,24.3,31,5.9952651515,34.222222222 "6918","chic",20,10.9,2005-12-09,25.45,22,5.9583333333,31.416666667 "6919","chic",22,16.2,2005-12-10,18.2,30,9.1354166667,28.708333333 "6920","chic",20,17.2,2005-12-11,10.6,14,11.333333333,22.555555556 "6921","chic",19,11.6,2005-12-12,19.225,28.75,5.03125,39.746212121 "6922","chic",26,19.8,2005-12-13,26.5,21,6.6286231884,29.569444444 "6923","chic",32,27.4,2005-12-14,26.9,16,3.8020833333,30.633838384 "6924","chic",30,27.9,2005-12-15,14.4,16.5,4.8958333333,25.430555556 "6925","chic",21,14.7,2005-12-16,11,22,11.166666667,16.875 "6926","chic",16,7.3,2005-12-17,13.8,20,8.59375,20.736111111 "6927","chic",10,1.9,2005-12-18,12.2,17.5,13.552083333,19.111111111 "6928","chic",5,-0.3,2005-12-19,21.15,21,8.0588768116,31.791666667 "6929","chic",13,7.7,2005-12-20,25.75,32,3.8491847826,32.897727273 "6930","chic",12,7.7,2005-12-21,37.928571429,59.5,3.6639492754,34.861111111 "6931","chic",22,23.3,2005-12-22,36.65,42.5,5.3854166667,33.730263158 "6932","chic",41,32.6,2005-12-23,32.9,34.5,6.90625,29.083333333 "6933","chic",37,35.2,2005-12-24,30.771428571,25.2,1.7708333333,31.986111111 "6934","chic",35,32.1,2005-12-25,6.7,8,14.354166667,13.791666667 "6935","chic",35,29.6,2005-12-26,8.4,8.5,14.041666667,16.819444444 "6936","chic",40,33.6,2005-12-27,23.56,27,4.46875,23.5 "6937","chic",37,34.5,2005-12-28,17.75,27.5,3.2604166667,19.285628019 "6938","chic",35,29.4,2005-12-29,7.45,23.5,6.7948369565,19.972222222 "6939","chic",36,31,2005-12-30,15.057142857,19.2,3.0344202899,22.805555556 "6940","chic",35,30.1,2005-12-31,15,23.5,2.53125,13.25 PKLopygam/datasets/coal.csv"","date" "1",1851.20260095825 "2",1851.63244353183 "3",1851.96919917864 "4",1851.97467488022 "5",1852.31416837782 "6",1852.34702258727 "7",1852.35797399042 "8",1852.38535249829 "9",1852.97672826831 "10",1853.19575633128 "11",1853.22861054073 "12",1853.3189596167 "13",1853.49965776865 "14",1854.13483915127 "15",1856.39630390144 "16",1856.50581793292 "17",1856.53867214237 "18",1856.61806981519 "19",1857.13826146475 "20",1857.4038329911 "21",1857.58179329227 "22",1858.09103353867 "23",1858.15400410678 "24",1858.40588637919 "25",1858.94524298426 "26",1860.12525667351 "27",1860.16906228611 "28",1860.59069130732 "29",1860.8507871321 "30",1860.91923340178 "31",1860.97125256674 "32",1861.18480492813 "33",1861.73785078713 "34",1861.83641341547 "35",1862.13757700205 "36",1862.8932238193 "37",1862.9370294319 "38",1863.17796030116 "39",1863.79397672827 "40",1863.93908281999 "41",1863.98562628337 "42",1865.45859000684 "43",1865.97056810404 "44",1866.0636550308 "45",1866.3401779603 "46",1866.45242984257 "47",1866.83299110199 "48",1866.94798083504 "49",1866.95071868583 "50",1867.63518138261 "51",1867.85420944559 "52",1867.86242299795 "53",1868.74948665298 "54",1868.90280629706 "55",1868.98767967146 "56",1869.25051334702 "57",1869.44216290212 "58",1869.55441478439 "59",1869.8090349076 "60",1869.87474332649 "61",1870.12388774812 "62",1870.51540041068 "63",1870.55920602327 "64",1870.63312799452 "65",1871.02737850787 "66",1871.15058179329 "67",1871.16700889801 "68",1871.73648186174 "69",1871.81587953457 "70",1872.12251882272 "71",1872.24024640657 "72",1872.76865160849 "73",1873.13552361396 "74",1874.28542094456 "75",1874.54551676934 "76",1874.88774811773 "77",1874.98083504449 "78",1875.32854209446 "79",1875.92539356605 "80",1875.93086926762 "81",1875.93086926762 "82",1876.96577686516 "83",1877.0643394935 "84",1877.1054072553 "85",1877.19028062971 "86",1877.77891854894 "87",1877.8090349076 "88",1878.18412046543 "89",1878.19507186858 "90",1878.23613963039 "91",1878.43326488706 "92",1878.69609856263 "93",1879.03559206023 "94",1879.17248459959 "95",1879.50102669405 "96",1880.05681040383 "97",1880.53867214237 "98",1880.68925393566 "99",1880.94387405886 "100",1881.1054072553 "101",1881.96783025325 "102",1882.12936344969 "103",1882.29637234771 "104",1882.29911019849 "105",1882.33470225873 "106",1882.85215605749 "107",1883.79671457906 "108",1883.8514715948 "109",1884.07323750856 "110",1884.85626283368 "111",1885.16837782341 "112",1885.46406570842 "113",1885.9787816564 "114",1886.6167008898 "115",1886.69336071184 "116",1886.75359342916 "117",1886.92060232717 "118",1887.13415468857 "119",1887.4052019165 "120",1888.2977412731 "121",1889.05065023956 "122",1889.19849418207 "123",1889.79260780287 "124",1890.10198494182 "125",1890.18959616701 "126",1891.25188227242 "127",1891.66529774127 "128",1892.65366187543 "129",1893.50787132101 "130",1894.47707049966 "131",1895.31759069131 "132",1896.07049965777 "133",1896.28405201916 "134",1896.33059548255 "135",1899.62970568104 "136",1901.39288158795 "137",1902.67145790554 "138",1905.05612594114 "139",1905.18754277892 "140",1905.52429842574 "141",1906.77275838467 "142",1908.13620807666 "143",1908.27036276523 "144",1908.62902121834 "145",1909.1273100616 "146",1909.82546201232 "147",1910.35660506502 "148",1910.96988364134 "149",1912.51950718686 "150",1913.78439425051 "151",1914.40862422998 "152",1916.61533196441 "153",1918.03080082136 "154",1922.52908966461 "155",1922.67693360712 "156",1923.56947296372 "157",1927.16153319644 "158",1928.11430527036 "159",1930.15400410678 "160",1930.74811772758 "161",1931.07665982204 "162",1931.8295687885 "163",1931.88432580424 "164",1932.06502395619 "165",1932.86447638604 "166",1932.87542778919 "167",1933.88295687885 "168",1934.7234770705 "169",1935.64339493498 "170",1935.69541409993 "171",1936.5961670089 "172",1937.49965776865 "173",1938.35386721424 "174",1939.82135523614 "175",1940.21834360027 "176",1940.42368240931 "177",1941.42026009582 "178",1941.52156057495 "179",1941.5735797399 "180",1942.0006844627 "181",1942.12936344969 "182",1942.48254620123 "183",1946.94524298426 "184",1947.02464065708 "185",1947.61875427789 "186",1947.6379192334 "187",1947.68720054757 "188",1951.4052019165 "189",1957.88295687885 "190",1960.4893908282 "191",1962.21971252567 PKL% ++pygam/datasets/default.csv"","default","student","balance","income" "1","No","No",729.526495207286,44361.6250742669 "2","No","Yes",817.180406555498,12106.1347003149 "3","No","No",1073.54916401173,31767.1389473999 "4","No","No",529.250604745278,35704.4939350781 "5","No","No",785.655882930501,38463.4958787229 "6","No","Yes",919.5885304745,7491.55857182746 "7","No","No",825.513330517201,24905.2265775235 "8","No","Yes",808.667504297266,17600.4513435869 "9","No","No",1161.05785403132,37468.5292875375 "10","No","No",0,29275.2682931678 "11","No","Yes",0,21871.0730892776 "12","No","Yes",1220.58375300377,13268.5622209261 "13","No","No",237.045113977472,28251.6953449631 "14","No","No",606.742343302464,44994.5558492173 "15","No","No",1112.96840063305,23810.174050036 "16","No","No",286.232560139224,45042.4130358855 "17","No","No",0,50265.3123535985 "18","No","Yes",527.540184074571,17636.5396172936 "19","No","No",485.936864171729,61566.106117801 "20","No","No",1095.0727352874,26464.631389229 "21","No","No",228.952549642572,50500.1821977441 "22","No","No",954.261792773545,32457.5090750754 "23","No","No",1055.95660472904,51317.8830823874 "24","No","No",641.984388848021,30466.1032574814 "25","No","No",773.211724534176,34353.3143050038 "26","No","No",855.008522525692,25211.3321614539 "27","No","No",642.999738515429,41473.5118010187 "28","No","No",1454.86327248404,32189.0949523178 "29","No","No",615.704276560405,39376.3946187014 "30","No","Yes",1119.56935332865,16556.0702053511 "31","No","No",494.816228807326,54384.7828361386 "32","No","Yes",448.880656256039,15799.4704097956 "33","No","Yes",584.90489468245,22429.9350462168 "34","No","No",913.587172608928,46907.2254028623 "35","No","Yes",1423.93891664088,22634.4880875812 "36","No","Yes",1499.72465655973,13190.6527164103 "37","No","No",692.034167065432,47806.6117728963 "38","No","No",351.45347152301,35087.4886480858 "39","No","No",742.627620785597,37864.8239388952 "40","No","No",653.118400123388,39489.5947028613 "41","No","No",872.138679538477,41787.5672689012 "42","No","No",837.262622754171,51471.7720946377 "43","No","No",1151.63056608265,42917.4695636282 "44","No","Yes",220.55560838644,16872.9475557814 "45","No","Yes",1690.23441038701,19052.5722246955 "46","No","No",408.772914305185,54206.9392120179 "47","No","No",1238.61032124112,50066.6805336538 "48","No","No",1228.30835035336,37408.5038685076 "49","No","No",820.919204146184,47746.5420731016 "50","No","No",857.4851177765,31688.3459738919 "51","No","No",563.618177182362,42641.253266646 "52","No","Yes",1282.97253359578,13120.6364696027 "53","No","Yes",1505.78267482884,26557.1414458808 "54","No","Yes",904.040259066813,16882.3006056535 "55","No","No",0,49956.580571906 "56","No","Yes",1294.4973466731,10464.3207319231 "57","No","Yes",1275.55063272364,15887.4684867774 "58","No","No",1536.59460097252,48766.9074575615 "59","No","No",1332.52264386695,39143.1370690178 "60","No","No",492.079767815411,33379.0946028395 "61","No","No",766.234379303894,46478.2942569524 "62","No","No",690.127246199993,63432.9842544674 "63","No","No",0,32481.5400461151 "64","No","No",1480.65530926266,36866.1570686848 "65","No","No",989.055596975304,45344.2513202648 "66","No","No",1302.34183516856,33695.4262332636 "67","No","No",1044.55234328472,54696.7659816226 "68","No","No",0,43658.2277239957 "69","No","No",866.02843636799,38363.4216347118 "70","No","No",690.800792354134,48140.471335995 "71","No","No",597.757142017061,31577.6151255677 "72","No","No",429.485402306276,51311.218101023 "73","No","No",1398.15620148326,39644.9421931896 "74","No","Yes",1578.06409853994,19886.4939515168 "75","No","No",857.069053134242,26655.6889653755 "76","No","Yes",752.459945958806,16211.2757881826 "77","No","Yes",774.738426963927,15193.733135525 "78","No","No",728.373251302587,45131.718264691 "79","No","No",76.9912905299071,28392.0934122846 "80","No","No",196.456913136183,41346.78591324 "81","No","Yes",948.747918388616,14297.6190485513 "82","No","No",431.920885304176,39369.8815631008 "83","No","No",461.63818223378,46221.2114948234 "84","No","No",572.015760230599,33046.3129575033 "85","No","No",335.568144733179,51258.4442299621 "86","No","No",510.23759315638,60397.7186486948 "87","No","Yes",1005.16130555577,24038.6520433118 "88","No","Yes",162.454451086564,13241.7520600759 "89","No","No",932.533155682331,50537.4656484602 "90","No","Yes",893.330467612275,11905.6817925484 "91","No","No",1332.78256352571,44495.1627629054 "92","No","No",1404.38306945215,35043.1060286742 "93","No","Yes",1148.96513915926,16578.1921184729 "94","No","No",368.223425720545,57596.8258431935 "95","No","No",449.466628769273,45950.6667238686 "96","No","No",820.017112578423,51584.6573183834 "97","No","Yes",619.751868575593,15750.6220834222 "98","No","No",1047.71812400961,46416.9709942419 "99","No","No",243.84132832576,47193.8881309706 "100","No","No",186.500386931495,45430.5502710943 "101","No","No",1422.01848757576,38224.0315214972 "102","No","No",383.798659005674,61425.286388114 "103","No","No",1159.43509608859,45802.1049386909 "104","No","No",882.99191255185,17181.7379663818 "105","No","No",1463.23289161086,65457.8541875824 "106","No","Yes",1722.35584628315,19311.4229408044 "107","No","Yes",773.921861257735,14558.9121383835 "108","No","No",958.169418468988,32816.2847956415 "109","No","No",1207.53273014951,68037.5751261777 "110","No","No",1056.6108304963,30546.6010343774 "111","No","No",117.642483931776,46550.2672705963 "112","No","No",596.964119237004,58088.3604512649 "113","No","No",0,47729.6257581971 "114","No","Yes",541.662755324457,16335.7034406021 "115","No","No",1119.17830341806,45020.0191217013 "116","No","Yes",810.320936469835,20498.66581411 "117","No","No",271.55143774701,32850.1201448079 "118","No","No",1114.40323650428,47714.0221084582 "119","No","No",867.030828053565,33540.9799848111 "120","No","Yes",1176.7894016772,17632.712103849 "121","No","No",610.227818661398,42465.3629640684 "122","No","No",272.615661715535,55449.3386406402 "123","No","No",449.735085836859,49643.4264416677 "124","No","Yes",827.767209400324,10673.5262253922 "125","No","No",430.000099449901,33925.2195976742 "126","No","No",0,31825.7649719215 "127","No","Yes",1557.34463668228,18404.594189222 "128","No","No",928.236966261476,33722.1589415677 "129","No","No",1373.45016328929,49101.7982141897 "130","No","Yes",951.072907499984,18601.5332374944 "131","No","Yes",1292.21086850542,23065.850975377 "132","No","No",582.188700706555,24760.7957330564 "133","No","Yes",339.424638280913,19307.98029025 "134","No","No",409.982324608766,44641.090118396 "135","No","No",1216.45150955433,53639.8468273843 "136","No","No",598.461392123585,44124.2681146436 "137","Yes","Yes",1486.99812160021,17854.3970280731 "138","No","No",943.796338713762,59976.8398676444 "139","No","No",0,49525.7450208494 "140","No","Yes",996.276086766592,20883.2407676238 "141","No","Yes",748.301340361255,11248.6707527348 "142","No","No",324.737921782032,15411.5185672943 "143","No","Yes",575.382158489508,16005.6813190057 "144","No","No",441.738284926253,36012.2358964554 "145","No","No",1188.64217955294,39526.5612652646 "146","No","No",95.1476801904055,51371.1999147598 "147","No","No",1015.61483748402,43218.794375243 "148","No","No",1258.56739272567,44931.6749177461 "149","No","Yes",1178.24441352846,7750.28922055921 "150","No","No",731.532656254407,43956.0600839728 "151","No","No",350.088792139872,44455.1995150356 "152","No","No",418.848345433837,36901.7833281202 "153","No","No",533.229465181374,39393.5424772748 "154","No","No",95.296974128368,32359.3890284286 "155","No","Yes",1453.00593207303,15933.0021109819 "156","No","No",352.644414031465,39404.7443664762 "157","No","Yes",736.2389354625,14107.9939653376 "158","No","No",1306.4845722752,41224.6250242432 "159","No","No",1149.14562717899,45194.7946620784 "160","No","No",703.226890721538,57679.2791425179 "161","No","Yes",1360.80043541238,18864.3084886679 "162","No","No",31.4450805447328,53287.3503013149 "163","No","No",988.214458069386,48570.3634566327 "164","No","No",360.019073584363,23927.5466133912 "165","No","No",647.483528619273,33226.2775446785 "166","No","Yes",0,9816.78943755756 "167","No","No",445.241819216304,31974.6245068978 "168","No","Yes",878.542064501041,17496.7414821956 "169","No","Yes",335.834118576172,21759.8702696952 "170","No","No",666.608881434336,30438.4688266267 "171","No","No",813.876647019864,40737.4597766098 "172","No","No",836.300071623191,54607.1787395438 "173","No","No",967.48268368178,33055.1102723298 "174","Yes","Yes",2205.79952114829,14271.492252976 "175","No","Yes",1258.18521914431,11672.2220033397 "176","No","No",1239.80169908455,40107.1722104231 "177","No","Yes",0,13760.2984556873 "178","No","Yes",927.887732263607,22473.3796109537 "179","No","Yes",1390.03078251892,21299.0992265335 "180","No","No",410.497704767954,53471.2136303255 "181","No","No",73.0765421846567,30681.7375351468 "182","No","No",790.59775924737,45303.1033141261 "183","No","No",789.49509698382,32579.9002059474 "184","No","No",791.360422078743,46319.2361190854 "185","No","No",479.042378990356,37255.8803342804 "186","No","No",888.613272550212,28899.7917513637 "187","No","No",1284.38636050636,42831.9546193997 "188","No","Yes",712.276351280275,23341.9502302432 "189","No","Yes",1290.62016864921,18408.0490819608 "190","No","No",126.362685399057,44280.9297885654 "191","No","No",779.376257695651,61158.8851121863 "192","No","No",697.490957463777,49476.759599281 "193","No","No",606.974613548306,43610.0330173371 "194","No","Yes",1802.90333355739,21411.4239490249 "195","No","No",900.085332597499,41276.5631894987 "196","No","No",966.280287968092,33440.9792997775 "197","No","No",671.061359639164,35689.1118739108 "198","No","No",171.559115959856,23505.9927713232 "199","No","No",1482.48030006315,45260.6115977848 "200","No","No",640.662751732473,46464.5659322762 "201","No","Yes",706.161027541986,18078.3517921729 "202","Yes","Yes",1774.69422305776,20359.5060855671 "203","No","No",916.49931692309,25768.4074467213 "204","No","No",1271.2708123604,36053.5029503061 "205","No","No",110.572909811983,47339.1087511931 "206","No","No",1747.25888152959,37819.2890860198 "207","Yes","No",1889.59918976304,48956.1715885681 "208","No","No",27.2013946505765,21051.8401259701 "209","No","No",746.229775057391,35159.8502288788 "210","Yes","Yes",1899.3906258472,20655.2000032624 "211","No","Yes",813.994565525349,20391.5289481713 "212","No","No",499.457815094636,38899.1604610096 "213","No","No",853.16133166086,36272.4517835911 "214","No","No",474.727319088288,32064.3351057974 "215","No","No",1235.87611345417,35838.7770153588 "216","No","No",620.675152595598,44213.770101262 "217","No","No",220.028569764934,37880.0296471597 "218","No","Yes",1304.91429931829,18074.0754152021 "219","No","Yes",1608.15255984335,22358.0467020111 "220","No","No",256.471227559815,37657.0559167999 "221","No","Yes",1153.60499815384,19224.9752298419 "222","No","No",771.895874508519,31170.0852836766 "223","No","Yes",1099.63042217728,17064.0428279584 "224","No","No",782.883029663905,40357.1334266019 "225","No","No",444.264906175272,35924.3387929274 "226","No","No",504.02837873803,24780.9612369205 "227","No","No",1762.50340198816,42124.6600673934 "228","No","Yes",850.096116596461,18618.9879075019 "229","No","No",1412.23872130317,40785.0597694212 "230","No","No",715.496829588669,47482.5653767305 "231","No","No",1363.52859942133,55713.0416079129 "232","No","No",493.241889799387,42495.2030840663 "233","No","No",1354.75253720358,33375.1316903778 "234","No","Yes",571.293911015155,15416.2693546858 "235","No","No",956.15135218345,44086.7077342314 "236","No","No",964.820252985381,34390.7460350566 "237","No","No",552.634366024658,50513.1642384347 "238","No","No",338.266201647092,37767.239862893 "239","No","No",709.123351356216,44041.6300941084 "240","No","No",978.978200410458,57839.0537343736 "241","No","No",371.010127817542,15702.7070830359 "242","Yes","Yes",1572.85648082363,14930.1783306833 "243","No","No",0,40150.217981059 "244","Yes","No",1964.47687225275,39054.5891443139 "245","No","No",548.037783442488,33605.6494686572 "246","No","No",1257.05522168594,34045.0088247242 "247","No","No",1189.91805697419,38016.8939028578 "248","No","No",687.683759014873,39373.5797462415 "249","No","No",845.698965838534,39899.5126808393 "250","No","Yes",957.68483377014,19676.3456491723 "251","No","No",233.516846267051,43326.105379399 "252","No","Yes",1126.94874392123,14298.2645686729 "253","No","Yes",488.855176548209,15159.4948475337 "254","No","No",767.903559780495,44323.5796638006 "255","No","No",561.925799124395,31388.5056454162 "256","No","Yes",1092.27001277246,17454.6018395308 "257","No","No",71.7886830035824,31965.7447145836 "258","No","Yes",1839.14368196222,13625.3979303665 "259","No","Yes",876.000777906746,22474.5740898236 "260","No","No",554.107811535592,30357.0259771625 "261","No","No",891.317898050276,43945.0416541409 "262","No","No",464.836333095802,27324.8996870729 "263","No","Yes",563.542661100162,24082.0393441031 "264","Yes","No",1530.35315714612,30003.8171511159 "265","No","No",990.567026186295,41690.2526225589 "266","No","No",590.399786498762,42769.2038801219 "267","No","Yes",715.164109574279,21153.5110081716 "268","No","No",1540.37772667771,41852.0784358238 "269","No","No",1243.32651840828,41639.6803816334 "270","No","Yes",235.328499908876,20909.7047538096 "271","No","No",528.254323170427,49394.340774526 "272","No","No",592.25389562288,30731.201603129 "273","No","No",705.204971986239,42683.187243286 "274","No","No",456.515643990607,48195.7758370754 "275","No","Yes",470.717574652806,18052.1049990983 "276","No","Yes",1503.07512985524,10600.4135403235 "277","No","No",1362.96559540383,44217.9160352291 "278","No","No",908.77157368794,45032.8459851152 "279","No","Yes",1096.82027214515,16148.0600066064 "280","No","No",369.221942475653,47835.0910453142 "281","No","No",673.399899046348,50256.2902118721 "282","No","No",1038.50000752153,51173.1413763774 "283","No","No",0,28762.9237797484 "284","No","No",527.194086573308,32431.1182596039 "285","No","No",817.469336816105,32974.4273524307 "286","No","Yes",1549.04275451742,19702.293205826 "287","No","Yes",566.713789351631,11853.9531668182 "288","No","No",1496.05646487591,24935.9187420962 "289","No","No",862.656656416651,42844.8340023417 "290","No","No",1259.14941789257,31263.641081672 "291","No","No",1025.03883303162,43510.0496378576 "292","No","Yes",703.277787102737,14793.7426766893 "293","No","Yes",1082.39149734589,15175.3612149216 "294","No","No",910.449023533628,44054.9164232696 "295","No","Yes",996.543862160796,16995.6604049481 "296","No","No",353.778226008973,58514.3180764772 "297","No","Yes",782.71082750063,13300.2974683438 "298","No","No",1716.59541824424,51056.8682867977 "299","No","Yes",502.898638357521,15153.965762645 "300","No","No",1033.46846850523,59203.9676630271 "301","No","No",0,34925.3654101008 "302","No","Yes",1087.08349936833,19263.7695817024 "303","No","No",1047.24424881394,43899.7592451193 "304","No","No",1056.92735252411,38367.8679465264 "305","No","Yes",979.224424632862,26010.8878031666 "306","No","Yes",847.818706253068,15978.633625651 "307","No","No",781.77128476306,50958.7905135708 "308","No","Yes",402.488886825952,15904.0559208087 "309","No","No",204.740181714577,17534.2905392742 "310","No","Yes",2022.67464324227,18336.74316845 "311","No","No",748.937063784024,44186.6177602638 "312","No","No",838.275687752419,35917.4906102388 "313","No","No",386.016049290846,44694.0309570293 "314","No","No",812.399296525647,49623.1009820914 "315","No","Yes",1809.92656439359,6985.13594539539 "316","No","No",0,30360.5489438194 "317","No","Yes",1328.18380411907,24688.4737209337 "318","No","Yes",1464.93604882699,26716.6863746825 "319","No","No",1200.56513764739,39718.6926569602 "320","No","No",989.686419964429,27856.5770606696 "321","No","No",870.734579925775,35539.2702158304 "322","No","Yes",1200.84739001594,19849.8314129485 "323","No","Yes",1428.83204736141,23204.6814610386 "324","No","No",0,33951.2887259244 "325","No","Yes",359.458866537597,21783.2694913357 "326","No","No",265.683949786655,40862.7540056257 "327","No","No",1027.77053169201,44406.83691434 "328","No","No",729.047433497618,35042.1329969977 "329","No","No",1042.80491991389,25867.1477168844 "330","No","No",230.230587898767,37875.614823143 "331","No","No",367.466012183201,30611.2722706897 "332","No","Yes",737.70535394131,20863.7996686999 "333","No","No",18.2612853635445,30349.460422935 "334","No","No",1257.76020889191,30834.7713682736 "335","No","No",455.521513206303,40907.3983537652 "336","No","No",56.9675603504705,35458.4815614207 "337","No","Yes",723.931985299722,12213.0371368412 "338","No","No",612.383157677443,41379.7678082606 "339","No","Yes",1220.1776056907,15308.1270712607 "340","No","No",1222.34769171407,32363.3710505847 "341","No","No",1165.49113814696,47684.2194497489 "342","Yes","No",1642.81999663825,46856.947039092 "343","No","No",944.173560017781,56088.6837995041 "344","No","No",749.608003900673,41423.9411731786 "345","No","No",370.375186777666,31231.0078371514 "346","Yes","No",1991.64912011299,42133.3731759574 "347","No","No",773.915226576855,44562.3381169342 "348","No","Yes",817.249811262394,20480.88705606 "349","No","No",1060.71621967666,50260.4643659169 "350","Yes","No",1550.44926441315,56273.5136083638 "351","No","Yes",454.466962212937,15092.439307714 "352","No","Yes",1256.23932541513,17784.5589437522 "353","No","No",1484.39539297524,36731.3086949029 "354","No","Yes",1050.47732793251,12661.6116309912 "355","No","No",986.40061892638,45430.4722089423 "356","No","No",717.341926951688,44266.3765401792 "357","No","No",692.143222681582,47038.0903196941 "358","Yes","No",1328.89272521776,34710.0623657107 "359","No","No",673.468191056081,32930.0693612804 "360","No","No",218.639297043088,48991.3953793342 "361","No","No",1218.16696582374,43954.2774856976 "362","No","Yes",13.5168025503509,19322.5450270524 "363","No","Yes",531.478699850065,21726.558972624 "364","No","No",165.53815169523,33436.4557377411 "365","No","Yes",1351.84972233302,25890.5039884998 "366","No","No",107.282083049617,54143.9627498165 "367","No","No",947.193571380436,35604.117192781 "368","No","Yes",434.560259226125,14812.6452403767 "369","No","No",1020.06724048864,37458.8792492482 "370","No","No",662.305318022324,31597.8976165624 "371","No","Yes",754.420612920964,20767.6830202616 "372","No","No",289.489575693364,44412.8951033074 "373","No","No",198.038409229701,36270.9381202214 "374","No","Yes",516.060491676575,16615.0219627607 "375","No","No",697.563808989791,41755.3981466578 "376","No","Yes",502.324783467779,16947.4229346552 "377","No","Yes",1459.68708304516,15575.419233378 "378","No","No",716.998722689295,34418.2602228491 "379","No","Yes",1037.97270501782,18324.0300568905 "380","No","No",673.016117196098,29735.9615970911 "381","No","No",371.921784701252,41099.7724418194 "382","No","No",89.1349579572228,55604.6075315396 "383","No","No",1273.28018105912,40895.2827703241 "384","No","No",600.723302967373,18680.516769028 "385","No","No",905.038164636789,40711.7988982471 "386","No","No",1061.44156214448,54437.0103173027 "387","No","No",1672.63924830477,46334.7877633441 "388","No","Yes",883.702645600325,19750.0940028726 "389","No","No",373.780330004006,53936.2417769944 "390","No","No",1287.79518693788,52382.6647043692 "391","No","No",1229.74257147896,48739.9273906526 "392","No","Yes",510.613846954321,22457.0517475138 "393","No","No",775.630168716812,27205.8573938823 "394","No","No",1152.98288688657,50206.5769341591 "395","No","Yes",1303.66258970167,7986.00033583452 "396","No","No",1675.27885173207,28244.5034750868 "397","No","No",398.277733044632,30001.7950602906 "398","No","Yes",739.901759396798,25023.8738564122 "399","No","No",226.417696514023,32018.7136305149 "400","No","No",1217.32171213419,25173.6196080491 "401","No","No",639.820558249208,29902.0019867792 "402","No","Yes",883.166976880327,12717.4922312992 "403","No","No",2.2876109529974,38186.5242727915 "404","No","No",419.637347665869,55967.9931672653 "405","No","Yes",1544.14024986831,11102.5347437309 "406","No","No",1101.01501795199,32153.0135926701 "407","Yes","No",1700.59991348658,30488.9834104565 "408","No","No",311.82458686811,48301.0596601046 "409","No","No",442.830222252675,55074.1308290001 "410","No","No",728.81496006121,17909.5810715927 "411","No","No",278.877902520137,37188.6683650846 "412","No","No",758.702327534491,36625.9895523394 "413","No","No",620.339679439371,22803.7410338396 "414","No","Yes",1890.16741147529,18402.4648845956 "415","No","No",0,28951.4518951572 "416","No","Yes",1329.19884221594,23184.0155485336 "417","No","No",1075.86377237476,44128.6282564037 "418","No","No",618.527509222818,54956.9905446621 "419","No","No",1111.0865758202,27466.8936820066 "420","No","No",864.039743518541,45881.9302056307 "421","No","No",895.229809614619,48512.4556411759 "422","No","Yes",954.030433688608,21908.5271562436 "423","No","No",947.634932740896,46813.5163080957 "424","No","No",267.303727744013,23117.9286733782 "425","No","Yes",1366.8057832287,23913.2088013083 "426","No","No",624.731883509283,38325.1737553638 "427","No","No",13.67938266968,25221.6376687793 "428","No","No",785.866485650099,44778.0157756766 "429","No","Yes",1353.09384569505,18933.4961949702 "430","No","No",480.32126391483,25553.2628515188 "431","No","No",0,29507.3132469218 "432","No","Yes",1221.97124290595,17916.8560894888 "433","No","Yes",1184.93652302344,25108.756711813 "434","No","Yes",478.572055604816,27512.3448997584 "435","No","No",221.690461893355,34786.1013515581 "436","No","No",578.387621687668,41054.1386619277 "437","No","Yes",1361.45843240672,19576.9571319919 "438","No","Yes",977.848095602787,19731.9609897188 "439","No","No",1184.42524488153,36887.439966855 "440","Yes","Yes",1118.70103943078,21848.4429000063 "441","Yes","No",1119.09724476071,37224.5678135129 "442","No","No",776.349979307366,31329.4848506225 "443","No","No",1322.29709108436,51792.4023687088 "444","No","No",878.026457591946,27438.585115052 "445","No","No",1268.37951467727,16921.1808790391 "446","No","No",0,32611.3730692625 "447","No","No",0,37262.5740938171 "448","No","Yes",366.786957314063,25833.0630989749 "449","No","No",747.561036377875,39898.7690858912 "450","No","No",1787.285143726,37499.0935479677 "451","No","Yes",1929.44698025845,14995.4921684901 "452","No","No",987.14289095702,27961.3196085338 "453","No","Yes",856.357368420521,20758.2146891725 "454","No","No",1101.14970709405,18153.8443165945 "455","No","No",704.184519980701,31515.9816788054 "456","No","No",555.623436676053,40837.7316360849 "457","No","No",1073.49826059844,44764.1105476201 "458","No","No",1126.2230230127,32842.6523719603 "459","No","Yes",649.773318564214,15708.2963812027 "460","No","No",977.657620997298,43743.4967298485 "461","No","No",1049.88996420613,42637.5110638279 "462","No","Yes",1383.5663330639,15764.345875927 "463","No","Yes",1095.46573957961,14065.1675680038 "464","No","No",1089.3717909992,30224.5961304622 "465","No","No",605.220968306144,21792.3215199717 "466","No","No",1033.88539901665,49262.0453292257 "467","No","No",1604.72055375478,38186.9850695393 "468","No","No",826.327025939312,24679.715044052 "469","No","Yes",1176.14682328504,16670.6807862768 "470","No","Yes",1275.02319938737,19937.0980337404 "471","No","Yes",1290.28314005644,23538.9441422913 "472","No","No",1133.47419931933,51414.4959558752 "473","No","No",837.412566855277,37400.4928845625 "474","No","Yes",379.082166688415,18280.3670338005 "475","No","Yes",1134.16627849803,12453.3635924034 "476","No","No",0,39120.0847898987 "477","No","No",1491.17480280474,59394.3830781267 "478","No","Yes",1695.35958565634,9582.94189712211 "479","No","No",705.57332763872,54589.2398684094 "480","No","No",239.193366265676,33743.2265524886 "481","No","Yes",1183.71064142778,12428.6145139245 "482","No","No",898.761838912064,38267.08157841 "483","No","Yes",1524.29040044934,11719.5934790985 "484","No","No",777.023737418038,35115.0185512798 "485","No","No",1394.79581919528,26074.9343643672 "486","No","Yes",0,20476.1557245306 "487","No","No",62.5715751601826,47946.7670938155 "488","Yes","No",1981.45181538436,28127.8954733126 "489","No","No",514.054034777825,50053.261925801 "490","No","No",722.788038958828,53714.186065152 "491","No","No",152.866304156592,33716.8640608 "492","No","No",293.184772853638,35390.2875967122 "493","No","No",0,38613.6204965308 "494","No","Yes",645.36685722913,17878.3643114477 "495","No","Yes",1515.15283305045,26046.7720831097 "496","No","Yes",767.439505481761,18846.4892212338 "497","No","Yes",491.879747053414,21715.226298099 "498","No","No",0,41389.4352722328 "499","No","No",0,34589.4880601879 "500","No","No",509.155164105994,40132.6592071943 "501","No","Yes",965.587370085486,16440.0996975194 "502","No","Yes",1868.54007230747,20489.5981077627 "503","No","No",403.49720580419,41803.7781625719 "504","No","No",593.14362506876,37670.9350241925 "505","No","No",0,44547.8655465918 "506","No","No",742.290015884451,39367.1933081303 "507","No","Yes",1110.10045653192,13013.6105672136 "508","No","No",771.551295297819,49440.4012944686 "509","No","No",624.338891497583,42492.7530686958 "510","No","Yes",499.957229779348,22884.9525653222 "511","No","No",1088.63752037344,60650.0361323175 "512","No","No",1556.49192796768,49669.6688731681 "513","No","Yes",797.084335731408,23558.6830823662 "514","No","No",415.99250259786,38215.6780429903 "515","No","Yes",538.232681166002,26833.0396297828 "516","No","Yes",1181.93470239963,21086.0820079429 "517","No","Yes",836.020688627074,9271.78992423107 "518","No","No",104.443215077792,46928.0054911712 "519","No","No",564.209478577945,53196.6230194221 "520","No","Yes",804.53940215468,25091.4607662506 "521","No","No",1028.95364023327,21218.3035199452 "522","No","No",748.746583667659,8983.85690177194 "523","No","No",66.6320807349912,28735.9741149412 "524","No","No",452.802228898258,48034.2377125974 "525","No","Yes",798.460510113667,27724.0657528508 "526","No","Yes",1941.90292814168,23467.126966094 "527","No","No",1446.10101191515,22996.4323020653 "528","No","No",761.064098290519,61580.034125346 "529","No","No",1350.17272835748,43147.4555837922 "530","No","No",380.950200559961,36943.3619940607 "531","No","Yes",1602.84960709395,15906.466797439 "532","No","No",147.61011548848,37588.5626099252 "533","No","No",0,36283.0801271054 "534","No","Yes",733.072512376335,18818.1673820965 "535","No","Yes",1082.74797626804,26096.3370339348 "536","No","No",779.657300310476,40804.4757033746 "537","No","No",994.158712170624,65254.0757961504 "538","No","No",769.181374128886,50070.7815461683 "539","No","Yes",684.098519096228,4985.1691133645 "540","No","No",442.56330169432,27898.4653945517 "541","Yes","No",1717.07159258608,38408.8909167269 "542","No","No",0,36302.528437156 "543","No","No",1092.34586485398,44717.0125770421 "544","No","No",497.33495411576,35146.7987733695 "545","No","Yes",1149.68065499451,16907.7007441301 "546","Yes","No",1465.21016364328,58699.9831975197 "547","No","No",565.317604157056,41789.6110016585 "548","No","Yes",922.137890502439,12224.1851701983 "549","No","Yes",175.59938060484,11510.0578678315 "550","No","No",1024.94681888114,49675.5604190352 "551","No","No",596.885432303659,54091.624759736 "552","No","No",750.410484208866,53084.9074806631 "553","No","Yes",790.870027432839,14183.9700258003 "554","No","No",112.327872497541,42386.0485550432 "555","No","Yes",738.394487315734,16093.2845506875 "556","No","No",1157.85556068872,54419.8085690598 "557","No","No",1213.24314925522,45149.516318112 "558","No","No",1339.6262041855,41656.0028929824 "559","No","No",588.312430203572,56520.9625106958 "560","No","No",721.808132499821,56375.7219879443 "561","No","No",680.820718973428,43843.4741174494 "562","No","Yes",815.406570873487,12071.7624998357 "563","No","No",1042.50711204107,37170.1090492838 "564","No","Yes",663.249868122172,20454.6165493286 "565","No","Yes",1478.61854506445,18026.4710989649 "566","No","No",337.756753994278,33655.5724347316 "567","No","Yes",1273.55071961651,23126.6361991141 "568","No","No",114.179725877987,49562.989265344 "569","No","No",0,52295.6009297642 "570","No","Yes",1516.31768923235,26377.5934939198 "571","No","Yes",898.114673108613,24164.7511007409 "572","No","No",790.590582117334,48219.5944665748 "573","No","No",0,29072.7214938039 "574","No","No",1273.24483033059,49136.4741958684 "575","No","No",1279.2004483305,36063.114108959 "576","No","Yes",732.719380888972,14568.7474096201 "577","Yes","No",1763.57908789461,46227.0745421357 "578","No","Yes",1280.41844842492,16310.9055269133 "579","No","No",1529.93799536515,36912.8973015701 "580","No","Yes",345.467636476389,18251.4945592886 "581","No","No",197.989403751685,33723.9857591643 "582","Yes","Yes",1770.96944052649,15975.5371965119 "583","No","Yes",639.371943541069,17037.0547998481 "584","No","No",238.814643857072,23526.7109062151 "585","No","No",390.555843076737,45338.357214774 "586","No","Yes",830.171511106982,19476.5875790804 "587","No","Yes",1378.87607564381,21613.578470166 "588","No","No",242.403449315825,37364.4230927587 "589","No","No",1236.54749355223,36211.4903618167 "590","No","No",1063.77493669311,34914.2752545523 "591","No","No",126.923178973913,33819.1433220656 "592","No","No",758.465501261611,38018.1456896637 "593","No","No",908.931458644613,68758.8783988945 "594","No","No",558.518342410987,46297.4254108936 "595","No","No",1819.24233339211,36969.5525152008 "596","No","Yes",1110.68174400549,19327.5750379268 "597","No","No",723.243374669993,43459.0118542978 "598","No","No",972.031864031495,18510.946033198 "599","No","No",696.014430649643,40741.4202403335 "600","No","Yes",1178.24890887526,29362.604609009 "601","No","Yes",329.558510877062,19371.8120916883 "602","No","Yes",792.529238472827,14546.30176771 "603","No","No",1246.03775769599,33691.7213091022 "604","No","No",591.760776481539,41670.257382541 "605","No","No",244.081138800791,24854.2498236435 "606","No","No",1038.54836006039,49944.8651506496 "607","No","No",679.074586796153,49488.5639815129 "608","No","No",1061.415836002,40585.2216446978 "609","No","Yes",1268.24069091931,11914.5782684287 "610","No","Yes",955.533685819795,14736.7208791128 "611","No","No",1115.82062964092,27882.8092643982 "612","No","Yes",601.163260610188,22029.1935171555 "613","No","No",1097.60003894511,52286.4318229537 "614","No","No",1042.78307264667,45982.9663185287 "615","No","Yes",1321.44305286527,8624.11068874281 "616","No","No",1052.39326016205,37637.6593074495 "617","No","No",687.951701062434,27604.0792714302 "618","No","Yes",566.460512626349,24828.2659835652 "619","No","No",769.414224037938,35071.1665353159 "620","No","No",955.1353421032,26372.985815295 "621","No","No",643.409526464766,28660.1401685022 "622","No","No",0,42745.3020131405 "623","No","No",437.636062596235,45384.0474502375 "624","No","No",1278.86564161404,34673.1709932026 "625","No","No",1639.39057196627,30624.7759284918 "626","No","No",891.643737265774,36470.8283401861 "627","No","Yes",316.459048313239,18813.9402088352 "628","No","No",622.929507387178,48874.5557680461 "629","No","No",107.277526758955,42287.3028620524 "630","No","Yes",990.543215773955,12398.4906038395 "631","No","No",0,45659.9957026185 "632","No","No",0,33119.9553306198 "633","No","No",591.21848728877,35287.8245843759 "634","No","Yes",928.060078265644,21121.8448328186 "635","No","No",304.599223898782,40785.9891775391 "636","No","No",235.939497686815,31336.5101185978 "637","No","Yes",1108.05351768099,10853.2309395985 "638","No","No",687.306396976996,24563.7576757258 "639","No","No",60.1860361263316,39864.8635503901 "640","No","No",0,34648.9725974223 "641","No","No",272.893257145115,58730.5728615017 "642","Yes","No",1531.71645931978,43930.4000955678 "643","No","No",949.608648513314,47702.5737457984 "644","No","No",561.916178455117,35080.5792438221 "645","No","No",468.132522196994,25231.3462344957 "646","No","Yes",993.108169991847,12215.9468218066 "647","No","No",0,31314.6950884232 "648","No","Yes",759.478369178202,12710.7209232412 "649","No","No",1340.78720929653,36440.2283216228 "650","No","Yes",1521.46339550225,15210.4740694568 "651","No","No",133.743344349705,30457.0163661004 "652","Yes","No",780.172569171513,51656.8740637741 "653","No","No",839.915458349589,22884.793017069 "654","No","No",913.505872937903,36670.8542230351 "655","No","No",924.881441457044,35712.6379057533 "656","No","No",1197.83150461167,54652.3092984374 "657","No","No",49.2096658960132,30451.152858766 "658","No","No",970.716096585793,48387.648617342 "659","No","No",783.057400540258,54082.4240845222 "660","No","Yes",465.062888613853,20379.0620895269 "661","No","No",0,39337.7499765406 "662","No","Yes",732.264267594484,21986.0454536505 "663","No","No",576.091261344071,37679.6985892523 "664","No","Yes",588.991056252216,16309.8754485617 "665","No","No",863.140717831164,43779.4778545985 "666","No","No",857.575733973881,49675.3703182707 "667","No","No",361.501731061125,33674.8902393376 "668","No","No",891.155427066673,36023.0850073461 "669","No","No",918.122205965447,44738.5560304555 "670","No","No",1335.02801828106,21150.8559447406 "671","No","No",421.40084342513,39873.5217445341 "672","No","Yes",743.636144477128,18883.9715059268 "673","No","No",773.740372463441,41872.4947626065 "674","No","No",731.3934721696,45251.8819209678 "675","No","No",964.188922685005,36330.3945986058 "676","No","Yes",350.015184264179,17657.1726575117 "677","No","No",1206.66136205449,37125.5913512782 "678","No","No",1051.94757326739,52888.1850963327 "679","No","No",454.760370677831,45572.172484486 "680","No","No",932.665307535504,42758.6007035183 "681","No","No",535.745846468796,36259.4637552901 "682","No","No",241.80525216874,41186.1828072136 "683","No","No",1026.50670980239,42042.1679417363 "684","No","Yes",187.679885571478,18278.833967134 "685","No","No",197.538321479143,58646.9278047098 "686","No","No",585.708088259361,43288.4003826895 "687","No","Yes",1947.02240116176,12147.0464091645 "688","No","No",829.547597492268,39717.5376088077 "689","No","No",196.9384595398,35488.4488835876 "690","No","No",591.863619018556,31438.7760126708 "691","No","No",0,39742.1054579553 "692","No","Yes",1008.29161867619,11939.2952561454 "693","No","Yes",1052.22747774062,17410.751592587 "694","No","No",331.680526736089,49756.1710110556 "695","No","No",913.107203974466,29414.6521751635 "696","No","Yes",561.391612168585,21747.2631759341 "697","No","No",246.955462978737,47692.8942495176 "698","No","No",578.978610085742,46304.717476204 "699","No","No",557.80877712832,62352.8460745643 "700","No","Yes",788.251751590529,10418.1828574391 "701","No","No",1060.80742927021,39174.0563607053 "702","No","Yes",1247.9070287109,19816.720143272 "703","No","No",1184.36072325231,34259.9901986231 "704","No","No",1024.57823828863,33071.5499188853 "705","No","No",1080.29165556776,43367.8995668736 "706","No","No",540.279044842846,26267.1563495095 "707","No","No",1448.83546537495,33835.7362563617 "708","No","Yes",561.19403528401,27421.1112560912 "709","No","No",1191.48030658909,30040.5721479464 "710","No","No",565.138987531877,38202.5839366837 "711","No","No",482.98219522045,35845.192831506 "712","No","No",950.350093348717,37486.2495546276 "713","No","Yes",350.702913455224,21235.360416199 "714","Yes","Yes",1551.02346886055,19027.5086325602 "715","No","No",981.596275086756,37747.9133548875 "716","No","No",1442.12980525117,10921.6150280099 "717","No","No",1060.33586008787,56607.2539731991 "718","No","No",1154.89079229674,61794.3463333657 "719","No","Yes",544.139769261479,20056.828543898 "720","No","No",1137.17545422725,27588.9333054472 "721","No","No",414.084049490222,47811.4189244222 "722","No","Yes",436.008314418274,17504.44777329 "723","No","No",987.814799701723,25809.9802798683 "724","No","No",679.39184176547,46603.5464098654 "725","No","No",1377.77200718577,51633.329550876 "726","No","No",856.811960459733,32437.1318348945 "727","No","No",1036.67683328589,44923.8027469326 "728","No","No",0,46826.8044671654 "729","No","No",961.472070662985,51936.7598875077 "730","No","No",275.988091260141,35622.829451765 "731","No","No",426.69354209974,30769.3447724704 "732","No","No",290.251908152609,46214.1592342021 "733","No","No",934.969703457723,42325.7499854437 "734","No","Yes",668.991155587469,26342.0484612914 "735","No","Yes",2004.72756831,27136.5379770062 "736","No","No",1312.86572975147,29938.2594627799 "737","No","Yes",662.273556493038,15092.0510234018 "738","No","No",524.639805989354,36120.8922605785 "739","No","Yes",1212.58956759787,21058.3486627819 "740","No","No",961.315769351981,30290.8065048843 "741","Yes","Yes",1504.29017813787,13965.1860445333 "742","No","Yes",613.656318023126,25040.4884531578 "743","No","Yes",1233.34360465673,13402.0732850411 "744","No","No",1221.38595934501,36961.3151242225 "745","No","No",1217.05680668466,46256.7804872945 "746","No","No",628.757698443741,43205.1752975326 "747","No","Yes",819.097316108521,15957.9436405491 "748","No","Yes",843.493455075409,12710.0257138998 "749","No","No",1173.55981500254,29141.3657347634 "750","No","Yes",1195.59028306582,13329.5964048166 "751","No","No",1202.88312357915,12288.127075016 "752","No","No",24.8718234850631,29316.9703343848 "753","No","No",853.241421584688,29484.0523801776 "754","No","No",398.775705283568,40223.9098079387 "755","No","Yes",1521.17239555469,18149.8861866188 "756","No","Yes",1160.22179270323,15941.0508838215 "757","No","No",985.614062736995,49948.4671119046 "758","No","No",583.820719256707,38215.9647632209 "759","No","Yes",638.691982603121,18148.3017050128 "760","No","No",384.997719463751,25380.7034543934 "761","No","No",1050.76423069077,31558.8984246114 "762","Yes","Yes",1871.93838694355,18077.4870927503 "763","No","No",793.761717609342,35157.7399755377 "764","No","Yes",591.660651332961,21790.5024250406 "765","No","No",419.476441266895,24001.5121969332 "766","No","Yes",514.283890206455,18185.4796974861 "767","No","No",1027.89503525082,21551.6110897047 "768","No","Yes",1029.68154856023,15977.3211389052 "769","No","Yes",953.626323812467,18363.0684974424 "770","No","Yes",1463.33776514964,11579.1594522765 "771","No","No",1172.45949910584,34690.1382789868 "772","No","Yes",548.272863944776,12048.8228922671 "773","No","No",1752.88378856299,48250.1046209779 "774","No","Yes",555.920680160548,23909.7064937556 "775","No","Yes",1560.93175219903,13621.5691623243 "776","No","Yes",839.883556561924,16883.3388582069 "777","No","Yes",1112.8179784831,13634.9076283835 "778","No","No",1309.2537724595,43278.0592842939 "779","No","No",940.590874822012,41560.4709935342 "780","No","No",1019.24897718592,41195.3701168568 "781","No","No",433.669019529031,32904.6977154916 "782","No","No",1015.11542504267,42050.4665242275 "783","No","No",75.1776630661825,52765.9782830813 "784","No","No",1050.31637646534,39585.6242243462 "785","No","No",48.9118568414431,35155.1724669932 "786","No","No",1721.64777991975,48236.1263334984 "787","No","No",1607.35144043076,48700.8480467206 "788","No","No",1180.44754170552,43914.4198194427 "789","No","No",609.877134574805,40875.9465364492 "790","No","Yes",1054.2002082358,19440.9731795923 "791","No","Yes",793.820465702134,19074.0317333481 "792","No","No",879.675617944934,30021.3833465031 "793","No","No",1237.64742197945,29151.2346616317 "794","No","Yes",1412.764358307,18234.4592165626 "795","No","Yes",1174.71648266832,13025.7694481722 "796","No","No",363.344803781613,44325.7888525566 "797","No","No",919.485776297976,44928.1846393809 "798","No","Yes",1195.0596696449,21648.6566808064 "799","No","Yes",794.137787843789,15721.7996591962 "800","No","No",10.1888185108063,33776.8254558982 "801","No","No",0,31083.2214565069 "802","No","Yes",498.505979218863,16967.6197633608 "803","No","Yes",1227.16110689129,18459.4186146975 "804","Yes","No",1902.61299103773,53394.0762256759 "805","No","Yes",1059.20463689881,11742.3798595281 "806","No","Yes",450.305390754806,21177.6110782599 "807","No","No",418.539870435286,55002.7334074783 "808","No","No",1070.48067666244,32939.3667112495 "809","No","No",1306.77057329409,56640.6340336077 "810","No","Yes",1315.3372979029,8431.17500361516 "811","No","No",74.5334251957576,19146.2456270511 "812","No","No",66.152330488706,38927.124508577 "813","No","No",56.4207116526935,54217.3382458634 "814","No","No",1056.59687510996,25123.8596166639 "815","No","No",259.237577825768,51355.3746230815 "816","No","Yes",1143.69257803243,23500.9012839272 "817","No","Yes",0,15682.0685039174 "818","No","No",877.793933789175,30239.7207155808 "819","No","No",919.077555018396,45315.5574507726 "820","No","No",94.9324758740624,27212.9512378545 "821","No","No",333.374188920034,29413.1489918422 "822","No","No",197.910716505068,30971.1972485545 "823","No","No",624.91008800743,41047.5557873222 "824","No","No",138.252251807784,54406.5022458143 "825","No","No",787.551771667647,46185.5520006902 "826","No","No",1030.92756438288,36271.3345629976 "827","No","No",1049.74764261543,30159.2098936227 "828","No","No",0,35738.9875659081 "829","No","Yes",1130.05678744088,18467.1021942011 "830","No","No",795.541223505837,51303.1401368965 "831","No","Yes",1503.59623846768,18710.6144823399 "832","No","No",436.135012404984,46071.6605240224 "833","No","No",800.705593268976,36314.4363313898 "834","Yes","Yes",1881.04995231902,16580.4505635578 "835","No","Yes",1445.45802967522,18632.6160618408 "836","No","No",1166.10023562566,23994.4039068604 "837","No","No",163.747103724139,38970.0289045853 "838","No","No",0,46353.8021213475 "839","No","No",1322.05293700543,47814.1742032386 "840","No","No",1283.52325340241,61525.6961773731 "841","No","No",1000.89843370124,43059.0486011163 "842","No","No",249.860323038141,47602.1164993638 "843","No","No",500.222178363597,38991.0124810993 "844","No","No",568.094485122303,36374.4339230205 "845","No","Yes",1047.08515382753,13714.2793843271 "846","No","Yes",186.668374310028,15976.6378608407 "847","No","No",782.778332002182,39224.4092738836 "848","No","No",388.548350469936,18007.8329600719 "849","No","Yes",842.572226289192,17279.5218205669 "850","No","No",556.11563127995,44197.9084625663 "851","No","No",1234.57861793258,48112.4805359665 "852","No","No",412.894341852175,42123.2172146197 "853","No","No",683.357393752549,29269.3335200448 "854","No","No",872.226171550897,48101.6116884956 "855","No","No",415.765428516259,24740.7535995478 "856","No","Yes",1518.01880894666,16740.4430837437 "857","No","No",254.39445522627,44612.1475667156 "858","No","No",1507.24919460052,24057.5179445895 "859","No","No",900.567503074961,40848.6917935743 "860","No","No",595.145133604105,46011.9466316937 "861","No","Yes",163.939823069243,21083.0045099261 "862","No","No",389.613251859694,43472.6742993942 "863","No","Yes",1334.97118024022,14834.8642935984 "864","No","Yes",1961.72865697375,17864.0992535126 "865","No","No",1173.1614932717,36439.6787266044 "866","No","No",1102.41824206016,23218.0838040839 "867","No","No",1228.90791879055,46411.8200587014 "868","Yes","No",1505.83147454065,29525.7494012187 "869","No","Yes",1217.62391318403,21160.4293008005 "870","No","Yes",843.159090993044,12042.8942197634 "871","No","No",1004.53290350781,59403.9300095678 "872","No","No",294.062944441265,57500.1110544571 "873","No","No",484.72347948412,24569.5672907264 "874","No","No",775.556138836832,34586.253337608 "875","No","Yes",1339.31276875945,21031.8598306849 "876","No","No",801.855034413267,39156.6274892218 "877","No","No",551.887100316107,37573.1413923906 "878","No","Yes",522.381180598609,23440.0642225885 "879","No","Yes",1237.45472270608,20660.4693787312 "880","No","No",320.005916922744,57563.4892343032 "881","No","No",960.670030602657,30093.727535682 "882","No","No",272.019517715797,29773.6093193606 "883","No","No",927.165918219897,33781.8151051117 "884","No","No",75.7952593119642,55189.6859931147 "885","No","No",1285.85138073458,37635.9540815737 "886","No","No",1471.77507287232,32478.0439109335 "887","No","Yes",808.014719128948,14485.4684384242 "888","No","No",747.353555712602,42900.0249481755 "889","No","No",327.795731659084,23865.3280982629 "890","No","Yes",851.341791940435,18786.5803421911 "891","No","No",110.854365105375,27370.30436569 "892","No","No",541.755569348689,57322.1050225554 "893","No","No",0,36269.292539222 "894","No","No",1201.36026411294,51740.8900511035 "895","No","No",57.21983790346,18982.5557145634 "896","No","Yes",785.093484581621,32945.8280664548 "897","No","Yes",383.639664344123,17445.182442159 "898","No","No",1107.3041567002,52765.0586636951 "899","No","No",396.985985441859,55454.6310403682 "900","No","No",0,44807.3782736911 "901","No","No",924.241534804409,45207.3876257005 "902","No","No",602.493724895076,33202.5343827786 "903","No","Yes",828.739825030737,17962.3110875424 "904","No","Yes",1.61117557184241,20837.335463841 "905","No","Yes",894.005789144511,18002.3251896023 "906","No","No",1234.47647873186,31313.3745754932 "907","No","No",406.013980421047,42642.2373730984 "908","No","Yes",1051.99844854114,12376.0959820386 "909","No","Yes",1085.83807964848,18890.2280817727 "910","No","No",1656.17327163556,41133.1268472153 "911","No","Yes",242.652608865188,20426.7939710666 "912","No","Yes",602.306495490726,12927.7128023964 "913","No","No",187.597302610554,59660.997035609 "914","No","No",331.297081896645,34497.7426835848 "915","No","No",911.387795135943,57131.3203683842 "916","No","No",391.408200513922,39761.5618426607 "917","No","No",1450.34918369889,33957.1819605723 "918","No","No",819.916988526305,28960.1128050344 "919","No","Yes",1590.17641257216,18666.4122118689 "920","No","Yes",1256.61487000808,22493.5012611123 "921","Yes","Yes",1889.33211032708,22652.1096342004 "922","No","No",743.685374931591,10774.9719084207 "923","No","No",343.194499373316,29555.9054677704 "924","No","No",534.973154698066,44079.3328679291 "925","No","No",1207.69790606359,34857.5403138442 "926","No","No",564.813897226514,39829.4168314528 "927","No","Yes",495.365263297121,22938.136865064 "928","No","No",902.513823067702,38647.5218924775 "929","No","Yes",1741.27335406342,18544.0516544313 "930","No","No",1166.64262489824,52700.1096932984 "931","No","Yes",631.159770000693,23245.0707596437 "932","No","Yes",1076.97796559172,14668.3807126095 "933","Yes","No",1243.55402519945,37634.3463986484 "934","No","No",2113.01902301561,34747.7557770979 "935","No","No",1296.06099706844,43313.2829877461 "936","No","No",1088.6740772095,47147.7259452981 "937","No","No",824.731704075054,42313.5157494728 "938","No","No",684.294841367277,37011.1832764975 "939","No","No",37.3648864980893,26221.5179003895 "940","No","Yes",878.149005483414,18414.5700678425 "941","No","No",904.241522236051,40683.460345652 "942","No","Yes",942.042214953173,22181.3945457544 "943","No","Yes",957.492536316181,16323.3647607655 "944","No","No",285.290875789697,17606.6359250896 "945","No","Yes",1468.38274775613,19846.0647530616 "946","No","No",322.713019502604,27668.5760951812 "947","No","No",414.134063133659,40877.2264536574 "948","No","No",1105.0028119368,36812.7060929345 "949","No","No",0.445756768543902,31934.8379751055 "950","No","No",619.701399647492,13902.1790020542 "951","No","No",293.869320215957,56676.8017535974 "952","No","Yes",637.382728273361,19704.9194208198 "953","No","No",1109.5286172344,69325.0798211788 "954","No","No",1223.11294353625,52903.4613674735 "955","No","Yes",1183.69295023871,13081.661063285 "956","No","No",569.790872578607,54335.2240998272 "957","No","No",625.531922916042,46026.4879077479 "958","No","No",833.655299315209,16908.7780990483 "959","No","No",866.045922597997,44827.2658786343 "960","No","Yes",945.479849222592,17279.2868116854 "961","No","No",1554.8455452416,43901.8053189526 "962","No","No",575.768345325989,51927.7467980249 "963","No","No",1141.60368724373,38722.9611910965 "964","No","No",1146.64022020839,45376.5564836309 "965","No","No",0,34305.9186818322 "966","No","No",434.714771292189,35454.7554164715 "967","No","No",1026.13443029103,39135.6369619437 "968","No","Yes",1302.79720625578,29252.3614341099 "969","No","No",690.70587061269,59561.9052001087 "970","No","No",574.451632934148,40727.642926059 "971","No","No",0,43346.6222644447 "972","No","Yes",251.306023741879,13058.6066581806 "973","No","Yes",1252.11395420994,16490.7069325506 "974","No","No",207.895206863744,52249.3123410668 "975","Yes","No",1753.08438927503,48965.3469660968 "976","No","Yes",1279.93522684716,21107.5202436778 "977","No","No",862.876513688263,36461.9011295762 "978","No","No",1143.54140485283,33394.9791032222 "979","No","No",1253.18164046029,71238.550598183 "980","No","No",624.083972234424,25557.6396710092 "981","No","Yes",1027.86106974252,14322.0883601209 "982","Yes","No",1964.01468409879,50553.5345217328 "983","No","No",752.426109073027,32539.645010165 "984","No","No",953.929817672466,32640.1440477816 "985","No","No",773.204212695115,66749.4334388805 "986","No","No",432.791088457237,52238.087436574 "987","No","No",797.734016170854,31616.8002356646 "988","No","No",240.841552778801,56089.1542511444 "989","No","No",662.315857397632,31815.3465553473 "990","No","Yes",1056.36554989132,15432.3959887695 "991","No","No",741.08759609685,43015.5391532467 "992","No","No",0,42284.6821746769 "993","No","No",981.954489805675,41123.2124696344 "994","No","No",1569.83566642918,42781.3833042045 "995","No","No",136.505521337915,45596.1078294951 "996","No","Yes",731.951715263318,18117.4279105891 "997","No","No",717.810767816132,32040.9312602139 "998","No","Yes",1005.17622287668,18262.17614318 "999","No","No",561.928360945712,31192.9127239783 "1000","Yes","No",2033.19178970717,44998.2874372569 "1001","No","No",638.817455651788,46704.7380027047 "1002","No","Yes",1104.94968692492,11528.9996637775 "1003","No","No",0,29514.0336126113 "1004","No","No",633.766672475066,34290.6049187037 "1005","No","Yes",1526.02513350733,20894.0766566208 "1006","No","No",522.766271539235,43026.3291277584 "1007","No","No",853.103127554178,47381.7242321925 "1008","No","No",1225.22515222291,39338.8621179726 "1009","No","Yes",1559.62786903645,22047.7816148887 "1010","No","No",260.339935694837,34932.4937627442 "1011","No","No",1320.94324512886,50505.3668955538 "1012","No","No",1443.64838984541,45089.3895443578 "1013","No","No",791.638233418398,30303.6067766383 "1014","No","No",922.666469149122,33445.4896891145 "1015","No","No",80.7528636417692,35887.5463607598 "1016","No","No",193.358538633313,34728.0214273877 "1017","No","No",939.098501835431,45519.0189767343 "1018","No","No",1336.80301473215,30787.1557165826 "1019","Yes","No",1488.77956191303,49803.2930787071 "1020","No","Yes",375.196746931796,13709.2053280026 "1021","No","Yes",773.381163196626,18978.1884504424 "1022","No","No",581.423169475544,44600.6627973171 "1023","No","No",461.050249375609,43147.7720272572 "1024","Yes","Yes",1424.55932328854,25398.1974394264 "1025","No","Yes",1139.39621359668,17139.8480911334 "1026","No","No",1032.20326972472,41673.7341538879 "1027","No","No",96.641838693463,44556.2194186218 "1028","No","No",338.779408193535,42678.7131911716 "1029","No","Yes",1331.42546161804,13793.185177665 "1030","No","No",0,34479.623487361 "1031","No","No",616.253970000918,42436.6864423497 "1032","No","No",599.800862543391,30146.635742307 "1033","No","Yes",1466.56289000134,20904.4478767522 "1034","No","No",593.303890859047,49925.323917144 "1035","No","No",786.98126003688,49432.9527599407 "1036","No","No",926.985326670123,48753.3128742021 "1037","No","No",1175.42043326533,37462.6433294708 "1038","No","Yes",1697.74966709098,23295.8432768538 "1039","No","No",575.514383348284,54203.1902133298 "1040","No","No",1386.30244368266,54404.4816929543 "1041","No","Yes",1222.24509239018,23152.7230957415 "1042","No","No",1556.19419401156,26905.5807480981 "1043","No","No",1103.9218798007,52821.534851342 "1044","Yes","No",1496.07211037409,40214.6208266244 "1045","No","Yes",975.642874013062,25920.3219107255 "1046","No","Yes",781.174257050636,23403.0637701792 "1047","No","Yes",940.43546629748,18939.8427921635 "1048","No","No",375.329620037707,32531.2157555247 "1049","No","No",627.876133290845,51770.4583502486 "1050","No","No",1304.38320880201,49371.9569059475 "1051","No","No",1496.23236999032,37534.3292363065 "1052","No","Yes",1005.59382873394,15851.4826456384 "1053","No","No",828.857754277826,46060.8529335004 "1054","No","Yes",1144.35851962952,18903.3784424655 "1055","No","No",1386.19194850385,42537.9907928054 "1056","No","Yes",1321.80520597311,11453.6115299764 "1057","No","No",1121.15125107007,35765.7064949288 "1058","No","No",547.863342238693,45966.3510607549 "1059","No","No",813.997341222043,42461.561421278 "1060","No","No",75.1839852575265,52166.0059677808 "1061","No","No",598.219297785381,28621.1254234809 "1062","No","Yes",63.0363232718853,12308.0183210287 "1063","No","No",0,48642.2545051056 "1064","No","No",1553.70330850943,35929.1635489322 "1065","No","No",813.716093928425,46419.9970823921 "1066","No","No",1386.17675310876,42875.0060232127 "1067","No","No",933.767315398992,43693.5211629212 "1068","No","Yes",1240.0956001901,20134.6472923928 "1069","No","No",0,33781.6563086993 "1070","No","No",613.581862403872,30833.8020564507 "1071","No","No",253.516795606147,53125.483453833 "1072","No","Yes",947.885845436684,17094.4788899247 "1073","No","Yes",112.811909496946,16100.5708324214 "1074","No","Yes",827.041305351259,18892.8212923273 "1075","No","No",484.679498992764,43900.0915627634 "1076","No","Yes",271.249704929045,25157.7314155335 "1077","No","No",1018.24890629919,52509.7424393596 "1078","No","No",0,43730.7666522244 "1079","No","Yes",0,16421.4899199996 "1080","No","No",1101.80371492885,36555.4627038954 "1081","No","Yes",1471.89782186442,18913.0382150486 "1082","No","No",1057.71318049474,40707.6187725798 "1083","No","No",352.550537246057,17626.1671331159 "1084","No","No",1029.81930810508,50635.8908134497 "1085","No","No",1308.66309413507,35964.7919280857 "1086","No","Yes",1581.79048948189,10537.5298371772 "1087","No","No",918.118901852202,53710.2153023883 "1088","No","No",637.80029105974,40323.5590650437 "1089","No","No",369.041787994189,38468.2446481102 "1090","No","Yes",985.092698575156,18499.9615427609 "1091","No","No",306.956926626839,32428.8129068856 "1092","No","No",1205.91323877975,43715.4137557695 "1093","No","No",1079.50296284952,40504.9154530742 "1094","No","No",555.28848862916,40046.4219820768 "1095","No","No",905.011694432408,39293.9825127873 "1096","No","Yes",1348.95607421149,20870.2679822065 "1097","No","Yes",1461.83324856434,19252.2372905694 "1098","No","No",443.446992281183,29811.3634534199 "1099","Yes","No",2024.10501794555,51508.8688750637 "1100","No","No",1516.55115236998,39368.1418726725 "1101","No","Yes",520.55764649278,18256.2883915625 "1102","No","No",850.548098661389,44501.9150376188 "1103","No","No",926.489673303745,49919.9672941973 "1104","No","Yes",1275.82422479209,9611.96315721431 "1105","No","No",249.598383222232,20684.2374148176 "1106","No","Yes",1564.47141053711,19372.821596214 "1107","No","No",443.175564513603,37639.9824345739 "1108","No","No",323.546908292229,33991.9911077722 "1109","No","Yes",512.320202471464,24949.6216077124 "1110","No","Yes",524.760633586772,14154.9134748808 "1111","No","No",741.420460867951,38660.9996466846 "1112","No","Yes",1994.04918807544,14305.1114657784 "1113","No","No",1175.71519291045,24000.8949377252 "1114","No","No",284.048775672597,41243.8547877224 "1115","No","No",565.505384485186,39109.3096711426 "1116","No","No",47.7456654427857,31150.3746922421 "1117","No","No",776.954865809858,45083.3202024572 "1118","No","No",353.739097129679,65526.8097376763 "1119","No","No",76.1322492185705,53594.4200078911 "1120","No","No",839.603597582824,45994.6447324797 "1121","No","Yes",754.484022622877,22425.5354752613 "1122","No","Yes",833.120773570663,23630.2736656378 "1123","No","No",277.294917912513,27548.9502982988 "1124","No","No",1594.69718916083,37091.8738266472 "1125","No","No",0,40393.475426742 "1126","No","Yes",1281.61709121705,14236.0919939822 "1127","No","No",1469.70378608501,40174.9503542028 "1128","No","No",0,38165.6883141482 "1129","No","No",891.403240954195,46611.7316362549 "1130","No","No",493.764909913585,51518.0552452664 "1131","No","Yes",884.61401155588,24306.6503533345 "1132","No","No",0,32582.7455647636 "1133","No","No",1028.52038633802,47944.6009631919 "1134","No","Yes",425.831740346561,13275.9144055105 "1135","No","No",1132.35806231732,52489.7642194785 "1136","No","No",965.273803867657,46218.4605577078 "1137","Yes","No",2499.01674959731,51504.2939603673 "1138","No","Yes",1435.18126392821,11346.841867294 "1139","No","Yes",1391.19635951909,8637.96330726594 "1140","No","Yes",1804.41336882629,17665.5490483662 "1141","No","Yes",321.795067191554,19229.2258698321 "1142","No","No",1506.66982857751,41931.7044839488 "1143","Yes","Yes",1402.2675157905,12104.3156125042 "1144","Yes","No",1379.43071716928,38881.9693488013 "1145","No","No",1232.97872910186,57182.3321169239 "1146","No","No",134.8580207926,35755.8666236451 "1147","No","Yes",422.91401738152,18787.3370277614 "1148","No","No",1373.56421329756,21785.2527545924 "1149","No","No",661.425887551556,55591.5570250899 "1150","No","No",1427.71842109148,27425.6749546043 "1151","No","No",938.637862081905,39459.7670351625 "1152","No","No",608.428994066855,56483.0568967942 "1153","No","No",1477.53239379449,46965.1382601229 "1154","No","Yes",1470.58874098652,17876.2926926974 "1155","No","Yes",1488.59885868055,20739.6267863319 "1156","No","No",0,49608.0061692772 "1157","No","Yes",328.038334167857,19566.267236924 "1158","No","Yes",1333.80612782554,21087.3235241636 "1159","No","No",764.534716932002,40593.2854222443 "1160","No","No",110.326678985078,52106.2049030669 "1161","Yes","Yes",2502.68493124851,14947.5197523987 "1162","No","No",604.315515354891,36592.7568387284 "1163","No","Yes",1595.28815784271,22645.0400572771 "1164","No","No",0,50076.263573802 "1165","No","No",440.637650067582,50902.1361446325 "1166","No","Yes",876.91862459295,13372.5129190972 "1167","No","No",1366.89031408419,35566.9563710813 "1168","No","No",1129.97593669534,32795.0463387124 "1169","No","No",1077.02082435363,56862.0669379978 "1170","No","No",1411.07424052845,26040.0045902552 "1171","No","No",0,45788.4921149217 "1172","No","No",861.652948042994,27355.8050223478 "1173","No","No",1185.6611151702,56483.5372041058 "1174","No","No",901.55391841873,57100.417673064 "1175","No","Yes",773.730215692355,14841.9896203264 "1176","No","No",1387.97338494722,30716.643061226 "1177","No","No",1207.69472622489,37355.9443441242 "1178","No","Yes",455.716437749994,12587.4014518905 "1179","No","Yes",550.89504879092,19110.0744657258 "1180","No","Yes",1484.80542343076,22965.1766792838 "1181","No","Yes",441.6261267835,15261.7080321273 "1182","No","No",810.412075206354,28056.7839140013 "1183","No","No",1137.03989872874,49810.8999928717 "1184","No","Yes",1402.40771590191,13870.9696838977 "1185","No","No",1541.81280611611,29374.9288818287 "1186","No","No",898.980725863394,63041.2247822201 "1187","No","Yes",700.331159311357,18702.9559953232 "1188","No","Yes",895.458063540101,23795.5514988932 "1189","No","No",770.132191937447,48489.3786594128 "1190","No","No",841.951730995958,53779.0182507663 "1191","No","No",44.3136199316928,30449.2501938471 "1192","No","No",377.300360293832,42257.4931884345 "1193","No","No",264.801150517454,49216.2481525872 "1194","No","No",522.021639127425,37341.8987786128 "1195","No","No",1681.91600493709,41866.5580569381 "1196","No","No",1069.53936754679,55421.5527948288 "1197","No","No",375.700949263496,37925.974621095 "1198","No","Yes",670.991525972821,19835.9690488338 "1199","No","No",318.912568249803,49305.553165678 "1200","No","Yes",955.120217585801,25314.8530876177 "1201","No","No",1123.79343887029,24901.9963402933 "1202","No","No",993.580878716165,34836.2527191327 "1203","No","No",278.805260305244,54559.11666453 "1204","No","No",1553.28960393601,44150.16208824 "1205","No","No",0,34522.8855582819 "1206","No","No",483.59130114851,36497.468463815 "1207","No","Yes",311.530549144093,18534.4307209132 "1208","No","No",536.253861565682,32994.1513632918 "1209","No","No",127.707918266324,27483.8950029773 "1210","Yes","Yes",1507.33394777159,23898.8782347949 "1211","No","No",1351.03593016271,40946.6055213149 "1212","No","No",723.198986574556,42751.7652446347 "1213","No","Yes",1041.20279873936,22618.4241475367 "1214","No","No",1102.11010931046,34246.6949101404 "1215","No","Yes",420.370264310909,16419.7129717032 "1216","Yes","No",1278.40730029171,36675.6068828001 "1217","No","No",542.469658032295,52741.8106709888 "1218","No","No",401.829042222614,47175.6145225579 "1219","No","No",506.505871615376,51114.319721702 "1220","No","No",1160.49960409805,23498.3002028493 "1221","No","No",1277.79591275967,56605.5988561131 "1222","No","Yes",1200.62447093622,18973.9076818191 "1223","No","Yes",1418.58607157426,11556.6953127023 "1224","No","Yes",480.339703591062,14592.8404029742 "1225","No","No",370.530018801453,31139.7218358579 "1226","No","No",737.685240540124,51138.2654555752 "1227","No","No",501.921445987957,41366.6778934933 "1228","No","No",1682.20122361406,30441.5548461711 "1229","No","Yes",813.452791611745,21073.9888335265 "1230","No","No",683.826251435648,46937.622870695 "1231","No","Yes",1036.60044401754,15197.248514096 "1232","No","Yes",471.143388673042,24945.0377452165 "1233","No","No",336.419640443448,39707.0423260875 "1234","No","Yes",443.723043916105,13136.8304234267 "1235","No","No",967.138888417836,35269.1229673177 "1236","No","No",549.275969561753,15706.2150942701 "1237","No","No",1601.1600560556,17974.7411792535 "1238","No","No",902.137819758817,59695.2904641564 "1239","No","No",0,37553.5510529754 "1240","No","No",1433.18354789508,41744.3150767776 "1241","No","Yes",502.797735462042,13376.0533426289 "1242","No","No",433.452818738995,35858.9302041276 "1243","No","No",406.426718303055,36750.4989762499 "1244","No","No",935.481004968962,56610.8155695667 "1245","No","Yes",1545.83064077307,12160.842279892 "1246","No","No",93.9405627936824,19811.3305427787 "1247","No","Yes",192.411154711618,24050.371721417 "1248","No","No",716.920227461434,24015.519124564 "1249","No","Yes",1157.13953794831,21222.4155415026 "1250","No","No",72.1697402833453,39560.6349779677 "1251","No","Yes",1417.26825793396,20464.0257371703 "1252","No","No",1195.48395634087,38452.6413385831 "1253","No","No",559.118650256646,55007.2651000453 "1254","No","No",0,37499.6892716672 "1255","No","No",359.225740891036,25243.0984801316 "1256","Yes","Yes",2123.36921697603,23836.4642624001 "1257","No","No",1316.54238433391,20353.4988319531 "1258","No","No",1172.30088990896,34513.6108491013 "1259","No","No",1453.08363720655,36828.3271922962 "1260","No","Yes",323.957086736561,12327.2439903559 "1261","No","No",1152.55066350681,27346.0306093646 "1262","No","No",1333.99816556628,57662.121925967 "1263","No","No",709.658699114718,37992.2129471808 "1264","No","No",731.309122160637,33126.8497707675 "1265","No","Yes",279.315574362792,19742.0370612017 "1266","No","No",0,17059.3683209395 "1267","No","Yes",630.704463000824,16501.8090037026 "1268","No","No",543.037129679086,31268.0951621908 "1269","No","No",618.881501992201,27906.5896181767 "1270","No","Yes",1053.16173509751,25222.978843404 "1271","No","Yes",0,19622.5771706294 "1272","No","Yes",1762.35218285289,17032.3423516869 "1273","No","No",0,43943.2449143298 "1274","No","No",469.151974452928,30366.7195981448 "1275","No","No",699.762558773795,32881.3045147277 "1276","No","No",446.142725206317,42611.5835477328 "1277","No","No",571.179947622194,39682.8028691115 "1278","No","No",952.33482134642,44864.1548648431 "1279","No","No",584.667022756139,55682.4667032247 "1280","No","No",174.367865868658,47750.1206074812 "1281","No","Yes",671.801700876134,15299.2598850673 "1282","No","No",1339.55551031668,53585.7613313739 "1283","No","No",0,49232.7065464366 "1284","No","Yes",1579.07097721235,21101.2046126527 "1285","No","No",917.323540859649,40193.8380967199 "1286","No","No",251.428221532138,25962.0591912929 "1287","No","No",998.362061052119,38385.2913078491 "1288","No","No",828.232510551025,42246.2173550012 "1289","No","Yes",1500.283089198,16943.0290244786 "1290","No","No",1142.63797607011,26731.0903622272 "1291","No","Yes",1415.19882255962,16737.5187114242 "1292","No","No",198.730917929493,33512.9303722799 "1293","No","No",341.769250192687,41662.7426108218 "1294","No","Yes",146.735363398003,12716.2128314385 "1295","No","No",1576.30691570179,30547.7999713877 "1296","No","No",1830.47154712685,24053.4769206631 "1297","No","No",368.800728626843,34526.0353689162 "1298","No","Yes",1026.57628435045,23636.5527691491 "1299","No","No",0,36225.5072520619 "1300","No","No",241.336031072717,40122.4016171763 "1301","No","No",1272.05389130072,44895.5933005043 "1302","No","No",361.200702749123,49395.0267414522 "1303","No","No",1464.00991554481,32023.5955155257 "1304","No","Yes",815.077408427175,18445.6596956189 "1305","No","Yes",1026.12824734079,16430.6411248679 "1306","No","No",630.725559473879,30466.3785151142 "1307","No","No",1624.12643171564,16054.3042106769 "1308","No","No",744.73263686552,44965.0464148846 "1309","No","No",1439.29677868912,36170.5983674823 "1310","No","Yes",1491.05099828582,13033.1227421395 "1311","No","Yes",0,13334.2401303582 "1312","No","No",1162.69979639329,27206.6618497453 "1313","No","No",1463.5931611141,34064.878717232 "1314","No","Yes",1309.69754331363,15536.2387640855 "1315","No","No",920.647422272782,37936.0891353303 "1316","No","Yes",6.31886443929102,18912.6140608781 "1317","No","No",128.991161897018,56946.4364049684 "1318","No","Yes",1323.28906291317,21149.3136871236 "1319","No","No",383.215769348354,15233.3163469465 "1320","No","No",267.380973008781,32265.1189106581 "1321","No","No",429.074698048258,48109.8082506231 "1322","No","No",711.003890959046,51035.7457701793 "1323","No","Yes",309.524147859907,12135.038134265 "1324","No","Yes",1317.9262579595,14070.1670640815 "1325","No","No",427.332842684436,55503.0736319648 "1326","No","No",872.856965749605,31471.5453894656 "1327","No","No",1105.55617273125,38886.0358064885 "1328","No","No",678.018921587752,59416.7788647884 "1329","No","Yes",1164.63072986992,17929.6529845722 "1330","No","No",214.901626088699,33904.5777170432 "1331","No","No",721.586707765586,50952.4848214391 "1332","No","Yes",224.338769023462,18282.2165953956 "1333","No","Yes",1199.23777449457,13809.3504939622 "1334","No","No",580.054584423838,37278.2793128897 "1335","No","No",821.493601873292,34739.3948123132 "1336","No","No",602.862931618408,37849.1342401996 "1337","No","Yes",377.767603673887,14021.5888992056 "1338","No","No",727.632557992218,38431.1580605875 "1339","No","Yes",600.430859835173,18538.3017141838 "1340","No","No",993.59167708779,26682.3285685202 "1341","No","No",1096.58703732555,47235.4531253372 "1342","No","No",1603.33339741999,43474.6376048989 "1343","No","No",1146.97142806638,30637.2972983416 "1344","No","No",1342.17534039196,58049.9940384293 "1345","No","Yes",1663.68701355121,19847.6986056198 "1346","No","No",1005.24796646966,41308.2548453845 "1347","No","No",962.894927346411,25063.4929775853 "1348","No","Yes",1092.62065648598,27128.1672477681 "1349","No","No",919.343346352876,43287.9023052747 "1350","No","Yes",176.840578245143,20021.6933876891 "1351","No","No",460.604465458861,38818.181635265 "1352","No","Yes",782.544846300914,20593.5266878077 "1353","No","No",613.742933850307,56951.3596957531 "1354","No","No",362.103498334539,39658.9504493537 "1355","No","No",861.681923700847,49672.3471809124 "1356","No","Yes",936.473489576073,19389.4800308699 "1357","No","No",1222.7370415634,68564.9906810762 "1358","No","No",794.48678716163,44145.2158474446 "1359","No","No",0,13573.5623986809 "1360","Yes","No",2220.96620112365,40725.0962073577 "1361","No","No",523.216245168787,38063.4016721751 "1362","Yes","No",1907.37731125308,42346.8284633201 "1363","No","Yes",1809.46346847556,18804.7238584061 "1364","No","No",1392.26131534944,32283.3883773109 "1365","No","No",1349.46645574713,35870.0195124443 "1366","No","No",621.736250817544,51595.7517158554 "1367","No","Yes",1273.58198146604,18475.1923845938 "1368","No","No",636.240520317224,17355.7575002454 "1369","No","No",680.451887147092,33192.401795686 "1370","No","No",836.849866321647,27936.5189207732 "1371","No","Yes",1115.10674045042,19169.0715836009 "1372","No","Yes",799.74334079071,16147.5766201027 "1373","No","Yes",996.386878813313,20070.8139205822 "1374","No","No",1632.80804546263,33455.901109151 "1375","No","No",439.837480329247,24452.6465959395 "1376","No","No",276.745313404546,50523.6778878214 "1377","No","No",1715.31506279254,22824.0976154195 "1378","No","No",848.693635853365,29042.5593990651 "1379","No","Yes",323.503357397226,19144.815716939 "1380","No","No",793.612232394447,24973.2084760282 "1381","No","No",612.078447476017,39443.9574108415 "1382","No","Yes",1418.42900414221,14907.0700138967 "1383","No","Yes",1466.93943905615,19139.6296258492 "1384","No","Yes",440.790055424108,19896.029670371 "1385","No","No",0,53432.615491462 "1386","No","No",885.180221984712,46571.7716949208 "1387","No","No",635.969705377164,42451.6143388121 "1388","No","No",664.816301656802,32894.8040660421 "1389","No","No",1100.23877937825,34281.2551656353 "1390","No","Yes",1606.32036631954,13422.3071172582 "1391","No","Yes",1704.42785736529,20892.3141234442 "1392","No","No",1295.99163272121,39799.9975427976 "1393","No","No",468.412123970836,22943.1256871183 "1394","No","No",303.783211829015,44745.1195456996 "1395","No","No",971.709025015626,33774.8919114669 "1396","Yes","No",1758.42094743883,49787.4565722879 "1397","No","Yes",1334.70111864638,24621.9630513517 "1398","No","No",982.699211306085,40194.4653802215 "1399","No","No",52.0388862844743,14680.1000481072 "1400","No","No",401.503539737404,25010.8000911639 "1401","No","No",1456.84937772931,40186.5308796148 "1402","No","No",772.924577096729,42678.3880806454 "1403","No","Yes",1844.36171830721,14238.1132465561 "1404","No","Yes",1015.51139664236,21362.93892147 "1405","No","No",988.678026917533,31210.2432280646 "1406","No","No",1072.74410646127,45704.8395694107 "1407","No","No",1576.90067152779,39835.3487223896 "1408","No","No",840.105158203194,33976.7075446593 "1409","No","Yes",1210.43892922803,19022.1922700507 "1410","No","Yes",714.549612788089,13431.8416509003 "1411","No","Yes",607.094029022965,16373.9344560572 "1412","No","No",413.36352252749,43071.186309797 "1413","No","No",1184.21201473742,34990.5806073176 "1414","No","No",273.602274094738,27996.5771021176 "1415","No","Yes",871.815219474198,9788.57126016834 "1416","No","No",1724.5568166256,46397.4523058011 "1417","No","Yes",1107.40037979683,15661.5797305601 "1418","No","Yes",1161.40734492091,18420.2988894148 "1419","No","Yes",107.602508351688,17941.7391726895 "1420","No","No",136.422035556422,42719.8940623756 "1421","No","No",682.035983958937,30288.9418047374 "1422","No","Yes",791.530359130689,18342.7373544151 "1423","No","No",457.869074702161,43134.5480105639 "1424","No","No",1514.9632356217,36403.0361445491 "1425","No","No",816.093887178331,37763.0365071823 "1426","No","No",1241.95424288944,41952.1157720972 "1427","No","No",932.20254612697,49214.7051207012 "1428","No","No",608.108446611742,46962.7870124299 "1429","No","Yes",627.593246606189,15423.2076281931 "1430","No","Yes",593.055241241436,22786.9167069869 "1431","No","No",187.310192572034,31140.7467172041 "1432","No","No",736.475778783959,39538.3307952149 "1433","No","Yes",838.081158903366,23698.707252675 "1434","No","No",511.515996186748,43737.1818050442 "1435","No","No",355.359646122681,65798.9200344516 "1436","No","No",1138.39668633473,24098.3488630096 "1437","No","No",828.004955429911,53806.3162782398 "1438","No","No",1218.55300529569,51224.9173051827 "1439","No","No",316.012130893778,34250.521603289 "1440","No","Yes",480.469765302404,14866.6122509044 "1441","No","No",152.50300740836,39502.8367966927 "1442","No","No",1129.31646567778,46689.9793958435 "1443","No","Yes",887.290639981827,14958.5514708638 "1444","No","No",938.436913679829,34184.9428780471 "1445","No","No",1076.66543906847,43972.6938555403 "1446","Yes","No",1575.48781838196,35735.4550144135 "1447","No","No",148.145980665246,43104.3860859918 "1448","Yes","No",1865.63577947078,49604.8821305309 "1449","No","Yes",633.769188903703,14109.8218115815 "1450","No","Yes",0,23422.1372192108 "1451","No","No",922.817168040893,50800.3590145358 "1452","No","No",4.71214169670725,28521.3668849029 "1453","No","No",1198.17592683547,42968.63988353 "1454","No","No",1726.61869814519,43814.9612698479 "1455","No","No",1075.21972115915,30485.0597420452 "1456","No","Yes",883.923543700637,14740.1386756169 "1457","No","No",1099.29298509598,47625.3054566206 "1458","No","No",948.965133073432,45456.928800392 "1459","No","Yes",814.630075346124,22948.1577580283 "1460","No","No",687.29293871283,35989.2276496801 "1461","No","No",693.671589365794,32578.6063075364 "1462","No","No",814.843118419675,28526.2168292417 "1463","No","No",1031.97460083075,59555.8658103409 "1464","No","No",1319.48357858413,62054.9863940438 "1465","No","No",1366.02602189242,51551.1083201808 "1466","No","No",1033.45504262437,55487.219887062 "1467","No","No",0,50231.4473361649 "1468","No","No",857.582361058953,54372.8941872866 "1469","No","No",1156.28955808283,33959.7385286484 "1470","No","No",1713.26358997434,34005.8614037709 "1471","No","Yes",902.980719695453,15076.3385432134 "1472","No","Yes",212.042182883039,16179.3077540229 "1473","No","No",632.803980291224,51149.4252527408 "1474","No","Yes",378.021115432097,19571.3923039925 "1475","No","No",999.538016798513,43934.8562610525 "1476","No","No",970.852545776176,49043.7823235489 "1477","No","No",1319.1876132958,35466.2418626747 "1478","No","No",286.329963629257,59576.650317901 "1479","No","No",830.571875567958,39723.7686575355 "1480","No","Yes",657.532135554775,19395.7389272898 "1481","No","No",786.641008454562,57704.644609212 "1482","No","No",111.061910509757,40675.3273778653 "1483","No","No",298.236583687474,27838.6841232142 "1484","No","Yes",819.858672611375,19802.4610662658 "1485","Yes","No",1790.67498344072,44607.4290190773 "1486","No","No",883.471999596354,44207.3330334248 "1487","No","Yes",384.831328093516,17844.5175144789 "1488","Yes","No",1567.61070445614,38785.3576829858 "1489","No","Yes",927.772723605775,18148.0692848799 "1490","No","No",796.326145394374,28616.7090415275 "1491","No","No",652.553316643973,32438.0580993505 "1492","No","No",315.012298389242,44690.4977413746 "1493","No","No",1609.79745262808,38756.4546866537 "1494","No","No",851.796275058559,57950.7717530083 "1495","No","No",460.207866888242,44527.2727547891 "1496","No","No",1203.82896359988,41484.9394268072 "1497","Yes","No",2074.80758856856,38988.8592451984 "1498","No","No",1243.70832217009,37926.1052449778 "1499","No","Yes",1373.03783495249,19457.6092989472 "1500","No","No",449.412686268649,52892.250152274 "1501","No","No",126.558594574605,69541.9485970211 "1502","No","No",387.236142873437,24243.9444577883 "1503","Yes","Yes",2332.8782541994,11770.2341236926 "1504","No","No",1359.43849254375,24411.1347390653 "1505","No","No",469.33171312718,58360.3891158194 "1506","No","No",111.294953864346,40086.6901221233 "1507","No","No",1443.87516538514,54355.7261440114 "1508","No","No",396.820315984991,51560.0281005464 "1509","No","Yes",146.151144830101,15160.4894735416 "1510","No","No",607.200005842074,36615.8294402393 "1511","No","No",1708.14996698855,46416.9455838446 "1512","No","No",956.533336957818,53702.5415622221 "1513","No","Yes",676.613270637706,16148.1863737952 "1514","No","Yes",238.31810694883,17194.1541417353 "1515","No","Yes",0,15967.6142121715 "1516","No","Yes",740.737951241186,13065.5659358939 "1517","No","Yes",933.711693272187,11810.5545699631 "1518","No","No",860.034364598748,33740.699107592 "1519","No","No",1032.94082520166,31152.1406858513 "1520","No","No",0,36949.9498905999 "1521","No","No",835.273499671236,51471.1429480796 "1522","No","No",188.408755938627,35073.5146010696 "1523","No","No",506.324983096079,43631.2965258365 "1524","No","No",496.751812161108,35955.6392777941 "1525","No","Yes",739.179456441967,15819.7305666793 "1526","No","Yes",916.536936849813,20130.9152577 "1527","No","No",1559.75214620523,37227.2688180877 "1528","No","No",392.2395398963,44983.2017971733 "1529","No","No",1065.82556021692,39718.9492489258 "1530","No","No",523.708897901411,48091.7445309658 "1531","No","No",789.564771038807,39199.029533928 "1532","No","No",805.195304832195,38222.2552310845 "1533","No","No",1255.54337529249,45142.27359399 "1534","No","No",654.808846012063,44255.7671952925 "1535","No","No",716.764910805379,51528.498658684 "1536","No","No",686.072308570088,32318.4222408101 "1537","No","No",1530.37001706297,29479.022449285 "1538","No","No",879.373824284674,29697.1464939606 "1539","No","No",738.327804251468,37273.1711484488 "1540","No","No",1647.426763853,49156.1593053497 "1541","No","Yes",503.216622570078,21371.2463239397 "1542","No","No",215.025329445692,40399.4099427169 "1543","No","Yes",820.656300958554,24820.0482387008 "1544","No","No",990.674804194908,56141.1137562027 "1545","No","Yes",914.106496229866,15546.7836705556 "1546","No","Yes",1021.01161324493,8970.91203629163 "1547","No","No",1143.43137940289,35773.4018459501 "1548","No","Yes",763.397388910862,15224.2634633417 "1549","Yes","No",1532.32629971463,42152.3617128869 "1550","No","No",1860.74114848111,39551.0358268744 "1551","No","No",1101.29631071735,27781.452389348 "1552","No","No",541.996802547945,43873.289405485 "1553","No","Yes",696.583526934606,2981.27954754111 "1554","No","No",1536.23227623546,30635.571790594 "1555","No","No",1333.19731299735,33782.9038472638 "1556","No","Yes",869.50920096313,18056.4547776168 "1557","No","No",1048.55213986057,40916.124546005 "1558","No","No",12.0792665336124,32670.4196401503 "1559","No","No",699.382581738009,34276.5925049358 "1560","No","No",855.42637484694,48653.5825586135 "1561","No","Yes",562.304198182497,20164.3110069354 "1562","No","No",62.1700497191049,28660.7475084726 "1563","No","No",977.889750130773,45005.2564239161 "1564","No","No",1685.45062340964,60890.3647952767 "1565","No","No",1257.79532040336,21679.4904991617 "1566","No","No",671.784325023815,53374.9540011256 "1567","No","No",63.0974703902123,38493.0872467354 "1568","No","No",686.384431931289,28953.2703261944 "1569","No","No",582.944764026331,40368.5438191646 "1570","No","No",808.625197210798,32316.3727394222 "1571","No","No",1077.9803067516,17705.2189572525 "1572","No","Yes",1716.08977388041,22755.2619249036 "1573","No","No",417.727581328508,31206.2904522443 "1574","No","No",1300.99516598655,42493.9555486844 "1575","No","No",896.678115981988,46328.5441977357 "1576","No","No",136.828320028455,13585.9974978034 "1577","No","No",29.1750990816449,38871.4786871997 "1578","No","No",282.909562251236,35445.9186115451 "1579","No","No",858.542630394262,19071.8484313316 "1580","No","No",864.047198400084,27690.1135354669 "1581","No","No",1225.97500773502,42203.2081629059 "1582","No","No",696.428764268445,38028.2997175117 "1583","No","Yes",1840.217986795,26480.7192667426 "1584","No","Yes",1227.48527263112,16717.6205876885 "1585","No","No",1716.67513437773,39543.2910788717 "1586","No","No",330.62242766305,11732.2513825039 "1587","No","Yes",915.656813630785,17710.8547048787 "1588","No","No",133.097030783518,34578.9968471276 "1589","No","No",420.611586995114,33293.4668646698 "1590","No","No",1058.05879623197,27196.2585787855 "1591","Yes","No",1972.16681967648,34362.6350079998 "1592","No","No",790.238985859862,43646.1431322213 "1593","No","No",131.624713698702,40158.7089794291 "1594","No","No",0,37468.4807659043 "1595","No","Yes",106.250607422263,17638.7997330987 "1596","No","Yes",712.253706637239,21407.0436171613 "1597","No","No",906.223225781145,44626.942672054 "1598","No","No",127.409903185881,49735.6416370995 "1599","No","No",1698.07191560776,48595.7046456565 "1600","No","Yes",1448.03560597594,18989.3970469034 "1601","No","No",711.439451354052,40507.8212380723 "1602","No","No",326.628956809194,52696.7251843216 "1603","No","No",352.94387653612,59372.7118679629 "1604","No","Yes",1247.06723758895,15522.5841453256 "1605","No","No",439.068967048103,47899.169678067 "1606","No","No",1030.21005766399,40711.453172514 "1607","No","No",0,33168.0580487243 "1608","No","No",1113.27652891078,51457.5390581311 "1609","No","No",1341.0777774559,40199.8414148092 "1610","Yes","Yes",2269.94696613409,18021.105947569 "1611","No","No",1384.26492431692,27737.6085213274 "1612","No","No",0,32724.506367132 "1613","No","No",745.813204823963,42762.4749919349 "1614","No","No",909.633623933358,41915.5206551351 "1615","No","No",196.374008280193,57397.277202827 "1616","No","No",866.174668793343,41365.4563803086 "1617","No","Yes",1460.74766730585,24960.3593807279 "1618","No","No",760.776700641741,44851.560260433 "1619","No","Yes",1165.28321495274,10354.9376205022 "1620","No","No",1085.4255718051,39274.8338712352 "1621","No","Yes",724.385576002922,18641.4984152384 "1622","No","No",114.884475066108,27365.4222002411 "1623","No","No",794.587568399101,52507.4796276615 "1624","No","No",1093.25661935165,28811.2734917492 "1625","No","No",943.937833482203,48198.4006094561 "1626","Yes","No",1861.06087104511,55671.723664137 "1627","No","No",900.838759144024,33130.7093374951 "1628","No","Yes",1682.79614211699,23344.0739391453 "1629","No","No",196.19541561495,26612.5603018635 "1630","No","No",1181.12374855228,29181.8390049907 "1631","No","Yes",1101.15808973692,13142.1814879757 "1632","No","Yes",1506.86047253713,14914.8233564104 "1633","No","Yes",1213.84055423107,17374.0639458298 "1634","No","Yes",547.246325087015,17445.901718035 "1635","No","No",1708.57407859584,34890.717129216 "1636","No","No",248.041482421002,36257.161447609 "1637","No","No",386.265071247349,45776.2066773424 "1638","No","No",527.463274362782,35708.1692547216 "1639","No","No",1546.84250109648,51161.9794953012 "1640","No","No",0,47214.433595293 "1641","No","No",0,55781.2048436798 "1642","No","No",955.466433781886,47520.1755792009 "1643","No","Yes",750.86203452227,16932.3277128853 "1644","No","Yes",1255.7481347252,12209.5770680825 "1645","No","No",818.060883412421,35902.4718016752 "1646","No","Yes",1469.36666818125,11337.4229891593 "1647","No","No",331.720734726363,46853.7458503906 "1648","Yes","No",1456.54605630224,51508.5743439271 "1649","No","Yes",1290.85429311542,19532.7315313487 "1650","No","Yes",711.030495814378,12685.8248596782 "1651","No","No",734.317202778122,33240.0390316634 "1652","No","No",329.218897389854,48133.8244215813 "1653","No","No",1231.50621054989,35068.7907373395 "1654","No","No",847.05414804777,28539.1079012539 "1655","No","No",811.428911459262,55119.8969566434 "1656","No","Yes",1656.8575982207,15359.4365128175 "1657","No","Yes",1547.15324755822,14344.2895934615 "1658","No","Yes",590.718725969,13041.1984597878 "1659","No","Yes",893.966466246846,15092.7760309073 "1660","No","No",0,34066.4381145502 "1661","No","No",800.154679994502,51730.704612224 "1662","No","Yes",685.522535103167,12361.8633973803 "1663","No","No",1262.75744462161,68579.1046648238 "1664","No","No",770.115026382123,49856.6901226882 "1665","No","No",1181.00035898971,35123.7400666379 "1666","No","Yes",527.653897972175,17819.9653389802 "1667","No","No",441.489919754581,39209.9001280774 "1668","No","No",921.974413411946,38340.5688927588 "1669","No","Yes",875.362352530899,14637.1769330155 "1670","No","No",1033.12115530997,66304.7738246534 "1671","No","No",1046.74354286894,40822.4474126399 "1672","No","Yes",1319.70644850247,23373.9311983134 "1673","No","Yes",698.512205127449,26768.9131247588 "1674","No","No",570.981491394889,47021.0067172901 "1675","No","No",842.541774744879,33897.9265106513 "1676","No","No",0,47256.0621146315 "1677","No","No",850.384888087638,44547.4855112922 "1678","No","Yes",963.187906369737,12799.5093789997 "1679","No","No",1136.33113177792,42149.8689946234 "1680","No","Yes",1945.49048287582,14941.3179564765 "1681","No","Yes",1442.54360101309,13049.3193822184 "1682","No","No",135.629015517193,39925.7001694146 "1683","No","No",423.876946748039,36783.0514316689 "1684","No","No",299.779595327805,28917.5378107748 "1685","No","Yes",701.539370559622,17607.4578217575 "1686","No","No",283.207206967033,39263.3920225272 "1687","No","Yes",1357.84973416896,11402.5406341367 "1688","No","Yes",1327.86416271289,11020.9064258435 "1689","No","Yes",946.449982295599,15179.2120481767 "1690","No","No",663.505282228982,53102.245512031 "1691","No","No",115.840084017037,47519.8497166199 "1692","No","No",800.486211245275,37715.8363282901 "1693","No","No",640.06389375316,52413.8589700978 "1694","No","No",877.283013558901,27405.1354982312 "1695","No","Yes",1382.08769153044,15552.2520534633 "1696","No","No",751.394538882795,50910.2456238742 "1697","No","No",0,39893.2719259536 "1698","No","No",1120.7032386567,29613.8875832103 "1699","No","Yes",1312.05143098981,28483.1355092216 "1700","No","No",389.055327796639,22581.6236528053 "1701","No","No",861.690446191552,58029.640234209 "1702","No","No",1079.39600547751,38864.1448016021 "1703","Yes","No",1893.28979213479,31821.7255806098 "1704","No","No",337.495903885671,55853.265132957 "1705","No","No",1142.3517057945,45580.5748105396 "1706","No","Yes",847.056485301184,13741.3270672054 "1707","No","Yes",1575.23811614421,24469.4913979243 "1708","No","Yes",403.347053465851,19690.3455102708 "1709","No","Yes",566.52311940044,25398.3983784735 "1710","Yes","Yes",2009.6857436175,25694.4961577195 "1711","No","No",954.598167759023,50139.0929900909 "1712","No","No",1057.9404153634,45514.6725264215 "1713","No","No",381.3874762368,28265.0860891034 "1714","No","No",793.186855645959,35555.7802801686 "1715","No","No",1078.91038460747,54419.7865521959 "1716","No","Yes",1311.0984831085,21189.2384030857 "1717","No","No",38.2955762452304,37186.5515932779 "1718","No","No",756.216699632025,36513.921210849 "1719","No","No",56.8693777172818,56245.065400061 "1720","No","No",1189.7480394451,30315.8851349596 "1721","No","No",1337.39087740802,51507.5009172858 "1722","No","Yes",1255.49921454235,16703.0173676496 "1723","No","No",1211.86792636394,42777.5823449863 "1724","No","No",318.877270818323,50069.02432659 "1725","No","No",336.070545184453,38595.9115460888 "1726","No","No",934.490492585725,31043.4083271013 "1727","No","No",812.488297873969,42721.3006969775 "1728","No","No",1184.68390385796,37937.9526452613 "1729","No","Yes",1737.60759331587,7153.53966613685 "1730","No","No",94.1207207052075,36303.9415847774 "1731","No","No",994.674438200426,33002.3390513655 "1732","No","No",0,21809.2185090883 "1733","No","No",1006.46882979404,44563.7708044782 "1734","No","No",331.922818528942,47779.9265626849 "1735","No","No",967.135255397538,23278.6659099311 "1736","No","No",132.158429036917,26878.4721288802 "1737","No","No",813.740992900912,30975.2140864352 "1738","No","Yes",0,15986.2419692976 "1739","No","No",529.264958998472,38814.6066989842 "1740","No","No",743.055931704974,40944.5638044847 "1741","No","No",27.7011326957247,45540.9438952868 "1742","No","No",1299.92466935923,44214.5409068333 "1743","No","No",906.541762633329,27074.7747433343 "1744","No","No",1451.17947567421,53556.5521032807 "1745","No","No",1027.56653131669,48558.0872833985 "1746","No","No",1047.2274214374,40974.728128351 "1747","No","No",1452.60329285459,28989.0439548126 "1748","No","Yes",1190.54411198787,20291.1719762324 "1749","Yes","No",1858.9045150328,35525.2139266658 "1750","No","Yes",1152.52022436875,12699.405867675 "1751","No","No",831.595186595008,37372.8282736507 "1752","No","No",922.696676206001,34622.6193419817 "1753","No","Yes",469.456415113981,13944.8933994208 "1754","No","No",474.829219137666,41288.8291033446 "1755","No","Yes",1485.27211754258,10300.8554419372 "1756","No","Yes",943.347555917682,19977.8917657018 "1757","No","No",1789.46451178686,27427.0045664285 "1758","No","No",659.54319765296,21835.1717983776 "1759","No","Yes",1319.53400499073,24032.5441186774 "1760","No","Yes",514.368265849261,18934.6834675869 "1761","No","No",1244.46519780121,40036.0080793479 "1762","No","No",946.810050734945,41237.7692527975 "1763","No","Yes",535.686020138973,11019.606930876 "1764","No","No",682.818458764429,33026.0037380434 "1765","No","No",1190.4859598224,38553.5747928755 "1766","No","No",171.001189215614,42749.130710704 "1767","No","Yes",1238.01661579529,26854.3662753424 "1768","No","No",1037.15769934664,36034.5783662925 "1769","No","Yes",464.835310415625,19121.2286476846 "1770","No","No",124.699031959162,65211.0742137628 "1771","No","No",667.203060826678,44682.8315566199 "1772","No","No",1111.06099784139,50301.4756839878 "1773","No","No",1142.39653992749,33740.4429785247 "1774","No","No",778.830165590655,44257.3310325373 "1775","No","No",1412.0247547105,47727.5646264883 "1776","No","No",986.08181602082,52009.3996458339 "1777","No","No",1251.78401940822,32721.1440442512 "1778","No","No",149.024488439011,33398.4623670415 "1779","No","No",465.08553459872,43480.5684862969 "1780","No","No",1031.12679572637,41022.095640174 "1781","Yes","No",1478.12406941257,31515.3444926478 "1782","No","No",789.00070567225,35798.472637862 "1783","No","Yes",790.295940300018,14086.4483687159 "1784","No","Yes",1123.59504743967,16082.9057091627 "1785","No","No",1370.10949573634,40101.3791314575 "1786","No","No",396.513587196819,41969.7467736577 "1787","No","No",682.078365531623,30736.8876521614 "1788","No","No",338.735981024486,44923.0455293594 "1789","No","Yes",1056.32947590818,16000.8417743231 "1790","No","No",927.211780951994,44368.8830946909 "1791","No","No",634.696104527899,32594.6922349326 "1792","No","No",833.533112973416,40526.3056193295 "1793","No","Yes",1345.2306269047,18518.7156890476 "1794","No","No",550.898966923896,45347.781616879 "1795","No","No",495.708954178561,24845.4329744805 "1796","No","No",661.42615221656,22610.3102990663 "1797","No","No",136.199589610616,20935.6191133423 "1798","No","No",480.192585338536,26084.4071365904 "1799","No","No",230.868924844914,32798.7825914845 "1800","No","No",93.5701986962354,42930.7791819229 "1801","No","Yes",508.824851676069,22663.7098340226 "1802","No","Yes",970.515946612273,16584.8282890372 "1803","No","No",1324.29667077346,46875.3942656965 "1804","No","No",932.963846810656,32105.4419240328 "1805","No","No",0,31418.3691364503 "1806","No","Yes",984.76316184824,17039.9733179552 "1807","No","No",725.120500372107,47549.2007503581 "1808","No","No",246.823809671181,40953.3427649492 "1809","No","No",1051.32109144088,23859.4318006112 "1810","No","Yes",926.892612598001,19445.9371721 "1811","No","Yes",1024.02488477689,18545.8996437402 "1812","No","No",699.84202422219,41985.2576732019 "1813","No","Yes",1036.32351410449,14108.4545196219 "1814","No","No",321.108806748075,36275.1428853987 "1815","No","No",0,41152.1739500131 "1816","No","Yes",1299.18732366924,19878.7473498519 "1817","No","No",763.375309314187,40978.1411815488 "1818","No","Yes",808.742771858343,9775.58139591036 "1819","No","No",808.507503648157,34543.0188012876 "1820","No","Yes",677.552825772912,20745.0153256246 "1821","No","Yes",904.008926715623,13996.501895776 "1822","No","Yes",102.166771629378,26266.3628194819 "1823","No","No",1218.34651457605,43930.9898912831 "1824","No","Yes",774.413837130444,12289.8643730739 "1825","No","No",1309.56437410882,47432.432781126 "1826","No","No",921.998990759072,31553.7340487163 "1827","No","No",629.696208455544,60230.2190055931 "1828","No","No",77.5029386309678,31050.1558214859 "1829","Yes","No",1772.85548374805,42080.1068361856 "1830","No","No",960.237692052783,53418.510829153 "1831","No","No",664.652987898369,56677.6214123668 "1832","No","No",109.918733972492,33419.0068888307 "1833","Yes","Yes",1790.36053654332,14306.823602407 "1834","No","No",1425.80162855037,34015.8498706349 "1835","No","Yes",1167.62012409765,23502.2128231377 "1836","No","No",891.192146223565,35862.1673027478 "1837","No","Yes",1124.25931173712,23168.9234464214 "1838","No","No",1796.11437554937,31862.5752894627 "1839","No","No",237.976185648148,38229.5178649747 "1840","No","No",1353.26492393312,43888.8830574219 "1841","No","Yes",1176.55006037624,18662.5988285908 "1842","No","Yes",1229.44149773733,12158.0446578658 "1843","No","No",270.548125020502,34258.8312272797 "1844","No","Yes",722.055420122016,14661.5245624088 "1845","Yes","No",1170.19897414894,46692.1047752222 "1846","No","No",840.136505158277,38738.1771531566 "1847","No","Yes",873.641237177001,21810.6119901713 "1848","No","No",434.243340354206,57146.4261041008 "1849","No","No",605.274447356026,58469.4754932954 "1850","No","No",428.842161894841,36980.1392701934 "1851","No","No",1662.76219163808,36691.562186102 "1852","No","No",682.712411748219,33175.1830451957 "1853","No","No",598.513776952532,42584.1208108417 "1854","No","No",1088.25476515341,32617.5934807198 "1855","No","No",911.052232910622,38629.5183603014 "1856","No","No",538.160022756727,44654.0931815619 "1857","No","No",721.743821817129,21162.7427156506 "1858","No","Yes",438.517367100739,17400.3908541523 "1859","No","Yes",516.865449012954,20179.3460581977 "1860","No","No",811.171202855366,42185.4435714864 "1861","No","No",775.981834559193,68179.761202979 "1862","No","No",285.400001355113,39398.5653544955 "1863","Yes","No",1554.81631872328,26430.4894049186 "1864","No","No",1057.01521227957,54652.7103326948 "1865","No","Yes",673.812427068436,17672.2879836527 "1866","No","No",689.687362383195,24085.4348274782 "1867","No","Yes",1400.34458861735,14768.6962199807 "1868","No","No",601.417290539683,41490.6158444197 "1869","No","Yes",754.859558740815,18996.8367038408 "1870","No","No",639.665261488891,49977.2949555232 "1871","No","No",765.772445061049,35122.0273798104 "1872","No","No",220.368957650688,24019.3105599941 "1873","No","No",47.3026675420401,38293.3111425555 "1874","No","Yes",780.722398716924,23819.7887922 "1875","No","No",168.813495469025,57262.7545045714 "1876","No","No",1557.64095143419,46030.2620885468 "1877","Yes","No",1891.10961430646,34448.693854621 "1878","No","Yes",688.747548362728,26662.376604636 "1879","No","No",452.007877066517,39990.7656923565 "1880","No","No",574.49119284902,31632.6242446603 "1881","No","No",572.166138659987,43807.2190457683 "1882","No","No",946.770746033435,26618.5227609799 "1883","No","No",523.908694764035,43928.6379332755 "1884","No","No",1146.35838527664,44840.0249597264 "1885","No","No",1646.61391882233,39347.4567996525 "1886","No","No",1216.20230943934,43656.1288917427 "1887","No","No",1184.89962505962,53896.9022479321 "1888","No","No",1416.06555486279,40371.2845887418 "1889","No","No",431.942741359302,46658.013814119 "1890","No","Yes",521.033066390733,16887.1603924733 "1891","No","Yes",806.996111210473,15964.9969756192 "1892","No","No",775.44392753938,33781.7810651214 "1893","No","No",942.279908319669,24683.3808068886 "1894","No","Yes",1261.25713821857,26085.0761176399 "1895","No","No",509.370892230809,39546.4726439018 "1896","No","No",1389.3864522944,39707.9895454689 "1897","Yes","Yes",1836.16176454549,18944.8078756839 "1898","No","No",196.482990431978,41972.9849545641 "1899","No","No",1348.88886606099,40548.7527125412 "1900","No","No",661.602025255988,43157.1192790073 "1901","No","No",718.986722837885,21044.6738318112 "1902","No","No",451.129324126637,39849.7132394904 "1903","No","Yes",114.418241597804,12540.907277886 "1904","No","Yes",889.01231271351,10382.9368009385 "1905","No","No",1046.13532436582,47218.8167896895 "1906","No","Yes",1263.87483062068,18520.063670075 "1907","No","No",1109.03463427706,29759.6363034254 "1908","No","No",698.405381166292,33265.4358443004 "1909","No","No",1328.96712552825,51721.3716111438 "1910","No","Yes",1199.80924416626,19538.0274856053 "1911","No","No",1261.77845265055,26767.9232836531 "1912","No","No",605.365694250338,39002.2296432859 "1913","No","No",550.639886158318,35648.3906286712 "1914","No","No",894.275095526371,36513.5391982464 "1915","No","No",1163.53457380034,46173.768243076 "1916","No","Yes",1061.75508628024,17502.8196418475 "1917","No","Yes",1204.54963030766,19058.9845429835 "1918","No","No",1666.41562382804,18916.3748629881 "1919","No","No",412.902060866997,49060.9237393665 "1920","No","No",595.065973398186,29842.8860499033 "1921","No","Yes",836.005768320167,7404.71584303711 "1922","No","No",178.154515698657,28785.9620969575 "1923","No","Yes",627.645320776991,17868.4448460212 "1924","No","No",1004.25509531634,36895.865549294 "1925","No","No",1195.39956829296,34333.9299147998 "1926","No","No",515.635635549008,51072.8470169857 "1927","No","No",1242.11037786126,37980.7583661376 "1928","No","Yes",153.261039737442,14027.7907404296 "1929","No","No",1086.74028592913,42451.9930812468 "1930","No","No",280.959049718201,29998.8573033458 "1931","No","No",955.881414291977,48657.7903659122 "1932","No","No",1093.28225760166,18844.2503915266 "1933","No","No",734.087945443028,22342.5503467431 "1934","No","No",793.829387731878,45089.5520625048 "1935","No","Yes",410.496187222397,25838.1973641363 "1936","No","Yes",677.653196612127,18930.077199437 "1937","No","No",814.553874491948,39148.5583732843 "1938","No","No",800.177345639351,43547.3981682596 "1939","No","Yes",300.795504329199,19673.6740583538 "1940","Yes","Yes",1748.68084923477,13715.4243783026 "1941","No","No",0,54901.8222134325 "1942","Yes","No",1807.68449070323,42308.9544537047 "1943","No","No",833.070562943636,36330.2620852814 "1944","No","No",794.464327017522,32431.8205514509 "1945","No","No",631.598011335177,46841.1109643927 "1946","No","No",108.249452612372,45264.5647937895 "1947","No","No",1040.39643430957,41395.2882512831 "1948","No","Yes",1207.05248263756,24747.8899692653 "1949","No","No",67.2304390711129,45751.4479321279 "1950","No","No",438.39890382946,40576.7421222242 "1951","No","No",708.579794983589,21728.8201971829 "1952","No","No",775.40221164083,41857.5780281973 "1953","No","No",0,49459.275484274 "1954","No","No",610.506735467534,52124.2335736703 "1955","No","No",845.343264468077,34216.7543637819 "1956","No","No",181.91977853135,37725.2473553696 "1957","No","No",272.987840705252,63566.3659949776 "1958","No","No",805.096332709731,40236.8996303352 "1959","No","No",226.855704750183,33014.8933279067 "1960","No","No",0,39576.4346515849 "1961","No","No",691.928828791926,23957.7148776853 "1962","No","No",1674.19782994054,54658.0741462208 "1963","No","Yes",715.717417435997,27285.3332362387 "1964","No","No",339.433429654687,44889.8749067007 "1965","No","Yes",767.337131679801,21979.6465311961 "1966","No","No",1088.48809632531,38171.3720733572 "1967","No","No",28.5673908447128,35414.5782763459 "1968","No","Yes",792.577561599726,21347.2734497751 "1969","No","Yes",1093.11502043624,22593.0816087832 "1970","No","No",408.489246623899,35984.561683511 "1971","No","No",1214.83096837004,38224.9620526713 "1972","No","Yes",850.159886593427,26764.2924616864 "1973","No","Yes",1078.662962939,25945.1789642873 "1974","No","No",403.64645291367,55458.8912456237 "1975","No","No",1378.16988733139,48152.9878524834 "1976","No","No",306.995202580848,43504.3052364636 "1977","No","No",1569.38083521793,42414.6253557756 "1978","No","Yes",1377.26968341296,17077.2421060231 "1979","No","Yes",656.379056976585,26578.8835572058 "1980","No","Yes",1654.63273450854,23687.357206599 "1981","No","No",702.084751460991,47811.758073426 "1982","No","No",1110.060615566,40236.5014860719 "1983","No","Yes",718.211753993742,18788.7481217329 "1984","No","No",737.150431835345,50544.7841921839 "1985","No","No",672.380047621219,40236.8732028806 "1986","No","No",1298.00276254287,42219.9112378061 "1987","No","No",489.399374070078,37338.5829188421 "1988","No","Yes",636.104269012361,20763.8278588407 "1989","No","Yes",1406.79982672379,16686.6280102287 "1990","No","No",997.80984304604,50287.8737409593 "1991","No","No",0,49792.7572585251 "1992","No","Yes",691.224742286061,16872.15171466 "1993","No","No",485.868909720813,14213.7055827875 "1994","No","No",730.179675305981,42685.1846676899 "1995","No","No",152.119512563396,41847.2318400977 "1996","No","Yes",1105.92557104881,13126.214243143 "1997","No","No",0,47592.7281367208 "1998","No","No",815.737668044725,48788.1033402742 "1999","No","No",568.629894009905,28122.5940878453 "2000","No","No",589.944419374562,24854.6045830214 "2001","No","No",1139.56716632629,36363.6248039883 "2002","No","Yes",344.522896814282,21341.6538375363 "2003","Yes","No",2005.57512847055,36636.0085937313 "2004","No","No",1391.03380861176,51881.8186725178 "2005","No","No",1338.88459679214,32500.5848740456 "2006","No","No",78.7825536317007,37605.452512539 "2007","No","No",764.645179619002,49100.9483808579 "2008","No","No",602.616877680922,56017.1275374002 "2009","No","No",834.690059477593,42468.9136646455 "2010","No","No",1391.51659069133,30152.8038725424 "2011","Yes","No",1823.7514257788,53526.3564109476 "2012","No","No",1010.07075927463,39456.908335945 "2013","No","Yes",1069.80034045604,14736.1469974806 "2014","No","No",1116.06577105079,37074.0613666501 "2015","No","No",428.402283947888,36340.651070882 "2016","No","No",147.488575172857,44482.2687786577 "2017","No","Yes",689.519195003873,15600.0473661363 "2018","No","No",939.420716799608,55360.0331224343 "2019","No","Yes",591.140265303186,19937.0225685188 "2020","No","No",1139.26436423453,41869.3186673096 "2021","No","No",500.64925119635,31353.7500167738 "2022","No","No",1109.40861565878,64213.1924852685 "2023","No","Yes",733.928448994375,28105.6061988492 "2024","No","No",687.956792216651,40354.2160422405 "2025","No","No",118.598450931479,35974.7640052522 "2026","No","No",0,42009.0418247155 "2027","No","No",634.865043829464,49681.2245331545 "2028","No","No",615.471254254668,38161.6557035216 "2029","No","No",457.957743633761,36211.1949861006 "2030","No","Yes",854.149364662585,12843.4365131166 "2031","No","No",770.954517823288,42673.9931495883 "2032","No","Yes",0,24283.3359823875 "2033","No","No",58.4438977974733,44838.6949893381 "2034","Yes","Yes",1893.6643342683,21526.3506270682 "2035","No","No",768.043633927125,35951.1246696067 "2036","No","No",336.242417261439,46279.5258632712 "2037","No","No",852.971339880667,42773.7714603003 "2038","No","Yes",1300.70792413699,13675.520182646 "2039","No","No",743.516076473323,33764.571812105 "2040","No","No",293.452357466707,38528.4473640524 "2041","No","Yes",1472.94846140665,23877.5926590672 "2042","No","No",756.160130857701,52778.0536252184 "2043","No","No",465.495600172177,42358.161541564 "2044","No","Yes",1041.43874269112,24847.8812033725 "2045","No","No",709.738287402227,46363.3436703512 "2046","No","No",427.117689978097,34193.1609253433 "2047","No","No",612.225776174973,60323.3572672294 "2048","No","No",1322.15285429724,47892.8899845687 "2049","No","No",673.747681225898,25013.0631402561 "2050","Yes","No",1135.04734947211,48982.225852038 "2051","No","Yes",509.612940118272,21928.9109904009 "2052","No","No",113.669024032811,38513.3322894258 "2053","No","Yes",560.431764396497,24511.2102139238 "2054","No","No",1163.73601016216,32467.7480420105 "2055","No","No",133.508914180283,49516.3408273916 "2056","No","No",897.420265657772,36296.7481384119 "2057","No","Yes",793.562784376054,13446.0562906254 "2058","No","No",942.786853642612,27736.6451197432 "2059","No","No",953.807008362411,40908.4061180661 "2060","No","No",814.243678946983,29631.1100659498 "2061","No","No",1387.70446873637,26863.1723272568 "2062","No","Yes",601.345719044377,15897.1379986349 "2063","No","No",656.52270125347,34229.3741032096 "2064","No","Yes",1790.54409245898,21938.2092322296 "2065","Yes","Yes",1925.98279481192,17763.3503033729 "2066","No","No",0,16834.8027078641 "2067","No","No",310.118642459262,31445.7710846884 "2068","No","Yes",956.720391942074,14464.8073831659 "2069","No","No",205.173197849377,47284.2535051627 "2070","No","Yes",1572.80377803434,24557.352113832 "2071","No","Yes",1455.68418242228,14822.8330565636 "2072","No","Yes",1011.45881429469,28316.7576084851 "2073","No","No",413.599005794662,31466.220592534 "2074","No","Yes",0,19281.7146572359 "2075","No","No",377.193845357772,41901.8473663191 "2076","No","No",0,51480.3873512327 "2077","No","Yes",0,13407.758588235 "2078","No","Yes",527.056085247217,22986.2838213203 "2079","No","Yes",1470.33083426297,15752.6817921671 "2080","No","No",776.56835738045,54662.5160004175 "2081","No","No",1096.20366837014,41016.2182273767 "2082","No","No",130.45291025962,46094.077150219 "2083","No","No",1331.60730925679,27665.6754702124 "2084","No","Yes",598.081831318484,12385.8240760546 "2085","No","No",177.010865081754,53545.0151134357 "2086","No","No",937.033052836217,27174.5267042589 "2087","No","No",0,46581.3617831305 "2088","No","Yes",970.21073142428,19245.1981577568 "2089","No","No",268.87949151699,48006.1500438521 "2090","No","Yes",708.977828284692,15968.9165569585 "2091","No","No",596.009182737349,32983.5435039705 "2092","Yes","Yes",1944.677458621,13026.0467334358 "2093","No","Yes",1805.2930711196,10405.4266603484 "2094","No","No",405.38804384492,28493.3507218984 "2095","No","No",849.129011101001,26970.736094989 "2096","No","No",988.407715272309,32458.7693705721 "2097","Yes","Yes",2261.84816166666,20030.1651194096 "2098","No","No",1221.59976389318,40865.3128875121 "2099","No","No",1057.35640003951,45099.0915945878 "2100","No","Yes",292.300020907307,17321.2271219559 "2101","No","Yes",940.079732079506,18581.5771825384 "2102","No","No",368.196933199287,32107.6787202062 "2103","No","No",703.386008388494,38419.4138282152 "2104","No","No",1018.22125956717,39893.3028681844 "2105","No","No",240.225612056097,25042.4017278854 "2106","No","Yes",446.634847450068,18309.7907377691 "2107","No","No",1277.79338062019,35620.1560022537 "2108","No","No",519.584026350788,30546.8643738174 "2109","No","No",933.521200054954,40378.4231241276 "2110","No","Yes",1074.57787055668,18574.3537335753 "2111","No","Yes",1697.75398883114,19021.0677000564 "2112","No","No",1240.66470702238,46148.1974680897 "2113","No","No",573.584802642977,54427.9211476451 "2114","No","No",486.057013965658,54794.3921961543 "2115","No","No",455.348416682872,41378.9971241894 "2116","No","No",1110.43993045955,39311.5345181127 "2117","No","No",1225.06555248783,49090.3693115935 "2118","No","No",286.258242830821,28838.3213087935 "2119","No","No",1444.63047690274,40364.5558777602 "2120","No","No",1031.04458789228,38199.0467920706 "2121","No","Yes",382.003276268327,19951.7217195845 "2122","No","No",1337.3132659055,41529.5520507843 "2123","No","No",463.90181290855,39626.7694268247 "2124","No","No",948.777978664131,24094.7864892109 "2125","No","No",626.516141890442,49207.001302772 "2126","No","No",350.0715602255,45354.74618708 "2127","Yes","Yes",1492.96342101535,11054.0684385758 "2128","No","No",847.635895494919,33199.3753811158 "2129","No","No",241.94073994952,47843.0797377543 "2130","No","No",616.538677802606,31925.1832420121 "2131","No","No",733.414845283055,36724.8933064774 "2132","No","No",1100.97288154077,50237.2578180061 "2133","No","No",665.627833705603,55093.3823987094 "2134","No","No",174.935484980574,55044.3700745005 "2135","No","No",124.227296928522,51265.5461992287 "2136","No","No",344.545009104846,38463.6852600914 "2137","No","No",954.948270304332,42963.6617335514 "2138","No","No",1629.32593561974,44911.6435301241 "2139","No","No",913.04491900285,31841.6349702873 "2140","No","No",1306.8430233515,49036.741695979 "2141","No","Yes",2308.89323579289,19110.2664124636 "2142","No","No",1042.42038966929,58234.766470505 "2143","No","No",1264.87562644701,44359.0606151527 "2144","No","Yes",1348.64545582785,21789.3822247358 "2145","No","No",1256.89228843842,23100.0094995806 "2146","No","No",1046.63155340262,45717.6280506608 "2147","No","No",0,22535.506356251 "2148","No","No",432.655426473308,22986.9317533642 "2149","No","No",563.150191515129,43028.597200306 "2150","No","No",721.093433921572,41411.143680846 "2151","No","No",741.59275976993,24393.3159518231 "2152","No","No",1071.30534740383,19529.0351866058 "2153","No","Yes",1589.63859843754,22541.8920327552 "2154","No","No",1194.59757867202,38222.5061057634 "2155","No","No",269.587918794174,38650.3460881726 "2156","No","Yes",455.599026268747,20549.1348293718 "2157","No","Yes",795.540791546717,10257.6724866771 "2158","No","No",595.368804329898,31418.8156662782 "2159","No","Yes",539.834793088502,13119.6858549153 "2160","Yes","No",1322.72397902781,23229.9091337731 "2161","No","No",1267.29579128671,36784.8369937151 "2162","No","No",1091.9997376942,34704.512288981 "2163","No","Yes",951.785550568645,14354.6348784919 "2164","No","Yes",559.498302110046,16994.5786720969 "2165","No","Yes",1222.14132688581,9080.14570014628 "2166","No","Yes",1026.10449504049,20991.3964273735 "2167","No","No",1140.59420875618,25116.6682879217 "2168","No","No",556.4448382508,39707.1087851566 "2169","No","Yes",306.610770383547,11511.8842202514 "2170","No","No",1271.25098586546,42533.2676642295 "2171","No","No",333.07270829892,61508.7565557497 "2172","No","No",1174.51950600219,23942.2057745183 "2173","No","No",473.961439125699,35133.0704073127 "2174","Yes","Yes",1724.96323223373,22170.6873405632 "2175","No","Yes",1056.77065098729,14194.6589987093 "2176","No","No",841.734663004714,38023.3307435185 "2177","No","No",590.878172644642,52977.6419781171 "2178","No","Yes",1070.66636054645,19312.8406016709 "2179","No","No",914.972379535741,52871.324365823 "2180","No","No",1130.51289893728,35071.6733795272 "2181","Yes","No",1706.95684088777,21738.7963336109 "2182","No","No",839.325506864637,43909.0039557966 "2183","No","Yes",330.936107888082,21272.3073820023 "2184","No","Yes",762.585019280848,24738.1184475607 "2185","No","No",986.818165877003,32386.162358721 "2186","No","No",916.073000088086,42201.8205982355 "2187","No","No",1263.67678751621,25695.4813712979 "2188","No","No",0,42118.1966584012 "2189","No","No",441.008786395518,47707.1251761512 "2190","No","No",349.054411370492,46698.0274257906 "2191","No","No",423.985471704096,37979.7853256312 "2192","No","Yes",1295.02971264941,21717.4695488552 "2193","No","No",681.724475489414,31153.6375421398 "2194","No","No",1153.02130969969,20586.2781092411 "2195","No","No",1470.34259270138,26136.7436879453 "2196","No","Yes",1040.87331114945,12177.0389584814 "2197","No","No",1007.26867943193,28245.3200752387 "2198","No","No",667.144583247857,44863.0689857382 "2199","No","Yes",634.679970187067,17023.6828647141 "2200","No","No",298.704516620129,39599.6615793386 "2201","No","No",909.48421999673,48358.4409666082 "2202","Yes","Yes",1737.53781487332,20974.0345941776 "2203","No","No",203.263817193147,46518.1324112585 "2204","No","Yes",0,19750.3962215709 "2205","No","Yes",1889.67831898356,14756.9000181625 "2206","Yes","No",1558.46347122157,41648.326172772 "2207","No","No",1201.92753899842,45382.6135660511 "2208","No","No",1051.60440723879,47529.2173130498 "2209","No","No",641.525383215407,18350.7334185609 "2210","No","No",883.907073044784,41668.1062021513 "2211","No","Yes",953.809047021419,18241.7414386977 "2212","No","Yes",1168.89554505706,14970.870086781 "2213","No","No",431.330740107029,58551.8932582891 "2214","No","Yes",1291.91526301142,17910.0646052095 "2215","No","Yes",335.357947876117,5118.74555143655 "2216","No","No",30.8244500988488,35960.6060192327 "2217","No","Yes",1119.23757441914,15214.1156270435 "2218","Yes","Yes",1812.07999802736,17962.2701593326 "2219","No","No",385.690838730115,44650.7829612035 "2220","No","Yes",651.550004936349,17743.0656159922 "2221","No","No",1717.49502509778,38791.0576377771 "2222","No","Yes",1181.51322144909,11784.8022592774 "2223","No","No",745.279514716451,34704.6202469011 "2224","No","Yes",1453.30974668049,15183.7292181496 "2225","No","Yes",1333.09747140116,29363.9717414648 "2226","No","Yes",571.886359139704,15632.7692772291 "2227","No","No",494.653229366309,40377.6683594854 "2228","No","No",163.582608502788,58220.780465229 "2229","No","Yes",1371.46837154538,24248.5519615584 "2230","No","No",1129.20265874509,40688.6355917437 "2231","No","No",0,53663.166680695 "2232","No","No",84.8565488441197,53760.4652568516 "2233","No","No",681.451239454484,48892.5246942349 "2234","No","Yes",1366.47753375554,11268.7743330454 "2235","No","No",82.0884565037652,27357.5999305025 "2236","No","No",602.996226080387,33888.4091879832 "2237","No","No",176.32319984023,54798.6987534016 "2238","No","Yes",713.799156468317,20676.9051858148 "2239","No","No",137.724616656813,44747.3276836455 "2240","No","No",159.97347308844,30567.8013137362 "2241","Yes","Yes",1956.92390589788,15574.389976252 "2242","No","No",183.576382191855,51149.281572877 "2243","No","No",975.335484892047,50751.0385898927 "2244","No","No",0,44216.9293776847 "2245","No","No",424.285797016623,35675.7411016182 "2246","No","No",1477.66920681625,42011.8079623361 "2247","No","Yes",1211.36364809966,14186.3886650946 "2248","No","No",903.549304730362,46971.5621697052 "2249","No","Yes",1076.23358719821,18096.7014811134 "2250","No","No",988.667817971184,28486.3397522489 "2251","No","No",1311.08880317964,32797.989915748 "2252","No","No",0,40056.692657077 "2253","No","No",289.329908276397,45559.1763926521 "2254","No","No",22.5371752321505,59536.2756235063 "2255","No","Yes",287.607413255777,24440.2251953526 "2256","No","No",25.8283712126898,22720.0945425665 "2257","No","Yes",725.79336805305,23202.9639603002 "2258","No","Yes",1137.02831791176,25117.7629744123 "2259","No","No",1335.115552174,30115.1549636595 "2260","No","No",1193.67697332195,34360.9095002687 "2261","No","Yes",0,18162.7704916096 "2262","No","No",1047.72339011776,45181.748595089 "2263","No","No",0,48271.8704439342 "2264","No","No",327.322508076445,29816.3803207051 "2265","No","No",771.682916735053,38854.2424835777 "2266","No","Yes",873.678652391843,17655.7100333686 "2267","No","No",974.907789283596,36763.1459689516 "2268","No","No",309.823995175971,28139.6258485682 "2269","No","No",286.852326895067,18402.1647545271 "2270","No","No",509.852253653762,49345.4256379167 "2271","No","Yes",840.338690093895,21097.3703069157 "2272","No","No",223.686918061528,23513.295384302 "2273","No","No",1407.22457088516,22806.8482142243 "2274","No","No",1178.98262547138,45545.1684231506 "2275","No","No",1298.48481522487,39143.2919242425 "2276","No","No",627.353353332945,37616.465943813 "2277","No","No",907.169775895606,27631.5677957721 "2278","No","No",872.151841558757,40524.3387449511 "2279","No","No",620.320355649478,52536.7766460997 "2280","No","No",380.33310801284,30890.0736042066 "2281","No","No",1073.16853283521,51668.9608305471 "2282","No","No",883.233753978824,32310.7450219943 "2283","No","Yes",1558.21783126298,7364.83007811734 "2284","Yes","No",2023.73360278694,32094.6278057806 "2285","No","Yes",803.96110476315,13172.8705078849 "2286","No","No",1060.20470687507,27870.1553890068 "2287","No","No",869.854539572928,33589.1395470743 "2288","No","Yes",1306.4830309386,13984.7852630212 "2289","No","No",1597.89874127005,36524.7162417731 "2290","No","No",1351.96246519761,43630.0369164341 "2291","No","No",0,29475.3813765944 "2292","No","No",442.590924942444,38947.3543696336 "2293","No","Yes",963.201198699628,15938.0660973046 "2294","No","No",1063.79708720936,41157.3571458083 "2295","No","No",214.411562735884,42758.8128206941 "2296","No","No",1258.57639880193,33571.144518039 "2297","No","No",506.627150894389,49068.8708652295 "2298","No","No",38.4077852191765,38702.1016770795 "2299","No","No",1237.5474004851,37387.1541539934 "2300","No","No",0,47437.5122368664 "2301","No","No",555.665290924347,46584.7305012296 "2302","No","No",747.937523947625,44030.4614912561 "2303","No","Yes",1000.62176785607,17223.637965174 "2304","No","No",773.672947531567,40427.7419253366 "2305","No","No",744.766199664744,35067.6437229118 "2306","No","No",953.12336416549,51257.1438956213 "2307","No","No",998.375769500884,37816.843904052 "2308","No","Yes",1098.95568535445,21025.9274564034 "2309","No","No",521.687353906343,48700.1530798727 "2310","No","No",82.7303897500606,27627.2240812824 "2311","No","No",219.115003152167,31490.5334213201 "2312","No","No",276.379828600186,38721.8679676236 "2313","No","Yes",1180.36381739222,24063.3127448186 "2314","No","No",620.918596651177,39099.3076254565 "2315","No","No",414.857562442064,38030.8246165394 "2316","No","No",1389.89055624727,48689.7303942425 "2317","No","Yes",703.011900414414,21411.9300665588 "2318","No","No",493.549422828412,52241.9221585187 "2319","No","Yes",1351.41154301245,14003.4757244327 "2320","No","Yes",461.782764768532,17609.8305189709 "2321","No","No",143.102261880534,44846.9010094286 "2322","No","No",1280.00323371245,30274.3355978527 "2323","No","Yes",1764.68272962341,17995.7286127654 "2324","Yes","No",1648.4740168088,55548.2541750171 "2325","No","No",0,37409.00299116 "2326","No","No",610.5977515706,22635.066474244 "2327","No","No",355.148585726055,55634.3306483916 "2328","No","Yes",472.511100780113,19903.892050653 "2329","No","No",786.013911427482,52693.9437515261 "2330","No","No",772.732074090217,47161.2767003098 "2331","No","No",751.297218621075,25013.6140745111 "2332","No","No",1433.71078041798,42798.5655127619 "2333","No","No",1037.0085986933,36622.7922300473 "2334","No","Yes",1827.13494992165,19616.0097315428 "2335","No","No",764.505938856141,37869.2142885917 "2336","No","No",589.542016743032,28237.8206768537 "2337","No","No",754.127489894913,41341.8026042076 "2338","No","No",911.926441504846,41249.2817354287 "2339","No","No",311.918278951811,39694.4837314036 "2340","No","Yes",933.287231176741,20694.5877844271 "2341","Yes","No",1374.47471172714,35805.708860939 "2342","No","Yes",322.311954337769,10056.1105453176 "2343","No","Yes",703.83876552012,19318.0593335456 "2344","No","Yes",534.692906824283,18729.5662404161 "2345","No","No",0,26626.4858812158 "2346","No","No",770.519898519213,44509.5753879851 "2347","No","No",1015.72588136653,31820.9412716706 "2348","No","No",421.146499621363,61655.3480462195 "2349","No","No",1125.09140231743,33564.0755500554 "2350","No","No",857.380821963549,28755.1807565094 "2351","No","No",363.941462516251,46155.5392200076 "2352","No","No",1157.77970145716,32219.8317281535 "2353","No","No",993.30255103886,28501.8560064325 "2354","No","Yes",403.459427433934,15333.8762884491 "2355","Yes","Yes",2134.93448768395,20330.8648725049 "2356","No","Yes",1234.94271600877,26919.1159560062 "2357","No","Yes",805.104251682653,22174.0288924726 "2358","No","No",0,41933.0957701916 "2359","No","Yes",157.51404250204,24506.1868262113 "2360","No","No",257.897657222952,39477.0318565651 "2361","No","No",1056.91506315657,53080.5863449038 "2362","No","No",0,48290.8540329372 "2363","No","Yes",1730.2910812987,19446.6757215789 "2364","No","No",694.500710655688,14150.9143775224 "2365","No","No",1546.76052584633,32928.6361255712 "2366","No","No",428.665305286794,45570.7909478986 "2367","No","Yes",1764.5323087933,18148.5240778253 "2368","No","Yes",1181.9796970175,17223.3672279335 "2369","No","No",943.132389752471,30178.7340616488 "2370","No","No",0,41234.8917498709 "2371","No","No",1087.1937668964,54961.2884808736 "2372","No","No",14.8209530535119,32320.2655222242 "2373","No","No",0,47207.0507207127 "2374","No","No",836.010590425218,40178.9346993862 "2375","No","No",1494.52113519744,42280.4078513644 "2376","No","Yes",1318.52895693248,15821.1523474123 "2377","No","No",431.127915131931,37772.8047134803 "2378","No","No",1335.47357265421,45847.3821106777 "2379","No","No",1141.44217585929,27914.4022527693 "2380","No","No",795.119291607454,38710.3813279163 "2381","No","No",1005.4440884865,40615.342195768 "2382","No","No",481.24016359761,49010.7555057344 "2383","No","No",427.340142965323,27260.7354645627 "2384","No","Yes",1157.5939252283,17996.9033276586 "2385","No","No",890.213022886436,43643.5823952575 "2386","No","Yes",1321.32915896267,20302.2194675724 "2387","No","No",1167.94362182515,57256.0074063843 "2388","No","Yes",1197.17095276732,10834.1113799846 "2389","No","Yes",922.885355540815,22988.8426517771 "2390","No","No",834.711894553582,28553.4718813516 "2391","No","Yes",1264.58694064668,14649.1550227355 "2392","No","No",1603.66522270643,25802.303467605 "2393","No","No",838.276067699318,55082.317526616 "2394","No","Yes",850.677279125118,21251.639505372 "2395","No","Yes",1508.30771296294,17645.3050237888 "2396","No","No",1272.48057873786,34570.5706624876 "2397","No","No",981.839796266037,23636.9763420578 "2398","No","No",487.695020918891,46480.0359695332 "2399","No","No",1046.41667284717,47598.3073685701 "2400","No","No",1533.91725712455,42888.6410509943 "2401","No","No",709.953565164241,37302.6221316962 "2402","No","Yes",1610.0158576143,19649.4844285022 "2403","No","Yes",645.68853045309,14211.147136718 "2404","No","No",377.713995836784,46729.3329914261 "2405","No","No",994.990169963546,39315.9558909818 "2406","No","No",1240.66574426481,57303.7919348134 "2407","No","No",736.590612372767,37031.484769493 "2408","No","No",1201.23061835405,46478.1513183908 "2409","No","Yes",647.367388243078,16897.7896582685 "2410","No","No",1161.23993389444,52064.4713529493 "2411","No","Yes",1521.91273780211,21370.7938938827 "2412","No","No",805.520628314094,43383.7065437576 "2413","No","No",1155.39954792162,34539.5643783574 "2414","No","No",613.111142058477,38632.130636444 "2415","No","No",623.957676295728,46188.294958031 "2416","No","No",1000.90104000868,46469.1025160643 "2417","No","Yes",807.748827444968,18760.3451969824 "2418","No","No",1156.04020757226,38295.5712385133 "2419","No","No",637.283463985274,32885.7019929855 "2420","No","Yes",1241.69098684,20105.0679995001 "2421","No","No",741.193062241411,31104.0044472485 "2422","No","No",1169.83411318443,39386.3700254072 "2423","No","No",0,35821.7865291597 "2424","No","No",1088.30319967893,33673.3606828863 "2425","No","Yes",0,22187.9662133554 "2426","No","No",608.948580101663,26463.3747616096 "2427","No","Yes",431.30278922563,15606.2458412751 "2428","No","No",512.653437908393,39631.695229879 "2429","No","Yes",1241.6164198854,12058.5976188622 "2430","No","No",0,53058.2552072079 "2431","No","No",561.433746424985,37884.9611039777 "2432","No","No",245.244283858514,35132.2211702208 "2433","No","No",1081.06366330651,34138.3237431471 "2434","No","No",492.326454777319,42317.2424218171 "2435","No","No",1349.57175041655,50645.2905655432 "2436","No","Yes",1150.43167977495,11666.9897505353 "2437","No","No",357.865880853581,42499.0322877445 "2438","No","No",331.105276484828,45104.8151964321 "2439","No","Yes",1457.67336933605,20042.8639700766 "2440","No","Yes",852.3139524994,15956.6488436805 "2441","No","No",1378.94051426054,43998.1414025864 "2442","No","Yes",1005.5215077975,22128.0802015919 "2443","No","No",1420.99345352703,34126.421687852 "2444","No","No",570.295541157143,30615.3305485379 "2445","No","Yes",1228.9903728544,17304.6435043052 "2446","No","Yes",1142.93525655529,20942.0033383042 "2447","No","No",759.345814829436,32066.7067252726 "2448","No","No",846.68351168539,41651.2155769265 "2449","Yes","No",2133.46420858019,28237.8823408005 "2450","No","No",354.574368417241,30954.4766757732 "2451","No","No",0,46450.966041528 "2452","No","No",1051.40173289117,30072.749307419 "2453","No","No",0,41371.661191841 "2454","No","No",887.468137060003,30563.7702579257 "2455","No","No",688.109344546568,20098.5934559042 "2456","No","No",1257.34063003991,40810.172766323 "2457","No","No",1175.81763466725,41447.5848149282 "2458","No","No",0,34838.4392651422 "2459","No","No",608.551738816828,22555.5085942346 "2460","No","No",0,32608.4888384632 "2461","Yes","Yes",2110.55685791454,19345.1047348054 "2462","No","No",696.900167306679,38713.3170563461 "2463","No","No",559.468583346205,61187.8105696928 "2464","No","No",715.392921772967,49473.3763755855 "2465","No","Yes",2026.86363126394,20469.9294870885 "2466","No","Yes",1187.35889119047,24267.3964798931 "2467","No","No",785.790670116465,42887.5927249087 "2468","No","No",845.920369752003,42799.4395264286 "2469","No","Yes",1032.67081461066,13901.1189667766 "2470","No","No",861.272739167302,38111.0328679332 "2471","No","No",1601.87794976206,27885.1635505525 "2472","No","No",955.927022070949,10836.7235170759 "2473","No","Yes",877.879803531887,18217.6136511989 "2474","No","No",1043.75826449574,31523.6868953253 "2475","No","Yes",1080.0715265152,11239.5311629715 "2476","No","No",589.217895377853,47722.1701143386 "2477","No","Yes",769.531243654557,23048.5406115574 "2478","No","No",951.047531896824,33326.5871976552 "2479","No","No",1189.15893364362,36223.8705642312 "2480","No","No",1709.34428538326,35290.5231107356 "2481","No","Yes",1402.55392633496,16607.5642547431 "2482","No","No",250.879583544009,51662.2278223809 "2483","No","No",681.417622702994,26426.2292056102 "2484","No","No",1333.24865929666,39196.663006234 "2485","No","No",858.76112539063,29150.3440134128 "2486","No","Yes",992.776244853594,14204.6721465368 "2487","No","No",265.302283874262,32276.4629373611 "2488","No","No",754.477577636107,31592.1998927786 "2489","No","Yes",584.081228595012,24440.020350386 "2490","No","No",1175.23337747506,47684.4611258042 "2491","No","No",1388.66414913095,31021.5500811071 "2492","No","No",410.09926501352,37328.4550202437 "2493","No","No",59.1324986388108,34162.2352560831 "2494","No","Yes",1939.71236045898,13836.9860660018 "2495","No","No",886.149057557468,24466.1253855442 "2496","No","No",770.999401867146,40990.6214980283 "2497","No","Yes",306.410927063284,13594.1882331104 "2498","No","No",1022.10163765589,37095.2159409159 "2499","No","No",847.984035292872,24950.5339243402 "2500","No","No",1596.22780752234,42993.5765262923 "2501","No","Yes",1635.22294194078,8531.03808542902 "2502","No","No",0,45217.850656957 "2503","No","No",1306.79691602462,48799.5119069181 "2504","No","No",932.952369124233,35858.1891507658 "2505","No","Yes",1052.87514170912,13486.1469401636 "2506","No","Yes",1304.63434628265,13496.8798714941 "2507","No","Yes",2052.1334632792,13130.6536036871 "2508","No","No",1216.72561587454,52377.8489000255 "2509","No","No",526.470864997169,44241.565615351 "2510","No","No",153.447936134918,36813.1987057434 "2511","No","No",905.641505720143,47271.3491216911 "2512","No","No",1068.87395709384,41690.0486707805 "2513","No","No",0,30049.1002617945 "2514","No","Yes",992.440019012244,14207.2683434664 "2515","No","No",964.602563113006,36676.5716524275 "2516","No","No",493.635426428972,43524.2497780804 "2517","No","No",835.6564355114,44234.1703860437 "2518","No","No",480.093086854764,57068.1304585653 "2519","No","No",637.601870028651,52347.7620234725 "2520","No","Yes",2134.01562679742,17897.6466128748 "2521","No","No",1475.20722935075,42243.1774847016 "2522","No","No",887.343288415293,55751.7208997423 "2523","No","No",1376.30991124464,43234.1399246767 "2524","No","No",1304.70087909965,45162.6510434416 "2525","No","No",225.506104019464,54534.7097197206 "2526","No","No",1261.26821856746,39984.5295894226 "2527","No","Yes",30.5836717154543,16246.5730543365 "2528","No","Yes",437.035235755779,16261.2075730818 "2529","No","No",922.637402707839,52205.5068740832 "2530","No","No",412.746814904254,44650.0784287271 "2531","No","No",693.10134494208,54492.7479580071 "2532","No","Yes",915.4626481639,27283.3198293763 "2533","No","Yes",1322.49281185069,22930.4450001465 "2534","No","No",1610.08698766662,40498.9981074819 "2535","No","No",1113.1342567811,27110.6030086741 "2536","No","No",0,47803.2583706419 "2537","No","No",1163.14638522091,44424.8259635543 "2538","No","No",924.295347531613,26397.5972914876 "2539","Yes","Yes",1983.23447461812,25687.9297474383 "2540","No","No",725.70058680128,49337.4023462493 "2541","No","Yes",1030.49615530291,16662.7315670032 "2542","No","Yes",1038.9770199786,13739.7192828713 "2543","No","Yes",292.85741080938,15220.9358723481 "2544","No","Yes",495.113911291502,14881.840617552 "2545","No","No",659.04041078169,47942.2498219449 "2546","No","No",291.968139689217,48511.6030793504 "2547","No","No",471.356517447274,45573.3081141684 "2548","No","No",855.822381005313,56219.8088366298 "2549","No","No",918.681779425597,48160.5242871647 "2550","No","No",1251.32255013337,37881.820957954 "2551","Yes","No",1066.88408412325,44918.4123168182 "2552","No","Yes",1427.12403694347,12553.88673131 "2553","No","Yes",1263.88005849002,12418.8076474375 "2554","No","Yes",1128.1414929102,10159.241880994 "2555","No","No",694.398583061349,36570.4254410152 "2556","No","Yes",805.398004854441,17902.5791933665 "2557","No","No",519.517295548749,39704.6929625122 "2558","No","Yes",1051.29716078292,16299.6117503271 "2559","No","No",421.896902214972,37323.7594127167 "2560","No","Yes",622.413720314637,13072.0279621729 "2561","No","Yes",1005.26424821409,21394.1240085659 "2562","No","Yes",537.492542862479,9421.71485785827 "2563","No","Yes",189.998714191062,24716.9561292745 "2564","No","No",309.862823258618,56100.0544139902 "2565","No","No",969.445759217257,33411.8010856992 "2566","No","Yes",775.589232604776,17030.5788535646 "2567","No","No",1296.47473703462,48682.373504953 "2568","No","No",1037.15551645908,38490.3848881263 "2569","No","No",978.652180274857,25742.1197305596 "2570","No","No",965.046132081327,47987.3197478297 "2571","No","Yes",816.042798135129,17894.7937734054 "2572","No","Yes",716.185750858655,7997.62294361932 "2573","No","No",1130.60888109548,43936.6464094879 "2574","No","No",383.70490110482,41311.2439523668 "2575","No","No",1008.15452173895,20326.5921826228 "2576","No","No",652.817454280779,41161.8573542243 "2577","No","Yes",1232.79473656528,16279.1854012298 "2578","No","No",803.224401043935,52869.8078080478 "2579","No","Yes",1443.43169552882,22693.6577546513 "2580","No","Yes",1288.44855995707,21216.9625737112 "2581","No","No",0,43193.232149062 "2582","No","Yes",1053.33264063015,10212.5023579687 "2583","No","Yes",744.787902383805,22343.0973893148 "2584","No","No",412.687613169049,33923.4580434937 "2585","No","No",943.402037124016,35281.728486957 "2586","No","No",1192.97402833567,39504.476023622 "2587","No","Yes",1071.51158264737,11082.0628991517 "2588","No","No",1493.27046658619,41005.2174763553 "2589","No","Yes",1132.83772066986,15703.0252007474 "2590","No","Yes",597.484040633687,14796.7496702089 "2591","No","Yes",792.975486057324,17346.1709244642 "2592","No","No",1376.07540071899,22317.5655920813 "2593","No","No",1060.01692111738,39757.438166238 "2594","No","No",532.326738059543,30851.2777692275 "2595","No","No",0,28711.7571298473 "2596","No","Yes",894.125809153853,24670.1188959719 "2597","No","No",906.436388161149,37309.6818073641 "2598","No","No",0,28727.1201628575 "2599","No","No",506.425913944997,35333.1822214085 "2600","No","Yes",943.501721088937,14123.7035658802 "2601","No","Yes",0,14874.8002114834 "2602","No","No",442.489564867692,54996.8427500424 "2603","No","Yes",380.963307708165,20117.8300344603 "2604","No","No",961.999353015986,37073.1923811729 "2605","Yes","No",1789.09339109987,48331.1268575393 "2606","No","No",76.4760889556027,27283.6917439672 "2607","No","No",1067.13902561623,53995.7304950264 "2608","No","No",0,39592.4369317594 "2609","No","No",253.131982153796,40973.6465438182 "2610","No","No",1056.92834752857,55409.4595968406 "2611","No","No",179.70007051145,37727.5351161306 "2612","No","Yes",990.935762651983,18197.2287289779 "2613","No","No",693.753718271082,36723.4487731456 "2614","No","No",965.276817800471,37705.2432205848 "2615","No","No",300.876206227772,51423.6946425968 "2616","No","No",1265.04493206661,47297.7227040899 "2617","No","No",558.670513820666,40335.6109906479 "2618","No","No",1183.98331144049,53599.7455269133 "2619","No","Yes",1165.84020910987,20495.1586007315 "2620","No","Yes",1542.19122652944,17265.9186145271 "2621","No","Yes",587.767759147185,22669.4243298994 "2622","No","No",0,31005.0357580094 "2623","No","No",389.976694553251,27329.9793137832 "2624","No","No",647.075900997426,55522.6239251505 "2625","No","No",70.9831629934718,40012.5329121316 "2626","No","Yes",115.545355510686,12670.0276198346 "2627","No","No",90.9334471934815,42451.73557619 "2628","No","No",1230.42425584871,51716.7399008311 "2629","No","No",201.558399425731,27924.8465630726 "2630","No","Yes",1562.84615505181,10353.9039107506 "2631","No","Yes",622.895209146374,11019.8775588539 "2632","No","Yes",1142.12695524822,9184.73276156983 "2633","No","Yes",1796.26763981163,21126.1772070552 "2634","No","No",947.423970124183,38505.7838671204 "2635","No","No",419.440579482408,34332.6613136933 "2636","No","No",1660.82770182402,53754.2007216096 "2637","No","No",391.240461740877,24972.2459136159 "2638","No","No",613.430936470434,34745.0074718263 "2639","No","Yes",1024.10880694689,18667.9256525825 "2640","No","Yes",0,25976.0651146896 "2641","No","No",1252.95833769345,33876.1890302511 "2642","No","No",708.837481761085,55675.7598635713 "2643","No","No",266.647086073168,16515.3084266927 "2644","No","Yes",1339.3636140539,19496.1652150139 "2645","No","No",781.595335858498,49457.1052970342 "2646","No","Yes",1021.37011086602,19032.5090112019 "2647","No","No",948.494278459002,40739.859930577 "2648","No","Yes",1312.93377963415,20208.5446086433 "2649","No","No",0,50861.7888483642 "2650","No","No",0,24566.4833655163 "2651","No","No",0,30922.6042126623 "2652","No","Yes",859.336963698517,13993.6545371706 "2653","No","No",646.157667991942,45696.8316119872 "2654","Yes","Yes",1707.91463425405,10591.7174194295 "2655","No","No",133.673454962256,28492.4003038224 "2656","No","Yes",80.5956758170269,16145.6376951065 "2657","No","Yes",631.600847713155,17845.0741549791 "2658","No","No",1236.6179140601,40668.7253963171 "2659","No","No",742.583373337698,40085.4399499287 "2660","No","Yes",97.0314627755507,12731.7575532721 "2661","No","No",1054.22211036239,50900.2425566065 "2662","No","No",959.600287013541,29850.2120699576 "2663","No","No",1258.85227738491,33683.1817331799 "2664","No","No",443.246466812385,36547.1610411452 "2665","No","No",1605.10241527746,26126.3294382767 "2666","No","No",0,25964.8443397551 "2667","No","No",832.645975118982,25106.3747819931 "2668","No","Yes",443.537028835006,19632.1754217151 "2669","No","No",817.431769304621,40088.050514941 "2670","No","No",881.663799741016,43725.9975260941 "2671","No","No",1154.09427380224,48400.2411526907 "2672","No","Yes",961.575563726496,9681.49389260076 "2673","No","Yes",516.121959538247,17538.4616181002 "2674","No","Yes",1357.41186805469,22572.7901256335 "2675","No","No",1036.03059447073,35261.3557800662 "2676","No","Yes",900.609341667945,17802.9272603154 "2677","No","No",1516.32602496867,46393.2645380991 "2678","No","Yes",1015.20453493839,22208.3289188997 "2679","No","No",232.105743961613,40368.9568536783 "2680","No","Yes",1082.28413297939,19451.8162821095 "2681","No","No",682.439660780583,17992.9711781875 "2682","No","Yes",1218.1388796678,18144.9848326959 "2683","No","No",802.413142185247,47444.4928019833 "2684","No","No",143.854898263964,38014.873488625 "2685","No","No",1087.46579379215,32908.5271228366 "2686","No","Yes",895.753955582569,14753.2973335429 "2687","No","No",660.285496472662,58956.5131752064 "2688","No","Yes",630.973489225016,19087.1747800951 "2689","No","Yes",1648.96602929082,15402.4820810586 "2690","No","Yes",975.95559735843,18246.8157222368 "2691","No","No",297.005378251911,22955.082122953 "2692","No","No",0,47328.2329138298 "2693","No","No",0,32629.9448499908 "2694","No","Yes",789.214894854669,18231.8302550712 "2695","Yes","No",1804.03647479983,31318.2960261534 "2696","No","No",1266.11386715158,29698.5162713578 "2697","No","Yes",135.187643441951,20414.4121733742 "2698","No","No",28.8137434583155,36941.0634015026 "2699","No","Yes",0,15347.9142879003 "2700","No","No",750.698996449432,49150.3458527716 "2701","No","No",805.305116879864,57386.1287972175 "2702","No","No",1093.80300483916,29573.2382295888 "2703","No","No",483.965271303409,44335.9581121448 "2704","No","Yes",1534.3948836384,19592.1093866605 "2705","No","No",1349.18729128375,48013.6902006639 "2706","No","No",158.570442748481,20575.4650114134 "2707","No","Yes",172.462019863184,25850.38312555 "2708","No","No",1280.76286092074,53675.5675472481 "2709","No","Yes",213.173275202052,22811.4569780822 "2710","No","No",0,32248.5365682336 "2711","No","Yes",704.013648569298,13903.4557309642 "2712","No","No",708.813976162634,38295.2338064477 "2713","No","No",257.396383130285,49477.7856417044 "2714","No","Yes",1188.7442962229,22867.0705856512 "2715","No","No",0,62886.709228091 "2716","No","No",1321.70389084265,45581.7947809336 "2717","No","Yes",882.581967513754,17749.9720524962 "2718","No","Yes",1418.13414828413,11964.4250856384 "2719","No","No",1245.42220532725,36897.7801091249 "2720","No","No",339.529268529111,58747.3877347941 "2721","No","Yes",824.547830415245,29088.1113478079 "2722","No","No",241.442690317856,30171.624493137 "2723","No","No",1510.79325032928,47684.2394572224 "2724","No","No",396.641249971247,52174.9542732655 "2725","No","Yes",1633.69780348788,15786.3173190985 "2726","No","No",650.418341067727,47122.0724707326 "2727","No","Yes",1382.43823059019,15680.6104930059 "2728","No","No",613.480294534845,24367.861421199 "2729","No","No",1424.35121841429,37845.9992477028 "2730","No","Yes",914.108175564389,19053.0058906904 "2731","No","Yes",802.008930409247,15469.6526246998 "2732","No","Yes",539.674902980334,18852.2738479108 "2733","No","No",337.575999886826,52192.274717818 "2734","No","Yes",813.494837592495,16681.3502966219 "2735","No","No",477.882121951292,39834.0308074596 "2736","No","No",342.191602086332,32154.7535517213 "2737","No","No",840.365781019741,45316.8354075388 "2738","No","Yes",865.565592160238,16643.2409619884 "2739","No","No",645.591636551786,44402.1062312719 "2740","No","No",1755.38891023201,35031.532001505 "2741","No","No",498.749450828636,51690.0634671793 "2742","No","No",587.781081680209,30859.6363376973 "2743","No","Yes",824.616593532163,10062.5759326033 "2744","No","No",0,32660.7252649811 "2745","No","Yes",880.803636009252,20436.4390294741 "2746","No","No",917.122134744439,48227.8193683666 "2747","No","Yes",789.717540631928,19280.5442609264 "2748","No","No",763.855624656873,52938.0354701239 "2749","No","Yes",1062.16650954245,17383.2585454709 "2750","No","No",944.332567427518,44444.1491764787 "2751","No","No",877.501422954718,25587.7439274116 "2752","No","No",1344.10340586866,41417.3459241838 "2753","Yes","Yes",1543.09958172153,18304.6505704658 "2754","No","No",380.317450057093,38864.5841504209 "2755","No","Yes",1176.89330253283,23634.8157312548 "2756","No","No",733.199914922477,34524.9188645623 "2757","No","No",348.997028765627,48942.025780663 "2758","No","Yes",1380.08752574482,19245.8326918502 "2759","No","No",943.165719446864,40369.698030948 "2760","No","No",1248.88584911739,51897.394908379 "2761","No","No",713.223492012257,51107.8600950232 "2762","No","No",834.235608163585,36721.8622064862 "2763","No","No",0,26200.0384004908 "2764","No","No",1558.8838618394,37489.722114493 "2765","No","No",1362.18661906241,37736.7496039702 "2766","No","No",1581.52150477331,45729.8880504535 "2767","No","No",324.854971443152,39752.3541911937 "2768","No","No",1112.73574005439,47527.1255757851 "2769","No","No",379.598726050867,32578.4358262251 "2770","No","No",1549.0981513814,26239.7818673704 "2771","No","No",1489.41591455079,46732.7678074658 "2772","No","No",548.206363841178,41647.7271645225 "2773","No","No",561.968472973583,37637.0050338339 "2774","No","No",595.486701367495,34470.4180269734 "2775","No","No",267.513968799493,27364.8654758574 "2776","No","Yes",1793.30318771576,21034.879651448 "2777","No","Yes",1773.15354152212,10177.8667369628 "2778","No","No",618.860372699188,37333.3338338768 "2779","No","No",205.643808098518,37766.4936916137 "2780","No","No",1011.43154284565,36364.7538519546 "2781","No","No",0,38130.6456699094 "2782","No","Yes",1154.43210536761,15221.1723898836 "2783","No","No",292.515980695165,43705.3790386263 "2784","No","Yes",1106.94627728915,19233.7738901492 "2785","Yes","No",1665.95462052155,30070.1352632412 "2786","No","Yes",968.671100957994,22212.7410345934 "2787","No","No",797.249369291247,39928.5881786116 "2788","No","Yes",636.897822720102,18620.2389516182 "2789","No","Yes",1011.33484841619,14101.2902997406 "2790","No","No",791.035222304402,47303.676639153 "2791","No","No",942.474749546844,36965.045572252 "2792","No","No",706.974277907863,46165.1545334877 "2793","No","No",767.434812504422,55990.8746075411 "2794","No","No",568.843668259643,37074.54081369 "2795","No","Yes",1271.56295706236,18999.6168066482 "2796","No","No",938.939141726121,44280.7863513009 "2797","No","No",1012.19419884963,34631.7060500926 "2798","No","No",1355.49323059172,18935.5115098086 "2799","No","No",912.048721941633,43486.9570806418 "2800","No","No",289.598834250938,25724.7706367641 "2801","Yes","Yes",2035.8615565476,14435.8431942214 "2802","No","Yes",1602.17988580192,17858.0679077375 "2803","No","Yes",0,20067.8097636582 "2804","No","Yes",1202.39070517802,14036.620879558 "2805","No","No",554.707652869949,28164.1985522538 "2806","No","Yes",229.988723491338,2541.20081429887 "2807","No","No",768.979148022833,35503.9089588381 "2808","No","Yes",1211.04014613146,16898.1294674003 "2809","No","No",0,35648.3811626748 "2810","No","No",0,27537.7353522315 "2811","No","Yes",859.936651054092,15966.7171268937 "2812","No","No",0,47556.3012519448 "2813","No","Yes",1471.53839065508,14959.6618849533 "2814","No","Yes",582.873867246958,17730.5511020257 "2815","No","Yes",463.119339198825,25858.2817451931 "2816","No","No",986.154130259504,48940.4900300522 "2817","No","No",534.74605449766,29685.1292285638 "2818","No","No",1402.69052668977,39656.6321983598 "2819","No","No",967.74800102954,46278.0745202707 "2820","No","No",884.022517779638,36889.4282456394 "2821","No","Yes",455.699938269667,19080.8089865564 "2822","No","No",0,66915.5717874548 "2823","No","No",1141.2382104748,37917.6645392021 "2824","No","No",365.235879827926,21358.0000548145 "2825","No","No",38.3759245804088,33579.3562250616 "2826","No","Yes",731.970611270272,13593.140510988 "2827","No","No",1006.71978598059,47784.3184738 "2828","No","No",1107.80115591006,34561.9495390561 "2829","No","No",777.530808732216,45673.6739067692 "2830","No","No",1501.42608729105,35398.9571179789 "2831","No","Yes",862.060038480201,12085.4530819151 "2832","No","Yes",12.1864202972865,19910.9689671724 "2833","No","No",0,30208.0464441746 "2834","No","No",1820.32548997904,31309.9984840595 "2835","No","No",576.068992874936,40179.8300541546 "2836","No","No",837.752621293608,31017.9011357947 "2837","No","No",399.79388495453,34875.3323287297 "2838","No","Yes",578.755098896162,20909.8353696313 "2839","No","No",1106.54087450672,46565.059953601 "2840","No","No",390.745611388115,38442.2960634912 "2841","No","Yes",274.194627807201,15421.5516574415 "2842","No","No",1476.87764199904,42271.3334081723 "2843","No","No",578.460742369529,20306.9360124815 "2844","No","No",1064.14771330635,28192.1258830284 "2845","No","No",1598.30341726465,46404.6646948089 "2846","No","No",863.451829577627,33529.8806538019 "2847","No","No",1157.75985725331,32574.5028988198 "2848","No","Yes",406.38604907433,24086.9524874473 "2849","No","No",309.244487695008,44202.707504713 "2850","No","No",943.951244268014,28353.6300145366 "2851","No","No",1206.79193715819,42916.7013947578 "2852","No","Yes",1448.06045753637,21028.2867502157 "2853","No","No",1166.59398929301,26977.6227486722 "2854","No","No",800.30867198517,61281.3008105003 "2855","No","No",714.926000080201,31032.869700076 "2856","No","No",471.255083069548,28417.7419907703 "2857","No","No",662.164445094238,30390.0600699129 "2858","No","No",770.431961924154,53398.3147279233 "2859","No","No",597.326869569873,55496.7771129435 "2860","No","No",140.853022519257,48183.2767398541 "2861","No","No",1035.55294399822,29423.2320285923 "2862","No","Yes",784.10878118083,11560.567698562 "2863","No","Yes",442.027425025125,17072.3366388213 "2864","No","No",888.081431985558,54072.6570198483 "2865","No","No",704.202908307045,44775.122006996 "2866","No","Yes",1016.45061642843,15099.5302012588 "2867","No","No",1036.46072800599,42914.9816724656 "2868","No","Yes",1060.22003413917,22795.9429883192 "2869","No","No",1243.92805989896,38075.4382991816 "2870","No","Yes",1291.97734580897,26571.8745602489 "2871","No","No",69.2524758053386,20222.8662388676 "2872","No","No",196.389285525812,29932.6620347112 "2873","No","Yes",709.027102883811,18305.7345223333 "2874","No","No",1034.14996239185,52106.8387037871 "2875","No","No",868.006030057611,50549.5334619527 "2876","No","No",1236.00699323763,48800.3568478614 "2877","No","No",12.9123495546218,46282.2577329848 "2878","No","Yes",826.453636513914,21342.7030297359 "2879","No","Yes",703.990009364016,20752.1754356717 "2880","No","Yes",817.121438400311,13152.0341263612 "2881","No","No",1210.01463106309,45066.1332443431 "2882","No","Yes",766.406247421834,22296.9836996044 "2883","No","No",1643.65405150903,33980.8258311547 "2884","No","No",1053.01477816353,54009.6319447306 "2885","No","No",240.077434521457,41508.9556964546 "2886","No","No",62.6529485075978,44440.7054833724 "2887","No","Yes",924.233203921663,11194.6688781448 "2888","No","Yes",944.0710358903,26027.6876516962 "2889","No","No",295.785442761409,51837.752325646 "2890","Yes","No",2085.58697818353,35657.2256698962 "2891","No","No",474.355263765365,58068.622244121 "2892","No","No",504.723352582326,54297.1136556321 "2893","No","No",292.384144390823,33961.1004508478 "2894","No","No",593.28046779734,40227.1438816191 "2895","No","No",76.0640883415747,50054.7623469691 "2896","No","Yes",1270.09281045792,16809.0064517963 "2897","No","No",877.343686869075,40689.4785866351 "2898","No","Yes",932.560942548355,20980.8055046157 "2899","No","No",279.963388337914,30262.1171373507 "2900","No","No",1155.1750058879,40398.3993465472 "2901","No","No",0,45431.7575917119 "2902","No","Yes",1216.76756165806,23378.5728235637 "2903","No","Yes",0,15274.4690275405 "2904","No","Yes",728.549399239302,22891.9293782851 "2905","No","No",0,48365.5775942221 "2906","No","Yes",643.565267155745,21323.0494420305 "2907","No","No",973.082364343837,27289.2713224843 "2908","No","Yes",1177.95742476219,14385.1670694871 "2909","No","No",196.987111415453,41314.993615811 "2910","No","No",1526.26866859685,44845.1362915324 "2911","No","No",441.396084563066,56060.2036101667 "2912","No","No",1004.64177302613,56533.3130669828 "2913","No","No",1258.06953382511,36645.1405748822 "2914","No","No",1563.99341883986,37119.6019665666 "2915","No","No",367.35157626488,29905.5278559754 "2916","No","Yes",1222.76804081128,18276.4340649165 "2917","No","Yes",1582.20281304722,19682.8724899139 "2918","No","No",647.13028302857,32725.3866528516 "2919","No","No",0,33146.4953386028 "2920","No","Yes",1585.33302945842,15079.4889372439 "2921","No","Yes",837.972336155771,25773.18264869 "2922","No","Yes",686.782149406402,10543.5563164881 "2923","No","No",947.842158985084,37891.0370436422 "2924","No","Yes",1205.0550079097,18101.6763143196 "2925","No","No",1254.13105462545,37456.2619909468 "2926","No","No",949.123846295031,50528.5338652233 "2927","No","No",530.246019980846,27610.7030900379 "2928","No","No",833.689970256381,54558.1401094237 "2929","No","No",638.465310882778,36173.982445364 "2930","Yes","Yes",2387.31486743364,28296.9147184635 "2931","No","Yes",839.390890223131,21383.2311743407 "2932","No","No",294.634280951069,63285.0251126079 "2933","No","No",1178.1794376938,34720.93615732 "2934","No","No",1149.72013584049,57890.5159582794 "2935","No","No",909.764267678658,42468.2782209453 "2936","No","Yes",1391.50802679448,18539.5903551186 "2937","No","Yes",1029.24963218458,18018.3583136311 "2938","No","No",1504.5969399062,30773.7428447844 "2939","No","No",1276.4892999898,35122.8536147464 "2940","No","No",874.915042538445,25023.3230927001 "2941","No","No",1104.68946321199,51516.3362893771 "2942","No","No",0,47056.1991877335 "2943","No","No",698.80044395676,37466.0202992199 "2944","No","No",1055.41086822615,33945.1427605779 "2945","No","Yes",131.28461051854,14491.8440664949 "2946","No","No",795.903785966359,44181.671863611 "2947","No","No",611.954296807175,39291.2037327881 "2948","No","No",1670.42300806805,41409.7711489966 "2949","No","No",1423.14954532056,33591.2315394355 "2950","No","No",770.641939176912,29623.4712882976 "2951","No","No",1315.46960886839,29808.3522278599 "2952","No","No",599.204105037746,53218.1108551285 "2953","No","No",584.356741021442,34128.7669919245 "2954","No","No",27.2718784920017,51659.8784114258 "2955","No","No",65.7275950839411,32332.1826526434 "2956","No","No",1338.46111617072,23909.5469466814 "2957","No","Yes",1120.42296847456,16151.2528468194 "2958","No","No",726.02934382868,41996.1244144328 "2959","No","No",1353.5882835195,44372.7939185397 "2960","No","No",531.744210691984,38122.1923999718 "2961","No","No",1824.64138514207,36762.8088401801 "2962","No","Yes",894.465468093504,14035.4991381188 "2963","No","Yes",1275.53856458026,16445.6247238911 "2964","No","No",550.624394138456,19106.2657896555 "2965","No","Yes",270.391026233552,13158.4422264499 "2966","No","No",651.998604093421,35266.1284410747 "2967","No","No",718.351102130362,50765.8926332739 "2968","No","No",1008.94653988106,31235.782923348 "2969","No","Yes",1510.74781182427,13390.9200005461 "2970","No","No",1393.36828331237,38371.9774624643 "2971","No","No",586.588274391792,45519.8377116616 "2972","No","No",793.41392669019,45873.1799719756 "2973","No","No",285.910169131953,43263.6306402332 "2974","No","Yes",550.381055833744,20322.7686347979 "2975","No","Yes",716.491995031388,16785.38532485 "2976","No","No",383.686466865314,39946.4849685718 "2977","No","No",252.333309120169,38431.8186913772 "2978","No","No",1164.10427048393,40167.0233128899 "2979","No","No",1080.18577692773,38398.8660985364 "2980","No","No",906.478544181794,47101.990627242 "2981","No","No",457.800098565629,26567.2410810939 "2982","No","No",1215.86735927273,42762.1218348043 "2983","No","No",217.361520631417,45083.1113673867 "2984","No","Yes",1076.72770461126,12502.6449158541 "2985","No","Yes",58.0660620767269,23639.233623289 "2986","No","No",1615.22500095208,55219.5200109582 "2987","No","Yes",1119.00178869124,22811.393799216 "2988","No","No",671.958067158232,17621.4538490348 "2989","No","No",634.21792638252,38672.7496473852 "2990","No","Yes",831.818536264928,16164.4846069406 "2991","No","Yes",373.062516538222,22018.9821001083 "2992","No","No",776.454876211341,58481.5439128062 "2993","No","Yes",1031.30393864174,12195.3798286488 "2994","No","No",910.67241583492,43795.5817003373 "2995","No","No",1010.80906498234,42163.4535969445 "2996","No","No",1090.35035030747,48280.9463176417 "2997","No","No",1008.55034292713,53801.615635285 "2998","No","No",0,50127.1804741922 "2999","No","Yes",1824.36800350788,20074.2810967841 "3000","No","No",730.164418478993,44411.6782657154 "3001","No","No",991.131782568509,30941.5485184932 "3002","No","No",1356.51666465842,35030.6350247283 "3003","No","No",576.635576855956,41699.2097914708 "3004","No","No",1334.5541912103,43385.821809676 "3005","No","No",1487.66180770108,47624.3796002969 "3006","No","No",778.693492520055,48551.9710763615 "3007","No","No",444.196382313779,37599.4201866653 "3008","No","No",1023.3621601843,34632.1026922622 "3009","No","Yes",153.400095790985,17840.3848795582 "3010","No","No",661.760616380205,47169.3568472448 "3011","No","No",312.614706540541,34918.6129080311 "3012","No","No",645.372564533029,30102.0355391677 "3013","No","No",0,49010.2733191107 "3014","No","No",779.614723353116,22975.493022604 "3015","No","Yes",569.498790806108,19755.5211422929 "3016","No","No",1287.76589516641,38507.119385618 "3017","No","No",1177.81506956381,32294.5456510691 "3018","No","No",795.368557078411,25704.646642625 "3019","No","No",877.039196960132,24902.735490804 "3020","No","No",823.991988281088,36701.5301668566 "3021","No","No",1019.21535840238,52089.6446283697 "3022","No","No",942.737482135501,38908.8811192003 "3023","No","No",6.78786175914354,40145.3390915312 "3024","No","No",0,55158.1512404129 "3025","No","Yes",1420.20420508849,22790.7958314379 "3026","No","Yes",1254.66258256834,18189.5207628528 "3027","No","No",0,37796.4034569112 "3028","No","No",1140.07189936954,33605.3779326314 "3029","No","Yes",747.958511235591,19869.3901776741 "3030","No","No",1598.60255266893,48717.2631496507 "3031","No","No",1226.37071722573,21426.3069842744 "3032","No","No",929.819934850511,50611.9859546811 "3033","No","No",807.405738044712,43853.8842526713 "3034","No","No",345.364941188499,56965.7021104141 "3035","No","No",982.450944888935,42907.0261908208 "3036","No","Yes",1067.67076675223,14485.9484894986 "3037","No","No",742.540614206706,39017.9503227464 "3038","No","No",1060.17844742674,30948.2902664065 "3039","No","No",523.753367762277,33767.0507141976 "3040","No","No",697.982915044228,29799.3191983562 "3041","Yes","Yes",1500.89453315482,15802.2328831476 "3042","No","Yes",1682.89763103161,14378.8906007666 "3043","No","Yes",1264.04207020703,6466.51340820681 "3044","No","No",1352.46233583861,34247.7800247361 "3045","No","No",376.878916634948,50671.3227510852 "3046","No","No",629.561281534804,37255.3650881247 "3047","No","Yes",709.414229834248,11355.1127102972 "3048","No","No",541.346278833227,42332.2462776755 "3049","No","No",421.172381915514,42721.4777704317 "3050","No","No",500.804219905074,47910.9638496034 "3051","No","No",0,41663.3401134605 "3052","No","No",1089.36587309619,43360.160154297 "3053","No","No",603.847482534768,56468.1222446001 "3054","Yes","No",1165.53985274392,50341.5739037884 "3055","No","No",1457.62260167023,43155.3626996992 "3056","No","No",390.055026370177,27108.2136591038 "3057","No","No",584.14121640762,35517.2291107955 "3058","No","No",901.012282940652,13498.1265266133 "3059","No","Yes",1380.09673715717,14142.0754374369 "3060","No","No",1146.06768909789,39902.4418921895 "3061","No","No",1058.02596863124,43327.026105494 "3062","No","No",474.37966209093,35980.7527880856 "3063","No","Yes",969.143518900583,22425.4057574307 "3064","No","Yes",1616.73887826784,12557.8228818817 "3065","No","No",1185.02865067439,33298.500399848 "3066","No","No",472.633228937598,41257.3860294191 "3067","No","No",1257.62512281906,30964.234583001 "3068","No","No",640.918438752274,37306.6939870991 "3069","No","No",105.744247655831,42442.8473498049 "3070","No","No",672.426792683469,25947.2454089183 "3071","No","No",568.66644703703,45186.9759350042 "3072","No","Yes",368.19829877759,26670.0121129722 "3073","No","No",1546.54850637671,57266.8295893597 "3074","No","No",230.220394093858,28930.2545205789 "3075","No","No",815.054702367188,34200.1833534919 "3076","No","Yes",164.305511667688,17995.858258227 "3077","No","Yes",1785.79751592117,15291.6707951933 "3078","No","No",661.052297809298,27873.637911952 "3079","No","Yes",979.877154915478,13522.4215063984 "3080","No","Yes",778.249905207304,23805.9105658439 "3081","No","Yes",190.619278273277,21744.5093170033 "3082","No","No",523.813716991703,45284.1893484952 "3083","No","No",175.698868756298,40044.4703210203 "3084","No","No",977.947923151752,38368.4841700357 "3085","No","No",837.695359207891,44260.7644148961 "3086","No","Yes",1436.32081999306,27658.3866683395 "3087","No","No",638.229500996192,53812.7978817314 "3088","No","No",714.011659055547,48631.3643616269 "3089","No","No",738.253247663666,36086.0921345944 "3090","No","No",507.526534856239,58027.7709224602 "3091","No","Yes",1033.83349441518,15818.0613960182 "3092","No","Yes",19.7394609228467,20514.1713659729 "3093","No","No",434.704864003897,48898.3701163411 "3094","No","No",0,45334.8393330862 "3095","No","No",629.764071852454,53069.3251510713 "3096","No","Yes",522.767758901133,26900.2807227485 "3097","No","Yes",294.65648754174,11681.4623321504 "3098","No","Yes",469.425632910345,14647.0022693022 "3099","No","No",838.437038320412,40903.4806861138 "3100","No","No",1407.6395145697,52746.1331466994 "3101","No","Yes",1417.22549877778,16053.9742636275 "3102","No","No",363.994064622591,38110.4431111926 "3103","No","Yes",128.2518222274,17076.5736044951 "3104","Yes","Yes",1894.1682010356,28321.6845474436 "3105","No","Yes",1624.79564181453,10623.5974508246 "3106","No","No",645.949270764739,46406.3379836008 "3107","No","No",684.08490485463,38184.5683849571 "3108","No","No",1168.2845384156,46904.6038233881 "3109","No","No",766.124054874063,51614.0562036621 "3110","No","Yes",738.268601159608,14063.0754606611 "3111","No","No",525.89033827246,45530.5091218435 "3112","No","No",631.253506690788,38877.5703324556 "3113","No","No",0,65943.7839407987 "3114","No","No",913.913965747442,53809.3303582319 "3115","No","No",578.752566335341,60498.9254643735 "3116","No","No",1503.84995075327,43888.3966632069 "3117","No","Yes",555.265796927511,11581.2206625316 "3118","Yes","Yes",1289.24621049482,13624.5452584786 "3119","No","No",545.566510669189,35714.6511274284 "3120","No","No",1112.3489922615,33468.8221845045 "3121","No","No",564.907448112708,35820.8856846426 "3122","No","No",591.841407435347,38879.5098790241 "3123","No","Yes",908.122811892835,22084.2716490223 "3124","Yes","Yes",2169.1961867561,18195.266900905 "3125","No","Yes",1108.10536566553,15337.3022718717 "3126","No","No",0,27167.2603910132 "3127","No","No",957.59190285973,35330.8553531479 "3128","No","No",448.039968335434,29537.3102493442 "3129","No","No",1188.07287547976,40704.7072215123 "3130","No","Yes",1223.88581431865,19520.0090003742 "3131","No","Yes",959.967042003212,18413.863852335 "3132","No","No",734.721836402583,35010.0258726036 "3133","No","No",0,47628.4118282353 "3134","No","No",1423.28425807833,48914.197080844 "3135","No","No",217.163501322414,26975.491809377 "3136","No","No",672.045138944368,36705.3404589011 "3137","No","No",830.765389790969,45958.9842240714 "3138","No","No",652.528178921526,58750.4959950061 "3139","No","No",533.989148195491,64930.2397951394 "3140","No","Yes",1626.63407931271,17721.6300644139 "3141","No","No",1382.12097668256,30395.6882250574 "3142","No","No",0,38663.2005143247 "3143","No","No",1165.68915192015,38110.3647750537 "3144","No","No",1190.42050704867,34198.0513266133 "3145","No","No",435.214657082187,39505.412457212 "3146","No","Yes",1382.42254388129,17166.0425659832 "3147","No","No",1265.95483303592,27233.5630600525 "3148","No","No",1303.62613153881,40010.4651612535 "3149","No","Yes",240.101366708209,21142.0419014152 "3150","No","Yes",326.438624759239,21109.4318148152 "3151","No","No",562.801930706545,41934.5973333166 "3152","No","No",531.486360558459,28836.1926228196 "3153","No","Yes",594.544379822067,17875.3390701558 "3154","No","No",745.733892852885,60180.5611339407 "3155","No","Yes",1218.63890457214,29899.8068497328 "3156","No","No",266.460481236813,37622.0537634591 "3157","Yes","No",1899.54684151896,46076.2371099545 "3158","No","Yes",717.601673035206,13729.05176324 "3159","No","No",507.334595801347,56075.1028426007 "3160","No","Yes",1422.77458643495,14044.5334985769 "3161","No","No",1253.69961429402,37645.7999594114 "3162","No","No",1301.65076544526,38918.9941683265 "3163","Yes","Yes",2415.31699391853,17429.5033745137 "3164","No","Yes",1367.01387474484,11293.4692594247 "3165","No","No",449.051598436776,31624.9056780779 "3166","No","No",505.69787294247,31971.312911759 "3167","No","No",1150.45878459287,54982.7518342462 "3168","No","No",981.492213375106,30385.0690772959 "3169","No","Yes",612.266052400423,16270.8356417841 "3170","No","Yes",1122.29238597316,20351.3360667593 "3171","No","No",59.7970712775649,36000.0726853645 "3172","No","Yes",1353.01184468869,26207.6862791211 "3173","No","No",1232.23352673705,50731.8642626049 "3174","No","No",924.013153395013,28803.774692854 "3175","No","No",517.824545856159,65501.6207632461 "3176","No","Yes",1795.7168696683,12547.8290854169 "3177","No","No",983.560560031475,26050.1300463799 "3178","No","Yes",990.354260295393,18998.0907794504 "3179","No","No",1529.51700578982,52681.7066584365 "3180","No","No",272.87312934717,44249.6786805901 "3181","No","Yes",636.206615613261,19468.4338686626 "3182","Yes","No",1751.34708758191,38381.5857951998 "3183","No","No",721.920379651685,46269.8372071629 "3184","No","No",511.417511107721,25768.2854912986 "3185","No","No",563.687202812715,41354.3501614923 "3186","No","No",1110.72092233933,47221.4476200208 "3187","No","No",403.034376540736,48874.151164611 "3188","No","No",430.090423291077,29246.3770929262 "3189","No","No",278.473984331957,33187.7689316935 "3190","Yes","No",2228.47228298224,27438.3489877222 "3191","No","No",1201.78261651821,30099.1623728274 "3192","No","No",490.798404423966,44686.1031484568 "3193","No","Yes",792.855972361212,8699.5983434718 "3194","No","No",870.662370949312,37180.0676510813 "3195","No","Yes",1149.20983594409,11337.0592459497 "3196","No","No",493.533675003618,49735.5676052008 "3197","No","Yes",874.34837577951,10845.0188294157 "3198","No","No",1097.94754012716,23224.1278255065 "3199","No","No",976.149122427934,29998.3630717934 "3200","No","No",1373.72537886877,43124.2131477427 "3201","No","Yes",1282.76284131274,22360.1963285237 "3202","No","No",636.728473821258,45649.1708111331 "3203","No","No",1823.23192186717,24744.8540564407 "3204","No","No",605.863800626186,34515.1956633224 "3205","No","No",0,27888.8260319906 "3206","No","No",491.520310598524,37128.7743004734 "3207","No","No",248.362396685326,37868.5597638725 "3208","No","No",1036.50374625816,37151.410641444 "3209","No","No",1130.89393293249,35235.3656766103 "3210","No","Yes",1048.53898279114,10392.0641103791 "3211","No","No",1251.88850207924,50174.3290696742 "3212","Yes","No",1578.84749623035,61220.1331459947 "3213","No","No",0,40341.3388308665 "3214","No","No",1531.9629579638,33595.4327847968 "3215","No","No",935.465250260437,30909.9309111235 "3216","No","Yes",1056.18106719726,16873.5117589506 "3217","No","Yes",1060.7768268,21430.7912243482 "3218","No","No",253.850878596446,41472.12196196 "3219","No","No",323.123255734341,36119.4288231761 "3220","No","No",1051.22456471934,31749.6390256998 "3221","No","Yes",925.947058262368,14258.2674251906 "3222","No","Yes",831.241934194458,13702.9999252162 "3223","No","No",280.836868259055,56567.0083341455 "3224","No","Yes",1092.34254978767,20465.1538178253 "3225","No","No",702.276627024546,49708.9552518842 "3226","No","No",663.095887703947,32756.2599089523 "3227","No","No",224.742276443815,25386.994874052 "3228","No","No",1108.68051381324,60725.5268353645 "3229","No","Yes",0,20071.8216934198 "3230","No","No",352.798060721095,36751.9778574127 "3231","No","Yes",1390.18542567836,21735.246943326 "3232","No","No",599.647361025925,32471.216238284 "3233","No","No",514.545492306024,45763.8998309111 "3234","No","Yes",484.894316676272,15883.6644313447 "3235","No","No",278.720441419798,49231.1908001463 "3236","No","No",661.055733669173,35806.0515057641 "3237","No","No",1110.29633959695,27501.122647951 "3238","No","No",1306.25756759,29376.4413748146 "3239","Yes","Yes",1966.06296646795,17735.7788026984 "3240","No","No",588.564771289966,33224.4447530513 "3241","No","No",0,42869.1588324281 "3242","No","No",1289.60223717482,35164.8897588596 "3243","No","No",1054.2784985631,50795.2066162593 "3244","No","No",0,43513.1146613051 "3245","No","No",897.807241768884,37899.6677887156 "3246","No","Yes",673.785590697002,13344.8569533159 "3247","No","No",636.335023462698,49487.600894741 "3248","No","No",412.071614629222,48347.2969819857 "3249","Yes","No",1898.32349723464,61011.2159467102 "3250","No","No",1606.40367507054,27382.3253889581 "3251","No","No",0,41040.195117173 "3252","No","Yes",0,20157.2512618026 "3253","No","No",486.384423514895,53051.72367742 "3254","No","No",1738.11083484111,38821.6262992155 "3255","No","No",0,62746.8367910018 "3256","No","No",355.936626583037,34730.8855238897 "3257","No","No",0,24818.358625646 "3258","No","Yes",1925.98745137576,20441.674444239 "3259","No","No",819.111800228691,55716.5487287266 "3260","No","Yes",588.75670700404,24015.9606718244 "3261","No","No",975.571998093294,28804.0002507826 "3262","No","No",127.161925515578,40727.5549957016 "3263","No","No",713.436813413471,48176.4282203172 "3264","No","No",737.723042521754,48994.8128507247 "3265","No","Yes",687.064419498525,14059.4576259625 "3266","No","No",444.514583625639,41957.7449421118 "3267","No","No",1061.2842367146,32839.344860116 "3268","No","No",1425.49558151611,37189.0251363891 "3269","No","Yes",638.26193248667,21282.6510921882 "3270","No","Yes",1101.44496742737,20936.9269183621 "3271","No","No",888.244587469896,41489.1912488471 "3272","No","No",951.208724793444,20616.0807025014 "3273","No","Yes",1152.09664394135,15852.4234470929 "3274","No","No",883.160300099528,27125.9069556656 "3275","No","No",1126.98801117244,47378.0191766657 "3276","No","No",742.821230246206,34353.4879054632 "3277","No","Yes",1532.11664528117,19462.1544099914 "3278","No","Yes",266.768630098069,28452.5982743193 "3279","No","Yes",310.430599701327,16479.9923887754 "3280","No","No",1702.30135742104,46589.0626235188 "3281","No","No",649.782495505476,39655.3981843522 "3282","No","No",648.321454451411,45392.2840271357 "3283","No","No",995.274151938156,24782.8767574669 "3284","No","No",330.074882386637,45757.3755755937 "3285","No","No",1358.57343347494,20700.7060831009 "3286","Yes","No",1166.79852718668,30367.6108561366 "3287","No","No",671.669572518594,26142.9116090434 "3288","No","Yes",484.085483620726,12045.3104191307 "3289","No","No",1404.62755268013,47712.1840700714 "3290","No","No",617.001386972161,54489.7438606909 "3291","No","Yes",964.624889710123,21436.5555923373 "3292","No","No",466.579142984644,24719.3955181875 "3293","No","No",618.801159013855,25927.5715647528 "3294","No","No",1310.95236456225,28978.4641182962 "3295","No","No",123.927463494326,28311.8309042242 "3296","No","No",786.264219192566,45304.793357761 "3297","No","No",748.21058944285,46981.9317616208 "3298","Yes","Yes",2124.48923886948,12651.0743188128 "3299","No","Yes",326.391243387214,16988.923303541 "3300","No","Yes",474.882782464273,14986.6432917397 "3301","No","No",59.9658271032766,24889.2545892544 "3302","No","No",1611.33388185999,47894.2766516584 "3303","No","No",545.605211623034,27236.5581442037 "3304","No","No",0,46590.4406360683 "3305","No","No",1249.35413897066,52232.2511884741 "3306","No","Yes",587.874754114786,18448.100273857 "3307","Yes","No",1302.73474174655,43680.065235685 "3308","No","Yes",908.37274540593,27416.6243495981 "3309","No","Yes",1252.13301937038,13860.9350309585 "3310","No","No",277.168651892652,37177.0360936892 "3311","No","No",623.574809063757,57483.5042108883 "3312","No","No",943.199390152837,41765.142501212 "3313","No","Yes",1815.44523079173,18919.4169686979 "3314","No","Yes",927.424650391502,20498.527653012 "3315","Yes","Yes",2008.03298475156,18601.4030905943 "3316","No","No",1028.23523510955,31297.9619581896 "3317","No","No",408.236016977623,51131.5132648769 "3318","No","No",1355.43684723649,42630.6686555469 "3319","No","Yes",376.770798828235,16042.2389216328 "3320","No","No",856.47915734974,69124.2684951903 "3321","No","No",1110.74370452239,43991.9201313875 "3322","No","No",437.814278970858,27855.7549698386 "3323","No","No",1013.70540675709,60574.8058732982 "3324","Yes","No",1922.82904619158,56202.5761963902 "3325","No","No",1066.79279362836,49629.9030054647 "3326","No","No",465.553280059934,33998.8475783305 "3327","No","No",899.483312099838,36361.9780794584 "3328","No","No",592.800666683193,34355.9095454688 "3329","No","No",164.001019441243,42695.3979153921 "3330","No","No",0,62975.1287390269 "3331","No","Yes",1335.1313235085,17044.3653970318 "3332","No","Yes",1549.61638029724,11927.5319540726 "3333","No","No",1441.07069568953,33852.6775970728 "3334","No","No",1157.65206769237,39080.2635290685 "3335","No","No",899.462006521363,36335.219517661 "3336","No","No",331.16703204898,44752.2292920748 "3337","No","No",439.201791769032,42132.013626294 "3338","No","No",489.717690887527,27043.2305590416 "3339","No","No",652.993679181062,37143.5812264389 "3340","No","No",206.820878289734,49221.1485186867 "3341","No","Yes",932.487404912021,14950.0947349898 "3342","No","No",1098.23245141508,42331.8910833343 "3343","No","Yes",1959.59551983283,19677.9357288247 "3344","No","Yes",1706.95376649647,20804.6561208467 "3345","No","No",1255.88371142839,55971.1854749681 "3346","No","No",537.954408771502,54481.3080034763 "3347","No","No",349.161806174377,38844.3498392063 "3348","No","No",167.606098803978,20150.902761931 "3349","No","No",1612.46531468496,42281.2311402749 "3350","No","No",551.254052411868,48007.9918075426 "3351","No","Yes",1521.49668224023,16830.5651365535 "3352","No","No",826.960124205594,61365.4443242382 "3353","No","No",770.081934570081,38010.2611136634 "3354","No","Yes",1109.42549735877,10973.0882494351 "3355","No","No",559.324027305301,53542.4127190244 "3356","No","Yes",390.278197919582,9050.00278108054 "3357","No","No",1567.02386232976,42258.7733461712 "3358","No","No",170.260236584301,62708.1620175011 "3359","No","No",528.850203578729,46222.2889572449 "3360","No","No",0,49471.749397732 "3361","No","Yes",1000.41580660284,14071.0085362555 "3362","No","No",538.748646421516,34834.4457069503 "3363","No","No",435.402804256198,35168.7270884563 "3364","No","No",110.660530711258,64525.9378993549 "3365","No","No",153.563343023163,49405.2609827479 "3366","No","Yes",856.624728089322,19056.8678387124 "3367","No","Yes",934.252048089287,20747.2122273177 "3368","No","No",783.12296011937,36514.6901415882 "3369","No","Yes",1271.11249459206,17451.041186393 "3370","No","No",910.759822660294,33660.7189686808 "3371","No","No",748.652080396294,40612.2157591974 "3372","No","No",668.942259766387,42028.923839609 "3373","No","Yes",1061.93204093717,18589.6214456992 "3374","No","No",766.008842060671,45155.0972106875 "3375","No","Yes",1396.23460288284,15837.2533759543 "3376","No","No",265.435891352397,34040.5484925118 "3377","Yes","No",2080.93724738167,34494.1712062838 "3378","No","No",324.691264321875,47103.4578190388 "3379","No","Yes",1135.01076743719,24005.0051043532 "3380","Yes","No",1731.6807661524,56228.9216823573 "3381","No","Yes",1133.23296556513,16749.4614462397 "3382","No","No",782.648690118751,37497.0870021449 "3383","No","Yes",745.565474645239,12896.6328980992 "3384","No","No",1444.36123709977,51154.5081209419 "3385","No","Yes",1340.52919980707,19318.8404293024 "3386","Yes","No",1903.66721921081,41173.5039918827 "3387","No","No",317.903573559349,42209.4873423349 "3388","No","No",901.317747909679,43242.61208683 "3389","No","No",527.983482263253,39950.9585214959 "3390","No","Yes",915.653755753437,16888.8124249196 "3391","No","No",1143.55035363774,42694.8039243586 "3392","Yes","No",1488.55877463986,22256.8636914601 "3393","No","No",1024.23028360918,27104.8579400196 "3394","No","No",619.903822341423,29217.3523431864 "3395","No","No",1007.24865564428,34893.1376858329 "3396","No","No",0,42577.8145154607 "3397","No","No",1342.04759431789,51442.5655820133 "3398","No","Yes",1478.1697847446,22564.5848836263 "3399","No","No",149.357779532702,52310.4115265425 "3400","No","No",279.724275200053,52008.4158082558 "3401","No","No",869.8087826652,49312.5064893276 "3402","No","No",1493.28785220094,56364.2548943371 "3403","No","No",1127.8226863357,43344.8942878488 "3404","No","No",924.692705395402,38676.9704373565 "3405","No","No",311.507988004406,43379.6346768697 "3406","No","No",696.51006679722,28610.1946592679 "3407","No","Yes",295.633452061397,25452.4758534912 "3408","No","No",464.762682024611,17862.2268684626 "3409","No","Yes",750.41267450035,17291.5268864259 "3410","No","No",890.407653226291,52943.3834046946 "3411","No","No",0,37455.1988754218 "3412","No","Yes",340.697865960545,12351.8259611963 "3413","No","No",724.243805795046,43399.7182823954 "3414","No","No",979.855046191761,40374.051564876 "3415","No","No",33.4570264675971,30510.0384248079 "3416","No","No",1203.73617853155,40969.0823467377 "3417","No","No",735.730856697404,23225.1771045656 "3418","No","Yes",884.918846585518,27208.7712745881 "3419","No","No",825.8499756766,48216.7118880664 "3420","No","Yes",1734.58583985537,14165.2788642707 "3421","No","Yes",670.493492932823,16513.0442606905 "3422","No","No",874.847285610237,36709.1083061063 "3423","No","No",0,40021.3553584359 "3424","No","No",827.350473625965,43833.4237008983 "3425","No","No",1508.84137777861,31739.2719200746 "3426","No","Yes",0,19095.8303695336 "3427","No","Yes",914.515478973011,7525.5842563445 "3428","No","No",302.961244468736,51030.4395324823 "3429","No","Yes",275.485893220682,13448.3341939049 "3430","No","No",589.558094262681,42335.4470346994 "3431","No","No",1120.26745836208,45153.0400679357 "3432","No","Yes",1416.9661563736,11104.5663246846 "3433","No","No",1270.17667773508,44185.3577147632 "3434","No","No",848.234486270745,35186.5774991595 "3435","No","No",560.96807384839,43254.715410826 "3436","No","No",619.615504777482,45463.3009029534 "3437","No","No",1197.57977470106,18449.020776497 "3438","Yes","No",1585.72940149394,52274.8601245548 "3439","No","No",478.363326131214,28262.8681327123 "3440","No","No",1144.91247877907,41370.5165808812 "3441","No","No",778.751922851176,58860.3807631449 "3442","No","Yes",1675.42214090055,13703.881091161 "3443","No","No",680.769773484551,56759.2345948152 "3444","No","Yes",1113.57797796538,17593.5298518795 "3445","No","No",339.351397521402,38097.016679235 "3446","No","No",908.871252095821,55612.1723587685 "3447","No","No",480.787554964629,11193.4156989659 "3448","No","Yes",874.583020719088,17378.2872736105 "3449","No","No",0,42515.1628277468 "3450","No","No",1353.5222027697,52048.5041194701 "3451","No","No",1073.95003337493,28845.7420333549 "3452","No","Yes",1402.28776899962,13276.2490843018 "3453","No","No",759.148003414857,24473.1065999823 "3454","No","No",4.1094981453831,38326.1983601291 "3455","No","No",194.554390070911,38794.1459081932 "3456","No","Yes",597.599614481473,16526.6773312497 "3457","No","Yes",1067.78111469819,18641.7243063209 "3458","No","No",379.291013494282,43096.4898085055 "3459","No","Yes",583.599749188687,15179.6861261427 "3460","No","No",465.522214212983,30792.8835943144 "3461","No","No",1144.12274664919,33624.941426599 "3462","No","Yes",1025.08757276608,29019.3262183216 "3463","No","No",203.958043684028,63638.1873187928 "3464","No","Yes",439.581726628727,17823.501942841 "3465","No","No",0,40574.4207852576 "3466","No","No",720.857568601496,42753.7216938114 "3467","No","No",1385.79514000934,44983.296558965 "3468","No","No",1127.50757701848,64618.742136042 "3469","No","No",808.000167811353,36076.0798002245 "3470","No","Yes",280.24815366878,25307.3770794565 "3471","No","No",378.723020307566,15738.3318359457 "3472","No","Yes",885.516846437988,21211.3259040908 "3473","No","No",0,37482.4857282659 "3474","No","Yes",1006.9422455803,19065.6927865183 "3475","No","No",490.645063024137,37998.7143516608 "3476","No","Yes",141.026549625642,11314.3917806231 "3477","No","No",761.885541249903,46421.7640748476 "3478","No","No",1787.60381985453,33312.8066836098 "3479","No","No",964.541305769544,33908.0513820675 "3480","No","No",931.576984186363,52703.7912231804 "3481","No","No",10.0565726041083,37673.3165455752 "3482","No","Yes",1971.66323615651,22040.2627413006 "3483","No","Yes",1171.51991582291,17642.2677538646 "3484","No","No",784.38369199232,44927.4957037727 "3485","No","No",503.498537295314,20476.0729395675 "3486","No","Yes",295.480714529083,17324.0416254492 "3487","Yes","Yes",1475.05743781716,20210.2726246288 "3488","No","No",950.47136951895,38990.1738558434 "3489","No","Yes",1083.70236158974,17522.7306868447 "3490","No","Yes",1334.66626447237,18064.7783445647 "3491","Yes","No",1332.38617766582,53517.350489625 "3492","No","No",314.548049421055,43440.6040612716 "3493","No","Yes",683.189896759167,12367.6971268167 "3494","No","Yes",1087.41275534669,17060.5942899899 "3495","No","No",443.634783424809,46611.0206328516 "3496","No","No",426.55288027594,34191.2952216818 "3497","No","No",532.984740760252,55847.2859530335 "3498","No","Yes",1378.21733852018,20119.8291955569 "3499","No","No",470.035913442893,29309.127258716 "3500","No","Yes",470.309392705283,10062.0836038357 "3501","No","No",98.3966175462976,25308.5899305255 "3502","No","No",400.059110376214,30160.2889819035 "3503","No","No",1265.72586791133,20816.9533260862 "3504","No","Yes",700.335171683785,15905.2126952829 "3505","No","No",1266.77263593222,47991.0501265717 "3506","No","No",116.353735409607,30765.3518002466 "3507","No","Yes",1023.63853479624,15738.1600121976 "3508","No","No",823.664169396695,24533.2031356683 "3509","No","Yes",1328.67153101328,13389.4337862024 "3510","No","No",1032.18517772079,46541.6494690502 "3511","No","Yes",1093.63905841129,14790.7691896556 "3512","No","No",587.764496004288,39618.8173562607 "3513","No","No",1379.18431417485,48254.600009129 "3514","No","Yes",444.025308381459,23691.9832171524 "3515","No","Yes",597.602487061121,21296.6123042634 "3516","No","No",738.194410175601,35134.2653548643 "3517","No","No",563.491173125737,47142.4498544045 "3518","No","Yes",1518.71564552176,23877.819849633 "3519","No","No",1610.71968064752,30098.8239905995 "3520","No","Yes",542.389693840344,14294.5950802359 "3521","No","No",586.169070351128,31466.8513376787 "3522","No","Yes",648.8853641449,24457.3640797038 "3523","No","Yes",913.046455922211,17139.5796008871 "3524","No","No",1650.89601880151,43478.128206742 "3525","No","No",758.506112361259,37485.9081337746 "3526","No","No",1955.55735559179,45507.9115047977 "3527","No","No",446.964465927462,27626.6025690877 "3528","No","No",874.941620919224,39807.6795515543 "3529","No","Yes",1124.56737590151,28936.9062201587 "3530","No","No",0,29427.9148424807 "3531","No","No",184.569141530728,44021.3021640857 "3532","No","No",1133.79978343124,39860.1632176141 "3533","No","Yes",1148.92313944526,19717.4262918616 "3534","No","No",1040.2724722088,35639.5543014442 "3535","No","No",753.96082861166,21507.9949174421 "3536","No","No",818.496293230639,34903.6775480158 "3537","No","Yes",1228.65581630413,17460.6421607778 "3538","No","Yes",16.4148836028645,24291.3494232028 "3539","No","No",763.900776015518,64967.6404491418 "3540","No","Yes",1667.30882700937,15614.8209145114 "3541","No","No",637.491879262073,48942.6121416591 "3542","No","No",911.132057880504,31265.2177134849 "3543","No","No",125.053844055462,50059.5471192676 "3544","No","Yes",548.278823221224,15308.599994734 "3545","No","No",795.034869917366,34169.669733554 "3546","No","No",649.159045714336,37015.2749917907 "3547","No","No",0,51758.4102919257 "3548","No","No",292.334382785833,41036.1292563615 "3549","No","No",1285.99180262279,31068.1225273061 "3550","No","No",845.854302307457,44480.6553247618 "3551","No","Yes",1660.11179791869,26838.933054139 "3552","No","No",610.56863853285,36145.0170221682 "3553","No","Yes",1137.42108492749,16177.2729087737 "3554","No","Yes",1115.76856218029,11496.5418079491 "3555","No","No",302.164289781916,28805.0626731863 "3556","No","No",1074.14335684724,35054.5844246288 "3557","No","No",510.96017599863,32151.8489790563 "3558","No","No",974.410565287029,43861.8019235383 "3559","No","No",46.1832884430346,42533.7153588048 "3560","No","No",1731.60452777077,58075.9436880706 "3561","No","No",1429.39337850864,31387.700328731 "3562","No","No",503.513808814529,62115.1050819044 "3563","Yes","Yes",2179.22142805877,15302.7765041428 "3564","No","No",18.788280579833,24699.0968352417 "3565","No","No",1047.13968862834,46007.9806068582 "3566","No","Yes",1049.6035740461,11137.861038864 "3567","No","No",1372.93582176137,35467.7576566948 "3568","No","No",958.326632217788,28145.8424785305 "3569","No","No",826.638592854712,47358.5490213203 "3570","No","No",1005.1630821859,42127.9944739671 "3571","No","No",1132.86248470996,25402.4710043271 "3572","No","No",618.610523972339,45154.7478427691 "3573","No","No",1073.82542088911,47935.0053222894 "3574","No","No",1108.80099679987,39676.554561882 "3575","No","No",583.712000758947,42590.1241396148 "3576","No","No",835.533443337154,23160.5786180678 "3577","No","No",698.673829200129,29580.0691003383 "3578","No","No",929.576189948997,40442.0631153395 "3579","No","No",916.597958538644,41432.4344975866 "3580","No","No",1324.19876915942,10892.3291550933 "3581","No","Yes",1219.37667694921,11361.8238642259 "3582","No","No",265.295848438513,45828.0188499132 "3583","No","Yes",1255.42583518715,19885.7611482268 "3584","No","No",1524.43670328131,18878.5544825791 "3585","No","No",326.397293438249,30156.3554233718 "3586","No","No",1821.00315181145,54051.9823381261 "3587","No","Yes",1357.42346575736,25733.3093953223 "3588","No","No",1187.47380064447,53318.9933606233 "3589","No","Yes",925.904860674285,20952.5861354429 "3590","No","No",1451.78500633505,27853.9677827104 "3591","No","No",32.0680789944308,38788.6604713797 "3592","No","No",685.197586468114,36015.4188571331 "3593","No","No",1071.89915017718,54791.8055670014 "3594","No","No",874.490251234789,50078.4594220413 "3595","No","No",926.309641202025,38093.9775189344 "3596","No","No",1235.64080883847,53171.2968821341 "3597","No","Yes",1155.50466685911,24840.7617468418 "3598","Yes","No",1360.38578198715,28992.0018194355 "3599","No","No",234.995776461112,40394.4210479398 "3600","No","No",854.691243314712,26672.1817076696 "3601","No","Yes",1405.65892678336,19701.7554335566 "3602","No","Yes",1161.02617651119,13913.4419563153 "3603","No","No",329.347689299132,20708.9877221068 "3604","No","No",1541.3208022226,32508.3839000633 "3605","No","No",1456.65245644587,59361.9183453124 "3606","No","No",0,24565.5716463348 "3607","No","No",83.0803727287823,45442.8298623253 "3608","No","No",95.8981854984619,31437.4232324923 "3609","No","No",674.804716962235,47653.6159785354 "3610","No","No",917.78398027012,44466.8850284853 "3611","No","Yes",759.803326380694,14217.6988810763 "3612","No","No",379.063067543713,14792.5118362139 "3613","Yes","Yes",2004.3940010495,18860.8466453611 "3614","No","No",1469.60383564639,43436.9520748192 "3615","No","No",200.274808373529,36926.3975468474 "3616","No","No",843.429659446319,39512.0690455385 "3617","No","No",676.763350597062,34400.8608868938 "3618","No","No",46.0920895774312,42025.762307949 "3619","No","No",542.842025366022,48897.7525440451 "3620","No","No",89.9098954243769,30004.4707967452 "3621","No","No",908.184442812385,37319.6225749996 "3622","No","No",0,46306.936285731 "3623","No","Yes",1326.84839242118,20790.2539652011 "3624","No","Yes",993.8172665905,12531.0255005456 "3625","No","Yes",1084.38132390172,20881.4565211616 "3626","No","No",1197.71153968387,30377.2500292142 "3627","No","No",1378.29706776945,43411.6619224584 "3628","No","No",182.741994878604,32359.2092126212 "3629","No","No",529.650306882188,35102.2751291454 "3630","No","Yes",1632.35436117305,15763.584571284 "3631","No","Yes",1119.20252561696,20619.5097530825 "3632","No","No",787.136817634983,45772.6140322452 "3633","No","Yes",969.784159054437,21412.6009801252 "3634","No","No",1256.98265019019,38083.130364008 "3635","No","No",1015.04542705688,31026.4130144171 "3636","No","Yes",1197.60895727108,17452.0000360637 "3637","No","Yes",847.458025642289,16926.3500223677 "3638","No","No",598.438635556875,52896.0596979918 "3639","No","Yes",983.092276546234,17001.6491859906 "3640","No","No",1296.26742330524,45226.121016122 "3641","No","No",412.397141967932,30206.9588196402 "3642","Yes","No",1504.75537803833,26183.2453525162 "3643","No","Yes",367.363419274672,16295.5624749992 "3644","No","No",0,27889.3047001377 "3645","No","Yes",894.725490593895,19335.6340358215 "3646","No","No",75.8341255842853,42075.0478357006 "3647","No","No",642.53521756118,34893.785940483 "3648","No","Yes",1777.28455467843,14567.8139813121 "3649","No","No",370.033287888415,44507.211314214 "3650","No","No",653.373456959241,52276.5854009763 "3651","No","No",793.912163386316,48907.6838409864 "3652","No","No",917.075277826575,19003.7749764239 "3653","No","No",509.778439256327,38614.4131337821 "3654","No","No",947.813789455262,42094.4701536065 "3655","No","Yes",860.835399899637,19514.763516061 "3656","No","No",302.227048591714,35232.4604410526 "3657","No","No",891.887379296637,35062.5381865466 "3658","No","No",1377.55875173049,38364.6791518545 "3659","No","Yes",1222.95846367801,15174.9724609139 "3660","No","No",378.970424423049,39492.0119537958 "3661","No","No",0,41523.752477371 "3662","No","Yes",1103.91300124722,28552.5373346619 "3663","No","Yes",704.472521881142,21140.275640308 "3664","No","Yes",1402.31056982512,21566.5568755441 "3665","No","Yes",68.3766078184741,10996.0878573815 "3666","No","No",409.596072288602,30627.5029402373 "3667","No","Yes",655.700944684446,19915.2328521123 "3668","No","Yes",654.814668194886,14504.3964074862 "3669","No","No",1255.92012470085,43929.1432181938 "3670","No","No",1217.96088773575,33443.3064093113 "3671","No","No",691.893198507127,35562.6093686611 "3672","No","Yes",548.13628878805,19501.3410678754 "3673","No","No",437.546069429019,31537.1269325829 "3674","No","No",1067.84243863848,70700.6478404576 "3675","No","No",521.439778127422,31981.8581197516 "3676","No","Yes",1348.9953202389,25805.8099647288 "3677","No","No",674.66370031704,41798.3916232607 "3678","No","No",516.359041795444,25891.7596483203 "3679","No","Yes",1470.33856265862,19647.1423253636 "3680","No","No",859.007910133498,43101.8738068424 "3681","No","No",1114.088014707,59200.1369964562 "3682","No","No",773.326806663148,51787.7894414781 "3683","No","Yes",803.968975047329,16553.7728259018 "3684","No","No",376.292564774471,43940.0480641767 "3685","No","No",829.729677070215,36164.1541822576 "3686","No","No",299.890633267322,34920.1815445572 "3687","No","Yes",148.657094714831,15645.7771213044 "3688","No","No",705.113585993753,47752.1592298761 "3689","No","No",467.864135290801,43308.6965719809 "3690","No","No",382.094286204579,38348.2861872948 "3691","No","No",450.309011613408,46172.7250884025 "3692","No","No",379.914592855663,39064.0485206065 "3693","No","Yes",151.771401058765,18659.0709439774 "3694","No","No",1535.22447265136,35282.2280185965 "3695","No","No",1596.87342986645,34655.8800325605 "3696","No","No",778.060154635799,52545.578049973 "3697","No","No",107.706671906495,42199.9676256284 "3698","No","Yes",961.797820619253,13389.0694050288 "3699","No","Yes",235.249789340508,13360.9251942154 "3700","No","No",935.33815565705,57139.3048612283 "3701","No","No",0,34563.0458822401 "3702","No","No",10.3068907225734,37590.3095819752 "3703","No","Yes",2370.46361152636,24251.9587219194 "3704","No","No",1447.02228057939,37322.710221796 "3705","No","No",829.023319092933,25161.8985145042 "3706","No","No",1474.06154429605,47040.8085875203 "3707","No","No",913.638326726234,50351.1551950528 "3708","No","No",1028.88633806886,34257.632772859 "3709","No","No",563.89172073513,54147.7083859983 "3710","No","Yes",747.821682807119,19330.3084037704 "3711","No","Yes",811.539940902829,13828.9686562225 "3712","No","Yes",797.373647480833,23438.1458035913 "3713","No","No",701.918156574897,53151.7607278083 "3714","No","No",1195.35982220074,42107.3640000123 "3715","Yes","No",1672.50606273916,66466.460890915 "3716","No","No",889.901199990565,20805.6140385332 "3717","No","Yes",579.721304609121,18555.7525862376 "3718","No","No",1143.20045945329,28900.7277879119 "3719","Yes","Yes",1237.62186571379,14862.7054597298 "3720","No","No",740.957080483265,48683.2203818321 "3721","No","Yes",1470.47458641012,18621.170430494 "3722","No","No",507.678616315415,45839.1341797568 "3723","No","Yes",452.302355609914,19922.6401247417 "3724","No","No",431.904928118842,30115.152829135 "3725","No","No",388.935465259897,36932.8101191799 "3726","No","Yes",647.260114248229,18905.8538390556 "3727","No","No",1069.13030064378,42361.0467518263 "3728","No","No",517.988518060339,45495.0054253039 "3729","No","No",996.251183302201,23720.9874695717 "3730","No","No",995.122330640652,47286.8309114811 "3731","No","No",0,55069.8122112149 "3732","No","No",480.571142147903,36192.0903233484 "3733","No","No",413.858824635309,42453.6818753791 "3734","No","No",730.072003864106,47074.2289180681 "3735","No","No",11.307783333379,43520.4888003279 "3736","No","Yes",1507.89245127672,14632.2576606953 "3737","No","Yes",1129.11390918636,13580.2569642632 "3738","No","No",1159.93657960376,46789.8806265537 "3739","No","No",817.982440262695,40658.5899130617 "3740","No","Yes",901.175243522745,16745.066848549 "3741","No","Yes",1778.12151243631,17060.9274523287 "3742","No","No",1036.75668615923,34912.7894575472 "3743","No","No",199.136148704383,49292.5456549724 "3744","No","Yes",1295.69055098517,23191.2365261002 "3745","No","Yes",468.257661766054,6365.56457589519 "3746","No","No",688.105491060263,27080.7425441104 "3747","No","No",202.321208104165,37188.5693842123 "3748","No","No",621.003443540267,37249.4364352527 "3749","No","No",963.332481084664,30100.7622696918 "3750","No","No",1106.69701234151,51879.7184800111 "3751","No","No",1391.40768882587,30427.2025804345 "3752","No","No",198.594790541604,58598.6676423446 "3753","No","No",90.6826966305595,37914.4013067847 "3754","No","No",460.873865041046,49243.4447853166 "3755","No","No",1182.44483185605,34784.7881285648 "3756","No","No",748.434422248033,43215.8297292764 "3757","No","Yes",1727.55459145414,11608.128446401 "3758","No","No",831.47822217826,39079.7884540231 "3759","No","No",655.629150055933,40257.9329916046 "3760","No","Yes",787.1367086129,22434.9764528939 "3761","No","Yes",760.895350124073,20070.1480040007 "3762","No","No",0,44387.5749015598 "3763","No","No",523.388442648939,53115.599362511 "3764","No","No",481.591003405382,35817.7612925548 "3765","No","No",0,26275.2565388957 "3766","No","Yes",1414.6577991223,17954.8525455556 "3767","No","Yes",1103.21677644164,22410.9082953532 "3768","No","No",948.696452799542,38247.913228973 "3769","No","Yes",725.572419455187,9019.54551235871 "3770","No","No",1727.34900141241,40791.1429214149 "3771","No","No",891.607304157422,43925.9644223325 "3772","No","No",667.290493003104,66538.3442219194 "3773","No","Yes",1060.26371026219,15661.409003229 "3774","No","Yes",830.860575104084,18259.6642152219 "3775","No","No",319.174576691641,44410.5315566714 "3776","No","No",1147.27448398082,44871.5494446034 "3777","No","No",664.511520418358,47878.8338334518 "3778","No","No",1066.89951236104,35567.7620740215 "3779","No","Yes",374.976767394742,19806.5190903651 "3780","No","No",549.191342739887,43688.6804186368 "3781","No","Yes",943.581370801553,17730.919262011 "3782","No","No",111.285039767861,42292.2977730561 "3783","No","No",504.739525342174,59560.1796602225 "3784","No","No",798.477351064392,32921.633935552 "3785","Yes","No",2008.45859591035,35145.0476213865 "3786","No","No",965.926572220327,29219.0707750405 "3787","No","No",1768.13997797286,30762.1052139087 "3788","No","No",435.055376918744,32198.0248784528 "3789","No","Yes",685.631944540025,15892.0925406445 "3790","No","Yes",745.230621260668,12877.5095009707 "3791","No","No",161.759487374323,43676.0574090646 "3792","No","No",0,32558.4750927352 "3793","No","No",1389.28646709021,38373.0145244978 "3794","No","No",802.092675362193,45052.5804474234 "3795","No","Yes",335.82263545205,16123.1133521949 "3796","No","No",1031.78625745329,39260.0062189948 "3797","No","No",893.241644741964,43816.2254733528 "3798","No","No",1007.27799464763,45124.0404355969 "3799","No","No",786.802308362249,38023.6148140319 "3800","No","Yes",1814.55889529126,24177.2725239766 "3801","No","No",116.218875620068,50109.0234146974 "3802","No","No",839.924094203699,47347.6767077934 "3803","No","Yes",824.691701826297,15158.6247871037 "3804","No","No",239.384478789428,25485.17338129 "3805","No","No",933.751152075546,52319.1535099304 "3806","No","No",459.387665326059,37630.6133189642 "3807","No","Yes",870.023992705307,15955.8851517715 "3808","No","No",232.207550415873,11151.0476161126 "3809","No","No",150.78384068053,32106.4836371526 "3810","No","No",1215.17047346831,55230.648185661 "3811","No","No",1435.36009542623,33728.8923192302 "3812","No","No",338.06832186229,47340.0266909586 "3813","No","Yes",1056.94739892769,20304.0981203317 "3814","No","No",194.173416620166,28743.1643692778 "3815","No","No",298.509689604326,50229.7797437753 "3816","No","Yes",938.339328985524,21911.7272119656 "3817","No","No",1297.39243050355,47095.2215664773 "3818","No","No",690.228382764494,56958.599355471 "3819","No","No",1013.90643057987,34166.8264938287 "3820","No","No",1213.7941049861,48796.8492780349 "3821","No","No",0,39269.8359156486 "3822","No","Yes",1399.95025661838,11010.2124515938 "3823","No","No",590.999730015612,50246.7155358911 "3824","No","No",1438.83369098514,35532.3993174811 "3825","No","No",438.234685195282,48859.2610204599 "3826","No","No",783.001515615034,37428.2200371324 "3827","No","No",1864.94640342503,48678.4151933007 "3828","No","No",208.050443946045,46840.5192698469 "3829","No","No",621.165135100387,32168.5528989598 "3830","No","No",994.199964316657,52689.5394318756 "3831","No","No",674.640158540427,42463.5249695872 "3832","No","No",537.587186451237,46953.3768092795 "3833","No","No",690.340942195294,29924.229458693 "3834","No","Yes",1369.40827588944,18144.3502642041 "3835","No","No",654.277589031942,37706.5948741313 "3836","No","No",798.031313993959,29934.1432291843 "3837","No","No",763.224892920809,48170.3599207953 "3838","No","No",1663.61634756329,52975.2636119246 "3839","No","No",988.393947106499,49804.2837531124 "3840","No","No",1419.63189161462,40295.2687995018 "3841","No","Yes",1196.041821814,19665.8291971639 "3842","No","No",618.051384938394,16944.3444933857 "3843","No","No",1028.18124945831,32249.8456721917 "3844","No","No",523.501099352472,39168.1742529548 "3845","No","No",517.45962093638,39543.5871031994 "3846","No","Yes",764.562997415372,5082.99263135122 "3847","No","No",206.948846369348,53058.561408706 "3848","No","No",847.981506567761,43023.5850115808 "3849","No","No",0,40540.6944115759 "3850","No","No",631.747132163768,37936.0434327245 "3851","No","No",1014.59910437962,51438.7101991499 "3852","No","No",157.280028213278,41415.3960305557 "3853","No","No",525.485199814085,43737.904263688 "3854","No","No",962.948614604359,28660.9305693435 "3855","No","No",594.106133663565,24069.2130253837 "3856","Yes","Yes",2321.88222078406,21331.3147812222 "3857","No","Yes",1128.78015595712,17231.808467394 "3858","No","Yes",2118.80057421913,18791.8520844699 "3859","No","No",290.564873898186,13239.8728352638 "3860","No","No",1244.39224372204,33880.2992197885 "3861","No","No",1177.91726793043,49061.7229070424 "3862","No","No",0,44225.6158550561 "3863","No","Yes",492.657068547904,10154.1562624726 "3864","No","No",0,62689.0330317791 "3865","No","No",530.251298561418,39311.3257110561 "3866","No","No",0,45104.0940277016 "3867","No","No",1028.17461084237,51228.3021076555 "3868","No","Yes",488.238551481836,33003.4229511569 "3869","No","No",4.45893829925035,46970.4964206441 "3870","No","No",1636.31615275065,35814.7919837632 "3871","No","No",107.921849415466,33764.2020744309 "3872","No","Yes",129.184357002533,20570.8541996302 "3873","No","No",956.985400588607,38285.7478995927 "3874","No","Yes",823.064063126566,17254.3984155632 "3875","No","No",458.998467641761,33163.5453487024 "3876","No","Yes",867.90467888042,18949.0273423076 "3877","No","Yes",117.809441288368,18752.8302016095 "3878","No","No",474.666105515736,42058.777310287 "3879","No","Yes",1180.52914588773,19139.3002329259 "3880","No","No",315.850608427301,47328.9827476038 "3881","No","Yes",552.204087340281,22554.5785225528 "3882","Yes","No",1342.26287404933,35691.6373626218 "3883","No","No",407.28975596518,45376.2359070935 "3884","No","No",1624.95646496252,47574.5597163584 "3885","No","Yes",548.454729888128,21672.5398863769 "3886","No","No",908.8882984423,42205.2064968203 "3887","No","Yes",969.898684944156,17940.1191271848 "3888","No","Yes",966.35083804263,11776.5291469195 "3889","No","No",628.566971300707,37617.1191790581 "3890","No","Yes",882.97742492169,8833.66859574522 "3891","No","No",824.995490317263,34277.5258971332 "3892","No","No",762.912837088917,41617.8139540496 "3893","No","No",1246.22952508902,49479.5768167893 "3894","No","No",60.9607616734327,41548.1172690808 "3895","No","No",1377.97881570218,34683.6124468226 "3896","No","No",1215.25254590985,43793.1158439609 "3897","No","No",494.901917766186,13980.3611783447 "3898","No","No",839.873755369443,39158.2375495066 "3899","No","No",982.381607125144,29157.2922710833 "3900","No","Yes",927.516587606127,4143.1188436957 "3901","No","No",433.857819332761,30581.5828674348 "3902","No","No",1213.03372043657,17726.67010762 "3903","No","No",316.004350795276,26518.4626373009 "3904","No","Yes",973.903110195755,21590.0349041124 "3905","No","No",0,25603.5332583784 "3906","No","No",713.75110679484,37230.0737161792 "3907","No","No",997.465434734612,22061.7998101081 "3908","No","No",1326.06486447881,34945.8009455043 "3909","No","Yes",1135.36118371592,24314.0368794181 "3910","No","No",0,50805.0365860861 "3911","No","No",43.8964732139597,48543.5990899145 "3912","No","No",666.370176975337,50105.267599429 "3913","No","Yes",0,18426.2607220242 "3914","Yes","Yes",2334.12355928646,19335.8892870067 "3915","No","No",303.791175031742,28525.4017296092 "3916","No","No",634.495047320779,35131.3015268333 "3917","No","Yes",853.818357435337,18750.7506332069 "3918","No","No",747.455393381215,43898.7506313104 "3919","No","Yes",1120.03027338121,19170.4583479794 "3920","No","No",1290.19154200367,36898.9287227477 "3921","No","No",1348.78501842297,33488.4129166473 "3922","Yes","No",1632.89411755965,44326.5848389279 "3923","No","No",693.630693268542,32594.6637582436 "3924","No","No",467.583088541574,43435.8366137129 "3925","No","No",618.125338151726,27868.7938862439 "3926","No","Yes",1217.6673550098,20977.2351863501 "3927","No","No",872.07135762222,36004.6448067571 "3928","No","No",0,28659.4883821409 "3929","No","No",894.73448421392,37903.5264631725 "3930","No","Yes",361.610466866982,21685.6922327124 "3931","No","Yes",937.197434022924,18411.8244296162 "3932","No","No",0,55760.5019383757 "3933","No","No",339.531864697194,31092.7576531692 "3934","No","No",423.714550584752,32640.2940725967 "3935","No","Yes",1529.06170478383,17358.0429765912 "3936","No","No",894.114487522128,47681.6228289047 "3937","No","No",760.720823811111,40854.469068475 "3938","No","No",883.016251146865,37961.1559197859 "3939","No","Yes",1322.58549706765,15304.2603945019 "3940","No","No",2036.99318923915,31384.1300026505 "3941","No","No",751.39991725403,54993.4078424962 "3942","No","No",578.836277403294,25522.5199803339 "3943","No","No",829.281651229759,58070.1125623816 "3944","No","No",1160.06126524024,51895.3040377882 "3945","No","No",1197.77188104285,44047.691182016 "3946","No","No",417.592210757132,48035.6096423654 "3947","No","No",777.824448114388,43910.9885619203 "3948","No","No",625.746198837327,29644.2083028025 "3949","No","No",1382.77577383148,36232.3193301436 "3950","No","No",986.305802570999,25342.3047937036 "3951","No","No",937.738325490594,24932.7211302843 "3952","No","No",0,44525.8493492165 "3953","No","No",131.576672964284,51106.9948502149 "3954","No","Yes",1096.18460643552,15535.5486634707 "3955","No","No",499.173919333681,44773.5753282789 "3956","No","No",1236.21871976753,37884.5660973391 "3957","No","No",637.01454099823,27828.1375979546 "3958","Yes","No",2147.3125781201,58271.3908258596 "3959","No","No",516.216569301407,42446.0411816577 "3960","No","Yes",113.276475965853,21068.1640255051 "3961","No","No",352.327702835245,40716.1748054209 "3962","No","No",918.014298027406,26798.0714113008 "3963","No","Yes",1378.91311651019,14329.7712342385 "3964","No","Yes",482.545258293181,21369.2750915314 "3965","No","No",813.200651231514,49477.5115079057 "3966","No","Yes",1330.48518064805,13765.4413250231 "3967","No","No",1373.53303261699,56878.3350569795 "3968","No","Yes",1411.60736458353,16677.3069228501 "3969","No","No",313.805085904673,37720.7620953016 "3970","Yes","Yes",1803.94456724079,29100.8192252135 "3971","No","No",964.524655704574,40814.6529077642 "3972","No","No",1139.37070195429,42759.3825328246 "3973","No","Yes",1009.43108895395,21904.6927706133 "3974","No","No",615.465388230695,25865.1806189451 "3975","No","No",673.698051443921,41891.4259686795 "3976","No","Yes",1288.55195777107,24918.4150782296 "3977","No","Yes",2388.17400939421,7832.13564354245 "3978","No","No",0,34545.09712324 "3979","No","Yes",1119.38660954773,20011.4688698159 "3980","No","No",1352.70344251148,35743.0039605073 "3981","No","Yes",886.348540111273,17534.4670783535 "3982","No","Yes",1468.79521972382,25038.8165029696 "3983","No","No",727.373492884909,46329.0277506726 "3984","No","No",593.433837737072,36995.8215420113 "3985","No","Yes",1168.34064050981,13580.9466378274 "3986","No","No",541.784474964924,56100.1054254979 "3987","No","No",1055.41478885429,29967.173376934 "3988","No","No",399.723590496681,43243.6660984663 "3989","No","Yes",552.877704238618,14320.8597947813 "3990","No","No",1189.75213362091,50838.5172180485 "3991","No","No",698.001477300336,38135.5587008128 "3992","No","No",431.536055178104,46941.0589440984 "3993","No","No",851.103567490966,53433.5741701953 "3994","No","No",1457.71605432132,37453.8397748468 "3995","No","Yes",992.280250534139,13958.291477701 "3996","No","No",387.76134166606,40063.7276405824 "3997","No","No",794.176212819499,43335.9850414375 "3998","No","No",412.25489056191,37088.2123302523 "3999","No","Yes",1163.45251217975,27308.6909253501 "4000","No","Yes",880.281524012368,20177.4002932926 "4001","No","No",752.2218482128,48764.0227335012 "4002","No","No",40.0931001292735,33278.3651877443 "4003","No","Yes",1242.5214000392,18331.0035192795 "4004","No","Yes",1671.81369058885,20074.5093287591 "4005","No","No",1097.03908336192,40021.3530152455 "4006","No","No",918.74734351281,28327.5503602205 "4007","No","No",1185.28892689186,39926.6069284213 "4008","No","No",997.477342703065,44748.7919391108 "4009","No","Yes",741.442367736876,15499.9193212486 "4010","No","Yes",1234.24991259327,12268.3649559429 "4011","No","No",0,52585.685868057 "4012","No","Yes",985.262251090303,30295.6309587895 "4013","No","No",1023.19846694708,40866.0188373617 "4014","No","No",423.430473770691,46000.7966775868 "4015","No","Yes",1007.1394839918,17217.5050571061 "4016","No","No",893.355267878727,49960.3061635294 "4017","No","No",1008.3574622206,39610.6253746006 "4018","No","No",691.99675702089,45428.539318492 "4019","No","No",410.236803912654,36502.3785672846 "4020","No","Yes",1215.38361034015,15994.0410236354 "4021","No","No",599.03497050462,49813.1266974055 "4022","No","No",355.251657024056,50160.7031110918 "4023","No","No",869.898435189339,33540.0495193781 "4024","No","No",1786.46395168459,54207.1677946309 "4025","No","Yes",1221.81375636032,12603.3028574264 "4026","No","No",0,39164.0223455767 "4027","No","No",1621.24537469273,38590.8980916654 "4028","No","No",1121.49658624578,39395.8993577758 "4029","No","No",736.637502910077,55187.9198175268 "4030","No","No",1739.53592448521,51623.2875371972 "4031","No","No",1478.6214441698,41986.0477290777 "4032","No","No",903.564452484125,35296.4479016564 "4033","No","No",739.652879192582,48283.1870188822 "4034","No","No",228.955854756653,36783.0052497006 "4035","No","No",1313.55952545877,39989.0090717833 "4036","No","No",903.925863947006,27395.796144282 "4037","No","No",667.659830354829,42078.6848638463 "4038","No","No",539.887946834072,33856.4540327504 "4039","No","No",1877.1148086508,43442.3250059442 "4040","No","No",739.859747736702,30853.2930851045 "4041","No","Yes",408.562974447758,18471.7743266692 "4042","No","Yes",482.325150884949,30588.0302395231 "4043","No","No",1097.81775295012,43065.6187271322 "4044","No","No",1580.86672734265,36513.6167167876 "4045","No","Yes",920.231114913882,16088.2080999153 "4046","No","No",425.05374539019,37351.3555153373 "4047","No","No",0,53273.3416623972 "4048","No","Yes",928.182275856265,16968.8675232024 "4049","No","No",617.348763535131,38106.7883339974 "4050","Yes","No",1673.48634915562,49310.3329074721 "4051","No","No",1023.05155185734,19354.3979175702 "4052","No","No",1459.56140152943,44334.6169669311 "4053","No","No",1235.77751655543,35140.4587965845 "4054","No","No",621.97816785707,43472.2334593568 "4055","No","No",280.944386688864,50404.0329743684 "4056","No","No",326.652236024477,45562.5742373376 "4057","No","No",902.762304956933,52528.2374798269 "4058","No","Yes",672.693221527889,13795.9627457166 "4059","No","Yes",710.779996529605,17625.9675228698 "4060","No","No",901.208441163058,48855.4508386826 "4061","Yes","Yes",2216.01766888986,20911.695635345 "4062","No","No",1210.59299920567,40182.7068208555 "4063","No","No",828.970738675171,33423.936365316 "4064","No","Yes",533.492796417447,14707.2958101747 "4065","No","Yes",768.823046886614,22138.2159011172 "4066","No","No",746.670330655761,40354.558473576 "4067","No","Yes",730.739495206666,7299.52009926392 "4068","No","Yes",1308.02458812072,17353.8604211182 "4069","No","No",481.261049635246,33500.5652988707 "4070","No","Yes",1409.98910236248,21569.8907676641 "4071","No","No",524.607913831661,40663.0434148193 "4072","No","Yes",1122.13790030182,13929.4736725959 "4073","No","No",1105.87881627602,42110.4244036918 "4074","Yes","No",1319.81645438772,36548.8183522009 "4075","No","Yes",823.736672842706,19041.8183804585 "4076","No","No",172.975785497621,47060.6314248485 "4077","No","Yes",1497.36480871339,10576.3414807282 "4078","Yes","Yes",1819.94093603444,19393.4829690793 "4079","No","No",389.395881134109,20200.3799415541 "4080","Yes","Yes",2047.41700651498,13678.508032147 "4081","No","No",909.865553606509,44879.2775838025 "4082","No","No",686.163294807317,33190.4271290868 "4083","No","Yes",0,20565.777654669 "4084","No","Yes",1676.09768352054,25687.914394485 "4085","No","No",971.960011035032,33543.3349269627 "4086","No","No",887.594631980958,59416.1597583341 "4087","No","No",1312.84770615108,64402.6089073751 "4088","No","No",1808.72265816,30020.6429000601 "4089","No","No",1170.74346404427,49832.9514015609 "4090","No","No",439.352384001982,44620.2651488029 "4091","No","No",103.04234182744,45798.6746990815 "4092","No","No",1473.89756364907,32860.1009924404 "4093","No","No",780.709251488092,37023.1171524826 "4094","No","No",1144.24200204036,28018.9955741467 "4095","No","No",1148.50933615601,37392.1678382689 "4096","No","No",667.412163656887,31150.0265366089 "4097","No","No",1013.78519429173,50268.9923132871 "4098","No","Yes",1418.38864963031,12788.719027696 "4099","No","Yes",1345.28829718908,23169.4041300909 "4100","No","Yes",1493.10606637006,14295.6647405799 "4101","No","No",828.265303729576,36241.6601297718 "4102","No","Yes",208.89691523043,17966.3611423564 "4103","No","No",567.294084420402,39841.2283492398 "4104","No","No",686.869875998055,32359.3374551019 "4105","No","Yes",1926.28900807515,12283.408513263 "4106","No","No",814.286311995171,36613.7070884905 "4107","No","No",1569.51821551732,43024.9706832812 "4108","No","No",0,42035.338983851 "4109","No","Yes",0,13226.1549646145 "4110","No","Yes",1828.61432512578,20225.8061141141 "4111","No","No",777.646062948943,50869.7286119432 "4112","Yes","No",1644.69662278627,61474.9344461318 "4113","No","No",295.128657603893,36539.0848250222 "4114","No","No",781.123714097136,22327.6759781473 "4115","No","No",673.926656787536,39508.6241247705 "4116","No","No",343.249590531263,58411.6775372388 "4117","No","Yes",1302.3403089258,16292.2671406477 "4118","No","No",225.81966007063,54124.2060414619 "4119","No","Yes",1456.85805376701,14530.3112001678 "4120","No","No",955.090754255521,52224.4927939227 "4121","No","No",777.023000126856,47369.116830613 "4122","No","No",0,23616.5390057379 "4123","No","No",527.252016259759,49280.3009402279 "4124","No","No",29.848982881347,36972.934138124 "4125","No","No",125.103948532388,16157.2183071314 "4126","No","Yes",1095.86882248829,16127.5246644441 "4127","No","No",0,41194.0713915091 "4128","No","No",973.998849623091,48095.0679714769 "4129","No","No",1288.25268199635,42226.4620096718 "4130","No","No",269.289219595483,33846.508638631 "4131","No","No",1105.89023752596,35450.7272653153 "4132","No","No",360.892385237613,37581.7918044689 "4133","No","No",933.104365993473,24113.9172855589 "4134","No","No",1184.21049484192,38409.5355114041 "4135","No","Yes",1850.61214561206,20409.0380471898 "4136","No","Yes",1517.80416119472,12958.6509187697 "4137","No","No",969.55040776643,41301.9715355252 "4138","No","No",683.809045509462,41004.6590152701 "4139","No","No",915.075205885282,23682.9133227548 "4140","No","No",0,47895.8049172029 "4141","No","No",606.581004829702,32497.4488581538 "4142","No","No",689.919452126868,37695.7914454234 "4143","No","No",561.622858899832,38894.5508767785 "4144","No","No",303.517760977296,43791.1054184975 "4145","Yes","No",1823.40410518463,14664.1381225121 "4146","No","Yes",1698.29181559885,11764.862109723 "4147","No","Yes",1355.31321601212,11070.8549739706 "4148","No","Yes",1009.91157599377,18001.8645008404 "4149","No","No",887.903298925522,29642.1440308044 "4150","No","No",308.533535836126,39121.3640608267 "4151","No","No",1512.25631384363,35652.7678584774 "4152","No","No",0,39858.1272281271 "4153","No","No",1274.60300516704,55206.7023324083 "4154","No","Yes",1795.21984596123,7112.40849869462 "4155","No","No",848.997262632983,44379.7533473671 "4156","No","No",588.7801860656,58764.3637567687 "4157","No","No",551.174351603282,24975.0270616299 "4158","No","Yes",1084.04408433742,13680.1132986044 "4159","No","No",723.415718628873,35938.1397752091 "4160","Yes","No",698.56735192862,31754.5234215337 "4161","No","No",910.739618245199,40222.7125016071 "4162","No","Yes",1581.06593572758,17331.3258296657 "4163","No","No",948.689701645866,39671.5338752441 "4164","No","No",199.174565816466,21753.3569623462 "4165","No","Yes",1759.41232517457,11556.1845280469 "4166","No","No",780.658964465254,29691.4942717387 "4167","No","Yes",1770.79681540763,18837.4201675506 "4168","Yes","Yes",2182.60434354643,20780.69245487 "4169","No","No",696.012758739235,35920.6620176138 "4170","No","No",563.917725899879,47839.6172580637 "4171","No","No",1041.07152319365,41485.6237181921 "4172","No","No",293.65537518518,38893.6045913333 "4173","No","Yes",1489.04815023232,17934.4933667081 "4174","No","No",237.489889757362,44614.7163235577 "4175","No","No",1266.79602128258,34652.1088830282 "4176","No","No",1059.86582999024,33567.8450260249 "4177","No","Yes",704.292704155334,13472.4831922635 "4178","No","No",0,45701.085159879 "4179","No","No",0,47846.9565733864 "4180","No","No",499.622780567795,42052.8701176574 "4181","No","No",728.818859467603,33662.0709670495 "4182","No","No",1238.10517698086,37544.9421289734 "4183","No","No",776.899874606161,37685.4493016399 "4184","No","No",202.070432925658,28814.1753058697 "4185","No","No",625.399024910973,52074.9682238148 "4186","No","No",1089.30217845927,28232.1412814794 "4187","No","No",992.963525690813,45540.4456802251 "4188","No","No",352.746535946012,41548.8829454378 "4189","No","No",416.747666598944,69386.9015897979 "4190","No","No",937.923175402473,31664.0669007571 "4191","No","Yes",15.1537927269189,13430.4158449196 "4192","No","No",1128.67359368677,42566.2975475258 "4193","No","Yes",1924.55977546273,8097.91797528429 "4194","No","No",211.075501758336,50506.220185253 "4195","No","No",23.5291262860873,42814.8185641646 "4196","No","No",891.394821935661,43535.9399390918 "4197","No","No",707.107463519103,18675.9172804639 "4198","No","Yes",1018.09933818812,18239.2817032363 "4199","No","No",1404.09915555023,28764.4967062106 "4200","No","No",817.085888361365,55892.7261036349 "4201","No","Yes",908.848633759071,20332.3910564198 "4202","No","No",1216.19515610407,47561.712762495 "4203","No","No",176.904045793469,43150.2685305518 "4204","No","No",401.708352972404,51338.2160136299 "4205","No","No",1214.21119185954,45778.0267076337 "4206","No","Yes",1835.56411176438,17807.4495185463 "4207","No","No",66.7727220597995,43189.6645286797 "4208","No","No",1343.18588302872,30960.616025598 "4209","No","No",1309.40574622583,34469.9801719868 "4210","No","Yes",463.091661446481,21248.6529351879 "4211","Yes","No",1672.0314827914,50327.3677566251 "4212","No","No",357.744559308234,45516.7761149121 "4213","No","No",705.095045797165,38297.8549493873 "4214","No","Yes",453.643969731847,9770.00643655795 "4215","No","Yes",1799.14934936528,20215.6238235123 "4216","No","No",748.138164599069,21153.482463354 "4217","No","No",650.089355226512,46496.5101577786 "4218","No","Yes",341.485593332755,21278.8261394043 "4219","No","No",1476.47893269427,50701.8453154219 "4220","No","No",1134.34447245866,41748.1834479526 "4221","No","Yes",852.35866725484,20948.9708785949 "4222","No","Yes",930.663262975502,22919.9971704174 "4223","No","No",1027.01757050938,47046.0123584044 "4224","No","No",1494.25411867558,48133.9384431848 "4225","Yes","No",1396.78918130163,40371.1247388957 "4226","No","No",44.0593988387884,50765.6982779735 "4227","No","No",938.280180319813,33341.9631911132 "4228","No","No",776.964679227001,36704.0519013828 "4229","No","Yes",1589.64963269922,15262.4216192198 "4230","No","Yes",1247.55632093348,16410.8903685008 "4231","No","No",0,30143.9637125602 "4232","Yes","Yes",2291.61768844883,20837.2094471977 "4233","No","No",676.959581088393,33013.8247572839 "4234","No","No",135.998235596591,59369.6484070611 "4235","No","No",630.608540429953,52491.5586737334 "4236","No","No",315.953257508048,38938.975748331 "4237","No","Yes",564.738466990779,15411.1915898003 "4238","No","No",663.244157339197,25728.8684447605 "4239","No","No",72.1232567768386,35374.8645729716 "4240","No","No",491.036498048265,37835.6132114576 "4241","No","No",1331.89567629233,38903.1979786692 "4242","No","No",755.339662904859,37027.2545972807 "4243","No","No",684.186023658561,45400.0173568738 "4244","No","Yes",407.340440417818,25376.7286324237 "4245","No","No",0,37727.4635794782 "4246","No","No",130.31596934149,44559.8172904068 "4247","No","No",1224.45449345277,46811.6143935601 "4248","No","No",1525.35393018537,52675.7637044107 "4249","No","No",618.998439866302,17122.347555865 "4250","No","No",353.638334210687,43145.179661493 "4251","No","No",422.644529182164,58345.0145187153 "4252","No","No",25.7362691691972,28163.6929703336 "4253","No","No",697.62139806607,48469.8814036304 "4254","No","No",462.138386747959,44546.2371893247 "4255","No","No",599.66771994222,36584.0762392672 "4256","No","No",1251.23590590048,43191.3120886386 "4257","No","No",1432.29846516717,31250.5829812295 "4258","No","Yes",975.915404092626,12102.8178865863 "4259","No","Yes",445.929060495343,10629.618349193 "4260","No","No",694.412430789019,47705.8712772338 "4261","No","Yes",320.012202336553,14704.4776901877 "4262","No","No",1102.30203229907,38872.1299228802 "4263","No","No",0,39250.0955243705 "4264","No","No",165.973008628943,28439.5879563403 "4265","No","No",1258.87880589312,40858.86844416 "4266","No","No",1372.76199336205,30219.1500946263 "4267","No","No",1464.02896199018,43700.1426258785 "4268","No","Yes",1594.09316720836,14135.211282255 "4269","No","No",0,31741.0456239313 "4270","No","No",1595.91003269695,55712.2937441276 "4271","No","No",901.176073691345,55064.6364886004 "4272","No","No",789.750797188921,39022.3532458469 "4273","No","No",1203.20583932405,43809.2599519992 "4274","No","Yes",1399.33805345892,22736.2190720193 "4275","No","No",1125.87648806806,49359.3427235076 "4276","No","No",236.338466236238,39260.060190791 "4277","No","No",218.146314461255,27166.6975416027 "4278","No","No",413.57655127627,49424.3103755304 "4279","No","No",469.053980293215,25680.1749280984 "4280","No","No",923.992516417842,27818.2468659303 "4281","No","No",182.628059937346,31623.9364457733 "4282","No","No",478.401744719427,30338.3568611308 "4283","No","No",918.546151295038,53331.2784279661 "4284","No","Yes",873.930546923689,29870.747365702 "4285","No","No",748.704835614302,48036.0791048472 "4286","No","No",146.818190779362,48280.709929901 "4287","No","No",1266.64098896732,41930.586270236 "4288","No","Yes",883.881831762394,14888.518114146 "4289","No","Yes",1353.981431586,17431.6053548792 "4290","No","Yes",1777.74467095913,24820.8562683475 "4291","No","No",695.493321681063,48899.3431818239 "4292","No","No",0,33313.3110724284 "4293","No","No",377.726631320199,49730.7045824799 "4294","No","No",975.737181991567,39453.2263082774 "4295","No","Yes",918.590687000593,14936.7081866305 "4296","No","No",1313.50037821727,31145.7083503014 "4297","No","No",1302.39985423502,15468.3447408757 "4298","No","No",1246.62613832251,41930.155003598 "4299","No","No",198.385707995449,37085.6037122098 "4300","No","No",395.607773854553,27750.8214956836 "4301","No","Yes",638.065584784846,17922.4034914657 "4302","No","No",677.20483918057,52080.523362498 "4303","No","No",681.575749997487,29980.3305443007 "4304","No","No",1114.94577466771,45832.9483249515 "4305","No","No",558.178484419266,12740.8646435052 "4306","No","No",531.477978521723,35314.071037428 "4307","No","Yes",1080.96999628813,23760.7588832121 "4308","No","No",150.770544592663,31216.7858646369 "4309","Yes","Yes",1665.70832014732,21024.2716484296 "4310","No","No",1086.19348901131,52761.4130388312 "4311","No","No",0,41435.4379394559 "4312","No","No",1253.92349841602,34304.7669082517 "4313","No","No",100.463116063705,24687.8530666445 "4314","No","No",961.1524668748,51179.4601199922 "4315","No","Yes",1055.86105389087,9045.24162581889 "4316","No","No",89.4101021957102,24086.6011429412 "4317","No","No",918.950347839629,47761.4027126413 "4318","No","No",995.387047631767,44217.6856384302 "4319","No","No",1774.23308862536,42955.8279672847 "4320","No","No",701.69143244907,35335.7826320459 "4321","No","No",1177.92084256329,30169.2958145926 "4322","No","No",1308.2672570288,43611.4615642246 "4323","No","No",1114.53687054082,35044.7298212792 "4324","No","Yes",815.548669141047,16908.139756724 "4325","No","Yes",1010.50678353427,6786.38808971369 "4326","No","No",752.985919181889,45523.4967931178 "4327","No","Yes",729.189718410075,18329.7208714106 "4328","No","No",1095.47177939067,53581.1567122445 "4329","No","No",355.17017607474,30440.8951928132 "4330","No","No",1308.98796693688,31777.2018815539 "4331","No","No",0,40257.795499868 "4332","No","No",464.064104923968,16670.1528109478 "4333","No","No",570.916398504619,46569.1677265188 "4334","No","Yes",1045.33881349941,29601.4039439579 "4335","No","No",0,39134.9319187105 "4336","No","No",642.256231412638,29223.9953446317 "4337","No","No",486.815972242664,25117.6438190184 "4338","No","No",1082.11982831446,43256.4005642526 "4339","No","Yes",1224.63687161053,25717.0706415941 "4340","No","No",953.147356270312,29328.0391608131 "4341","No","No",1323.17521403561,52019.3499661481 "4342","No","Yes",139.19286882554,24734.0829253905 "4343","No","No",856.881451045322,32449.3113343807 "4344","No","No",311.889288737823,46116.1315257271 "4345","No","No",0,49959.141007874 "4346","No","No",498.854154668701,47736.2367906901 "4347","No","Yes",465.871073366709,14519.4733831391 "4348","No","No",892.820269988203,45379.8442652294 "4349","No","Yes",456.240694517499,17657.6088569363 "4350","No","No",557.26171195281,45040.9444083377 "4351","No","No",0,28094.1570910795 "4352","No","No",138.620739346357,50249.4172431944 "4353","No","No",241.163150062669,36581.2591238761 "4354","No","No",763.177239332049,42481.4987501749 "4355","No","Yes",1195.81381121066,19906.7314933236 "4356","No","No",130.996930290863,54366.8027607212 "4357","No","No",1253.0413172963,32362.6525065495 "4358","No","No",1496.09804230128,44309.902897034 "4359","No","Yes",1071.95523702871,19813.996969574 "4360","No","Yes",724.904735454183,16643.1269450404 "4361","No","Yes",194.185012052313,20889.852002779 "4362","No","No",1441.74335861583,45037.1676788742 "4363","No","Yes",1678.38200097825,8154.23977389186 "4364","No","Yes",2128.43414823871,22664.219843924 "4365","No","Yes",1393.46442103117,15573.7931129306 "4366","No","Yes",1437.83036292863,23062.4948694903 "4367","No","No",1257.9581072609,38532.1921927497 "4368","No","Yes",1329.3983510722,15971.5732370007 "4369","No","No",605.12443216774,29769.9783500417 "4370","No","No",601.081665167516,45607.3468645804 "4371","No","No",1164.51340619208,29874.4887927038 "4372","Yes","No",2054.45252745952,37366.7650507786 "4373","No","No",701.632841263145,43340.9202996197 "4374","No","No",673.092439896694,27894.0939871045 "4375","No","Yes",1262.92591939434,16935.1931085721 "4376","No","No",357.996305460536,30217.0212871579 "4377","No","Yes",1052.59812294326,24418.2139473269 "4378","No","No",1234.51247251861,50293.4335358584 "4379","No","No",1153.80219423116,37552.6216193783 "4380","No","No",1375.29736012851,35810.9142097506 "4381","No","No",249.103685164101,51051.3357610077 "4382","No","No",874.031434043843,39664.9361264591 "4383","No","No",768.158723384486,23991.0412896025 "4384","No","Yes",1236.25642303914,16389.8638086909 "4385","No","Yes",641.220757059698,23265.6923595285 "4386","No","Yes",825.522881718494,14539.1620062194 "4387","No","No",931.041170135349,42225.3671429443 "4388","No","No",650.075529479081,32560.7610419904 "4389","No","Yes",0,17577.9963356867 "4390","No","No",682.604508896646,57553.9765752877 "4391","No","No",1207.10500154702,50010.8298274342 "4392","No","Yes",840.220967633549,18103.7355199788 "4393","No","No",894.627905765509,39027.6302767467 "4394","No","No",711.525816057206,35468.3821539389 "4395","No","No",1635.21756895271,47669.7419597268 "4396","No","No",740.869370680082,46541.2111680628 "4397","No","No",773.483075895744,38647.3706700462 "4398","No","No",1142.32631903636,45173.3745996018 "4399","No","No",894.168319992039,42212.4458263685 "4400","No","Yes",14.0338457182518,13846.8010395538 "4401","No","No",537.040332892497,21364.3104965004 "4402","No","No",1092.5243064854,19759.1226373765 "4403","No","No",541.071380843328,29807.405551667 "4404","No","No",1049.00411801587,34088.1697894671 "4405","No","No",463.932561210409,37842.0477815607 "4406","No","No",214.272690395661,56032.6475812564 "4407","No","Yes",997.762482254186,13799.5447379368 "4408","No","Yes",938.684221979389,18454.3990337024 "4409","Yes","No",1350.60326099354,21541.2987938108 "4410","No","Yes",935.757199246756,5386.17648259929 "4411","No","No",819.048549167453,61602.6366710843 "4412","No","Yes",1669.09103762141,16830.7529473416 "4413","No","No",395.851856906679,33708.5923827756 "4414","No","Yes",810.542406900765,17975.1571288115 "4415","No","Yes",62.2371283591804,20267.4999277937 "4416","No","No",1133.11258529704,23110.6536499869 "4417","No","No",748.487595522024,36453.6451213344 "4418","Yes","Yes",1337.23518702176,32761.0534040074 "4419","No","No",1138.43098430744,36133.6105343391 "4420","No","Yes",1247.45553179616,15382.6096545468 "4421","No","Yes",875.979710502071,17286.6944919904 "4422","No","No",980.763938624199,43650.5344586779 "4423","No","No",238.981506549414,30412.7020181739 "4424","No","No",185.010114509294,40874.8328514801 "4425","No","Yes",478.961863795831,19911.5102678277 "4426","No","No",145.476590146266,41196.4202020265 "4427","No","No",339.95904709248,36132.805687911 "4428","No","No",303.903742328566,43836.7047325122 "4429","No","No",536.214278066008,47956.5245563522 "4430","No","Yes",1219.58145404792,12434.04183884 "4431","Yes","Yes",1926.3715830091,17012.4381440591 "4432","No","Yes",460.202332018861,14782.4587719904 "4433","No","No",825.287865652256,46147.955752768 "4434","No","No",31.2565457414114,44970.7680127096 "4435","No","No",535.584814611588,51971.7056291761 "4436","No","No",667.711628636986,30803.4446563457 "4437","No","No",694.326759084331,42041.4565572933 "4438","No","No",81.422936426937,51044.407811267 "4439","No","No",1324.4929494963,28691.8366142527 "4440","No","Yes",1587.13295655322,25819.4853929207 "4441","No","No",775.022944702917,39137.0767283306 "4442","No","No",0,46542.9852774578 "4443","No","Yes",819.727712621639,10175.3099539293 "4444","No","No",1416.22439665098,31303.1633146522 "4445","No","No",1005.2938512555,34010.2782138331 "4446","No","Yes",1419.36036165965,20118.5581992659 "4447","No","No",230.006655926868,44232.1384762055 "4448","No","Yes",1559.45787021154,20707.3186080696 "4449","No","No",672.708232643736,47532.5876838394 "4450","No","Yes",457.235746879721,5296.71092118226 "4451","No","No",968.458967843151,45299.0008313587 "4452","No","No",257.546332188622,29967.2042826122 "4453","No","Yes",1130.54463982657,20862.9044853653 "4454","No","No",486.576050197581,27687.3411659989 "4455","No","No",207.303809187677,49999.4957354912 "4456","No","No",110.915120844136,58185.5598391222 "4457","No","No",678.485146409376,30196.0456896206 "4458","No","Yes",515.149996523628,10214.705259205 "4459","No","Yes",837.911885761804,20984.1790586289 "4460","No","No",709.617220538757,34624.8357471742 "4461","No","Yes",745.282471593171,17803.7573638302 "4462","No","Yes",1288.39370512832,22919.6377281931 "4463","No","Yes",819.742345092291,20792.8309579563 "4464","Yes","No",1708.65972028717,38203.5094749589 "4465","No","No",1061.61360190645,38250.7777458906 "4466","No","No",372.741249859074,35570.2117813337 "4467","No","No",883.867885324978,42866.3839541323 "4468","No","No",0,41864.2591327518 "4469","No","No",657.687617719088,26454.5857525237 "4470","No","No",221.023882200551,42087.0822309886 "4471","No","Yes",1009.89600417223,9804.66603916733 "4472","No","No",174.412944777163,40282.4875461437 "4473","No","No",358.848341230842,44486.906473652 "4474","No","No",421.759624929585,35522.6659777317 "4475","No","Yes",1295.85184404715,10987.265192511 "4476","No","No",1005.10095136541,36275.6487886561 "4477","No","No",268.961482796412,40733.4679825431 "4478","Yes","Yes",1807.66621807195,18166.3226526991 "4479","No","No",1237.86134424222,33816.1815718186 "4480","No","Yes",700.169039463254,28160.6422651881 "4481","No","Yes",1236.67843724152,16298.5681470607 "4482","No","No",354.702587096373,29893.039733018 "4483","No","No",657.021951179148,47044.3335267286 "4484","No","No",1444.92250041891,54599.1577636358 "4485","No","No",1456.41125420584,30332.9859888347 "4486","No","Yes",501.140260845364,19467.5376482681 "4487","No","Yes",1155.22217512644,18442.34092635 "4488","No","No",804.469753698074,46869.3201682876 "4489","No","Yes",1473.63371289165,17816.6208536902 "4490","No","No",1345.38059193616,30175.94166664 "4491","No","Yes",545.612477437577,13020.9591436908 "4492","No","No",1134.27984820202,37658.2309555963 "4493","No","No",212.36136845208,32283.405306208 "4494","No","No",424.735234854806,22327.4342029864 "4495","No","No",658.463644874415,39242.7554158439 "4496","No","No",1023.79588473631,42335.7371898711 "4497","No","No",815.566907409863,31752.0771532132 "4498","No","Yes",953.421739992227,14062.053538906 "4499","No","No",905.645634729108,35876.7956914194 "4500","No","No",623.09205398354,42035.4526196687 "4501","No","No",287.200151889446,45952.728923726 "4502","No","Yes",1310.79350272579,16742.9525237844 "4503","No","Yes",1509.66340166383,16777.5623438888 "4504","No","No",1616.10873432918,33046.1879353576 "4505","No","No",710.159309928127,32649.6198725826 "4506","No","No",1213.65867211341,45662.6466052607 "4507","No","No",1004.11682846699,52822.404383106 "4508","No","No",36.3584399548112,44603.4273332462 "4509","No","No",1349.19233180838,51189.1122680341 "4510","Yes","No",1854.6041538508,38406.3564635228 "4511","No","No",126.153204675651,33964.0506128594 "4512","No","Yes",987.154095590613,13002.4855508597 "4513","No","Yes",1127.99393381003,15186.8686920989 "4514","Yes","No",1436.31154943473,18810.8041351982 "4515","No","No",0,41564.7698338846 "4516","No","Yes",1068.86074173834,20804.3786766452 "4517","No","No",0,62128.6666318456 "4518","No","Yes",568.975552395383,17291.8146908178 "4519","No","No",1608.74546942757,41572.2736975715 "4520","No","No",885.004067297585,48753.5599562476 "4521","No","Yes",886.951017327419,21792.6097936256 "4522","No","No",1358.13247178913,49903.5970805788 "4523","No","No",215.75271922503,22254.5891732126 "4524","No","Yes",410.46674874912,25574.4383224847 "4525","No","No",1146.61402886155,40870.9013277309 "4526","No","Yes",1262.39329360308,24797.6075720524 "4527","No","No",778.474666113432,39360.1640871243 "4528","No","No",444.304074050634,43424.9349887183 "4529","No","No",826.953672491255,16124.6256836141 "4530","No","No",204.694595970694,42076.5761239639 "4531","No","No",819.530733510064,38456.6150377655 "4532","No","No",1386.29696434561,31739.513240888 "4533","No","No",698.90327627991,28682.9574197461 "4534","No","No",756.433468623078,33296.5671206744 "4535","No","No",739.901842518832,47349.5319726392 "4536","No","No",220.229117680588,37451.0176128561 "4537","No","Yes",458.967737070662,18444.2978455002 "4538","No","No",0,36584.7569962462 "4539","No","No",102.258372426939,23476.7453563298 "4540","No","No",215.068134966975,47815.5996963503 "4541","No","No",906.081359888139,45720.0130427207 "4542","No","No",735.927000954023,18373.4864963009 "4543","No","No",944.321716916994,34546.116805141 "4544","No","No",1071.00736936624,40758.0020422819 "4545","No","No",1345.45173685592,43322.1930190477 "4546","No","Yes",250.173010019935,17439.6292696405 "4547","No","No",265.729004541498,60182.6771885936 "4548","No","No",1006.05398774745,27002.0658104182 "4549","No","Yes",1670.12689461037,14746.8926097897 "4550","No","Yes",291.962364907345,7105.29202471072 "4551","No","No",381.52096933305,31750.7773240363 "4552","No","Yes",851.729729640048,14726.3760194068 "4553","No","No",1375.04922403625,42557.689089595 "4554","No","No",816.73372053828,40949.3644365051 "4555","No","No",819.018615016962,49111.3915717458 "4556","No","Yes",1026.15356049033,25393.7687970803 "4557","No","No",853.438145266577,58757.6813645568 "4558","No","Yes",1200.37661268053,10817.5619567491 "4559","No","No",1037.13480288192,43368.2233731399 "4560","No","No",0,28363.7136990121 "4561","No","No",357.138146216191,35623.4652668674 "4562","No","Yes",970.426089456089,20569.640036535 "4563","No","No",812.347981166699,33654.6774179645 "4564","No","No",91.94732281422,44337.4059033946 "4565","No","No",1396.03791633922,46378.7305083936 "4566","No","No",72.6500816609296,50786.979185169 "4567","No","No",1168.0925556287,27823.4542224725 "4568","No","Yes",1098.45404586514,16837.2103236566 "4569","Yes","No",1549.89467343683,47916.2948560542 "4570","No","No",1039.09837389666,26217.132054761 "4571","No","No",309.838214997499,54945.5816755763 "4572","No","No",1477.52861102329,36709.6684407159 "4573","No","No",79.5389496655106,34417.3757217671 "4574","No","No",1219.34788226544,34310.2919397433 "4575","No","No",812.588032381551,43980.1399685787 "4576","No","No",557.374968867559,35067.2662366586 "4577","No","No",1688.31455669806,32723.4516291513 "4578","No","No",1137.79115713306,21103.4296209784 "4579","No","No",856.282959899419,40394.0495771435 "4580","No","No",1126.4104826892,35125.6777238733 "4581","No","No",541.021814319389,29519.8801523274 "4582","No","No",682.879609670442,43142.0545225125 "4583","No","No",538.949887636749,35634.2028032149 "4584","No","Yes",1305.80969861959,28929.3847360892 "4585","No","No",735.018855874434,25305.2539541423 "4586","No","Yes",344.3089096317,14256.2417485038 "4587","No","No",1060.69581236718,36920.682410632 "4588","No","No",848.676390931552,38742.0597937341 "4589","No","Yes",1245.26750709863,16772.6193726086 "4590","Yes","No",1563.53519785347,51704.9199686192 "4591","Yes","Yes",1433.16763517475,18087.6863730016 "4592","No","Yes",1238.58950959484,10514.8286406744 "4593","No","No",625.615086363204,53655.2704755254 "4594","No","Yes",1681.57246482441,20059.6747908348 "4595","Yes","Yes",1681.48150579852,10155.3239877604 "4596","No","No",602.638147132055,70021.6484355306 "4597","No","No",681.213002165506,37287.2297831665 "4598","No","Yes",966.026981387918,27960.371891395 "4599","No","Yes",539.160036521217,17824.2607149352 "4600","No","No",921.304294606852,25350.4002048286 "4601","No","Yes",1325.34692274166,21487.6237029563 "4602","No","No",0,46714.558115548 "4603","No","Yes",900.274608175963,22986.6136751281 "4604","No","No",695.370830129287,31779.3966695702 "4605","No","Yes",1270.99640350538,15069.0487071799 "4606","No","No",1388.56113942232,54935.9412044927 "4607","No","No",635.741695957086,21297.1198992919 "4608","No","No",484.515768741921,39775.2498897027 "4609","No","No",1185.09627093982,42969.7180869225 "4610","No","No",656.980282929656,32225.2952878255 "4611","No","No",1084.92565413113,36908.6884305228 "4612","No","No",1309.55944948148,36851.2691176579 "4613","No","No",847.530654151052,40982.4197962145 "4614","No","No",0,35600.1493662398 "4615","No","No",78.1680828433628,56254.1753065052 "4616","No","Yes",251.97174455438,11757.9632656835 "4617","No","No",871.231398400026,31770.6239820177 "4618","No","Yes",918.758791227891,14304.5973617949 "4619","No","No",0,31774.6475362394 "4620","No","No",450.057359138237,36121.2373912058 "4621","No","Yes",1079.37288016418,14223.2668124756 "4622","No","Yes",320.230481928856,14185.2746317243 "4623","No","No",799.370027923619,34293.7275086072 "4624","No","No",1206.59215458569,25646.0822038978 "4625","No","No",0,39830.0916182418 "4626","No","No",603.661670476063,44663.7361170603 "4627","No","No",672.062804619824,33850.9788397769 "4628","No","Yes",959.222353292648,16082.4476346076 "4629","No","No",670.471905106349,24265.5868972486 "4630","No","No",587.259459765496,33732.2162304135 "4631","No","Yes",602.307676282023,11019.5869460741 "4632","No","Yes",937.606059288741,19962.1980442127 "4633","No","No",1502.75774867973,53129.7830394396 "4634","No","No",1063.15567471295,34642.0647569343 "4635","No","No",511.613751416205,36796.7947847658 "4636","No","No",926.969872799966,61937.5696692316 "4637","No","Yes",1004.36463665711,13422.3794608111 "4638","No","No",367.668095917734,50025.944580281 "4639","No","Yes",256.707070719681,22166.7943931341 "4640","No","Yes",1777.68565079089,21573.9000171012 "4641","No","No",717.742833830408,49347.021805396 "4642","No","Yes",532.382135295296,17704.8143787361 "4643","No","Yes",1346.67950656337,16104.8949657536 "4644","No","No",334.466419532525,40156.2444927105 "4645","No","No",0,36179.8268590675 "4646","No","Yes",774.498460230419,10333.8005475059 "4647","No","No",779.259990627242,38387.721274812 "4648","No","No",881.939111911127,62222.9807017551 "4649","No","No",1563.23020536396,31126.3267807912 "4650","No","No",991.060968479028,37597.3230643757 "4651","No","No",430.651094177701,38372.021246678 "4652","No","No",806.377684881681,40454.0678792373 "4653","No","No",438.766636101515,32762.1862301046 "4654","No","Yes",1457.85884469899,17365.5667158128 "4655","No","No",366.204888151025,30631.9631128473 "4656","No","No",707.646931639431,35268.0174326897 "4657","No","Yes",244.382157810974,19773.0724565957 "4658","No","No",903.615716442037,20444.4241231633 "4659","No","Yes",1031.49888597034,24636.3002154852 "4660","No","No",914.378279892509,40659.1259603737 "4661","No","No",1047.25164984966,39222.0588862653 "4662","No","No",884.494356569448,30520.3532717113 "4663","No","No",434.778826535929,39099.0918533728 "4664","No","Yes",36.8440382391803,16942.3053373994 "4665","No","No",189.362232508863,36706.8119673594 "4666","No","No",366.321281302656,40904.7636333436 "4667","No","Yes",1092.4645722139,14659.7180687514 "4668","No","No",732.734288956684,39024.1492327605 "4669","No","No",594.440525597425,28723.3418554818 "4670","No","Yes",604.592700002911,14896.5918697721 "4671","No","No",1732.84360466407,30322.8693052295 "4672","No","No",577.433332439527,43585.0441430742 "4673","No","No",0,38626.4229206895 "4674","No","No",54.675220865283,32279.5684271435 "4675","No","No",75.9517639373938,60826.9940271173 "4676","No","No",550.532712518723,27223.85786997 "4677","No","Yes",1343.8744841052,17280.4386325809 "4678","No","No",1350.42884688991,26450.2917378784 "4679","No","No",866.337987458604,35141.4276434822 "4680","No","No",6.0718923507153,46930.5751609952 "4681","No","No",501.345178098676,45368.2311760233 "4682","Yes","No",1488.46992484111,36457.2232810267 "4683","No","No",1462.78673740114,60296.3983414094 "4684","Yes","Yes",1567.67928171741,19172.6794504669 "4685","No","No",771.789346888835,42139.0702685072 "4686","No","Yes",1534.96839986598,17084.5811173852 "4687","No","Yes",801.0497163256,14679.8334438848 "4688","No","No",1724.36913158985,32610.8103326017 "4689","No","No",0,50258.5389376857 "4690","No","Yes",1277.37438672437,19675.1778370989 "4691","No","No",786.987434157094,33289.8508246553 "4692","No","Yes",231.770725857912,13702.4709168115 "4693","No","No",173.959460514891,53965.0512087132 "4694","No","No",1184.92742226796,40958.6439892978 "4695","No","No",1308.20671058333,32215.5333744215 "4696","No","No",203.300081077181,53055.6944283309 "4697","No","No",1092.09883401769,32122.0511847396 "4698","Yes","Yes",1902.96956487606,12464.3030428074 "4699","No","Yes",1004.43827309183,16456.2772500216 "4700","No","No",366.701551503356,60456.1177682285 "4701","No","Yes",1148.73388988892,23812.6269938105 "4702","No","No",0,33272.1521467807 "4703","No","No",476.235271127698,37627.3500232473 "4704","No","Yes",477.782945771117,22753.5954724521 "4705","No","Yes",970.832756037516,19096.8894116814 "4706","No","No",1268.59397286501,42012.8965861893 "4707","No","No",657.531112911779,40807.2813020757 "4708","No","No",0,47447.7965740125 "4709","Yes","No",1661.75264500024,21871.4629698414 "4710","Yes","No",2075.18875447378,40882.4942205655 "4711","No","No",915.771563906364,24243.1801621741 "4712","No","Yes",1048.27476281908,20659.1448600909 "4713","No","No",987.566250569473,49542.4042328822 "4714","No","No",535.135342889862,44448.6070341664 "4715","No","No",1057.93260126087,26628.440742067 "4716","No","No",1023.14792054594,43698.8166919161 "4717","No","No",749.038516136778,53711.4604878896 "4718","No","Yes",1143.32901606626,17367.9255273604 "4719","No","Yes",1269.22650557239,18552.4241402812 "4720","No","No",0,35282.5672911043 "4721","No","Yes",723.371847127379,17623.5856688343 "4722","No","No",1000.37678190467,40272.3020222245 "4723","No","Yes",1069.69305831626,10722.2494639199 "4724","No","Yes",1391.33500191617,18309.4209980289 "4725","No","No",1075.82417073247,22982.2266330705 "4726","No","No",548.645307903485,38094.4261696886 "4727","Yes","Yes",2109.99939482269,17774.5252912207 "4728","No","Yes",649.360116506354,10524.3261012953 "4729","No","No",863.138440981706,58119.716604212 "4730","No","No",861.644850689235,39272.0090424491 "4731","No","No",567.48919433319,22304.5739463089 "4732","No","Yes",642.536489791415,14763.3771815958 "4733","No","Yes",1045.6574660296,23335.0463297184 "4734","No","No",738.144128251302,43693.0663883118 "4735","No","Yes",0,11537.8932286442 "4736","No","Yes",1137.95416230334,22110.9557563921 "4737","No","No",462.674628272181,50229.5858853097 "4738","No","No",1006.20156056956,42689.2736872236 "4739","No","No",584.193242183484,36676.7891499965 "4740","No","No",1314.765204662,30067.4106473223 "4741","No","No",0,30236.4563342521 "4742","No","Yes",1005.70700620661,10887.4998722589 "4743","No","No",113.571264398777,32803.8326475959 "4744","No","No",967.739852296794,26210.7921411168 "4745","No","No",0,45486.4586774752 "4746","No","No",651.325134914705,51583.2502025242 "4747","No","No",1035.31564464554,53066.1048806134 "4748","No","Yes",58.9719451002576,20914.9310231373 "4749","No","No",0,60480.5779714553 "4750","No","Yes",1190.02172815921,16240.7675716638 "4751","No","No",37.9925363825407,48739.835381004 "4752","No","No",652.266673982479,48639.4414824399 "4753","No","No",1529.68785747477,40977.413884081 "4754","No","No",626.928556799094,42139.1844588824 "4755","No","Yes",756.995609419385,26674.3907819419 "4756","No","Yes",496.796907366618,21058.9615915699 "4757","No","Yes",396.348073964702,19541.0460996816 "4758","No","No",1590.64164138129,36242.4969956276 "4759","No","Yes",1331.98056755563,20672.3395409647 "4760","No","No",36.0879903528757,37015.5573565846 "4761","No","No",338.476753874062,32666.5125332143 "4762","No","Yes",992.348320272267,22324.995595221 "4763","No","Yes",1123.34001168521,20785.6402268094 "4764","No","No",743.623145225239,37333.5741226045 "4765","No","No",1111.69151735154,43659.0705877284 "4766","No","No",969.656018252646,40142.1341458025 "4767","No","No",974.507818365927,25346.7782137892 "4768","No","Yes",285.649618597346,26874.7545848903 "4769","No","No",596.620026917752,30764.6620547444 "4770","No","No",1417.91211322906,38015.1663619642 "4771","No","Yes",1055.01732721534,24188.0497493234 "4772","No","No",1001.22197077828,44801.4010017881 "4773","No","No",771.441004544643,44810.299357671 "4774","No","Yes",672.568078513351,22788.3673814709 "4775","Yes","No",1511.61095196469,53506.9449260287 "4776","No","No",601.689646743678,31522.7848464765 "4777","No","Yes",1316.65207634709,12165.7289983026 "4778","No","No",122.094308759452,46609.3974801976 "4779","No","No",840.015018103735,51350.6376713073 "4780","No","Yes",1765.89393783248,18053.4997231119 "4781","No","Yes",1752.73614962439,15596.8914294528 "4782","No","No",1147.97807477466,40515.690457161 "4783","No","No",1839.32220772717,38104.0911062601 "4784","No","No",1208.39512763795,32430.182774582 "4785","No","No",952.127530094181,49137.3956883078 "4786","No","No",1251.1510345903,45205.2458041651 "4787","No","No",215.541422559435,55278.4326522823 "4788","No","No",1294.4571219953,40768.4510534547 "4789","No","No",463.085599132038,46760.4958851049 "4790","No","No",815.244183095315,26231.4654068668 "4791","No","No",854.511278704168,34463.7651086686 "4792","No","No",1062.05871081173,35781.125486661 "4793","No","No",1035.16023564515,67450.6880740411 "4794","No","No",880.39651795853,60206.0865523297 "4795","No","No",847.432632019156,37303.5743998862 "4796","No","No",529.189078465686,50195.1130066062 "4797","No","No",1163.01689294047,38902.7636192958 "4798","No","No",570.024684333736,40987.062331077 "4799","No","No",0,29254.8682343059 "4800","No","Yes",673.473688920932,20926.4985495467 "4801","No","No",1728.335976312,33488.3043629755 "4802","No","No",1285.82859393833,43507.4660616916 "4803","No","Yes",1511.89419713912,22794.0710515534 "4804","No","No",676.684640060302,24989.8336879992 "4805","No","No",1010.51628568877,36298.9949767778 "4806","No","Yes",613.156883050935,17665.4777002854 "4807","No","Yes",1134.29609388583,18991.8212122874 "4808","No","No",295.843230952289,30602.2668901059 "4809","No","No",206.542522622756,14909.3670998149 "4810","No","Yes",1194.88454948711,18943.404107102 "4811","No","No",1551.09273901932,44596.7459450461 "4812","No","No",1210.17603584528,29460.1915964576 "4813","No","No",407.860744514451,47826.2137672175 "4814","No","No",1561.93370103165,56614.5215842107 "4815","No","No",602.545629733876,42798.0787516512 "4816","No","Yes",640.364464045535,14938.7665747018 "4817","No","No",927.66918169688,39934.14447599 "4818","No","Yes",1436.67638543656,14418.1660192643 "4819","No","No",552.551318491268,48267.6733934583 "4820","No","No",839.221856390201,43213.6941068639 "4821","No","Yes",1248.95418862755,14024.9049826448 "4822","No","No",929.925922127169,34535.4552697912 "4823","No","No",1198.83280693131,40275.0895006703 "4824","No","No",479.546200741212,24805.9234039658 "4825","No","No",1523.37267411625,44603.3263715189 "4826","No","No",990.806914855646,44966.2067311637 "4827","No","No",890.565507661517,14327.9907812727 "4828","No","No",678.466828551987,40803.5749599981 "4829","No","No",1462.22317250061,29574.2345717155 "4830","No","No",0,48781.4789584836 "4831","No","Yes",490.321797387267,24403.076672713 "4832","No","Yes",2216.32975271824,24737.0817608225 "4833","No","No",1336.36324569324,22245.5125152231 "4834","No","No",355.060596425255,36888.834322938 "4835","No","Yes",1094.52167851979,15617.5214126772 "4836","No","Yes",1969.40774822746,23674.376304138 "4837","No","No",1274.15968500757,41943.6775238178 "4838","No","No",224.170029650401,33542.3081803635 "4839","No","Yes",781.452305613836,18301.5837988415 "4840","No","No",1360.95293058479,46419.8169938933 "4841","No","No",210.797282960451,34468.8991617379 "4842","No","No",671.732605646625,26431.2725981968 "4843","No","No",275.063482035166,28266.1719807673 "4844","No","No",306.18951612478,30587.0067789107 "4845","No","No",293.614966998029,35945.6602591222 "4846","No","No",394.412944764813,52725.1599391522 "4847","No","No",1002.03064144933,49319.3386450314 "4848","No","No",357.517194944239,29711.3596849902 "4849","No","No",959.063053220935,55089.9902579629 "4850","No","No",734.335829432546,49128.5377547577 "4851","No","No",325.331214705521,32961.6570345964 "4852","No","No",910.482750696698,47298.7206352739 "4853","No","No",496.773960094507,38316.1354372489 "4854","No","No",416.632531990628,53256.279631146 "4855","No","Yes",1525.17230577148,21427.0936211979 "4856","No","No",124.754171373223,45763.7921971983 "4857","No","No",0,52069.2946661817 "4858","No","No",854.913441784921,39190.2956730676 "4859","No","No",796.173999850849,27278.3968655676 "4860","No","No",1044.86316119444,41726.2336321003 "4861","No","No",1690.66807668525,55412.7594728702 "4862","No","No",935.712944122396,34067.0542216434 "4863","No","No",306.459195932147,36812.6260466299 "4864","No","No",698.440564304252,21903.0380990784 "4865","No","No",973.990820697017,45941.0220132698 "4866","No","No",455.01778226024,45611.4764507006 "4867","No","Yes",1133.69962699868,26119.3046838437 "4868","No","No",598.193073483425,42734.4396915184 "4869","No","No",615.477640984647,45792.8999573859 "4870","No","No",1270.13090566539,47817.556620848 "4871","No","No",956.92261305132,50834.4083382596 "4872","No","Yes",1095.07681187651,18087.7198650968 "4873","No","No",143.56302092038,54411.2621205176 "4874","No","Yes",604.055091635501,21187.7105609043 "4875","No","No",0,38954.1074974879 "4876","No","No",0,37825.2214149259 "4877","No","Yes",1179.99452466386,18954.3937931283 "4878","No","No",337.651368245182,36787.019606017 "4879","No","No",855.596783860998,40412.7256889939 "4880","No","No",437.577738904493,55720.9729622054 "4881","No","Yes",596.806527835537,17397.3452404381 "4882","No","Yes",1725.38695367817,19915.9294906171 "4883","No","No",619.540641629038,39049.5004190243 "4884","No","No",627.987739442838,56266.1534015339 "4885","No","No",186.523520052956,36717.5145751435 "4886","No","Yes",1093.02752981373,12179.0381928815 "4887","No","No",684.270463762744,42437.914761452 "4888","No","No",963.092668712372,33110.3041089651 "4889","No","No",190.503430147143,53690.5912303308 "4890","No","No",68.3059319848821,52323.9021376562 "4891","No","No",1336.96983981619,33148.7686484431 "4892","No","No",372.42585488596,53695.2963822028 "4893","No","No",1095.02824134231,36282.4745747899 "4894","No","No",813.133978036295,59309.4766826029 "4895","No","No",31.7041228690579,42191.6591895568 "4896","No","No",655.832041740591,37267.5828058215 "4897","No","No",1340.24042928874,37464.3187635305 "4898","No","No",881.256511405969,41728.8460965129 "4899","No","No",684.715044622936,27951.1972343005 "4900","No","No",1158.37980436503,61054.7639322688 "4901","No","No",945.268218836474,38738.535388431 "4902","No","Yes",465.583628699224,15625.6335294608 "4903","No","No",999.63485520902,51385.6997288261 "4904","No","No",1143.68079469267,48044.8970095031 "4905","No","Yes",669.380788171137,16805.1937165814 "4906","No","Yes",838.970942885318,21407.4524046558 "4907","No","Yes",1384.73759704675,23083.6670866922 "4908","No","Yes",1401.0731910563,21811.2682494468 "4909","No","No",1591.1935826083,37501.4868906071 "4910","No","No",54.0505937218859,46662.1128147156 "4911","No","No",862.91971023389,36774.2159052201 "4912","No","No",712.207720692241,29546.4898791291 "4913","No","No",908.926548419013,40757.094123221 "4914","No","No",779.076437925571,31710.9740519862 "4915","No","Yes",99.3825624494822,16725.2450704367 "4916","No","No",1081.00133671618,32344.5785843183 "4917","No","No",1124.24913483266,27521.1515772183 "4918","No","No",923.406566904925,33122.2200360473 "4919","No","No",1096.21846957418,30653.2627505315 "4920","No","No",999.667805904389,51420.9767106412 "4921","No","No",0,16601.6352758397 "4922","No","Yes",517.821959362896,12673.9060745038 "4923","No","No",1461.88746288921,38559.0734798993 "4924","No","No",699.053865774975,41722.8060676529 "4925","No","Yes",1241.06189825831,4664.56504744167 "4926","No","No",1380.74980362947,52664.8765861706 "4927","No","No",561.964606426332,40555.4075956276 "4928","No","No",1122.74695829233,47140.8290039082 "4929","No","Yes",736.244056555543,13756.5455214776 "4930","No","No",643.481154792509,45925.8866630799 "4931","No","No",1141.15793778151,44333.2106253742 "4932","No","Yes",1273.89113671131,20104.4301645593 "4933","No","Yes",1306.0465368104,20776.3886514723 "4934","No","Yes",840.988909202537,15406.2074109607 "4935","No","No",289.245438541484,46550.5255056293 "4936","No","No",758.134285088564,33220.5754915223 "4937","No","No",930.716938556975,46501.2757116981 "4938","Yes","Yes",2177.15086891132,17659.7478222343 "4939","No","No",0,24892.9156877399 "4940","No","Yes",565.830058840306,21042.2277169228 "4941","No","No",1076.12658440012,23632.5203007461 "4942","No","Yes",1031.86992982705,18668.4835488198 "4943","No","Yes",768.403741780636,15417.8415373175 "4944","No","Yes",690.421049211989,19273.7323863817 "4945","No","No",469.844241251744,51308.3185057706 "4946","No","No",617.860025366679,50177.7733818704 "4947","No","Yes",1779.04969869116,15689.7766299802 "4948","No","No",0,47669.7040770385 "4949","Yes","No",1928.28028339196,35492.1282298837 "4950","No","No",1123.7192596589,56217.6848959766 "4951","No","No",794.646108436353,41033.5877136228 "4952","No","Yes",1428.0668825016,19818.2916600493 "4953","Yes","No",1028.76720660767,40346.8332744194 "4954","No","No",1006.20297747562,50501.7615442059 "4955","No","No",691.751713492646,45420.9691166199 "4956","No","No",524.83815013125,41268.4236470728 "4957","No","No",493.914160754547,37409.1839297761 "4958","No","No",1520.98047817005,37510.539355771 "4959","No","No",665.039756552143,47062.2530853035 "4960","No","Yes",1520.44210105793,18462.4306583934 "4961","No","No",1094.78047257691,34190.8765220756 "4962","No","No",735.091040828818,44933.3231505618 "4963","No","No",681.69357639072,33327.1130348719 "4964","No","No",376.034543992985,50748.2717350015 "4965","Yes","No",2037.94335373876,43016.0721799483 "4966","No","Yes",1630.19958945524,14232.66153338 "4967","No","Yes",0,21881.7059101601 "4968","No","No",184.427531874368,36731.6269503081 "4969","No","No",349.660665623366,39391.3223138929 "4970","No","No",673.555270265584,49169.7285398627 "4971","No","No",82.7245249090897,42048.4447973563 "4972","No","No",1247.12060523244,50539.9074463094 "4973","No","Yes",640.639543022389,29236.6301917974 "4974","No","No",273.446972354708,52492.7498232478 "4975","No","No",0,35377.140726393 "4976","No","No",803.831186814095,33417.7724119945 "4977","No","No",1248.37574903962,37469.8646245304 "4978","No","No",0,40348.314179772 "4979","No","Yes",1307.20497291736,19381.5413197222 "4980","No","No",0,45793.3930350652 "4981","No","No",1186.09870513382,50353.9254295505 "4982","No","Yes",1037.57301799006,18769.5790241645 "4983","Yes","Yes",1878.00114593831,17473.1839905825 "4984","No","No",736.234836930656,36313.6335527216 "4985","No","No",260.16217537031,33551.7152965123 "4986","No","Yes",1103.68178180144,14225.7213396247 "4987","No","Yes",886.059316803902,10378.6422946741 "4988","No","No",221.163782753085,43072.8942477535 "4989","No","No",1098.05775086164,29402.8731375652 "4990","No","No",0,38686.6752901228 "4991","No","No",826.949810434257,46946.0524494613 "4992","No","No",569.96772151171,38982.0174276273 "4993","No","No",1316.05741075183,45308.5638370534 "4994","No","No",86.7255186935218,51257.5834623667 "4995","No","No",1458.83532494993,24850.584777006 "4996","No","No",1243.45134821097,41184.8989068281 "4997","No","No",790.755760017408,41909.1076701414 "4998","No","No",1997.172809798,50273.6010347617 "4999","No","No",960.912667754959,29304.4577217283 "5000","No","No",646.856743672621,28836.7571332658 "5001","No","Yes",287.64948929053,15441.3667468103 "5002","No","No",630.665336901894,56266.7584991141 "5003","No","No",610.500866970475,28664.0426596326 "5004","No","No",1224.2294141262,34490.2250037052 "5005","No","No",326.873676115074,48756.0275802893 "5006","No","Yes",325.282819884072,15644.241969999 "5007","No","Yes",623.757859297093,19191.9669165633 "5008","No","No",1394.47677556729,44092.5486778967 "5009","No","No",929.085467738706,35571.7766510459 "5010","No","No",887.743410952946,43478.8851944059 "5011","No","No",0,26598.6432244359 "5012","No","Yes",127.222763146235,9801.50016731735 "5013","No","No",986.358895012314,41688.0643432576 "5014","No","Yes",1430.32550175549,20846.9633160869 "5015","Yes","No",1026.35885461087,56182.1299303767 "5016","No","No",556.017498447854,33705.0786503377 "5017","No","No",1018.43623649899,53962.2776889911 "5018","No","Yes",1083.71139106704,17040.5193960842 "5019","No","No",1602.8069430866,34700.2659635459 "5020","No","No",921.347854114992,47610.9551969613 "5021","No","Yes",769.449761812267,21717.9437219793 "5022","No","Yes",289.834142708942,13914.6037195669 "5023","No","No",955.339164891699,46310.1075238865 "5024","No","No",387.786699789214,38745.3611515006 "5025","No","Yes",1340.96638891561,18725.9542084895 "5026","No","No",1252.89403929371,35587.7235974753 "5027","No","No",435.393159422012,32907.3324671792 "5028","No","No",491.048506081094,37219.5210759241 "5029","No","No",1112.50930363905,44298.3856437862 "5030","No","No",828.98020983988,55696.8036988707 "5031","No","No",568.352003557277,38963.9592439543 "5032","No","Yes",672.410410996218,16508.4250338839 "5033","No","No",931.784107242425,37280.4101469294 "5034","No","Yes",982.773097327345,24145.529432349 "5035","No","Yes",686.528758338996,25779.7833400234 "5036","No","No",1069.52691083267,34694.0007489652 "5037","No","No",863.954854648355,17159.1633825291 "5038","No","Yes",976.451484674357,10541.5702251666 "5039","Yes","No",1586.50219904833,48925.9333773086 "5040","No","No",544.126248458484,49900.5840191049 "5041","No","No",198.929141819723,50463.775492981 "5042","No","No",1026.19409513964,35685.4837341184 "5043","No","No",1317.5648641479,40731.7639670574 "5044","No","No",0,33322.4823586788 "5045","No","No",358.613776928252,47688.8047213017 "5046","No","Yes",1511.37287983489,14982.5985069438 "5047","No","No",359.916678749368,52248.1180712292 "5048","No","Yes",529.343106295732,17245.8006101566 "5049","No","Yes",888.564819034569,21820.217178924 "5050","Yes","No",1954.33329923565,35067.5349242276 "5051","No","No",131.747075963338,36947.7786180191 "5052","No","No",518.899020411541,46192.5543655143 "5053","No","Yes",1593.32749210594,11570.7286227592 "5054","Yes","Yes",1473.03456108025,18108.9616707213 "5055","No","No",1527.92479896565,44640.7447447419 "5056","No","No",1349.90847931826,48103.0307778647 "5057","No","No",371.881863400765,46682.5469471478 "5058","No","No",758.021077838799,55278.5919447949 "5059","No","No",1306.83203413692,57561.4112609049 "5060","No","No",605.847239898752,58892.9054842696 "5061","No","No",1085.24381139608,21805.7923070268 "5062","No","Yes",1582.23460960239,20214.6895370087 "5063","No","No",1078.48346006262,40944.2697839083 "5064","No","No",711.663817704793,35741.2021602845 "5065","No","No",1204.45918317075,39418.7070865023 "5066","No","Yes",885.209895707751,18693.7271194525 "5067","No","No",1795.88371131615,25878.51931005 "5068","No","No",230.916226613247,36139.4105825641 "5069","No","Yes",1038.55559796008,17055.7950391374 "5070","No","No",731.477128185087,18843.2713163752 "5071","No","No",1734.22804374841,37621.6331723075 "5072","No","No",640.520349799475,30327.6077411327 "5073","No","No",218.11485408738,38766.1076269185 "5074","No","No",912.390423465777,26857.1718991427 "5075","No","No",726.04214847851,42272.4378377617 "5076","No","No",408.619017832787,35622.5983889609 "5077","No","No",309.740932405142,33333.5647205627 "5078","No","No",1392.6193716631,54027.1994679767 "5079","No","Yes",587.044939922979,15939.8195167005 "5080","No","No",898.272656314256,48233.875497513 "5081","No","No",325.841005644733,37392.681507636 "5082","No","No",896.027135886118,30452.0368389113 "5083","No","No",803.764577734824,48013.6101491714 "5084","No","No",509.195633409241,46368.3940729585 "5085","No","Yes",1031.01773195343,16568.6330047446 "5086","No","No",782.413394401973,34830.6262855281 "5087","No","No",1168.37748585253,42388.1210151284 "5088","No","No",561.623001826995,36266.8058793083 "5089","No","No",850.518457429395,35683.8322872263 "5090","No","No",752.510218476464,18960.365575285 "5091","No","No",245.505961457986,31307.2436442818 "5092","Yes","No",1733.82467870178,26330.5117293113 "5093","No","No",590.666032001301,59574.2177200191 "5094","No","Yes",711.582822595621,17780.7598281387 "5095","No","Yes",831.845343849951,19797.3565884764 "5096","No","No",1344.71128149314,26215.3918353377 "5097","No","No",224.691145051763,55040.6127338996 "5098","No","No",361.742665529608,54071.3405585766 "5099","No","No",1322.81096388371,48016.6173357397 "5100","No","No",1043.37439662006,28079.2626836385 "5101","No","No",1475.51848523651,48653.6837529258 "5102","No","No",812.083886904557,41821.2997786732 "5103","No","Yes",287.792362307828,13060.0085705572 "5104","No","No",775.309789469854,38721.2458944943 "5105","No","No",344.624077138957,43246.5779895621 "5106","No","Yes",372.430810388496,17243.0493024185 "5107","No","Yes",2088.52910874916,18078.3291678441 "5108","No","No",946.398166907214,30770.0667301801 "5109","No","No",675.376726291362,36921.5759561219 "5110","No","No",1012.76845381661,36406.2410883707 "5111","No","Yes",1011.93720941388,18509.2971336598 "5112","No","No",452.372650854573,59429.1231408102 "5113","No","No",1092.49125891644,30654.685256551 "5114","No","No",71.5776897613994,61588.2545022497 "5115","No","No",1319.04171817484,57768.899984811 "5116","No","No",266.277758688327,41204.2949910119 "5117","No","No",370.963648959728,25321.3528225484 "5118","No","No",848.724426358956,41585.9525525882 "5119","No","No",507.396131594456,35353.4055306309 "5120","No","Yes",267.32782909653,19698.7138804734 "5121","No","No",420.899331867238,39764.7024313117 "5122","No","No",129.596448519056,52169.2315710792 "5123","No","No",327.240437287516,40061.6245140304 "5124","No","No",678.07110557078,63791.8242046779 "5125","No","Yes",199.127092682206,19913.602502446 "5126","No","No",1215.6982445086,33598.9707553906 "5127","No","No",460.681505823092,37129.2708182323 "5128","No","Yes",1300.72043313613,9266.52973132816 "5129","No","No",534.568707980078,37281.0402106883 "5130","No","No",1308.52917152034,57190.8748728432 "5131","No","No",507.065032012892,42753.1919155811 "5132","No","No",197.327265397348,24562.119655863 "5133","No","Yes",819.834292040018,16412.9970215885 "5134","No","No",0,57003.5937659082 "5135","No","No",1489.78033181431,30296.6104370113 "5136","No","No",581.520818602129,53100.5724783833 "5137","No","Yes",286.291564637705,19553.6356059805 "5138","No","No",371.865220141344,45949.9142067639 "5139","No","Yes",992.780221091888,16585.3242820471 "5140","No","Yes",758.13852355797,23758.5776345545 "5141","No","No",1174.19490858526,35533.4845189991 "5142","No","Yes",1196.09826443678,23851.2213915256 "5143","No","No",613.231402434956,34664.5713252985 "5144","No","No",968.972340284544,33763.1902797405 "5145","No","Yes",1151.29871640683,14384.7670811016 "5146","No","No",848.702739852829,35192.8388667608 "5147","No","Yes",989.090770148173,20262.0219405694 "5148","No","No",92.7406629973356,40722.5906489062 "5149","No","No",1654.93417536157,33179.7839229244 "5150","No","No",212.497928709852,53619.4757063793 "5151","No","No",73.8932348303483,44308.9054028973 "5152","No","No",692.15523399331,37592.2608516004 "5153","No","No",957.583962212343,40315.7728375368 "5154","No","No",69.023877541276,41566.5820708201 "5155","No","No",1394.12544339822,42921.017077944 "5156","No","No",1317.86646809989,36610.8861107082 "5157","No","No",602.096395581271,53553.7224709536 "5158","No","No",430.11822118801,41105.2876346529 "5159","No","No",211.983028197665,33448.2447835816 "5160","No","No",544.143145637753,33861.5539040239 "5161","No","Yes",943.843064280149,16701.7830932761 "5162","Yes","No",1412.19244842734,37283.0081014143 "5163","No","No",1416.44476989919,33099.4968843458 "5164","No","No",193.283164669805,37376.6497130654 "5165","No","No",857.23644841428,67124.0570892684 "5166","No","No",1132.07848219228,29715.3049436 "5167","No","No",1489.3570273597,37758.4128863958 "5168","No","No",1527.35932473709,33923.5287652524 "5169","No","Yes",1427.04938367718,18268.5268315544 "5170","No","No",964.863037287274,43744.9833544683 "5171","No","No",326.15092990097,32919.9710526922 "5172","No","No",866.299668540652,65931.951109459 "5173","No","No",626.160154224477,34007.9083467236 "5174","No","No",836.192864603416,43275.1452255696 "5175","No","No",826.558020541498,44371.747340566 "5176","No","No",102.122522558306,33300.1875216945 "5177","No","No",1609.29703093561,52752.9684251831 "5178","No","Yes",140.455621890314,11179.4978592832 "5179","No","No",1147.98069460388,20766.3950725174 "5180","No","No",855.292565736026,35749.0327861947 "5181","No","No",1682.20185616143,36366.9912912394 "5182","No","No",689.820773571356,30304.7803009091 "5183","No","No",1706.04630524722,32900.7114384092 "5184","No","No",479.521909132235,43743.6223126641 "5185","No","Yes",765.363356845999,11976.408494525 "5186","No","No",894.329102865568,45250.7303099136 "5187","No","No",993.647092771748,26768.9566762714 "5188","No","Yes",378.49251967355,18659.7721270352 "5189","No","Yes",576.065007536312,13536.6090365199 "5190","Yes","Yes",2113.62976138136,21100.7217870678 "5191","No","No",542.6962061198,40996.2123286467 "5192","No","Yes",493.629546126545,20500.2126317106 "5193","No","No",0,29322.6313944581 "5194","No","No",1185.5812526407,47782.4971306183 "5195","No","Yes",1719.87111940058,22431.8580010025 "5196","No","No",495.750069071721,44361.3911905098 "5197","No","No",533.894154434264,33785.7461367448 "5198","No","No",150.142705477658,38610.3773141685 "5199","No","Yes",1298.90149315481,14975.264926979 "5200","No","No",957.238959913911,57698.4082232021 "5201","No","No",836.933291572557,51031.9398320695 "5202","No","Yes",1400.70282406811,23083.2601589174 "5203","No","No",857.329141983597,25742.1737665286 "5204","No","No",876.765555277728,49291.1665644759 "5205","No","No",979.316714853783,27534.9121409756 "5206","No","Yes",491.704320814421,8352.20898846706 "5207","No","No",1621.7116428388,37970.4740221371 "5208","No","No",643.61550941031,44251.0158829684 "5209","No","Yes",343.798638052777,19971.7762095045 "5210","Yes","No",1711.16909322993,18579.1024704064 "5211","No","No",1170.02740630312,33332.6257830801 "5212","No","Yes",638.204399721592,14641.383733897 "5213","No","Yes",1457.83941086875,18496.9320583648 "5214","No","No",383.860154972825,31749.6784240199 "5215","No","No",618.031682935868,44419.5476702595 "5216","No","No",565.218299871113,29015.7240563929 "5217","No","No",290.145958733314,32862.5552897116 "5218","No","Yes",576.944278840372,22800.8670501164 "5219","No","No",633.127115560167,54034.3550059018 "5220","No","Yes",1350.62900231003,11854.9844393708 "5221","No","Yes",893.558271644587,23033.8122137051 "5222","No","Yes",895.318965804225,20869.355939084 "5223","No","No",1470.57249106757,44490.321073276 "5224","No","No",789.256511246828,43835.3402744718 "5225","No","No",218.769004560376,52074.6627185221 "5226","No","Yes",531.693802744842,15794.5816061376 "5227","No","Yes",1268.53785480677,21336.8901013062 "5228","No","No",0,34040.3129149758 "5229","No","No",1046.56286488318,26555.4889385252 "5230","No","No",389.992175159101,29032.1126978627 "5231","No","No",642.234627903716,35800.0838167837 "5232","No","No",391.989952172087,35012.8696092424 "5233","No","No",1483.68901084985,58310.5123479193 "5234","No","Yes",438.57477088502,17439.1149542308 "5235","No","No",897.861693678463,47557.5240974682 "5236","No","No",0,41693.3858354334 "5237","No","Yes",776.639070176992,15338.8886029457 "5238","No","No",112.470708913449,34320.0261502942 "5239","No","No",634.477775997833,56726.1200096328 "5240","No","No",791.94749610165,47886.5232680271 "5241","No","No",1088.28530583846,43134.5314123793 "5242","No","Yes",2018.35853570806,15472.8495805739 "5243","No","No",1470.6352731309,40080.214746584 "5244","No","Yes",611.208896633182,19733.2518009617 "5245","No","No",1117.08002839593,42388.4155540623 "5246","No","No",1589.99091896711,42268.2798533658 "5247","No","No",0,57898.4151586563 "5248","No","No",636.238668216172,39172.3633653161 "5249","No","Yes",714.397171134248,17412.7179760367 "5250","No","Yes",946.779603881376,12881.4021094055 "5251","No","No",108.056775837302,41840.3258124129 "5252","No","No",816.888352751253,52492.3459447917 "5253","No","No",5.88381627957153,45840.4724566522 "5254","No","No",761.75063431318,13889.1325349332 "5255","No","Yes",1173.7813429519,15823.8054768027 "5256","No","No",1418.47537255722,38034.1444323705 "5257","No","Yes",864.357126766229,10484.7705038946 "5258","No","Yes",1101.16009199422,14307.0010845492 "5259","No","No",0,46615.6980277052 "5260","No","No",0,43782.2558593837 "5261","No","No",582.317221802386,29239.8460732045 "5262","No","No",369.050487595412,38418.8665205537 "5263","No","No",966.051877458136,10174.7298015834 "5264","No","No",399.445615081295,54329.9229320772 "5265","No","No",51.8884865930952,41839.1733870635 "5266","No","No",460.879415522297,40046.0293272785 "5267","No","No",1139.0127276922,36958.5780108845 "5268","No","No",707.573102936183,48790.4022479433 "5269","No","Yes",1034.60315139143,18614.037496336 "5270","No","No",118.869800099736,42823.5719634177 "5271","No","Yes",461.004340791417,15554.0297650627 "5272","No","No",1057.27499998475,42731.876409648 "5273","No","No",1035.48588062782,41714.3737690575 "5274","No","No",1010.27951299617,34188.9846488206 "5275","No","No",0,41199.7993550432 "5276","No","No",656.023725381919,36349.436988707 "5277","No","No",539.137500807565,23561.4305215043 "5278","No","No",1377.46206134276,49406.072701575 "5279","No","Yes",1322.14599591033,21272.5759430238 "5280","No","Yes",1393.58949068025,23261.8632426465 "5281","No","No",1324.0139835537,45114.740311117 "5282","No","No",1020.52955729319,35652.6634579727 "5283","No","No",2033.54023491605,41629.2372883968 "5284","No","No",888.642912599117,19942.6028703941 "5285","No","No",1350.1162674817,39555.962310795 "5286","Yes","Yes",1936.06186248878,13377.8288411616 "5287","No","Yes",1406.91736397007,16427.1007755423 "5288","No","No",282.838124549013,29478.1380100909 "5289","No","No",601.082571361275,25319.3660998709 "5290","No","Yes",1639.42660841751,14682.7766583761 "5291","No","Yes",48.528095875895,16647.3061614762 "5292","No","No",324.504531784576,51139.8768545561 "5293","No","Yes",886.401507936787,13995.8895892463 "5294","No","No",967.441573778468,51674.4193685904 "5295","No","No",711.737607680277,45419.8819421071 "5296","No","No",1547.8807897846,50638.3395897593 "5297","No","Yes",1200.59444464954,13772.9891155444 "5298","No","No",0,45201.1287123812 "5299","No","No",1454.98158871843,43821.2213471973 "5300","No","No",355.442338612803,46147.517874115 "5301","No","No",0,46927.7844526087 "5302","No","No",0,49784.3363547474 "5303","No","No",282.865313074855,39961.0398249001 "5304","No","No",303.7151176961,29048.0352380344 "5305","No","No",157.763001571446,36206.2856905703 "5306","No","No",300.000466508024,41189.4522010561 "5307","No","No",463.982072534495,43330.5524368375 "5308","No","No",1654.23495626913,39580.1297092869 "5309","No","No",762.57449743267,45526.8947859781 "5310","No","Yes",1887.88171576879,21901.1824969382 "5311","No","No",1206.26349180131,34621.7733090617 "5312","No","Yes",247.653103614015,20444.7524326315 "5313","No","No",576.796119948856,39209.8328678459 "5314","No","Yes",1214.40830614039,18055.2384673481 "5315","No","No",987.745528266879,40243.6200175724 "5316","No","Yes",1257.01612997428,19247.9006122535 "5317","No","No",524.085618869391,40319.1181371203 "5318","No","Yes",1236.20709180902,23364.0486787434 "5319","No","No",1008.67500060109,68610.4120555314 "5320","No","Yes",1474.77960459732,17382.4673857923 "5321","No","No",772.375314624076,36997.3367352005 "5322","No","No",701.552593711794,39526.5771906576 "5323","No","No",0,28798.0399729688 "5324","No","Yes",1165.89551137885,14969.287247901 "5325","No","No",0,28226.557953656 "5326","No","No",1429.22104820795,40564.8863059473 "5327","No","Yes",806.669235669924,17359.6747587048 "5328","No","No",528.089315636181,46389.3406847376 "5329","No","No",963.428148153574,60084.1264776155 "5330","No","Yes",764.527166698458,22578.6356703964 "5331","No","No",573.699136954666,49465.7548491151 "5332","No","No",1410.36924005266,62395.0381452745 "5333","No","No",816.741027053221,47272.3336067607 "5334","No","Yes",1220.52491385296,12195.3619458105 "5335","No","No",245.438753254707,54133.0383062382 "5336","No","Yes",1083.91128186265,8584.07757718566 "5337","No","No",485.348806539971,14676.2955127899 "5338","No","No",677.758794018199,50309.0647156314 "5339","No","No",286.660874697687,34499.5326305991 "5340","No","Yes",843.920206689305,20754.0241650763 "5341","No","No",831.836619855653,41247.6422019852 "5342","No","No",1024.32637691556,33832.4896292671 "5343","No","No",1277.12309805961,42472.9082664883 "5344","No","Yes",1221.94391099058,19127.3502338688 "5345","No","No",967.249281733551,27663.1340686837 "5346","No","Yes",1556.90441828681,19272.2364832438 "5347","No","Yes",419.729554950423,24679.7314674036 "5348","No","No",276.164884319754,53625.7140947421 "5349","No","Yes",1407.49727226474,14688.3889037995 "5350","No","No",1041.08802327575,39515.8430210841 "5351","No","No",182.325444181601,39703.2688512737 "5352","No","No",162.218486671005,41381.2707079487 "5353","No","No",405.273980579651,52571.1841278696 "5354","No","No",887.158361413145,51519.1264793758 "5355","Yes","No",1844.88383884583,35508.6754221796 "5356","No","No",792.981525937216,37549.9499998242 "5357","No","Yes",942.140104921355,23835.3854718109 "5358","No","No",938.785896813178,14524.3576239936 "5359","No","No",18.904202687713,35590.2325848995 "5360","No","Yes",599.470983151448,18575.4084167931 "5361","No","Yes",679.809546964661,19263.1233225777 "5362","No","No",601.26329258483,24400.0962522342 "5363","No","No",132.081039256955,51694.7395595321 "5364","No","No",743.032968860053,25186.4259047665 "5365","No","No",728.186897542766,52515.067548616 "5366","No","No",467.24756371474,33644.2578423146 "5367","No","Yes",1104.93334843928,17377.4981465423 "5368","No","Yes",310.198181760548,14672.9256971296 "5369","No","No",1575.71270470809,45957.2447176986 "5370","No","Yes",1370.24893741273,13358.27420233 "5371","No","No",1593.43280272516,73554.2334951972 "5372","No","No",463.002217743353,42297.457797763 "5373","No","Yes",786.106023872725,20954.4515707624 "5374","No","Yes",731.511801077057,26505.3445248465 "5375","No","Yes",468.273219312504,27054.8938154627 "5376","No","No",219.145709509397,37993.0436785143 "5377","No","Yes",846.959069993446,20659.8532659399 "5378","No","No",702.15926284292,57468.4044412075 "5379","No","Yes",1381.64443433899,11059.5680660885 "5380","No","No",1455.50583675848,33455.0496944581 "5381","No","No",1357.90971764829,43377.1121805759 "5382","No","No",1032.62707913177,23349.8301266316 "5383","No","No",798.85963667668,48336.1293083261 "5384","No","Yes",117.903081769161,14649.8580553618 "5385","No","No",234.743603957668,27499.9536219838 "5386","No","No",890.266872175803,36631.498422027 "5387","No","Yes",518.478839254005,18635.5097072673 "5388","No","No",1124.49595976431,31739.563746405 "5389","No","No",1468.78805535161,38521.8701999955 "5390","No","No",938.106178830587,13405.2109419603 "5391","No","No",722.029162469719,26984.2562874375 "5392","No","No",610.641708045754,42899.8481269583 "5393","No","No",407.771300691402,18555.3235405547 "5394","No","No",1057.22881723348,58133.5278357482 "5395","No","No",1262.40451593839,57158.7550202353 "5396","No","Yes",1082.67454484205,22417.5561475327 "5397","Yes","No",1969.94292393429,29415.7532920711 "5398","No","No",760.099642771661,45921.3431313597 "5399","No","No",929.396254308671,23133.6598112204 "5400","No","No",1177.2495984995,35419.6103097622 "5401","No","No",309.27068081804,42226.65131333 "5402","No","No",981.943933832087,38483.5318863506 "5403","No","No",200.162803965695,24280.1301574474 "5404","No","No",1630.48300985988,54323.4228868628 "5405","No","No",947.235416304317,28310.4937788445 "5406","No","No",537.396354192918,40828.140116245 "5407","No","Yes",1292.56878393393,14859.2400849317 "5408","No","No",356.827645393509,39444.8253488201 "5409","No","No",500.155117007218,34437.7068935173 "5410","No","No",1345.70698005887,40802.8865154653 "5411","No","Yes",1091.13975599585,19990.8353295959 "5412","No","No",1025.52762476694,22741.3913036463 "5413","No","No",403.240024857581,42993.4364142112 "5414","No","No",699.342672690461,36957.6805692933 "5415","No","No",1445.80516373713,15666.0574301554 "5416","No","Yes",963.899257788196,16561.255635469 "5417","No","No",542.765601644382,52625.4157104306 "5418","No","No",766.929094869356,25376.1037623839 "5419","No","No",808.429127594511,29212.9047289716 "5420","No","No",736.536729918891,46416.1829197087 "5421","No","No",1076.13982317578,31845.9515280532 "5422","No","Yes",731.314859465698,11510.1514733817 "5423","No","No",236.003705939958,38202.5138392406 "5424","No","No",1382.4549524961,40394.3086001964 "5425","No","Yes",915.571546852198,22586.3382776513 "5426","No","No",176.596945808558,48957.7563824849 "5427","No","Yes",639.99962630239,19900.0064038998 "5428","No","Yes",950.678008585236,20435.8178098611 "5429","No","No",1320.71111520739,29105.4424418385 "5430","No","Yes",1203.02939896646,15952.4520239732 "5431","No","No",1335.93525388814,19482.2062817827 "5432","Yes","Yes",1647.28224769539,16154.4622803728 "5433","No","Yes",1434.38646448511,15761.6996158335 "5434","No","No",307.476238460687,36120.9685897979 "5435","No","Yes",1277.89489991076,20649.9299868452 "5436","No","No",998.393069937923,46051.9228596918 "5437","No","No",561.343258988322,44403.9942871378 "5438","No","Yes",1577.08358059243,15230.8206004836 "5439","No","Yes",412.071444309261,12588.9711331098 "5440","Yes","Yes",1758.40657080375,14272.2737755857 "5441","No","Yes",251.468193783358,19373.8880179322 "5442","No","No",1353.13173451443,40164.0485885543 "5443","No","No",10.1944566929947,32641.9325638431 "5444","No","No",933.554734219053,33633.1486889292 "5445","No","Yes",1692.75253804708,23743.8419510997 "5446","No","No",663.250479154119,36276.8639525225 "5447","No","No",51.5304014162657,36851.9128724154 "5448","No","No",797.742647053305,53398.9285871911 "5449","No","No",0,50243.9311704645 "5450","No","No",1217.07276191295,62764.0976635433 "5451","No","No",0,44980.2930390375 "5452","No","No",741.844666024469,45808.5402807401 "5453","No","No",455.184490479099,43513.3506271492 "5454","No","Yes",1788.14082161796,26228.7104423056 "5455","No","No",1253.77341200631,28153.0140567459 "5456","No","No",918.09337371899,44112.8101652491 "5457","No","No",0,30241.9485766869 "5458","No","Yes",699.173401299605,17572.8310644687 "5459","No","No",171.996376988763,33505.4934304586 "5460","No","No",1326.34885429976,46587.0802885257 "5461","No","No",1275.49530305434,40026.2859538126 "5462","Yes","Yes",2247.42188932705,17926.7230141293 "5463","No","No",993.77211910269,52645.6630948018 "5464","No","No",997.379504092706,34824.848061927 "5465","No","Yes",652.372669135781,12139.0571198897 "5466","No","No",1124.88618865227,41989.0341969489 "5467","No","No",1608.81844748478,36721.1034831342 "5468","No","Yes",776.606472977211,4755.25219033558 "5469","No","No",845.020724913514,33895.2378498713 "5470","No","No",570.054698668476,42157.8077120892 "5471","No","No",186.438134380559,13325.1213335376 "5472","No","No",0,48672.9560136099 "5473","No","No",1429.48871595734,31995.4879988516 "5474","No","No",295.056674121521,39479.7516839202 "5475","No","No",896.581276619335,54840.0578653019 "5476","No","Yes",1562.53232379506,13754.3340702828 "5477","No","No",889.308741715182,33036.2447896186 "5478","No","Yes",1805.68295452897,20727.6402234923 "5479","No","No",1334.1059277835,43704.4308597779 "5480","No","No",527.940223666282,56820.8207444954 "5481","No","No",1282.07694622826,52753.0765682445 "5482","No","No",932.828729648173,48165.1802367937 "5483","No","Yes",1850.88824722219,21575.7633259386 "5484","No","No",455.190784198115,36488.1578499807 "5485","No","No",748.286644782209,45626.9945465569 "5486","No","No",874.478742268915,33485.5205119318 "5487","No","Yes",538.706536221086,16350.3601824157 "5488","No","No",841.85172718326,48615.0145715462 "5489","No","No",1814.16819486658,28322.8391895754 "5490","No","Yes",365.704408735642,15953.9756084283 "5491","No","No",401.180757478873,39686.6759484968 "5492","No","No",2096.13639137234,49992.5298141708 "5493","No","No",1429.87855917136,33452.5875602965 "5494","No","Yes",1737.34771498223,19202.7101911288 "5495","No","No",1043.39033839845,45309.9489669253 "5496","No","Yes",1155.45654811422,22194.4778758481 "5497","No","Yes",931.649113036332,19179.4467878978 "5498","No","No",146.755460850544,49925.0693858343 "5499","No","No",1406.9476517096,27667.8360308734 "5500","No","Yes",705.896825598943,18447.8760934385 "5501","No","No",641.803940740381,32628.6412619614 "5502","No","No",379.603563484232,42862.4888881861 "5503","No","No",706.22679193318,33920.4569663211 "5504","No","No",577.131996919527,43616.0962322882 "5505","No","No",90.99981606327,52387.591991635 "5506","No","No",549.39904175625,48424.4043821238 "5507","Yes","Yes",1102.43498209896,17391.779646823 "5508","No","Yes",1228.33879593452,18129.6940624009 "5509","No","Yes",974.014384870528,20108.1035841497 "5510","No","No",263.656061763757,50782.8322029761 "5511","No","No",847.069147369421,35581.2901156659 "5512","No","No",835.191809113554,39977.1314704097 "5513","No","No",757.907711197946,37088.8395732868 "5514","No","Yes",1013.66576572018,13821.0900819589 "5515","No","Yes",643.577000917672,28765.910525223 "5516","No","Yes",757.272763497851,18876.0891573188 "5517","No","No",1248.27894291764,41100.6261742015 "5518","No","No",699.285850186167,41475.9820952634 "5519","No","No",866.402631163086,18586.7271653018 "5520","No","No",697.666382564536,35402.2679567815 "5521","No","No",899.096892824399,39630.6387900137 "5522","No","No",674.204629620179,46481.9526798699 "5523","No","No",902.92395856054,33778.4032313443 "5524","No","No",1591.75580588687,46259.6599752908 "5525","No","No",484.217358639711,30178.5752399951 "5526","No","No",751.68728655516,51327.3172739106 "5527","No","No",604.194947116334,38292.7690977453 "5528","No","No",640.633469892213,46075.4150579683 "5529","No","Yes",782.445165134074,23447.2133813526 "5530","No","No",1026.95519673516,40307.0110217945 "5531","No","Yes",862.902253834498,16157.8665298407 "5532","No","Yes",780.512125824943,14813.3415822723 "5533","No","No",878.009385167249,15262.9351149015 "5534","No","No",481.862028269873,32928.2390042737 "5535","No","Yes",1579.99003223015,13274.7315023903 "5536","No","No",1.67402590271342,23001.6670760201 "5537","No","No",514.849025301181,37656.8478724252 "5538","No","No",2087.67874085049,44997.3643500816 "5539","No","Yes",973.514710211862,20770.4840331544 "5540","No","No",528.872496895311,45235.4971935422 "5541","No","No",1131.41243362462,37663.2268693235 "5542","No","No",955.343370548383,40368.5978855312 "5543","No","No",759.032260453678,45774.3835405276 "5544","No","No",1023.85241371526,31492.9983652979 "5545","No","No",1096.07775578352,30374.8347206174 "5546","No","No",829.32969070991,48734.1661690429 "5547","No","No",792.356871704534,39911.4272279602 "5548","No","No",882.264534452783,18379.5148607438 "5549","No","Yes",733.847089936321,16400.1283445279 "5550","No","No",553.519436208433,45385.3113268622 "5551","No","Yes",822.959594920215,8918.70253904663 "5552","No","No",493.95999044986,34621.7576420746 "5553","No","No",88.2540567051822,43927.315885611 "5554","No","No",0,45077.5745780792 "5555","No","No",611.825734885616,21716.5343596837 "5556","No","Yes",1096.69213583028,20856.5876398187 "5557","No","No",191.611070550308,35119.5813835898 "5558","No","No",447.958161182748,54044.8231061654 "5559","No","No",1149.68918788583,39974.5630184873 "5560","No","Yes",463.300004723583,16416.6127293146 "5561","No","No",1347.63559514332,58953.0926684651 "5562","No","Yes",0,16979.8930728145 "5563","No","No",643.010847393226,27735.1582360746 "5564","No","Yes",365.222955835046,15375.1517219432 "5565","No","No",289.681569442895,45991.0443210763 "5566","No","No",578.290656572117,48044.3844904488 "5567","No","No",1186.93272905935,51742.5764367357 "5568","No","No",426.007283754863,50874.5651795002 "5569","No","No",1115.73877693947,48125.6467552087 "5570","No","Yes",932.695814190911,18743.3137407493 "5571","No","Yes",1048.48759625782,22935.5954509348 "5572","No","No",768.372947015316,44405.3087453 "5573","No","No",785.494708435686,50683.1541835067 "5574","No","Yes",865.205866068633,22081.5816392531 "5575","Yes","No",1801.80118346806,24152.264834226 "5576","No","No",950.341274781584,64396.1653447148 "5577","No","No",787.042934912837,46266.9414512335 "5578","No","No",982.839988770985,32419.665047656 "5579","No","No",1175.38957718705,35339.556671872 "5580","No","Yes",887.284872180981,13132.901347241 "5581","No","No",801.994436947096,46439.0035534273 "5582","No","No",1096.24673322037,42685.1072902999 "5583","No","No",628.855331566381,40490.4260532201 "5584","No","Yes",567.722580913533,14892.3244451469 "5585","No","Yes",843.008786630283,22037.4704117827 "5586","No","Yes",1217.30987516687,10520.0430746812 "5587","No","No",0,10593.9212460847 "5588","No","No",1186.77795118128,38581.9278558539 "5589","No","No",439.043893107684,40148.108054317 "5590","No","Yes",778.999353313474,10489.5735268384 "5591","No","Yes",742.549323468977,24505.0193460592 "5592","No","Yes",763.337623826175,15849.8639600086 "5593","No","No",408.116029993621,39388.3175611827 "5594","No","No",1071.25835436445,36869.0525759518 "5595","No","No",1373.57560129775,22182.4165874166 "5596","No","No",52.9180891783735,30506.358853652 "5597","No","Yes",1140.45436292959,18991.886035461 "5598","No","No",1162.29922732475,47513.124771207 "5599","No","Yes",1528.49437007321,22664.3493517211 "5600","No","No",991.961167212548,49910.0968835837 "5601","No","No",592.432321380633,32283.2641204669 "5602","No","No",848.327608233813,30472.7179252633 "5603","No","No",309.517982126985,35293.1935706219 "5604","No","Yes",425.844645376775,15324.758004218 "5605","No","Yes",1268.48611351102,19862.0444216306 "5606","No","Yes",898.631950753244,15293.8740494594 "5607","No","No",274.956946474187,24102.3915140994 "5608","No","No",399.443127979133,45360.9322533118 "5609","No","Yes",850.386406238716,6389.07056944882 "5610","No","No",92.9000889701402,43955.8813664077 "5611","No","No",854.023334564867,32107.3083419182 "5612","No","No",0,29721.3418700634 "5613","No","No",1094.81283301666,32936.0586617393 "5614","No","No",680.164459380056,25391.6330751958 "5615","No","No",1231.35189432337,29867.8764736882 "5616","No","No",0,38228.2601678094 "5617","No","No",830.046094160683,51847.1229335732 "5618","No","No",1267.00144444768,32752.1937409219 "5619","No","No",1623.69027195188,36747.9039783266 "5620","No","No",302.719017710888,45260.3977308049 "5621","No","No",439.961958832399,28215.4788428897 "5622","No","Yes",1016.82547814025,18703.5552303283 "5623","No","No",1421.20476385362,47423.7917724389 "5624","No","No",479.677151780228,40995.0362099409 "5625","No","Yes",925.896916667239,12384.2042299631 "5626","No","Yes",1192.70215939554,21597.7516651387 "5627","No","No",1649.91703023619,36091.3847479288 "5628","No","No",808.999102581178,26379.8866963464 "5629","No","No",752.056294701375,49741.4315184812 "5630","No","No",727.190776306582,27282.1983550083 "5631","No","No",845.607309992116,31633.0872543091 "5632","No","No",445.661897901178,46816.105113725 "5633","No","No",1459.04496635786,49753.8049162963 "5634","No","Yes",988.641609584159,22085.4508197692 "5635","No","No",796.991208463392,25159.554855822 "5636","No","No",903.459131606741,33640.0996762864 "5637","No","No",1163.08390408128,45488.7505586529 "5638","No","No",1217.21052749133,33865.050577167 "5639","No","Yes",740.228677226658,23469.3875040857 "5640","No","No",1259.45052417311,28881.7252478321 "5641","No","No",501.391685956458,42856.1899982353 "5642","No","No",808.611888576478,48650.4338778726 "5643","No","No",413.888271616934,53142.0239048614 "5644","No","Yes",666.498230169417,11951.8987902488 "5645","No","Yes",412.160788336474,17679.5217697791 "5646","No","Yes",372.652495532665,22308.0412831276 "5647","No","No",1235.0766543147,48687.5571560364 "5648","No","No",853.246221589931,41581.195336223 "5649","No","No",1911.66851672829,52802.0888231585 "5650","No","No",357.969460728933,57012.5508813006 "5651","No","Yes",698.157981667433,19582.8161575693 "5652","No","No",918.461091220465,32468.4507371825 "5653","Yes","No",1741.91491543247,35067.4251226861 "5654","No","No",577.49347668941,39015.4168357708 "5655","No","Yes",1415.68199444299,21856.3209297024 "5656","No","Yes",1524.48683341545,15845.8712481288 "5657","No","Yes",1171.44140128616,19213.385726928 "5658","No","Yes",396.801484079162,26061.7642503507 "5659","No","No",1236.15812440683,19682.7109013115 "5660","No","No",1053.40549467371,52921.8537919159 "5661","No","No",1207.04062486695,42171.9889675781 "5662","No","No",528.961945199657,27065.7052750894 "5663","No","No",662.703254958649,48652.1699429375 "5664","No","No",517.228507618777,40248.5860722947 "5665","No","No",938.846004261055,40914.2282285304 "5666","Yes","No",1823.63655922363,44260.1563740071 "5667","No","No",638.721987169513,48085.707914938 "5668","No","No",929.022614418526,23889.6800602367 "5669","No","Yes",282.248706317179,19809.0986748885 "5670","No","Yes",1429.60932761342,14827.8945358154 "5671","No","Yes",672.358163240043,24495.0376192773 "5672","No","No",752.466763910773,39896.1093744995 "5673","No","No",471.346126989889,30337.1411809513 "5674","No","No",270.585758872418,44958.6312672761 "5675","Yes","No",2075.32789240119,43817.4994165192 "5676","No","No",96.8038990504192,31371.7260760776 "5677","No","Yes",568.294950972513,13286.3504957018 "5678","No","Yes",990.880561930152,21164.6639904912 "5679","No","No",284.560972136525,45542.1738019605 "5680","No","No",983.837340767148,28980.1020215873 "5681","No","No",924.437340522378,40987.4861505338 "5682","No","No",857.15319686911,31252.6513536423 "5683","No","No",195.022335186118,44222.9787399682 "5684","No","No",1046.00899599925,45573.3837714878 "5685","No","Yes",933.350405092987,15557.6325634422 "5686","No","No",0,43646.9117171667 "5687","No","No",691.892090491284,32512.195389798 "5688","No","Yes",1097.96962125845,16275.6836356714 "5689","No","No",0,45374.9971794388 "5690","No","Yes",402.909163047921,22752.3269494562 "5691","No","No",1230.9031608653,44303.1979964794 "5692","No","No",959.482038937641,31357.4463317624 "5693","No","No",630.229125536699,46713.6304386072 "5694","No","Yes",1353.49302986961,16727.6637244271 "5695","No","Yes",603.575190027631,15477.3538789755 "5696","No","No",830.250090634854,35377.8570634333 "5697","No","No",858.179964537275,30892.7357962171 "5698","No","No",380.173508308381,37395.718934378 "5699","No","Yes",1005.81173310083,12112.6574158034 "5700","No","No",1027.82530711925,33089.4672946505 "5701","No","No",456.003327034018,29898.0050635925 "5702","No","No",1043.09783017499,30516.2627004716 "5703","No","No",586.968885382876,50317.6528901077 "5704","No","No",271.942208218099,27790.0692786973 "5705","No","No",419.729051721571,37444.5360607249 "5706","No","Yes",597.112380190364,12660.8145668556 "5707","No","No",342.957369597552,43688.5348603431 "5708","No","No",728.278954840128,30028.180114333 "5709","No","Yes",513.836763185943,9879.11522086725 "5710","No","No",795.958609109475,22570.4833957793 "5711","No","No",1.97669165657703,51672.3606746991 "5712","No","No",1355.64121959561,36671.6598743079 "5713","No","Yes",319.26267613224,24881.3856596421 "5714","No","No",1719.16924073123,57866.0587647857 "5715","No","Yes",1191.08557367385,20895.408187878 "5716","No","No",984.43916305411,25294.8679947978 "5717","No","No",947.795904132801,45284.2059483097 "5718","No","No",949.038713528626,47760.4001660739 "5719","No","Yes",219.728619473391,18401.9824159211 "5720","No","No",1465.74393129421,25521.269892488 "5721","No","Yes",645.338826892833,20122.2022949879 "5722","No","Yes",856.564480509726,23199.9770243004 "5723","No","Yes",912.832537265206,19467.9793084482 "5724","No","Yes",774.347691273785,15147.4050875774 "5725","No","Yes",1376.34002229257,17101.4277855388 "5726","No","No",699.68038610832,50267.8498703097 "5727","No","Yes",903.458650208612,17254.9607045282 "5728","No","Yes",1150.54718578729,23705.9534246888 "5729","No","No",751.338737032109,42736.4281010473 "5730","No","No",556.077320959279,25371.2137682282 "5731","No","No",751.392240487586,29875.0468943881 "5732","No","No",425.986919625979,39772.7524115106 "5733","No","No",297.680814254857,26586.5338259687 "5734","No","No",507.246293687735,46106.2333111186 "5735","No","No",865.697003766891,33541.0463795618 "5736","No","Yes",1265.52737698449,14672.2561827333 "5737","No","No",564.411306490337,39643.536293479 "5738","No","No",621.041219289815,50804.6753093259 "5739","No","No",1205.5906901595,25920.860620437 "5740","No","No",1943.9323001153,24193.6089530073 "5741","No","No",415.288751920261,35790.1308927711 "5742","No","Yes",1169.42044435962,19879.2481698692 "5743","No","No",685.636883981982,49260.6253734599 "5744","No","No",781.919019378319,54925.5077888557 "5745","No","No",651.37432949101,44648.6964111729 "5746","No","No",490.251032848557,49222.4913819642 "5747","No","No",976.289542388024,35909.438285819 "5748","No","No",1476.8381231555,41154.8817495442 "5749","No","No",752.948233887715,62329.1213278647 "5750","No","No",511.605906978194,29914.1762585761 "5751","No","Yes",1384.37213177951,21059.6048699065 "5752","No","Yes",1031.6704462058,22440.6219784314 "5753","No","Yes",1491.50749266748,23636.1648057493 "5754","No","No",672.236354138002,46336.0582746324 "5755","No","Yes",644.413563981559,23319.6491325713 "5756","No","No",539.593429120106,9950.22944716287 "5757","No","Yes",0,17648.3555520933 "5758","No","No",919.812637213681,44316.3583269836 "5759","No","No",1249.87279356488,50418.0445177431 "5760","No","No",539.805316131412,35924.6100061739 "5761","No","No",1162.11326015823,49255.1443250688 "5762","No","No",944.450297862103,47463.3335845437 "5763","No","No",0,29675.0403940132 "5764","No","Yes",1440.52879490447,20882.0173151698 "5765","No","Yes",1558.47191874284,17470.4766997472 "5766","No","No",854.140622660478,52239.8002409183 "5767","No","No",468.549457486006,53273.9190207264 "5768","No","No",902.497409853233,56947.863738876 "5769","No","No",897.285608502453,66547.9153478775 "5770","No","Yes",422.189410133187,14366.5690535026 "5771","No","No",194.575966814186,44543.7810045915 "5772","No","Yes",487.51140380731,17713.5886677689 "5773","No","No",1558.8604674365,42112.3133015424 "5774","No","No",630.028950845409,43547.5421743949 "5775","No","No",1056.65462971505,30711.8612088361 "5776","No","No",1712.47003698299,40395.3463717659 "5777","No","No",25.6029427284892,35464.2479757401 "5778","No","No",1384.85057128336,40131.4938945229 "5779","No","No",961.365708967295,42619.0777329367 "5780","No","No",229.214973977971,68145.1337293181 "5781","No","No",778.791564992489,53219.5273540955 "5782","No","No",653.436222212024,41440.9285587421 "5783","Yes","No",961.488850067884,27717.6149963238 "5784","No","No",1084.4575635668,33080.9653776216 "5785","No","Yes",869.667755818248,20285.2517778161 "5786","No","No",818.334937015477,27390.8369123046 "5787","No","No",416.861181771703,39672.5172956473 "5788","No","No",250.835244898776,58139.0215907988 "5789","No","No",0,48411.0768955359 "5790","No","Yes",481.588375402497,19623.4605356064 "5791","No","Yes",1506.91151259556,23375.6459315861 "5792","No","No",1100.00893133463,34358.0746761477 "5793","No","No",220.666752812166,64467.7333980933 "5794","No","Yes",789.283587775891,20370.1737142088 "5795","No","No",41.3591758437337,47351.8335386886 "5796","No","No",382.962697242854,43645.9477878306 "5797","No","No",567.91705140977,28875.5218052449 "5798","No","No",244.509086414582,33751.2450670081 "5799","No","Yes",815.341565034172,26064.3656179441 "5800","No","No",529.072681274052,43914.6714302252 "5801","No","No",736.418557671665,48660.1510831738 "5802","No","Yes",0,17744.9299653708 "5803","No","Yes",1260.34116519144,11696.677762784 "5804","No","Yes",708.213553028619,12092.3144674758 "5805","No","Yes",99.9976112314506,4376.81033732814 "5806","No","No",1143.30818005697,48630.0338419905 "5807","No","Yes",892.383860904144,17841.5226997873 "5808","No","No",1250.0472445382,50883.7144156979 "5809","No","No",415.655366739528,43389.6607477004 "5810","No","Yes",1058.86738423105,16059.8327513806 "5811","No","No",857.699664613559,43162.6736510032 "5812","No","No",1429.76720500634,37255.911102443 "5813","No","Yes",322.266857038367,19231.9390865947 "5814","No","No",572.186729626896,35926.3762376315 "5815","No","No",1438.75847303818,24061.6475966988 "5816","No","Yes",1742.88693796721,20344.428006051 "5817","No","No",325.267593810214,39431.5354092195 "5818","No","No",1091.41855088011,43091.1568580348 "5819","No","No",1252.40952932279,53237.103541455 "5820","No","No",607.431269534736,34541.3020043844 "5821","Yes","No",1258.76479390195,26331.3723972254 "5822","No","No",1026.70270669984,33915.0488366579 "5823","No","Yes",590.566232554882,9143.39643269774 "5824","No","Yes",1218.1703464705,18918.3771488751 "5825","No","No",260.618801935897,42125.1486747 "5826","No","Yes",1498.07059121614,13274.6305622079 "5827","No","No",909.946875783543,53430.8954262706 "5828","No","Yes",1167.11058272521,18676.569773133 "5829","No","No",923.685583086262,38403.0106218174 "5830","No","Yes",1275.1970778934,15793.9091712164 "5831","No","No",709.257519701069,23249.9369139183 "5832","No","No",682.988012158536,41679.7597909339 "5833","No","No",1355.961899173,25208.0488594895 "5834","No","Yes",1815.88929401806,15490.0282669227 "5835","No","No",698.291724729687,43876.1618752754 "5836","No","No",189.129858226454,28827.2130879046 "5837","No","No",1418.70284028208,35619.966731296 "5838","No","No",670.422582334202,53666.1923387936 "5839","No","No",206.016345165762,38550.3766690572 "5840","No","No",1616.96212541135,47504.664497325 "5841","No","No",995.529599688077,24126.6103607743 "5842","No","No",591.036836257336,30834.7117877026 "5843","No","No",1294.90323367953,52338.2214607824 "5844","No","Yes",1259.37281261196,22361.0547379156 "5845","No","Yes",1313.35267047883,17437.6158261673 "5846","No","No",0,24461.8544604009 "5847","No","Yes",769.479121723841,27515.5709281393 "5848","No","Yes",571.577121800137,15325.0791014608 "5849","No","No",756.087910765568,49163.2233042613 "5850","No","No",183.428692215826,39020.2288570725 "5851","No","No",1054.80558912853,52290.3406700021 "5852","No","No",1386.20772607892,44536.4873031943 "5853","No","No",596.187984922023,45929.4491787607 "5854","No","Yes",1029.91697478065,16691.8032876491 "5855","No","No",417.538455374446,31730.866601925 "5856","No","No",1218.42139073093,40449.3117121187 "5857","No","No",210.78078813108,46326.7611216619 "5858","Yes","No",1178.15885831725,44437.2021385296 "5859","No","No",997.625113692672,30670.9471528594 "5860","No","No",637.902180966316,48425.7226516901 "5861","No","No",0,54245.1197952075 "5862","No","No",350.051851978195,48411.9866835366 "5863","No","No",1517.91895836893,49400.1708378773 "5864","No","No",190.641105320772,31463.4199838288 "5865","No","No",971.583673643437,41278.4190266194 "5866","No","Yes",925.39067815206,16427.5710095756 "5867","No","No",1637.83992155682,34107.080564485 "5868","No","No",224.592472478657,27246.0452995502 "5869","No","No",255.117030975662,55980.074042527 "5870","No","No",1201.0165477298,41585.8320478656 "5871","No","No",1075.5701114884,51370.2097044905 "5872","No","No",438.420240631268,29899.8221569397 "5873","No","Yes",1246.4371783918,15756.7182461179 "5874","No","Yes",1655.11286003131,17269.7989092957 "5875","No","No",1063.81680159536,38457.2492873684 "5876","No","No",1626.56379859686,43592.8405019296 "5877","No","No",409.404019995777,48746.4343503696 "5878","No","No",1018.67301772637,38421.8109111405 "5879","No","Yes",1090.89188238703,20421.9577177004 "5880","No","No",324.885413967638,36555.3997483081 "5881","No","Yes",1085.15296585933,20054.8984973707 "5882","No","Yes",869.772061046401,18724.4036763584 "5883","No","Yes",608.840648304347,24523.8540972795 "5884","No","Yes",1042.97256454135,9595.58757061018 "5885","No","Yes",1276.66776193299,19073.1085231485 "5886","No","No",928.094090319006,55894.6620242872 "5887","No","No",1592.76390391801,35084.0931718366 "5888","No","No",0,39653.9232059936 "5889","No","No",340.999798019847,48058.3831830102 "5890","No","No",81.5318651256417,40847.8113111642 "5891","Yes","Yes",2145.60767410022,23516.1913448152 "5892","No","No",654.416009758667,47244.7041815369 "5893","No","Yes",1155.78057709463,15146.8964638526 "5894","No","No",1745.31352843476,49090.1285571159 "5895","No","No",534.784891919657,46138.4317949854 "5896","No","No",584.837411673331,39553.1714989784 "5897","No","No",1365.55685085965,38511.3198025482 "5898","No","Yes",946.36714979165,12532.6575241334 "5899","No","No",263.190295009475,34112.4719691253 "5900","No","Yes",1090.92505943976,18935.8182197473 "5901","No","No",835.189928006226,44678.8317508059 "5902","No","No",1265.53598576055,35133.2172929742 "5903","No","No",357.50662154887,66404.6831116793 "5904","No","Yes",564.005440905646,16502.3373713175 "5905","No","No",817.927709730839,59431.8391841725 "5906","No","No",1366.27862101812,41192.462650331 "5907","No","No",836.343137128427,34559.1584045926 "5908","No","No",0,27367.7826593374 "5909","No","Yes",780.227918143533,25228.7107258463 "5910","No","No",995.877319235738,52860.5849428525 "5911","No","No",0,22827.184490446 "5912","No","No",554.344586281001,31028.9241956699 "5913","No","No",1204.57884130054,39583.1205263355 "5914","No","No",1053.3758785391,39612.6719417459 "5915","No","No",821.498846966475,39318.4893922058 "5916","No","Yes",470.912347174972,24074.3646500836 "5917","No","Yes",1534.85373461482,21678.3509653313 "5918","No","No",1177.97686676911,50811.7594557063 "5919","No","Yes",1151.89951661119,15097.5123322887 "5920","No","Yes",906.43906910328,24662.2907204924 "5921","No","Yes",1513.54243669697,13246.3752793563 "5922","No","No",740.885186560821,34196.067455362 "5923","No","No",1176.4145117071,57318.7019687111 "5924","No","No",208.295079052557,37295.8019809341 "5925","No","Yes",375.30630481794,19342.158087761 "5926","No","Yes",953.130545313744,18057.7864868779 "5927","No","No",280.955900327091,37690.0334766458 "5928","No","No",399.129471557993,38004.1049833837 "5929","No","No",1229.85812166833,58399.4966673188 "5930","No","No",1740.86410659557,46458.6061241292 "5931","No","Yes",795.139553543434,24606.1542900494 "5932","No","No",584.816776146095,47449.6242381957 "5933","No","No",1140.74820920772,39017.0776173997 "5934","No","No",1202.31672214754,49914.5220391356 "5935","No","Yes",476.720465848488,10516.8697175559 "5936","No","No",1059.87227059407,38698.6727333414 "5937","No","No",1367.10860567106,36427.4297417666 "5938","No","Yes",1604.77765926804,23999.760339155 "5939","No","Yes",1055.68253715521,25109.5084708156 "5940","No","No",367.611687180574,44046.0175141989 "5941","No","Yes",0,18032.0737811624 "5942","No","No",543.805741425591,31512.6105904963 "5943","No","No",192.627462934508,38042.0183883803 "5944","No","No",1184.83995305363,34527.6867960494 "5945","No","Yes",1510.77723291864,19491.6940654638 "5946","No","No",801.639909419777,37441.7921162931 "5947","No","No",631.030835762073,44525.8899911047 "5948","No","No",279.116875728491,30144.4325045929 "5949","No","No",674.03256185589,54832.6657286731 "5950","No","Yes",957.630204213306,15018.9136483864 "5951","No","No",274.424220630795,31292.6274526086 "5952","No","No",1044.44989668679,43374.0041002429 "5953","No","No",319.807606999716,45202.6354001605 "5954","No","Yes",429.222462997544,19442.0290889131 "5955","No","No",835.585023630256,41032.3713069298 "5956","No","No",2.78892034879289,54838.8055107672 "5957","No","Yes",867.441644756525,16396.6823596118 "5958","No","Yes",271.730925652373,14215.0928835875 "5959","No","No",404.194652122229,41668.419578518 "5960","No","No",1572.81110764373,18218.4743623389 "5961","No","No",730.633559272148,42300.1468678425 "5962","No","No",0,56610.2364993919 "5963","No","No",1046.16855901415,46078.9823084735 "5964","No","No",514.871773828457,50339.1917982163 "5965","No","Yes",1181.58600890881,22142.0521488123 "5966","No","No",0,45235.2908693099 "5967","No","No",272.219927772865,47757.8244082396 "5968","No","No",1175.12552612742,33284.2060671339 "5969","No","No",812.889626440805,48563.7997585162 "5970","No","No",571.041501274187,40389.4463334741 "5971","No","Yes",1041.14735129673,12488.7319281208 "5972","No","No",334.019494911054,40916.0332464492 "5973","No","No",1402.60119405591,37273.593072847 "5974","No","No",1569.8703239927,55938.7662199414 "5975","No","Yes",1035.9661070392,30531.6131073667 "5976","No","No",1376.11324068477,63073.4451350521 "5977","No","Yes",668.642228957829,20240.9549635787 "5978","No","No",0,36249.1749894424 "5979","No","No",1112.65568371353,35159.2154610084 "5980","No","No",718.579877417863,12571.6893560988 "5981","No","No",641.550367704605,45574.4995780144 "5982","Yes","Yes",2125.79220209824,19539.1486085893 "5983","No","Yes",814.35410278798,17973.5091609266 "5984","No","No",904.033628607277,18898.3113286727 "5985","No","No",795.49732640836,25336.3268493182 "5986","No","Yes",1753.59814404144,21130.9185850811 "5987","No","No",284.395697403294,60840.8098445297 "5988","No","Yes",1300.88969344098,14156.6456712982 "5989","No","No",1237.84339138252,31880.1755862105 "5990","No","No",563.466595350795,31151.1870860483 "5991","No","Yes",6.72786973540246,21695.7027559026 "5992","No","No",661.528186240096,58519.8597929747 "5993","No","No",630.714844593192,53546.5706034489 "5994","No","No",721.141686063012,40458.9542078904 "5995","No","Yes",360.009160165101,18487.4332542325 "5996","No","No",751.030985242178,45581.7188592217 "5997","No","No",572.4682971281,52797.4293765822 "5998","No","Yes",242.462988762061,23413.3595887971 "5999","No","No",199.454789588577,57455.2101645723 "6000","No","No",477.566817124151,16978.2711270042 "6001","No","Yes",1184.72503438385,19797.7701544466 "6002","No","Yes",604.758740181076,19369.3492279276 "6003","No","No",384.331069368267,34232.0692319686 "6004","No","No",1399.57356126492,23577.7645096764 "6005","No","No",328.778147645303,48626.356737746 "6006","No","No",271.059866110878,30465.3075728577 "6007","No","Yes",145.002121469021,19927.0920983813 "6008","No","Yes",344.154111624342,20439.6881075385 "6009","No","No",985.75273950769,22829.5879790936 "6010","No","Yes",1002.41924969378,17797.3437053801 "6011","No","Yes",1004.84432345119,20249.2074251626 "6012","No","No",483.415851611021,53873.5126536571 "6013","No","No",1034.60116239922,41252.7283291139 "6014","No","Yes",854.626200243518,16322.7225871478 "6015","No","No",796.836729677501,29397.884089772 "6016","No","No",535.696856517735,55828.0817743105 "6017","No","Yes",1070.63926115023,14833.0291829764 "6018","No","No",0,30524.7560124986 "6019","No","No",1333.90120569319,23261.8465412135 "6020","Yes","No",1114.83218093412,39776.9989569363 "6021","No","Yes",793.248091585398,24314.682390475 "6022","No","No",433.93529004808,26888.0873419002 "6023","No","Yes",1004.27364640269,17069.5235700115 "6024","No","Yes",1112.70118907868,20901.2137448942 "6025","No","No",298.775139374477,33255.838852479 "6026","No","No",796.846346195829,20078.7892262371 "6027","No","Yes",969.397162515276,17686.5619959655 "6028","No","No",1075.11834569501,47566.7840330557 "6029","No","Yes",0,16451.9423947393 "6030","No","Yes",44.6555662288123,26346.8119312976 "6031","No","Yes",1000.74058586802,14689.4946797589 "6032","No","No",1311.99931279821,26377.9739545637 "6033","Yes","Yes",2086.53616450154,17893.7213718312 "6034","No","No",697.046859382139,38743.0931764454 "6035","No","No",1240.6642503436,30938.537452736 "6036","No","Yes",726.764145685598,16079.6367519751 "6037","No","No",633.50418717187,40571.7665185333 "6038","No","Yes",386.156432013818,22527.647218635 "6039","No","No",0,34701.1959628584 "6040","No","No",808.593585430211,41222.3516738451 "6041","No","No",1384.39245361744,35499.526931748 "6042","No","No",713.067543966655,44413.7513911328 "6043","No","No",590.676532830074,26673.8475991813 "6044","No","No",294.84465334931,41591.7799629843 "6045","No","No",208.007706163141,42399.5295644159 "6046","No","No",220.449327881615,33213.3249240332 "6047","No","No",773.172691038837,49308.1648913188 "6048","No","No",1248.47705838491,37204.0735235058 "6049","No","No",634.186610299309,32255.989236893 "6050","No","No",678.186893655929,55542.9696290547 "6051","No","No",1252.62149720678,27295.5179274614 "6052","No","Yes",1297.2650427955,16864.4348878162 "6053","No","No",0,38870.4967984093 "6054","No","No",1190.76129184854,27257.1225311302 "6055","No","No",196.515561979567,44226.6317697564 "6056","No","No",619.559206544415,33476.6678580755 "6057","No","No",438.625084914629,41454.7212837096 "6058","No","No",676.09886006944,38571.4137503099 "6059","No","No",589.914146029848,49945.3890058123 "6060","No","No",1068.14635014194,27859.8644498139 "6061","No","No",1210.41612201718,45113.1625230447 "6062","No","Yes",390.356473829136,9114.27528946381 "6063","No","No",1505.70716693071,35786.3271594838 "6064","No","No",490.055975362601,35895.3539099007 "6065","No","No",123.286068118428,47467.9589538027 "6066","No","No",563.286411224409,51720.911526537 "6067","No","No",409.160368105623,45055.8974731354 "6068","No","Yes",781.680396250219,21342.4787054192 "6069","No","No",870.30272557068,24263.1274357931 "6070","No","No",509.15601107729,47444.1514545912 "6071","No","No",1056.66248436439,39255.763309381 "6072","No","No",394.990214436483,41574.8335065642 "6073","No","Yes",1592.00464654421,19982.2900564444 "6074","No","No",0,49250.4641066052 "6075","No","No",1276.40327757431,52215.1340325795 "6076","Yes","No",2413.31944892365,38540.5727051179 "6077","No","No",210.123259392863,58413.1036704192 "6078","Yes","No",2187.22484631191,42205.1230478132 "6079","No","No",1159.84194470986,43385.0190429097 "6080","No","No",1339.60317733156,46442.3537684526 "6081","No","Yes",793.347450948707,11495.3931419745 "6082","No","Yes",163.503391345992,17545.7266406611 "6083","No","No",867.629482747378,43091.9359878415 "6084","No","Yes",1231.02580419572,13363.9780519247 "6085","No","No",312.41548868663,47118.9994332504 "6086","No","Yes",758.448011241565,20936.0686445542 "6087","No","Yes",1035.82346778548,13959.4204534083 "6088","No","No",763.735279612754,44125.7187251985 "6089","No","Yes",728.543556143868,12475.4607349102 "6090","No","No",1066.29655789445,42247.7785501089 "6091","No","No",338.725271742496,37017.1014891509 "6092","No","No",264.942490599027,39317.5739109735 "6093","No","No",1167.3256809004,43337.1300586773 "6094","No","No",553.742886176071,39653.9830884822 "6095","No","No",485.792841695534,38281.3147946812 "6096","No","No",485.944814840486,46447.4052764736 "6097","No","No",690.438303078773,66807.9362979989 "6098","Yes","No",1588.52620557925,38014.5688450189 "6099","No","No",460.43019079267,56002.2231998379 "6100","No","No",275.660214988249,31259.9781998673 "6101","No","No",336.907119558385,41907.7161462936 "6102","No","No",307.693118992996,42220.853917674 "6103","No","Yes",1431.07769446686,20576.7799488487 "6104","No","Yes",787.618249414904,11928.555234286 "6105","No","Yes",1660.40401324683,18861.1546603918 "6106","No","No",0,41482.7016300727 "6107","No","No",1744.93580277786,43978.1123466617 "6108","No","Yes",758.309662741287,12662.1260038181 "6109","No","No",1173.46246609367,48396.5048279567 "6110","No","No",1335.54141772911,53354.8492094829 "6111","No","Yes",1434.84916401448,17459.0312731554 "6112","No","No",591.066666018387,43869.3158967986 "6113","No","No",862.7765105382,49444.7846508243 "6114","No","Yes",1233.25001064076,16076.854261266 "6115","No","Yes",911.786777701097,20928.3924409517 "6116","No","No",0,43066.267558787 "6117","No","No",286.928183997805,50618.7226076452 "6118","No","No",377.534491905743,28045.5951152414 "6119","No","No",811.792488461646,36874.6186267191 "6120","No","Yes",1856.60559557309,17845.3368472939 "6121","No","No",607.837992236717,33737.1754916676 "6122","Yes","Yes",2182.34895374804,22037.8596945121 "6123","No","Yes",1406.56767107532,23050.8882693756 "6124","No","Yes",662.090603124755,16310.7945058364 "6125","No","No",777.01624823921,52797.9390479479 "6126","No","No",0,47236.9737748412 "6127","No","Yes",769.711499590641,11262.6385471944 "6128","No","No",970.184702115234,38784.4591549757 "6129","No","No",537.926697481975,45615.1956649841 "6130","No","No",768.154883649884,39701.9349136446 "6131","No","No",1150.04092324427,19536.1603742206 "6132","No","No",902.557289065848,32765.3881295506 "6133","No","No",442.827579810392,42004.1967261282 "6134","No","No",100.866844377552,31389.4585657072 "6135","No","Yes",904.0563158125,23188.7151417704 "6136","No","No",1396.26372250623,24379.0715403844 "6137","No","No",1001.33174458437,47640.7370028943 "6138","Yes","No",1631.61561720793,38906.956406913 "6139","No","No",790.740517947027,45900.2973580157 "6140","No","No",1097.39309399029,46807.0816795955 "6141","No","No",0,37598.8627860684 "6142","No","Yes",1262.83538473139,12406.9989476438 "6143","No","No",738.19292856769,54491.1426665823 "6144","No","No",655.267748369062,28642.5825660655 "6145","No","No",0,32944.9958224265 "6146","No","No",638.540333212731,20607.4593037699 "6147","No","No",570.930887565477,46840.7212579065 "6148","No","No",1056.44366196118,31268.7370023024 "6149","No","No",1522.85515471843,35805.2559666713 "6150","No","No",977.321555533534,35296.2814099745 "6151","No","No",743.56501357471,28893.876006198 "6152","No","No",352.033277916786,38259.224093326 "6153","No","No",318.209460807772,48975.3674286855 "6154","No","Yes",674.850939233073,15798.1345957042 "6155","No","No",268.954349521987,55892.7271050541 "6156","No","Yes",1023.20547852868,17694.9655968053 "6157","No","No",718.156916820057,42172.0052137546 "6158","No","No",843.290805162947,41692.4222129256 "6159","No","No",866.729785017612,36452.7221234765 "6160","No","No",449.949321999232,38987.0248623351 "6161","No","No",459.101423002025,45043.6664005583 "6162","No","Yes",760.219529926462,17657.9855125586 "6163","No","No",1160.82763199827,26022.9525905551 "6164","No","No",1317.51298657233,49285.5454683772 "6165","No","Yes",561.781867072271,18470.2826118409 "6166","No","Yes",176.533834591692,15175.5860363194 "6167","No","Yes",1059.23634056817,12601.4712132607 "6168","No","No",526.798489619543,28491.4805026881 "6169","No","No",20.9645038465402,62862.7518268173 "6170","No","No",528.942463459578,42134.2706302658 "6171","No","No",1561.53353016525,54594.8467076871 "6172","No","No",963.722811166049,47605.7685862013 "6173","No","Yes",1227.36527335002,12128.1481729045 "6174","No","No",1209.377358572,35071.3166163516 "6175","No","Yes",671.175868767628,17564.9547548174 "6176","No","No",275.624646694949,35761.3165021919 "6177","No","No",776.1888729587,34140.9803931269 "6178","No","Yes",699.303115031174,19789.5306648714 "6179","No","Yes",606.12513463701,16957.6487635412 "6180","No","Yes",1231.21292303876,20000.062545376 "6181","Yes","No",1408.43808460249,48012.9135707117 "6182","No","No",338.49547066901,34332.8432410069 "6183","No","No",1380.48149032194,24856.6430609977 "6184","No","No",1316.42181029894,45806.9015129082 "6185","No","No",1046.18204494041,48752.1317619521 "6186","No","Yes",904.684255009856,17281.1191657024 "6187","No","No",1281.5206480373,37665.2939400411 "6188","No","No",0,46597.4950794085 "6189","No","Yes",501.111644711926,22393.2730800367 "6190","No","No",1085.95015026206,36532.718758 "6191","No","No",351.945107392988,48726.0476710277 "6192","Yes","No",1803.1702590052,36192.6302248573 "6193","No","No",666.622349038193,44931.9397555623 "6194","No","No",154.703583999015,33162.1932088175 "6195","No","No",360.089179178127,44448.9158031897 "6196","No","No",105.441003838571,35291.4633497544 "6197","No","No",492.428292481969,25848.9885016535 "6198","No","Yes",1232.42246851404,24093.2964372921 "6199","No","No",1154.39852948099,20457.2207787254 "6200","No","Yes",1113.32696440837,14579.6569774387 "6201","No","Yes",699.69803744324,22590.6679750258 "6202","No","Yes",1001.78568340883,24771.726937438 "6203","No","Yes",1217.22694663176,16449.9989993373 "6204","No","No",1156.93399834045,45325.3409651328 "6205","No","Yes",1637.4507138022,18766.8551780145 "6206","No","No",824.241432581919,53320.2829354298 "6207","No","No",662.342897180105,49885.0191183303 "6208","No","No",617.640764160629,37604.9335638557 "6209","No","No",271.451911186232,34863.1041958902 "6210","No","Yes",688.181241721348,18755.9532326181 "6211","No","No",797.709165567355,39677.6972051307 "6212","No","No",464.404331084908,53215.931577276 "6213","No","Yes",976.20221752797,23191.7707041583 "6214","No","No",1430.76614709359,45672.5199668785 "6215","No","Yes",1208.14448240103,17721.2936623594 "6216","No","No",0,41960.174498434 "6217","No","Yes",402.358799457341,15256.4841845409 "6218","No","Yes",824.514377910164,15309.2762101205 "6219","No","Yes",1060.87882369475,11041.3314995672 "6220","No","No",310.495919327847,47427.3290910962 "6221","No","No",691.41849858598,40232.6566576251 "6222","No","No",23.1522666943621,42016.8990932486 "6223","No","Yes",913.276157564341,20446.2030006723 "6224","No","No",970.816438216424,35835.3550804302 "6225","No","No",1148.44753760901,39662.1224082796 "6226","No","No",1638.68704646198,38441.1580318724 "6227","No","Yes",0,19134.4447504644 "6228","No","Yes",1448.95020726173,28273.8353885733 "6229","No","Yes",1286.83975634999,17464.9935281955 "6230","No","No",762.073599588594,48268.5913873023 "6231","No","No",977.576527456252,51074.2127413645 "6232","No","No",368.768052364588,45647.297609605 "6233","No","No",267.959338826255,46134.6226561867 "6234","No","Yes",503.156388314512,18728.2969360048 "6235","No","No",0,48523.3355536444 "6236","No","No",282.602877141145,56118.322399718 "6237","No","No",748.057043338722,47775.1808226916 "6238","No","No",999.654013569972,27564.688706363 "6239","No","No",494.660496038613,47035.7546779674 "6240","No","No",1022.68238813533,22588.5554727516 "6241","No","Yes",1135.21787066304,19062.5968717997 "6242","No","No",707.802330263558,40140.8004546232 "6243","Yes","Yes",1954.32168919689,17137.4737238985 "6244","No","Yes",1282.35040946049,7230.03047089224 "6245","No","No",808.616921547397,23519.672554832 "6246","No","Yes",1219.9337508547,21765.3821156194 "6247","No","No",481.880421732302,44137.0795000152 "6248","No","No",409.411749149658,53624.4577497651 "6249","No","No",1157.27734673627,31369.4919406711 "6250","Yes","No",1424.93289000674,27668.952235473 "6251","No","No",0,58825.6151260292 "6252","No","No",687.069130737925,34434.2182340633 "6253","No","No",1435.6629330318,31507.0892769087 "6254","No","No",188.544102040965,49697.2317876452 "6255","No","No",1084.3874989557,34558.6157778435 "6256","No","No",644.618590793448,37452.0672064142 "6257","No","No",1345.56313071406,38602.1129816912 "6258","No","Yes",733.719463533471,27165.4799804705 "6259","No","Yes",744.178014844323,20773.627399272 "6260","No","No",0,29542.0253992459 "6261","No","Yes",1395.96188164562,23717.8511138612 "6262","Yes","No",1920.24233205636,57242.9834069871 "6263","No","No",538.413267908729,40773.9414587936 "6264","No","Yes",385.69826231499,18352.4362518163 "6265","No","Yes",1350.7575768851,19692.9187842779 "6266","No","No",1567.76385602067,39201.2418579226 "6267","No","No",753.686888348247,42230.6477729661 "6268","No","No",72.371953370087,28717.9406215258 "6269","No","Yes",675.036024406725,21115.7931230146 "6270","No","Yes",980.164350015296,13713.5022348193 "6271","No","Yes",910.383604650027,19163.8069881897 "6272","No","Yes",1262.88429915506,14340.5079413575 "6273","No","No",621.312719186294,39372.0771909379 "6274","No","No",643.402638638703,50208.8237204257 "6275","No","Yes",728.259291664541,13438.9855560242 "6276","No","No",459.260227693732,59731.2887824528 "6277","No","No",289.616664242634,49066.8336532824 "6278","No","Yes",784.746614098042,11642.9222904291 "6279","No","Yes",712.594773206876,18441.0261223747 "6280","No","No",1096.00360127447,52030.9726046463 "6281","No","Yes",435.485531143428,19899.7545673387 "6282","No","No",688.022470132904,29019.8178882188 "6283","No","No",599.428358613756,36654.6481747663 "6284","No","No",68.7562944774306,45811.7429439996 "6285","No","Yes",765.136998638814,14290.2676305606 "6286","No","No",1273.12457069577,57688.5680465556 "6287","No","No",1078.62106094141,46060.0847661993 "6288","No","No",1677.34895638258,44972.7098631219 "6289","No","No",531.756183939059,42365.0736708439 "6290","No","Yes",631.172612415915,11075.8940578867 "6291","No","No",1081.47853357271,34072.6438141387 "6292","No","No",368.515345585694,60953.8247890952 "6293","No","No",343.726999112545,38054.5553979042 "6294","No","No",1715.28268889019,60137.6336767813 "6295","No","No",450.335579768253,20080.1021192825 "6296","No","No",740.580773422977,20717.544444772 "6297","No","No",0,26237.4743420025 "6298","No","No",475.869038714081,35621.6911156828 "6299","No","Yes",1383.74505860674,14633.9858800545 "6300","No","Yes",406.482384904556,22708.9010795616 "6301","No","No",857.261565698386,34406.6108232183 "6302","No","Yes",1637.23520108736,16751.1697505978 "6303","No","No",1094.31587152691,34854.3423889239 "6304","No","No",1213.12707351588,47848.0479031211 "6305","No","Yes",1074.74640640823,22729.3086500762 "6306","No","Yes",1010.21263339552,13469.8666480292 "6307","No","No",416.128286440287,21960.6245554699 "6308","No","Yes",675.841346528661,17801.474355562 "6309","No","No",0,36338.848496024 "6310","No","No",867.304173246052,29541.0431470904 "6311","No","No",843.907303418097,23956.519367605 "6312","No","No",766.430430038519,39078.7969995895 "6313","No","No",1286.53723250416,46337.1238933082 "6314","No","No",1142.93515351666,34401.6671117773 "6315","No","Yes",925.411287617391,15120.3356225576 "6316","No","Yes",1110.45382300899,14965.4373853847 "6317","No","Yes",938.605975477252,24392.1040357114 "6318","No","No",321.039742945537,37026.5871638077 "6319","No","No",943.387640676355,39415.5956472554 "6320","No","No",511.598770167744,54002.5116638967 "6321","No","No",743.849598629398,24303.4676265731 "6322","No","No",1089.57706066055,46890.2154037835 "6323","No","No",0,46275.3634688309 "6324","No","No",0,31511.6574646955 "6325","No","No",1282.32124736986,37437.7109632329 "6326","No","No",1373.7967923188,36888.9284103698 "6327","No","No",1228.33429993148,43577.66949173 "6328","No","No",1536.78831191053,34734.8638835725 "6329","No","No",735.470434133364,53312.5305272226 "6330","No","Yes",1142.42760501705,26114.4031521738 "6331","No","No",1490.71507559311,36417.400041399 "6332","No","No",880.032832524916,60203.8815636414 "6333","No","No",2.84301484022319,39923.8192960501 "6334","Yes","Yes",2066.69560264995,10470.6359999562 "6335","Yes","No",2343.79751269872,51095.2939288164 "6336","No","No",929.745481690635,36071.5242639506 "6337","No","Yes",764.627790674236,26188.0694950508 "6338","No","No",504.604495228821,31870.0182915052 "6339","No","No",685.206941440502,40555.7998847453 "6340","No","No",473.02745797478,43016.8607304856 "6341","No","No",1302.55349925073,32235.0524502403 "6342","No","No",435.004134228777,30828.8603927349 "6343","No","No",601.838500949302,37697.3700511627 "6344","No","No",456.763657699437,50160.6336955449 "6345","No","No",1065.04291804197,37747.1040516635 "6346","No","No",1153.33189611141,37936.0870765089 "6347","No","No",59.6330014772174,35709.7384629771 "6348","No","Yes",1106.43067393635,16960.6941248389 "6349","No","Yes",1106.45352459194,14840.9381345027 "6350","No","Yes",385.430994048668,21619.6634121321 "6351","No","No",0,45025.5116482779 "6352","No","No",727.957482040349,53606.9731408304 "6353","No","No",1028.77760890511,36276.0851393196 "6354","No","Yes",1035.91668862827,10607.9061350408 "6355","No","No",974.597718681195,25316.8587476378 "6356","No","No",772.809219890657,39944.6072003905 "6357","No","No",1014.9739793686,41993.6406134555 "6358","No","Yes",0,10276.2561072754 "6359","No","Yes",1403.78934069962,22893.9605150922 "6360","No","No",580.423341333844,25926.2350880841 "6361","No","No",499.550744378248,45954.6712416404 "6362","No","Yes",748.236205405347,11613.2229514115 "6363","No","No",568.093969521188,31392.0669487111 "6364","No","No",1366.72577354255,35425.51207701 "6365","No","No",511.678894076063,32693.8508798088 "6366","No","Yes",678.217875305686,19979.6939940884 "6367","No","Yes",1692.42056037406,7761.34290395257 "6368","No","No",631.804597881122,32752.5192557897 "6369","No","No",585.050054612907,34297.5652717648 "6370","No","No",1173.49079160122,44134.744873303 "6371","No","No",544.237427620852,43306.6211365794 "6372","Yes","Yes",1985.32173867563,22248.4026595649 "6373","No","No",1011.06090429807,38001.7121026909 "6374","No","No",1231.214516945,48156.3575590725 "6375","No","No",875.84248302776,45524.5321991767 "6376","No","No",1516.06538379219,59194.2392055884 "6377","No","No",563.121261146761,30226.4827235198 "6378","No","Yes",1244.56692703869,21717.4758713767 "6379","No","Yes",1215.6434680202,16403.6857647769 "6380","No","No",1077.7471273438,30133.2576289141 "6381","No","Yes",1393.91636806336,16658.483076576 "6382","No","No",803.570067410546,45353.970680412 "6383","No","No",916.749237784122,58469.9335612685 "6384","No","No",147.049333558096,52074.5106972395 "6385","No","No",734.47278062031,46805.5530163825 "6386","No","Yes",996.205915012754,13647.5357449778 "6387","No","No",1883.20020660212,47438.2557139199 "6388","No","No",1271.11569766438,40578.3161858595 "6389","No","No",173.733418051803,32480.5339803496 "6390","No","No",1004.18766453742,37132.657213994 "6391","No","Yes",2033.3624960493,18549.7453853583 "6392","No","No",269.357861809914,40883.1854707986 "6393","No","No",441.701436036663,44227.9102669818 "6394","No","No",1471.60862883275,61385.5998656021 "6395","No","Yes",1133.82200395797,16602.0280192795 "6396","No","No",843.352661071678,51736.9102504954 "6397","No","No",250.468332543304,42309.0828207204 "6398","No","No",1569.72827330174,30604.2864482531 "6399","No","Yes",995.347111840736,11690.7412581951 "6400","Yes","No",1572.34558970181,37895.1730685155 "6401","No","No",1570.4161790221,49501.8103764281 "6402","No","No",645.931623040968,39695.6272589398 "6403","No","No",1001.85301122289,32748.6309370085 "6404","No","Yes",905.231295487767,15699.8984589623 "6405","No","Yes",859.379689793499,19287.5036985077 "6406","No","No",1670.85028486118,54442.2661966056 "6407","No","No",391.256627667898,33651.4055616119 "6408","No","No",670.008248424474,35919.7967694236 "6409","No","No",1036.05383453276,44869.4601898453 "6410","No","No",481.989491304848,19240.3142866129 "6411","No","Yes",542.769255622058,17664.8814338304 "6412","No","Yes",887.288924292299,17409.0311196404 "6413","No","Yes",1465.84955404493,17678.7363065959 "6414","No","Yes",1545.63745986469,13959.9936735773 "6415","No","No",262.791336186532,28974.7505490968 "6416","No","Yes",793.796375781413,21172.4041224321 "6417","No","No",1192.76615832583,45902.5075546804 "6418","No","Yes",1120.32087759081,29045.4067978248 "6419","No","Yes",514.199497794009,21482.0348084397 "6420","No","No",710.760427503805,53050.4853756102 "6421","No","No",1176.24327053548,27956.7828970299 "6422","Yes","No",1805.55958800801,40119.7878293954 "6423","No","No",124.828459521634,39478.3000749473 "6424","No","No",1056.9932389288,45489.8966758987 "6425","No","Yes",904.994670662576,19108.7423327689 "6426","No","No",1402.12013840063,41275.6454675378 "6427","No","No",7.06953029158558,48711.6374862113 "6428","No","Yes",733.78339042547,16124.3542488896 "6429","No","No",612.960653042669,43392.887089339 "6430","No","No",998.704699011465,46697.7777728682 "6431","No","No",1078.45700052818,33001.1265148157 "6432","No","No",638.476386396818,53034.552332322 "6433","No","Yes",890.048104543381,15156.9191332201 "6434","No","No",815.682132476711,53817.2797514384 "6435","No","No",1276.98264992429,40611.3486878798 "6436","No","No",671.185770842318,44120.6417390268 "6437","No","No",818.28434663854,48490.8121880235 "6438","No","No",1371.33089893175,35820.629832872 "6439","No","No",897.495756050913,47816.4116102516 "6440","No","Yes",699.696422430527,17318.8818697219 "6441","No","No",848.940738136621,35534.9838909539 "6442","No","No",0,27297.9095207254 "6443","No","Yes",1660.86106385367,13694.8564537132 "6444","No","No",1475.50384683721,44769.1221419027 "6445","No","No",0,22431.4535442587 "6446","No","No",1186.96435587922,33439.8363961669 "6447","No","No",844.403802606626,36854.6363431765 "6448","No","Yes",1540.30882373607,15241.0158797215 "6449","No","No",679.707580876161,29534.8214632962 "6450","Yes","No",1650.57800035387,31514.2596520501 "6451","No","Yes",614.783859495222,18487.2337118371 "6452","No","No",1379.67804381773,31766.2935985596 "6453","No","Yes",770.105538487904,15284.719925954 "6454","No","No",1209.54028191565,40805.7776315861 "6455","No","Yes",1380.96981860135,13633.4334735927 "6456","No","No",1349.10644291826,28340.4373630662 "6457","No","Yes",1051.39385283445,23520.4259953959 "6458","No","Yes",428.425822056004,15446.9580283448 "6459","No","No",1714.18602954936,52779.0888169049 "6460","No","Yes",1647.80128271056,15392.2129768749 "6461","No","No",482.975818834569,47924.6766405041 "6462","Yes","No",2124.67131340206,44520.000102649 "6463","No","No",297.838221600525,34549.4626310993 "6464","No","No",1201.34804245462,35858.4042876616 "6465","No","No",811.241947619258,26448.3284969801 "6466","No","No",0,36201.5388732693 "6467","No","No",585.804176768659,30143.3285117119 "6468","No","No",511.32185498375,38510.1609106431 "6469","No","No",1249.19417416597,45586.8902165017 "6470","No","No",48.9655502639223,27069.7397840305 "6471","No","No",863.574709912629,32889.3839613994 "6472","No","No",1579.35946543667,50216.5716279253 "6473","No","No",800.609332848504,50324.5549267962 "6474","No","Yes",1356.53469066146,19480.5437729765 "6475","Yes","Yes",1704.57852928341,16887.4051366611 "6476","No","Yes",528.585688721324,19621.6292186254 "6477","No","Yes",1390.50766599778,15885.5107827365 "6478","No","Yes",333.541196216677,27321.5578347645 "6479","No","No",1569.556298596,36306.0194414557 "6480","No","No",1509.78088703495,43650.4185057626 "6481","No","No",961.241554483775,31647.287484501 "6482","No","No",1443.50744678497,47205.348659789 "6483","No","No",0,37605.379393724 "6484","No","No",895.395951814918,48939.7356573301 "6485","No","No",1355.8668429275,45537.9549160757 "6486","No","Yes",960.11398559513,24326.060273482 "6487","No","No",1164.47640009829,36997.7189763332 "6488","No","No",535.182915811552,37042.7664904696 "6489","No","Yes",1424.77292741312,21852.9298809929 "6490","No","No",773.172491507927,50069.2088216444 "6491","No","No",685.192569602747,33185.010437872 "6492","No","No",343.768806093232,51626.1356931331 "6493","No","Yes",1513.54156843839,23556.6905037062 "6494","No","No",415.003634136448,37859.31445796 "6495","No","No",1034.36018039369,25111.2125512162 "6496","No","No",1115.8960083931,21646.3059481466 "6497","No","Yes",748.746430922286,17440.626550084 "6498","No","No",291.408728923275,54408.788976338 "6499","No","Yes",453.929798646848,12665.3069954235 "6500","No","No",889.565857036579,49941.0886297848 "6501","No","No",345.190624410366,48111.4462184115 "6502","No","No",393.828577983662,28362.6246287932 "6503","No","Yes",991.093996282783,16842.4361428305 "6504","No","No",4.46645782066093,45157.9096157594 "6505","No","No",660.05891868537,39163.3272651966 "6506","No","Yes",1168.86840328253,18113.3437663792 "6507","No","No",528.867388165435,38881.4762648934 "6508","No","No",89.3340476687288,36515.9815919035 "6509","No","Yes",196.776728724821,15858.3533012716 "6510","No","No",1637.34775868048,37676.6631174408 "6511","No","No",574.955357679402,33517.2110282314 "6512","No","No",969.134944037313,29705.0413235056 "6513","No","Yes",1049.241310546,23332.4838409643 "6514","No","No",772.531269674791,23222.7397654429 "6515","No","No",1304.06828488441,26219.3231448631 "6516","No","No",875.875269355093,37160.9607959084 "6517","No","No",587.074529854938,34975.9764731986 "6518","No","Yes",495.136132955298,15519.4851235698 "6519","No","No",131.633998250593,42028.0085987333 "6520","No","No",1333.18212763679,19396.0318800155 "6521","Yes","No",1819.24909460129,49621.0561715013 "6522","No","No",953.816075507603,45281.3698500808 "6523","No","No",327.038582491764,51348.9372686679 "6524","No","No",989.636309999908,27318.9437058364 "6525","No","No",1109.22148329882,56680.1375308278 "6526","No","Yes",0,9321.4637343151 "6527","No","Yes",635.394657997528,18344.0754556225 "6528","No","No",100.021825035447,48377.6412807732 "6529","No","No",264.96805412597,36842.8226614232 "6530","No","No",465.845663824603,52714.0888633024 "6531","No","No",1227.26180035355,49697.0461841938 "6532","No","No",1378.67764270611,30862.9963586514 "6533","No","No",715.656721728525,23266.1356879781 "6534","No","Yes",0,21719.4548323269 "6535","No","No",1335.23028139805,43660.3917144764 "6536","No","No",1576.90364668831,35117.8053539428 "6537","No","Yes",1232.59035337314,22108.5803668768 "6538","No","No",1613.71411366105,47151.6097573017 "6539","No","No",763.743166120878,59856.7966744683 "6540","No","No",741.430158989983,32951.1793551857 "6541","No","No",325.586549913805,45809.9842404834 "6542","Yes","No",1797.76701894827,47068.724605617 "6543","No","No",899.902700389718,47093.73837724 "6544","Yes","No",1605.21458639037,26149.1482230276 "6545","No","No",0,42879.3969382104 "6546","No","No",886.689023472008,50507.9308095184 "6547","No","No",1008.29063504735,30801.0897521694 "6548","No","Yes",1034.50445305921,19105.6282177488 "6549","No","Yes",1125.73450731592,23410.0994120351 "6550","No","Yes",1070.95073407284,12707.580411669 "6551","No","No",920.408497828846,40536.6424788207 "6552","No","Yes",734.733164890242,10816.9497658311 "6553","No","No",1701.68848691138,38567.2047054257 "6554","No","No",1453.31617301335,29830.0567407011 "6555","No","No",294.024346115685,49988.1473141347 "6556","No","No",1302.47913157629,43154.3929272714 "6557","No","No",1135.18798440953,47075.0323003011 "6558","No","No",1123.63313874114,17292.3031718193 "6559","No","Yes",483.109799304421,15067.313708392 "6560","No","No",1669.5026869634,30259.256369494 "6561","No","Yes",1051.37688911756,13271.4646920284 "6562","No","Yes",778.340916811529,23737.2667567406 "6563","No","No",37.9908485136482,43787.7818950852 "6564","No","No",599.879669777376,51733.8251737169 "6565","No","Yes",1037.64286692044,22889.4889815833 "6566","No","No",1187.46360760233,37092.5904084287 "6567","No","No",1287.20589549305,37135.3639398797 "6568","No","No",599.380380137431,58909.3442631081 "6569","No","No",278.078455799143,33811.6692142213 "6570","No","No",536.700808563883,35786.5148166 "6571","No","No",626.514786193039,55155.0778632325 "6572","No","No",0,54298.8596097499 "6573","No","No",885.510006686116,42683.4797282413 "6574","No","Yes",1314.84172413687,15965.4150053432 "6575","No","No",580.164720972546,31879.138933856 "6576","No","No",1144.53051107846,40998.9273365533 "6577","No","No",0,55435.4305474685 "6578","No","No",321.308581363967,33136.3364817528 "6579","No","No",776.395873647769,49705.8161799169 "6580","No","No",519.308691599167,42861.9326596232 "6581","No","No",892.281071819882,40492.1005817823 "6582","No","Yes",945.0549544733,21095.5381789028 "6583","No","No",840.236847473966,24801.368106669 "6584","No","No",660.533671837818,31480.0408165192 "6585","No","No",213.010073963225,38950.6000660758 "6586","No","No",506.824141742222,50493.0952625075 "6587","No","No",884.660671550052,35324.0202172327 "6588","No","Yes",296.462756021594,20138.2469854034 "6589","No","Yes",700.075337653754,14828.5505925092 "6590","No","No",927.468684967434,44308.2823244709 "6591","No","Yes",1172.27349764421,22792.6216909739 "6592","No","No",841.526249578981,40239.677398712 "6593","No","No",49.682397301772,47026.0385452057 "6594","No","Yes",903.916652133078,20246.3932304422 "6595","No","No",600.18270085246,50578.0542344249 "6596","No","Yes",1749.12218401084,21359.1315466029 "6597","Yes","Yes",1893.02300430521,16853.3295653838 "6598","No","Yes",1636.51972469254,17533.3422009671 "6599","No","Yes",1533.91193640526,16453.8830816312 "6600","No","Yes",1523.72257079709,15708.9577283378 "6601","No","Yes",1156.62020011113,11102.5681462402 "6602","Yes","Yes",2168.45319610867,24648.9799157642 "6603","No","No",456.830738069141,39629.5808401885 "6604","No","No",1616.16858639682,39654.6188645202 "6605","No","Yes",1311.86009883369,15565.1976959325 "6606","No","Yes",437.068295607682,21638.9478395241 "6607","No","No",683.114615595568,31615.3655535259 "6608","No","Yes",1327.28243902948,15819.3593199174 "6609","No","No",797.630942096371,54042.3622475245 "6610","No","No",635.707607612644,26084.6960491472 "6611","No","Yes",1312.88531954721,16221.2028921882 "6612","No","Yes",944.8328467186,23323.8227309825 "6613","Yes","No",1838.87136892563,32129.3398189179 "6614","No","No",267.372318799335,41183.6574862839 "6615","No","Yes",723.540414655993,28289.2359115583 "6616","No","No",610.052170853123,35855.3879303433 "6617","No","No",1861.31769729946,46653.5887355559 "6618","No","No",0,34882.2285462766 "6619","No","No",1577.97254360463,50430.2398100676 "6620","No","Yes",954.150390455917,15969.8199667989 "6621","No","No",204.39619956638,38979.6238800119 "6622","No","Yes",1109.46821724848,21663.1324734238 "6623","No","No",771.224877649241,47146.4395098562 "6624","No","No",376.350443987224,32168.4421591768 "6625","No","Yes",1523.88009546054,19342.983519581 "6626","No","Yes",1178.21173671124,12077.0132631664 "6627","No","Yes",1457.57538055378,19668.1577588603 "6628","No","Yes",1292.44731610947,8231.03742327335 "6629","No","No",1233.50222154788,23031.6008932731 "6630","No","No",542.140575136042,22394.1911044491 "6631","No","No",1381.81926933794,48394.289618696 "6632","No","No",1157.76811279803,49960.7652059971 "6633","No","No",744.493874512598,24506.6781957733 "6634","No","No",1387.49054933013,40993.5953389797 "6635","Yes","No",1434.12771574145,47311.5304210632 "6636","No","No",1483.53656327982,34156.3742030791 "6637","No","No",1340.89319243269,31959.9655971505 "6638","No","No",972.094401559996,26231.1459131138 "6639","No","No",1511.87938711542,36381.2376497741 "6640","No","Yes",1111.99772246377,20549.6203542259 "6641","No","Yes",1555.5633519974,15957.3288311695 "6642","No","No",1727.36514642417,41707.4773032752 "6643","No","No",25.7358488954937,49089.6040759974 "6644","Yes","Yes",1895.33493298048,16394.5081086404 "6645","No","Yes",417.478256980257,17787.9478232724 "6646","No","No",247.19905719341,37377.3578246637 "6647","No","No",91.3876980949715,44091.8760022769 "6648","No","Yes",617.089796003652,22801.6639674736 "6649","No","Yes",793.333785080227,10487.9301783322 "6650","No","Yes",1035.7209657486,20393.2700245789 "6651","No","No",826.981750400875,35426.1807962439 "6652","No","No",1734.45156392034,31578.0049503928 "6653","No","No",1069.6220603923,40299.3199102539 "6654","No","No",626.838428236661,41334.1835259785 "6655","No","No",932.056966292719,45505.3072242837 "6656","No","No",1551.02773138271,31768.0306081718 "6657","No","Yes",315.090268398632,22551.891246075 "6658","No","No",1059.35160533058,41179.0100155982 "6659","No","No",976.704047909637,59291.7225668652 "6660","No","Yes",562.558936899144,11524.8103500998 "6661","No","Yes",310.020277059122,16382.1529296615 "6662","No","No",936.9447650212,40240.4971080424 "6663","No","No",0,43033.4922461325 "6664","No","Yes",431.197047291067,20301.4936695647 "6665","No","No",1411.54871811982,42956.6313940264 "6666","No","Yes",1183.45281522434,16189.2883933786 "6667","No","Yes",1849.60366586347,16966.8859214148 "6668","No","No",391.482079303432,45821.6332279707 "6669","No","No",10.8849413073991,32866.4452384084 "6670","No","Yes",697.248632586975,25730.9175826238 "6671","No","No",175.054336957999,22644.9958781972 "6672","No","Yes",1094.74057904676,19638.265428074 "6673","No","Yes",134.624041122727,19464.2987072675 "6674","No","No",1069.74833184278,32441.2819775573 "6675","No","No",1165.81259867426,47005.5732858795 "6676","No","No",321.218102077606,43257.3534881096 "6677","No","No",178.275032128603,35615.9281065657 "6678","No","Yes",953.85848181184,18121.1133574643 "6679","No","Yes",1335.81270700321,12843.4480324123 "6680","No","Yes",853.594325403116,25373.4621853561 "6681","No","No",639.62567466641,38660.9232245854 "6682","No","No",1051.84774862331,37160.2733032415 "6683","No","No",335.107155766791,36374.2143825641 "6684","No","No",1193.76279235836,34909.3088814725 "6685","No","No",915.203083538807,31422.9455472119 "6686","No","No",426.087027438672,15498.8694742336 "6687","Yes","Yes",1805.6183529996,19168.0299741275 "6688","No","No",717.478956364503,37810.4721333394 "6689","No","No",520.947287347575,41039.2824540712 "6690","No","No",1034.89243123867,34539.8457594936 "6691","No","Yes",1022.59833632716,11739.0959841144 "6692","No","No",617.591440461858,43871.6979585579 "6693","No","Yes",1322.16229345805,16984.1982641472 "6694","No","No",476.591394942606,33760.4583097893 "6695","No","No",1101.09122392197,43035.5620761571 "6696","No","Yes",1019.57911236953,15833.790650411 "6697","No","No",329.44827264028,43242.8753661793 "6698","No","Yes",949.23382481874,25040.7123388485 "6699","No","Yes",1230.71462791196,18581.2746126331 "6700","No","No",1252.65305823313,35382.1403253839 "6701","No","No",0,47019.6632264432 "6702","No","No",642.269304833237,37752.3845900199 "6703","No","No",512.51352584874,44178.8405036654 "6704","No","No",1114.90155183715,38155.3683870141 "6705","No","Yes",1742.34653491169,10778.1548681166 "6706","No","No",763.022312459412,34931.3482868207 "6707","No","No",878.44473088973,47722.8103498075 "6708","No","Yes",936.229550899064,14217.401520315 "6709","No","No",585.237716368989,40585.7465430587 "6710","No","No",347.614099566677,40138.0778024224 "6711","No","No",607.898642294942,26117.6651716242 "6712","No","Yes",1251.08575644472,21968.2699917387 "6713","No","No",316.536434918891,39995.3188027128 "6714","No","No",336.797040313976,42880.464298445 "6715","No","Yes",871.066795757733,13144.3655839827 "6716","No","No",1187.90468623557,43873.9829119949 "6717","No","No",86.0127899647048,43467.5026537496 "6718","No","No",737.041709018461,27879.6568461805 "6719","No","Yes",1419.87072143754,10401.0466649939 "6720","No","Yes",402.503365602264,12255.8707416565 "6721","No","No",191.215000735492,41921.6828541407 "6722","No","Yes",1836.78008641535,15422.2321631999 "6723","No","Yes",1273.1862477934,20429.6213674886 "6724","No","No",1037.60063686564,40415.8229822359 "6725","No","No",827.542885547743,39655.6770086561 "6726","No","No",915.913590234859,34934.4823935399 "6727","No","Yes",212.708644106102,13155.6720563754 "6728","No","No",941.168179641529,58991.8615093822 "6729","No","No",487.416894339608,34439.9033140515 "6730","No","No",1889.52477548295,32509.6162569272 "6731","No","No",691.202279432214,38948.1053558833 "6732","No","Yes",502.645821222757,14425.0841680532 "6733","No","No",140.018575657783,52099.1162994549 "6734","No","No",0,36484.5941490833 "6735","No","No",519.461494214481,44498.015589091 "6736","No","Yes",1031.86979767225,19322.5523521758 "6737","No","No",939.66939011627,47112.7653034597 "6738","No","No",0,44902.9293469253 "6739","No","No",1093.68490238496,39684.451930144 "6740","No","Yes",1623.33660466742,14338.4087813252 "6741","No","No",851.204010639394,44905.3253123763 "6742","No","No",1119.7026481001,33510.3571772555 "6743","No","No",0,32720.571704904 "6744","No","Yes",744.914266466495,15711.716417211 "6745","No","Yes",303.345868403883,15220.599320804 "6746","No","No",1522.7559269208,29165.4431869562 "6747","No","No",361.367609935872,36533.7103584246 "6748","No","No",1062.72792746379,48041.6493951147 "6749","No","Yes",1344.0946787466,22012.2931469098 "6750","No","No",387.731918536029,55163.7969407479 "6751","No","No",860.028242922584,56687.1435385628 "6752","No","No",1637.35795482487,46629.9469681977 "6753","No","No",975.198512299475,30573.258054574 "6754","No","No",487.797479695295,21418.6946785754 "6755","No","No",0,49626.4156245673 "6756","Yes","No",1562.45458493467,43067.3337360648 "6757","No","No",1399.12616301261,26505.0201256997 "6758","No","Yes",542.064065970151,9135.88677403038 "6759","No","No",901.075726458657,38613.4266514959 "6760","No","No",295.870568858272,19054.0304980425 "6761","No","No",90.5614102875277,50939.5211535323 "6762","No","No",476.149931465101,58837.7231108606 "6763","No","No",382.885062371549,42620.5302295829 "6764","No","No",1013.96374594514,49653.797125496 "6765","No","Yes",932.685798904273,15774.7010629533 "6766","No","No",360.574948754149,42217.3829194421 "6767","No","No",727.963608364032,40258.7017158036 "6768","No","No",917.952756407793,31380.2331709961 "6769","No","No",1567.16535665761,38255.0505677174 "6770","No","No",1006.68048810668,33348.5753598313 "6771","No","No",1278.93266550967,42894.7652950297 "6772","No","No",0,56493.4860935359 "6773","No","No",1107.48786714994,23530.6227254858 "6774","No","Yes",1719.56685067072,18696.2987495256 "6775","No","No",1066.17466172765,33911.5648735603 "6776","No","No",0,30172.8105945502 "6777","No","Yes",1296.10352692953,15709.4557934374 "6778","No","No",720.244598512222,38493.4919321852 "6779","No","No",574.638223310543,41914.4695159586 "6780","No","No",241.430088847648,34507.7759344293 "6781","No","No",345.14214305995,41943.7728369267 "6782","No","No",1341.70344157685,53122.0689582977 "6783","Yes","No",1847.79137287982,30202.8462381974 "6784","No","Yes",1497.06776735759,9030.40256351934 "6785","No","No",503.391240045086,29187.4441155392 "6786","No","No",1119.57544932473,42280.8090301403 "6787","No","No",1172.41517190972,58067.1298181025 "6788","No","Yes",1594.38458640784,21514.6027977762 "6789","No","No",566.443852583261,36039.3940739969 "6790","No","No",542.470159190065,39037.8010123156 "6791","No","No",1086.42093928535,38656.6631307308 "6792","No","Yes",995.03943010905,8750.55879965906 "6793","No","Yes",1200.87597553929,13833.9821981928 "6794","No","No",0,56895.9619836109 "6795","Yes","No",1508.64924310288,37111.3089039706 "6796","No","No",1170.54794573518,52358.8009264251 "6797","No","No",1356.74383618414,54489.9387774168 "6798","No","No",850.03641056271,31522.2346514117 "6799","No","No",1184.14038273806,25196.7617863616 "6800","No","No",902.713664465989,23847.3922912817 "6801","No","Yes",1597.89091404172,24006.180390084 "6802","No","No",1079.07612251215,36636.2800459142 "6803","No","Yes",1503.57844528679,18776.5338455694 "6804","Yes","Yes",1570.6587796556,16239.1531737462 "6805","No","No",0,41655.6822607587 "6806","No","Yes",735.578364822891,13976.6859106159 "6807","No","No",923.346231764488,44670.8642404417 "6808","No","Yes",1269.67822272096,13998.3067322622 "6809","No","No",706.481931471293,48339.8789934832 "6810","No","No",1146.8753977636,64644.9052937777 "6811","No","Yes",1749.54960903014,20078.3618751111 "6812","No","Yes",263.491319996353,25363.5952468832 "6813","No","No",468.869908473501,44285.3201124122 "6814","No","No",443.913087817629,35241.9929724056 "6815","No","No",375.720573035678,35564.4102724882 "6816","No","No",772.822997669751,25556.7571651335 "6817","No","No",750.139537230604,17993.8204877237 "6818","No","No",414.804258718943,37825.3721833992 "6819","No","No",626.175227742675,33930.9750471622 "6820","No","No",645.201209110071,44324.2243635148 "6821","No","Yes",1287.28723524741,13215.9702541318 "6822","No","No",1391.26115350664,51169.3622077771 "6823","No","Yes",601.804689792233,16266.3025981603 "6824","No","No",1061.31087443623,33942.6197454918 "6825","No","No",272.750468578767,42646.7048890104 "6826","No","Yes",1421.74012892227,11134.9396021509 "6827","No","No",1065.62680637814,36015.6875836991 "6828","No","No",1167.03505894924,34467.5428636393 "6829","No","No",949.129084899619,28411.6564861553 "6830","No","Yes",565.988728443035,18645.9366490187 "6831","Yes","No",1914.10696202772,55573.7017123721 "6832","No","No",515.942805113736,50678.3369443292 "6833","No","No",1347.46071020221,32720.4457444376 "6834","No","No",124.305910805526,44464.6358474661 "6835","No","No",1007.22029633501,42183.0897289732 "6836","No","No",218.337959915025,44179.9465035539 "6837","No","No",1344.55595046163,34841.260517708 "6838","No","No",1063.21952649285,27887.2505285566 "6839","No","Yes",624.543165674628,14820.4671927587 "6840","No","No",559.832011277457,39144.4768374331 "6841","No","No",341.386840479662,29326.3392356403 "6842","No","No",574.164492504123,44072.0607972807 "6843","No","Yes",734.898256761058,11868.0742124963 "6844","No","No",875.295334786835,46041.7562780251 "6845","No","No",366.090802610492,47096.3780661141 "6846","No","Yes",1009.99387200895,19870.5365805021 "6847","No","No",221.922490582919,32988.5713577033 "6848","Yes","Yes",1957.12029492724,18805.9521289077 "6849","No","Yes",1050.4312909571,19246.3330925914 "6850","No","No",612.324988948466,55326.4128432861 "6851","Yes","No",1456.96393044029,49054.1938883123 "6852","No","Yes",1821.52391746074,15802.3892930249 "6853","No","Yes",770.328029480587,29059.1446947617 "6854","No","Yes",1269.90627395329,771.967729386357 "6855","No","Yes",1923.38194071368,12940.2278324251 "6856","No","No",890.759497161851,20257.3799905086 "6857","No","No",1341.05478800605,33778.1620359403 "6858","No","No",888.265039364919,37745.605173638 "6859","No","Yes",1189.31395853398,19545.7271170543 "6860","No","No",1820.54049444127,46251.4486884001 "6861","No","No",481.840936169969,36377.6474336846 "6862","No","No",432.092064833132,56732.7372801469 "6863","No","No",683.997177817983,36578.1846500597 "6864","No","No",354.701953160098,44412.1939231786 "6865","No","Yes",669.737237276828,17109.630480395 "6866","No","Yes",713.92287437803,26049.9756416507 "6867","No","No",597.041608734639,31713.0976939754 "6868","No","Yes",1306.41687939066,18996.3503217393 "6869","No","No",1991.13551404059,30809.6745673939 "6870","No","Yes",717.632894780562,19590.9710043964 "6871","No","No",390.606676891254,38083.5473003731 "6872","No","Yes",1862.53865898232,23839.5725230292 "6873","Yes","No",1143.68050317136,37751.0173411394 "6874","No","No",264.372356972425,45778.308946636 "6875","No","No",216.846533279374,37160.9410951088 "6876","No","No",686.892928589707,51120.8299797229 "6877","No","No",1642.19231860975,24444.3121751467 "6878","No","Yes",0,15587.9006038082 "6879","No","Yes",1218.64921197662,19206.1334637425 "6880","No","No",1970.85976085399,37905.2526333646 "6881","No","Yes",1151.73331728929,23149.5474930787 "6882","No","No",539.077720825741,36275.4557232692 "6883","Yes","Yes",2287.17384201509,18692.1443107782 "6884","No","No",1218.24580162308,56816.8089387227 "6885","No","No",700.453136926996,54661.1150697389 "6886","No","No",1167.23167850084,30648.4287991214 "6887","No","No",1492.61502806146,46174.6979911956 "6888","No","No",666.394794790436,34912.33670141 "6889","No","Yes",636.898809515342,23005.575945443 "6890","No","No",420.72702302223,37831.5700769464 "6891","No","No",879.052649120858,30633.8419389473 "6892","No","No",376.241161424901,25821.1610609312 "6893","No","No",961.40245406434,25478.8183475055 "6894","No","No",500.72854111181,33406.0541135306 "6895","No","Yes",369.679932317278,24834.4175810052 "6896","No","No",719.93804397567,31031.2193961697 "6897","No","No",1168.34700459466,39275.1935417815 "6898","No","No",600.538096885772,39260.3821217756 "6899","No","No",0,18593.9147350522 "6900","No","No",252.944896791095,23443.4164575638 "6901","No","No",676.430888753692,53378.9885244964 "6902","No","Yes",1066.82218828697,26348.3036410949 "6903","No","Yes",1004.65057736924,13869.7520966379 "6904","No","No",1010.42114145537,46217.8095555543 "6905","No","No",1260.93129441239,27697.338251997 "6906","No","No",402.632427287244,58828.7922472825 "6907","No","Yes",919.47548466323,6100.73320179588 "6908","No","No",1004.65381639424,42729.1822272495 "6909","No","No",614.538566272609,33811.9876207301 "6910","No","No",1358.10977879143,50662.8927850888 "6911","No","No",160.524878725024,29675.8354904945 "6912","No","Yes",1190.18882924144,15860.3266837987 "6913","No","No",262.599260446498,48762.2835507908 "6914","No","No",647.918024055962,35494.4852868572 "6915","No","No",1574.651282455,30559.5136956957 "6916","No","Yes",1658.60225711853,14821.0045610976 "6917","No","No",4.81490868174683,28714.1353764479 "6918","No","No",1220.31228233318,36190.9936096812 "6919","No","No",802.857102212522,45806.1991738207 "6920","No","No",81.8744894682283,35818.2280012137 "6921","No","Yes",70.7336120060838,17466.1389631533 "6922","No","Yes",962.905796409212,22795.0324982253 "6923","No","No",926.694301047722,44233.6461669561 "6924","Yes","Yes",1233.44589515108,12586.4781909623 "6925","No","Yes",644.111717476592,9778.219986444 "6926","No","Yes",1338.659659247,8078.17604672449 "6927","No","No",740.386785882644,46877.960742233 "6928","No","Yes",901.186502571389,19204.7016202932 "6929","No","No",975.388741777061,45597.9376922718 "6930","No","No",298.71961515065,49585.8712690845 "6931","No","No",591.498013908176,29507.4870633153 "6932","No","No",177.014401129228,37553.8018121917 "6933","No","No",292.27197689876,60582.2262136544 "6934","No","No",625.191833063067,32826.409651775 "6935","No","No",546.986650105736,37513.7003808368 "6936","No","No",727.675332278311,23515.6108852627 "6937","No","Yes",531.976408238036,21357.6321613268 "6938","No","No",311.212767452465,51257.8742890846 "6939","No","Yes",703.063069636357,17692.6583930126 "6940","No","No",1239.68306767989,52241.4556649147 "6941","No","No",810.278839424482,51283.147864078 "6942","No","No",303.482691590285,21381.314486889 "6943","No","No",1372.03570594285,36188.2397816099 "6944","No","No",1146.3755626233,37053.8284571923 "6945","No","Yes",730.962752416666,20097.4009356218 "6946","No","No",807.219216290949,42138.6530736505 "6947","No","No",450.40551878583,34206.2736478661 "6948","No","Yes",467.912738885715,25424.4100657609 "6949","No","Yes",684.891035475141,17582.9855418272 "6950","No","No",1013.46926055685,38280.9170083462 "6951","No","No",676.652720204,31741.4310589349 "6952","No","No",287.966887449483,37409.9777560406 "6953","No","No",816.648909601169,52163.7815488925 "6954","No","No",1118.78983433131,39111.792335154 "6955","No","No",532.153609268785,43789.3351854842 "6956","No","Yes",1364.2326842718,18423.0476618707 "6957","No","Yes",1464.69087058547,16542.0450715198 "6958","No","Yes",997.642404039563,27054.7274125397 "6959","No","No",335.340082541427,41942.7525113637 "6960","No","No",1149.01295796219,35310.129547081 "6961","No","Yes",905.565799186285,24032.8005473796 "6962","No","No",649.673269527654,32276.4291404655 "6963","No","No",380.189188166333,40689.9204355211 "6964","No","No",0,48303.8715137401 "6965","No","Yes",485.434317495701,21278.3408079929 "6966","No","No",649.841985476221,54693.1517919876 "6967","No","No",698.572453391445,44949.2690840763 "6968","No","Yes",1328.95366930756,20666.7028058968 "6969","No","No",609.477689904886,41798.2923453603 "6970","Yes","No",1723.18721476173,43143.1644908776 "6971","No","No",0,36581.8038993462 "6972","No","No",594.601261246347,36190.7563884601 "6973","No","Yes",875.712944121739,18696.9535767098 "6974","No","No",949.314976716357,50404.2787609121 "6975","No","No",252.376727131597,39723.4837311651 "6976","No","No",1162.56797548573,21753.5283456455 "6977","No","Yes",1244.35956262629,19232.0474392262 "6978","No","No",578.495565421087,46030.8812771014 "6979","No","No",443.900952937401,50768.4448744471 "6980","No","No",1316.0892527487,41314.1695220835 "6981","No","No",904.424080886182,56062.0165312447 "6982","No","Yes",1037.9745946763,15580.7688790303 "6983","No","No",842.985664608997,42682.1420130652 "6984","No","Yes",1258.5287351543,10920.9645851391 "6985","No","Yes",297.390738058888,19383.7911466926 "6986","Yes","Yes",1553.34965666218,18091.9437361812 "6987","No","Yes",684.935381218755,21908.5715872975 "6988","No","No",1265.50126447533,32910.3974372661 "6989","No","No",362.611151080774,39296.0779934241 "6990","No","No",1532.91620917717,22080.9217712123 "6991","No","Yes",1341.6157387998,26319.0155875505 "6992","No","Yes",1086.16110772543,23576.7867298481 "6993","No","No",496.001762649659,32818.157065104 "6994","No","No",1597.05208352263,50827.8075383476 "6995","No","Yes",2092.4585301161,14514.7699586373 "6996","No","Yes",1019.98429310496,23795.4224757891 "6997","No","No",765.233878264981,29096.4172613222 "6998","No","No",928.964969607818,46709.4802764204 "6999","No","Yes",1787.20193794362,17553.607248986 "7000","No","No",628.136803682396,38436.1914515465 "7001","No","No",351.82039602293,30513.5179302546 "7002","No","Yes",265.503922870572,23775.4355664208 "7003","No","Yes",1886.5505699102,6467.14966324312 "7004","No","No",57.647049217624,38218.1844732497 "7005","No","No",933.827036002857,57377.4327774162 "7006","No","Yes",996.232072600701,10707.9426639873 "7007","No","Yes",1033.05628347808,15453.0337037444 "7008","No","Yes",824.518400683749,20689.7242231995 "7009","No","No",358.647641719878,56331.7787681505 "7010","No","No",1393.36946267428,43439.6740696835 "7011","No","No",332.413825874447,37129.1511776559 "7012","No","No",1215.08894988552,39002.4969645977 "7013","No","Yes",1793.78940473659,22740.5485627044 "7014","No","No",874.174254976681,33821.9060145171 "7015","Yes","Yes",1893.94295526224,12399.1247374186 "7016","No","No",1119.6134259786,32213.2290285762 "7017","No","No",234.699320726285,28098.893254432 "7018","No","Yes",874.017163849367,24635.3110317565 "7019","No","No",1283.228886582,47514.9933659047 "7020","No","Yes",1326.55808330628,25853.1425435955 "7021","No","No",1263.79824190405,47203.8202849677 "7022","No","Yes",1145.27901777596,12906.2041393171 "7023","No","No",1118.85173810187,30558.3838568659 "7024","No","No",753.83229649878,46957.2818757947 "7025","No","No",1039.23790961497,50653.9137882032 "7026","No","Yes",1947.07267886716,13157.9565570619 "7027","No","No",864.777442376434,32120.2941224717 "7028","No","No",1165.85183799472,48855.5094451628 "7029","No","No",1101.43879639113,39045.9939051909 "7030","No","No",438.516508307876,36838.8820335319 "7031","No","No",750.720008151587,47876.8958940807 "7032","No","Yes",743.415446250591,19610.1799781656 "7033","No","No",1371.3510156933,34955.4078971076 "7034","No","No",673.384203313401,34891.5427807964 "7035","No","No",1208.22057225773,36402.7452329903 "7036","No","Yes",483.420566632934,12596.9340146603 "7037","No","No",1394.07975394572,27179.4287768602 "7038","No","Yes",1405.31717376017,17933.2370088231 "7039","No","No",736.392672850291,32026.963957527 "7040","No","Yes",1167.34909040544,16356.9305659673 "7041","No","No",1031.86993245697,46725.3740229681 "7042","No","Yes",0,17189.3713959353 "7043","No","No",0,51226.7616106643 "7044","No","No",1334.9507305498,51086.4446460526 "7045","No","Yes",997.936283119464,25788.3631535607 "7046","No","No",419.444569831827,47155.6922177728 "7047","Yes","Yes",1806.92184567205,11506.2177502211 "7048","No","No",474.495395966397,43522.4623780293 "7049","No","Yes",531.358419832627,11420.5686950673 "7050","No","No",880.581024417902,49547.1760151448 "7051","No","Yes",1491.16610501992,18171.6222280094 "7052","No","No",976.902807317222,32837.1655487296 "7053","No","Yes",642.382285890744,13563.4632874001 "7054","No","Yes",1670.82999110515,11385.8802715792 "7055","No","No",1285.37127902736,39925.203396523 "7056","No","No",199.594525689419,27579.3533932148 "7057","No","No",66.5131134234801,29670.6988318902 "7058","No","No",577.531956379148,22111.8669113285 "7059","No","No",1142.61630705206,42053.5704731481 "7060","No","No",767.139212107638,49171.978177546 "7061","No","Yes",851.338372167527,22829.0247831648 "7062","No","No",683.942140800258,35232.8351834229 "7063","No","No",485.44043108254,38656.4546259537 "7064","No","No",0,49772.9747466163 "7065","No","Yes",915.147661540853,21545.7173616191 "7066","No","No",1143.52956232014,38663.2286266236 "7067","No","No",365.242329763141,27027.4080555126 "7068","No","No",661.104187133466,42945.5702924694 "7069","No","No",964.766019325237,49646.8065727842 "7070","No","No",1044.78688912355,41148.5400571297 "7071","No","No",201.80740022199,71878.7726357675 "7072","No","No",655.662247318421,54844.2047262558 "7073","No","No",10.9057992239271,48181.6891524716 "7074","No","No",528.40443472107,41066.7319025751 "7075","No","No",728.356058470814,32388.6157596306 "7076","No","No",938.386763627777,18594.127976644 "7077","No","Yes",359.936375470556,26500.2087376331 "7078","No","No",1185.1493653956,32467.4177408487 "7079","No","Yes",811.046695390703,21263.0991404914 "7080","No","Yes",1089.83145380546,15056.0778671339 "7081","No","Yes",288.318814270766,18356.5652468838 "7082","No","No",351.959107430178,29281.0307109066 "7083","No","No",977.19550210948,58658.7501507598 "7084","No","No",919.67240486341,40573.179445659 "7085","No","No",800.243337878895,19051.3239981764 "7086","No","No",771.825496903894,40520.8094002804 "7087","No","No",585.869313047934,67100.6852055329 "7088","No","No",1077.81237937944,26518.0802779105 "7089","No","No",907.306758410301,28461.2937369726 "7090","No","No",838.017911018859,42232.9415102544 "7091","No","No",1006.93493132388,25733.347810803 "7092","No","No",712.412048874675,42352.0914911586 "7093","No","No",508.453244165149,31966.400879379 "7094","Yes","No",1476.50978220195,42984.4128511994 "7095","No","No",1224.47123850969,37088.0532034538 "7096","No","No",636.309343984964,50040.4197931458 "7097","No","No",1609.69881514507,60123.6273023235 "7098","No","Yes",885.212531955794,11774.4165700229 "7099","No","Yes",137.039372229701,10994.794100075 "7100","No","Yes",988.89562982093,19449.1791846268 "7101","No","Yes",563.290133206154,22323.8335480741 "7102","No","No",309.782353880228,33671.5626141523 "7103","No","Yes",821.257288150696,17347.4394608849 "7104","No","No",434.189904174905,42205.2648924287 "7105","Yes","Yes",1321.53537905713,23735.1598892282 "7106","No","No",549.853837247715,50084.3895096604 "7107","No","No",1170.01902164463,48445.2168744962 "7108","No","No",1238.37188710574,42321.5271544434 "7109","No","Yes",0,15698.9812337332 "7110","No","No",803.946256032651,42286.2878154554 "7111","No","Yes",1456.00596108476,15069.8828890755 "7112","No","No",954.330590043764,27180.5459647451 "7113","No","No",1224.93071142997,44002.654530336 "7114","No","No",796.390802627468,47600.4945153565 "7115","No","No",461.026219252558,15755.647226184 "7116","No","No",468.285776829294,23336.030005624 "7117","No","No",321.012762881255,30275.5418828184 "7118","No","No",1653.43470936577,44965.0323623953 "7119","No","No",1190.5362188905,41630.2828343243 "7120","No","No",178.047346838311,35401.7089664284 "7121","No","Yes",1447.85678228622,24669.8420252258 "7122","No","No",0,56043.9102166148 "7123","No","No",282.30768016583,38099.1433107002 "7124","No","No",28.7388025495519,41809.2041766343 "7125","No","Yes",1279.31680609639,17837.0345506092 "7126","No","No",0,36061.7007635649 "7127","No","No",1470.34814886117,49018.8018455176 "7128","No","Yes",405.568290094582,20523.9123131832 "7129","No","Yes",509.172294671135,19962.8178766147 "7130","No","No",1207.15084223977,29875.3790445721 "7131","No","No",546.37505990967,37524.4343166153 "7132","No","No",86.9186579694452,34638.903904325 "7133","No","No",418.823888877566,56320.6338597974 "7134","No","No",0,56412.0075265771 "7135","No","No",41.6514375126486,47522.0236650279 "7136","No","No",906.745807676788,38881.0110720928 "7137","No","Yes",1499.85634865852,25156.7364373756 "7138","No","No",1561.63131934766,32952.8407694823 "7139","No","Yes",1615.50480202178,19566.1579588502 "7140","No","No",766.096021086797,41435.591897162 "7141","Yes","Yes",1807.70584411186,21849.4816313093 "7142","No","No",594.916782631428,43152.5332365085 "7143","No","No",1458.67564680684,57786.3231230033 "7144","No","No",901.288508994425,44594.3480307008 "7145","No","No",32.99359889857,31644.7706159164 "7146","No","No",1050.2685247574,59401.1956734579 "7147","No","No",1329.09676232805,60321.6132109193 "7148","No","No",410.935624537375,39076.2728228248 "7149","No","No",1591.82828968015,27668.4417692371 "7150","No","No",561.989745355229,40446.0087799328 "7151","No","Yes",592.170002642002,18684.2356401468 "7152","No","No",624.696396360594,30763.4651232863 "7153","No","No",1433.74049679502,39445.0840889239 "7154","No","Yes",635.362156102893,13912.2185315797 "7155","No","No",982.968718072735,50700.1738622413 "7156","No","No",877.415879371153,22997.9450275693 "7157","No","No",433.429970678414,49209.2563988888 "7158","No","No",951.313044194811,25540.8159627897 "7159","No","No",205.006264369155,36554.6265286998 "7160","No","Yes",1214.7833466882,11789.449842704 "7161","No","No",974.897205649927,26921.3658786339 "7162","No","Yes",470.107181330254,16014.1133107149 "7163","No","No",0,30684.7305500516 "7164","No","No",1666.22422994917,34918.432526347 "7165","No","No",798.659894709359,17463.0213544847 "7166","No","No",286.267421594117,47960.4382132519 "7167","No","No",908.572629442983,48426.9274352118 "7168","No","No",78.7464414361228,41335.2624810457 "7169","No","Yes",1051.42596467127,6583.87443801092 "7170","No","No",1301.15829550987,28673.6459846632 "7171","No","Yes",1506.69167525026,20680.1826452459 "7172","No","No",0,29901.3994159427 "7173","No","Yes",0,15759.9151700449 "7174","No","No",182.890963170823,21286.8499922913 "7175","No","Yes",1468.96935473959,15977.6625508514 "7176","No","No",1291.24433825788,42098.4789481663 "7177","No","No",608.958315930244,24975.6464069233 "7178","No","No",713.720610164183,17753.767315476 "7179","No","No",1446.64670417993,28951.7273811312 "7180","No","Yes",889.292843041319,14273.2937150958 "7181","No","No",1219.63445995773,47936.306775547 "7182","No","Yes",533.007580306485,20556.4171504616 "7183","No","No",1024.14382177552,45585.9687697656 "7184","No","Yes",510.296040090535,19682.5608310299 "7185","No","No",797.347588529402,35177.4099946928 "7186","No","Yes",1686.60887402386,22175.1316000617 "7187","No","No",530.547329206817,44627.5626446297 "7188","No","No",1332.53107136617,36974.6082048979 "7189","No","No",1401.34680959927,31403.0654839952 "7190","No","No",586.811387065307,40353.3504780337 "7191","No","No",628.419545661226,34756.2476400261 "7192","No","Yes",1193.30792924147,16430.01599162 "7193","No","Yes",666.424383991103,19177.6793706387 "7194","No","Yes",1017.66711978071,13553.09142624 "7195","No","No",648.34461282168,18843.606232431 "7196","No","No",952.138822970475,28642.3637962168 "7197","No","Yes",1492.06585380683,11615.9834652312 "7198","No","Yes",171.598895068837,24809.1145254887 "7199","No","Yes",1231.28109427322,15716.5322596172 "7200","Yes","No",1833.64654831254,43539.7843334378 "7201","No","Yes",633.170443606051,23694.3252385599 "7202","No","No",655.20772780495,30593.1475751348 "7203","No","No",331.407086136963,20588.1718710621 "7204","No","No",1213.36264204807,33527.4888071951 "7205","No","No",881.649854860828,50114.7005356449 "7206","No","Yes",1799.361875875,14250.199392948 "7207","No","No",1165.93650402873,42252.2627098774 "7208","No","Yes",758.673477864191,24166.7623021281 "7209","No","No",269.290141295066,43778.7328806282 "7210","No","Yes",1043.88098357702,27380.4700856437 "7211","No","No",893.114550360715,43511.6521648528 "7212","No","Yes",728.467137692598,15958.7470001168 "7213","No","No",413.752193061782,44803.3602792581 "7214","No","No",97.2648758399586,37468.1802348357 "7215","No","No",765.046486164449,44870.6842914765 "7216","No","Yes",1054.48505359921,10997.4040673927 "7217","No","Yes",649.530745027353,13408.6629471632 "7218","No","No",742.38409994638,34265.3623052066 "7219","No","No",1016.4637019272,49635.1048515898 "7220","No","No",636.304309844044,52011.0692162142 "7221","No","No",976.428533159154,31897.566033739 "7222","No","No",1197.81805113426,37487.6505399685 "7223","No","No",483.454879073622,44281.3465718496 "7224","No","No",1239.49238918487,40312.2302286101 "7225","No","No",942.387354970361,34685.8679609533 "7226","No","No",712.131245668675,48835.9928900325 "7227","No","No",214.981790411236,46693.9377394772 "7228","No","No",558.338857384781,38284.6755343357 "7229","No","Yes",1134.5597310429,20964.2127023783 "7230","No","No",523.647651791954,37590.8199380363 "7231","No","No",593.160786354557,46475.03132161 "7232","No","Yes",868.712519648453,13025.5249765279 "7233","No","No",607.721136462867,41791.8877368967 "7234","No","No",1059.80410067008,64315.0262055869 "7235","No","Yes",0,29106.5837352519 "7236","No","No",1141.7438167848,45455.1630728873 "7237","No","No",1127.25955558426,47545.8468044751 "7238","No","No",456.915217880585,42506.8631535506 "7239","No","Yes",385.397521456814,13739.1661351729 "7240","No","No",705.996771687683,53423.149800625 "7241","No","No",742.562223947455,48207.6150768854 "7242","No","Yes",1310.39973378749,24267.777757484 "7243","No","No",670.982468145979,55003.0913231936 "7244","No","No",441.725465566661,39307.5040375216 "7245","No","No",1075.71843059287,38020.7235915033 "7246","No","Yes",675.240691942867,18827.781887281 "7247","Yes","No",1377.68001967136,41435.2694991584 "7248","No","No",302.399908922779,32048.7421630936 "7249","No","No",910.230777507496,46274.3436016861 "7250","No","No",812.52823846174,58338.925779377 "7251","No","Yes",1298.51626554485,18755.7676358519 "7252","No","No",679.827666865443,43692.5363856043 "7253","No","No",1187.28392841327,56503.5729486472 "7254","No","Yes",813.185316292918,24823.7991709967 "7255","No","Yes",893.708471146775,16399.778520564 "7256","No","Yes",894.657334725516,23656.8418118625 "7257","No","Yes",0,18495.7798208196 "7258","No","Yes",1179.16120481058,16923.402492625 "7259","No","No",1067.3790343619,56291.602012056 "7260","No","Yes",1291.60714177539,16114.0242798708 "7261","No","No",119.47192587933,47761.1499926396 "7262","No","No",343.72428475339,53705.4596253535 "7263","No","No",1699.30157218096,29196.081852041 "7264","No","No",1558.59698527099,38880.4448720673 "7265","No","Yes",1455.50462316194,13555.3356922271 "7266","No","No",1079.37274393436,66134.7178932348 "7267","No","No",508.153059619727,52772.2614547636 "7268","No","No",965.012755605124,32549.5515102086 "7269","No","No",553.649019153505,47021.4918151893 "7270","No","Yes",920.778967083772,14194.8691528619 "7271","No","No",637.338107076551,49657.3942823564 "7272","No","No",744.44020589283,40280.2669976661 "7273","No","No",1529.1526518707,43826.2912683102 "7274","No","No",755.356991705821,53091.5152898842 "7275","No","No",69.5617975429155,49074.2475961957 "7276","No","Yes",1567.21198212064,15877.7864757816 "7277","No","No",429.352532991566,17208.7140267255 "7278","No","No",1348.30355448988,39165.6591737614 "7279","No","No",1068.10797157273,37863.4478466063 "7280","No","No",1074.79140055745,25715.1774543536 "7281","No","No",395.884601970322,34555.8269729204 "7282","No","No",1047.13677049326,46567.9250408872 "7283","No","Yes",1518.62963981646,18925.4900066106 "7284","No","No",964.046253454033,46501.9112011749 "7285","No","Yes",1099.54290396258,25314.8449400213 "7286","No","No",737.176958218147,54160.8578903793 "7287","No","No",587.753816447594,38885.6592059653 "7288","No","No",1177.08837749571,29949.497842595 "7289","No","Yes",1182.00008160582,18102.833748716 "7290","No","No",351.288800597847,30345.6989047543 "7291","No","No",658.023632747905,30391.6317592047 "7292","No","Yes",9.5140328909888,24581.9771065443 "7293","No","No",515.58028071252,43509.0439815997 "7294","No","No",312.127697020277,37743.5081225188 "7295","No","No",820.691852133479,28064.7322000798 "7296","No","No",1498.56503628008,39948.9779866269 "7297","No","No",1090.54796975797,20027.7563910929 "7298","No","Yes",717.339189620971,18382.187193365 "7299","No","No",631.596908174781,30517.2294190789 "7300","No","No",1118.92980278403,49988.0913273555 "7301","No","Yes",496.516313708831,12862.0265626775 "7302","No","Yes",524.173510127699,8272.09032088846 "7303","No","No",1021.22009993951,47650.0025308944 "7304","No","No",749.883065470362,28580.921921531 "7305","No","No",181.724438911984,36858.0586734834 "7306","No","No",1555.83618423158,30110.9602923828 "7307","No","No",895.746675008825,35531.8370865647 "7308","No","Yes",400.904548807575,20912.2886482642 "7309","No","No",540.237503974576,32931.8753767927 "7310","No","No",403.810034348588,40535.1661684496 "7311","No","Yes",1218.54316488104,14063.1168892943 "7312","No","Yes",1252.34417144086,17621.5295944567 "7313","No","Yes",384.590932449319,21364.2300923962 "7314","No","No",319.030066005898,27401.1167743525 "7315","No","Yes",850.839296206177,19413.2039354365 "7316","No","No",1072.82262116598,54527.9792844031 "7317","No","No",1637.31945384267,43364.9561247752 "7318","No","Yes",600.956313060787,21613.9136094683 "7319","No","No",1014.72519283073,40223.9927344649 "7320","No","No",1311.45127913014,47805.7978452956 "7321","No","Yes",1084.54298048584,17410.8465778844 "7322","No","Yes",1302.0867477865,21949.2769081235 "7323","No","Yes",329.785853938403,16476.9869115811 "7324","No","No",625.846305544569,34245.8428734237 "7325","No","Yes",777.64273092137,18190.645274987 "7326","No","Yes",1161.88110072523,13499.8301473532 "7327","No","No",138.588586671783,38437.9918872461 "7328","No","Yes",740.057881955935,24710.119000646 "7329","No","No",824.987976975462,42408.8955441622 "7330","No","No",1292.16016111276,39387.6882367056 "7331","No","No",528.060825176608,34016.8887465416 "7332","No","No",708.851823990675,36322.3491334553 "7333","No","Yes",1066.19424074312,16736.4338383772 "7334","No","No",1072.57277447481,38483.4617230819 "7335","No","Yes",1315.47627172776,27959.6434664187 "7336","Yes","Yes",1988.86974718816,17762.8659115926 "7337","No","No",416.229309671986,35580.5556887531 "7338","Yes","No",1721.43491831519,41999.7033384974 "7339","No","Yes",1706.76043724784,21127.4824181988 "7340","No","No",707.443669728332,42656.6491442273 "7341","No","No",249.112128350614,46332.3667284741 "7342","No","No",446.861677111716,49645.3457108433 "7343","No","No",764.806803042124,33127.1559867552 "7344","No","Yes",824.123364807797,25108.7662912811 "7345","No","Yes",786.915038133869,12881.6893294211 "7346","No","No",308.006275895233,37361.7751439722 "7347","No","No",1733.89536118172,47872.6209803203 "7348","No","No",996.852510824787,49954.7040795591 "7349","No","No",0,52632.3298935436 "7350","No","Yes",1070.33209932377,20053.0285334227 "7351","No","No",0,39329.8081786913 "7352","No","No",1250.67965337158,37012.4075750985 "7353","No","No",1753.91514623481,43855.833129686 "7354","No","Yes",425.419972827313,18109.3206913529 "7355","No","No",1056.8244199283,37994.9695479256 "7356","No","Yes",1546.5818321879,14981.1686681869 "7357","No","No",330.324289217389,55734.0457402734 "7358","No","No",1080.15556406203,35471.9867773415 "7359","No","No",691.168358366468,42342.3506993609 "7360","No","No",584.223460529395,38683.3748761287 "7361","No","Yes",681.972289898639,19925.4443917639 "7362","No","No",999.485645451799,37919.0212559565 "7363","Yes","No",1757.73849947833,51991.463494111 "7364","No","No",1185.73682691834,24265.4359173425 "7365","No","Yes",1770.52557033015,17447.1269195648 "7366","No","No",149.822550028042,33948.8662896245 "7367","No","No",0,36708.3573405233 "7368","No","No",771.016021909898,47614.7381580489 "7369","No","No",0,56982.5059208913 "7370","No","No",607.094632221471,27145.6375410312 "7371","No","No",306.658097609939,30135.6287972626 "7372","No","Yes",364.826699712477,22122.5210796027 "7373","No","No",814.693521955203,39020.8976875159 "7374","No","No",1656.03804743546,29816.0501663427 "7375","No","No",125.937700100074,44260.4818181622 "7376","No","Yes",1766.64977358033,15423.4372844809 "7377","No","No",1593.83791898813,30570.1610817938 "7378","No","No",0,30131.9758084807 "7379","No","Yes",210.897922722621,19075.2069630191 "7380","No","No",449.141606354352,40992.3027259711 "7381","No","No",1125.30209345745,33408.6603429212 "7382","No","No",1529.14313952535,43125.1232811978 "7383","No","No",483.63752662047,47517.6550035722 "7384","No","No",570.983412418201,40580.9091764566 "7385","No","Yes",989.054283529197,17276.4439014947 "7386","No","No",896.734422758778,21627.4525178203 "7387","No","Yes",1533.89898571274,10488.4126010726 "7388","No","No",1357.6932506726,25389.8307107958 "7389","No","No",40.3011123429584,33656.7165255831 "7390","No","Yes",1014.89112912922,15253.3115972714 "7391","No","Yes",594.310593322279,14159.6417849044 "7392","No","No",1038.32287099795,45057.6420464299 "7393","No","No",1423.38440157414,48315.00730867 "7394","No","No",601.777083186907,15298.2131863943 "7395","No","No",947.597792145413,34869.1268512489 "7396","No","No",296.355437034889,24625.8852207068 "7397","No","No",633.850429789732,29213.3758259483 "7398","No","Yes",1154.44636742935,14301.1571179952 "7399","No","No",504.615359459887,56623.0102899515 "7400","No","Yes",1176.93452516159,19829.2264598045 "7401","No","No",1001.32023805225,41063.1973471399 "7402","No","Yes",1352.29282619523,23660.6548262496 "7403","No","Yes",1060.06007196524,18617.2181382756 "7404","No","No",1371.70327519923,48298.544535983 "7405","No","No",1015.96911317644,37952.964284075 "7406","No","No",1171.41159010859,52278.2442048295 "7407","No","No",1021.28360782199,50389.6207372374 "7408","No","No",1743.09923810045,31438.5919691711 "7409","No","No",84.3492471707539,59022.176608549 "7410","No","No",879.417151715171,35228.1105632839 "7411","No","No",820.945303026583,34064.6736772751 "7412","No","No",1085.89836833237,29771.0645570651 "7413","No","No",648.364868099607,40276.5718280912 "7414","No","No",0,27614.4992681141 "7415","No","Yes",313.396031622244,18071.688034514 "7416","No","No",477.550762096018,24273.4186375882 "7417","No","No",403.268308454751,38629.9474215703 "7418","No","Yes",864.947986054747,8624.22071922716 "7419","No","No",502.025954193766,31574.7125087496 "7420","No","No",971.814888689421,35583.1905392444 "7421","No","No",0,49606.9952337978 "7422","No","Yes",823.471373200441,12331.9162287798 "7423","No","No",969.806305448881,60396.7891910946 "7424","No","Yes",881.265405002496,15275.4205798952 "7425","No","No",1315.19148915858,42694.97506713 "7426","No","No",1149.65995633683,34635.1377011897 "7427","No","No",943.566247081687,31377.9428154229 "7428","No","No",270.072593432952,36833.6451384243 "7429","Yes","No",1392.59975316796,37620.2413146324 "7430","No","No",0,30836.4405061652 "7431","No","No",939.642406135128,38395.61380003 "7432","No","Yes",838.978435279789,21176.479172625 "7433","No","No",142.614404811541,34695.1158879329 "7434","No","No",1493.03389710926,30848.619107257 "7435","No","No",1193.40655438006,55017.462587952 "7436","No","No",0,19572.3001100385 "7437","No","Yes",1078.51425918891,20073.3552404101 "7438","Yes","Yes",2461.50697867784,11878.5570446708 "7439","No","No",614.140621191737,17472.9148915626 "7440","No","No",872.122709141156,43154.7199595567 "7441","No","No",880.047280737316,45092.5924026719 "7442","No","No",433.400112593774,25085.0701182121 "7443","No","No",618.127037783515,29836.2856549674 "7444","No","No",1115.15431349235,38623.5482005718 "7445","No","Yes",327.419883103167,14938.9443523853 "7446","No","Yes",888.718674812637,15037.6082952694 "7447","No","Yes",995.915054636554,24897.1732454987 "7448","No","No",1219.39010265135,42549.9135790507 "7449","No","Yes",984.3611537241,16577.8319329448 "7450","No","No",980.397103132796,41753.0759839079 "7451","No","No",422.451641728953,34797.7965440488 "7452","No","Yes",311.321863971391,22648.7634451749 "7453","No","Yes",1019.64775514386,2702.98233149687 "7454","No","Yes",1250.97282891881,19275.2540337784 "7455","No","No",1042.69918861583,10693.6215983792 "7456","No","No",436.575627385809,22389.4633927745 "7457","No","No",698.074827953718,37027.8160711082 "7458","No","No",296.881830650885,43136.5616829479 "7459","No","Yes",610.185368803368,19010.1257851595 "7460","No","No",0,38686.5814275621 "7461","No","Yes",1230.9575079814,20573.7863074106 "7462","No","Yes",712.026704476097,17273.1158606978 "7463","No","No",772.40563332837,39023.4916397536 "7464","No","No",175.167760833609,53019.4230127665 "7465","No","Yes",124.871271082982,20886.4961947608 "7466","No","No",423.337696771481,60170.5744657902 "7467","No","No",364.773883586177,31857.1807342331 "7468","No","Yes",851.975904788836,14170.9223069456 "7469","No","Yes",1619.71415137897,21781.9405624911 "7470","No","No",1200.94675835261,47636.8596254039 "7471","No","No",765.132036910884,39600.4846206278 "7472","No","No",1343.95492193688,26365.526253543 "7473","No","Yes",1669.76311196123,23741.5105983345 "7474","No","No",266.759321008082,25864.9390291814 "7475","No","Yes",1039.90941904259,21212.6826814127 "7476","No","No",246.756413859954,37138.3862992113 "7477","No","No",1282.56757095112,36558.8379206386 "7478","No","Yes",1070.32046448364,12756.76045352 "7479","No","No",766.512524415546,43426.8308000715 "7480","No","No",1102.92430902942,57828.1787773859 "7481","No","No",924.959329762828,26332.2096245083 "7482","No","Yes",1034.90239115771,15945.1398517742 "7483","No","No",1807.68866700157,40731.5164105235 "7484","No","No",520.654612793611,39914.919047822 "7485","No","No",1018.76996929855,35813.4207428702 "7486","No","No",1281.67517177822,41481.3210021225 "7487","Yes","No",1621.57578487284,36577.8462027349 "7488","No","No",0,40772.9268631337 "7489","No","Yes",1848.82661771773,18128.5695920069 "7490","Yes","Yes",2117.12061387647,12143.474803771 "7491","No","No",1002.14412432149,44445.5272721442 "7492","No","No",551.185871800838,36603.9753357363 "7493","No","Yes",149.15410001691,22802.8196789176 "7494","No","Yes",1360.86563270173,22310.9295094468 "7495","No","No",1136.14843693437,38474.6136937729 "7496","No","No",717.667389813139,27956.2735197124 "7497","No","Yes",651.548784488851,23374.832966803 "7498","No","Yes",604.574350110705,16153.4142865339 "7499","No","No",759.090406452521,41891.8575903576 "7500","No","No",1204.95781100677,24788.7678660894 "7501","No","No",796.257260821885,33760.5182633628 "7502","No","No",506.462320775495,36596.1267387874 "7503","No","No",160.012403610926,48121.1810184217 "7504","No","No",339.691180585286,49109.3613833469 "7505","No","No",0,35288.3350799733 "7506","No","Yes",1344.7093588173,17318.839902875 "7507","No","No",368.086167001206,51601.3608445693 "7508","No","No",1005.129339452,43501.6964850784 "7509","No","No",712.863665600652,47454.7444273651 "7510","No","No",384.527884132362,25950.2675640907 "7511","No","No",512.656466934724,43846.9797077064 "7512","No","No",0,37112.597798942 "7513","No","Yes",721.517319658893,18310.9455223602 "7514","No","Yes",1458.89346152272,21186.5629553544 "7515","No","No",388.609229128308,23040.4417429292 "7516","No","No",516.109644702662,48303.8010364758 "7517","No","No",575.754615672545,26757.5793449716 "7518","No","No",0,26100.7519107615 "7519","No","No",1440.39242035855,46113.2684523111 "7520","No","Yes",1136.40075609126,24962.8490701275 "7521","No","No",326.519432025491,20310.452477616 "7522","No","No",837.209149819569,38032.9563034442 "7523","No","No",1324.84258038352,41590.3351912124 "7524","No","No",244.935778985894,27369.0105220281 "7525","Yes","Yes",1875.45889462485,17820.4633288357 "7526","No","No",0,30287.490340717 "7527","No","No",1793.29061177025,45117.3819107052 "7528","No","Yes",1874.49450092902,19592.0698667164 "7529","No","No",1036.98559901712,46388.6245271626 "7530","No","No",91.415284347161,46468.7879829995 "7531","No","No",438.812399733576,39390.7255279315 "7532","No","Yes",1371.09386785115,16204.7689613384 "7533","No","Yes",950.776787199094,17711.7417569151 "7534","No","No",370.000934879272,39286.6136623794 "7535","No","No",688.905761536255,43606.9237368143 "7536","No","No",1452.32898016853,37691.7701917003 "7537","No","No",641.908417067159,45107.4316859664 "7538","No","No",618.139164308692,50146.4292488553 "7539","No","No",516.449766323607,41922.8884877092 "7540","No","Yes",720.435239898748,24582.8806904421 "7541","No","Yes",485.01489072382,23261.3309456867 "7542","No","No",929.755400626855,30908.8981998424 "7543","No","No",591.787159925885,46381.2372516318 "7544","No","Yes",753.383573607443,12258.6045124657 "7545","No","No",1255.42594165203,17917.7947894635 "7546","No","No",694.538762632041,42855.5653098464 "7547","No","No",431.159893985935,51727.5403221504 "7548","No","Yes",23.2060517124803,22196.6533688783 "7549","No","Yes",584.57623277459,16639.6558412378 "7550","No","No",877.029457220268,35054.9488981605 "7551","No","No",1300.29692368306,51338.8574052067 "7552","No","No",1049.92742742092,25445.9200724683 "7553","Yes","No",1099.05770130181,42590.8944537008 "7554","No","No",763.77376432623,60938.6640992445 "7555","No","No",506.776514229109,40625.4874731359 "7556","No","No",41.279727992759,52066.1473455983 "7557","No","No",789.639900431882,44073.2466932269 "7558","No","Yes",867.470764391778,11905.6789549914 "7559","No","No",1352.2909303135,33077.0888162943 "7560","No","Yes",0,20217.0909125425 "7561","No","No",337.874909315449,30090.5305102133 "7562","No","No",660.244841965786,40885.8469473715 "7563","No","No",1144.48179310641,45548.3803818706 "7564","No","Yes",1075.09276443643,7031.29455616636 "7565","No","No",535.897241673312,43917.568696246 "7566","No","Yes",1170.22462428213,8747.47272040443 "7567","No","No",922.124106932605,48137.3716728773 "7568","No","No",1064.08717221108,34677.9317899044 "7569","No","Yes",1294.28570216638,17444.6035649087 "7570","No","No",845.736704633298,34676.2642308225 "7571","No","No",212.647740871301,29592.1708509053 "7572","No","No",501.286648883935,36154.6526910388 "7573","No","No",463.045455797693,35621.0803502897 "7574","No","Yes",722.227333114557,18487.0405647803 "7575","No","No",724.205592217337,36489.6905470156 "7576","No","No",209.042788867425,40075.9841483956 "7577","No","Yes",1108.62409883895,18761.7671044817 "7578","No","No",0,60203.5960308717 "7579","No","No",960.068059922622,23482.835612708 "7580","No","No",685.3419782018,51856.890980685 "7581","No","No",1446.60460617167,45552.0098993525 "7582","No","No",1187.65668385132,46731.554866363 "7583","No","No",1073.02581933369,39553.831261169 "7584","No","No",1608.68334961791,40078.2204348079 "7585","No","No",1160.13322168939,32978.6595972612 "7586","No","No",621.149260807172,15546.7689826685 "7587","No","Yes",1367.42963096758,23617.612359145 "7588","No","Yes",909.10199369612,7283.76314467767 "7589","No","No",524.416793070104,41535.324655475 "7590","No","No",654.493618548728,12696.803246099 "7591","No","Yes",1010.57612407862,20982.9703055547 "7592","No","Yes",130.147710478838,15174.6729794389 "7593","No","No",150.663617880078,42800.6969182602 "7594","No","No",584.838347580316,41447.4135332999 "7595","No","Yes",771.295014017138,15594.0118532611 "7596","No","No",1363.48166419022,35359.7540473893 "7597","No","Yes",414.80645089261,18832.0342148101 "7598","No","Yes",1647.00457279337,16614.8041663474 "7599","No","Yes",562.842591176323,19669.7693367743 "7600","No","No",843.700911167162,50891.6733167055 "7601","No","No",455.37633600577,36590.5503622636 "7602","No","No",459.423921256549,49958.756800464 "7603","No","No",967.72062448087,31641.6763377917 "7604","No","No",84.3444663188471,42333.533628084 "7605","No","No",530.603502829406,59740.2099741483 "7606","No","No",1369.92596745005,49089.8196259944 "7607","No","No",692.156208075448,39199.4465014916 "7608","No","Yes",564.638739024053,24342.0307911737 "7609","No","Yes",1251.18680552354,11229.6412228286 "7610","No","No",378.445644033206,30562.0955174959 "7611","No","Yes",0,24000.3302320209 "7612","No","No",0,37361.5408049442 "7613","No","No",820.48501722613,35951.1199800878 "7614","No","Yes",246.867027277152,16209.5366803905 "7615","No","No",1490.13748475784,35882.7586735584 "7616","No","No",421.038871967722,17137.1681277715 "7617","No","No",1147.57189675942,32012.7653479457 "7618","No","Yes",1087.91774442624,18053.0838952554 "7619","No","No",295.150455976312,48387.4724479823 "7620","No","No",543.794274359592,51964.7512239709 "7621","No","Yes",1002.44392127105,14152.6694871327 "7622","No","No",809.478458031615,51608.5424596493 "7623","No","No",659.75081505078,50536.9009715526 "7624","No","Yes",1627.77461253757,23516.6390314813 "7625","No","No",751.631732836333,50562.4986069294 "7626","No","Yes",625.772022490437,23122.6110304004 "7627","No","Yes",486.224823282763,20289.6747200262 "7628","No","No",1302.13421827805,64016.7603980853 "7629","No","Yes",1233.73552347869,15480.2077785454 "7630","No","Yes",1220.27693189676,11573.8484490094 "7631","No","No",982.514587249152,62140.9254615139 "7632","No","Yes",306.041314131214,13190.8322602958 "7633","No","Yes",806.699910999563,19269.6816815998 "7634","No","No",789.326869307377,36183.6566367513 "7635","No","Yes",1481.57398076178,23170.5647926284 "7636","No","No",1228.78852913204,59100.8511498722 "7637","No","No",464.9391825004,58247.1215740083 "7638","No","No",958.047432763855,15052.4457238653 "7639","No","Yes",0,21294.1484759847 "7640","No","No",1523.9302766086,58551.3595877966 "7641","No","No",0,50633.7925605149 "7642","No","No",387.75527193235,34086.3870439287 "7643","No","No",1194.20572499595,45588.180687979 "7644","No","Yes",1430.82481135904,10766.9377730224 "7645","No","Yes",1251.99489098262,18922.0343634547 "7646","No","Yes",207.925970320052,19078.8919047644 "7647","No","No",1596.38595214977,34190.1897212476 "7648","No","No",0,33769.6048655454 "7649","No","No",1213.35295480262,39344.1240263279 "7650","No","No",407.263424219925,40524.3386075399 "7651","No","No",786.585649124404,43014.2207503651 "7652","No","Yes",695.476439342878,14030.3605474387 "7653","No","Yes",1113.23688519268,19139.2664321704 "7654","No","Yes",717.205265524902,20627.8189153679 "7655","No","No",374.926190630489,39167.9726848544 "7656","No","Yes",270.599297436056,15728.9107072974 "7657","No","Yes",1334.78080792518,20468.4408385118 "7658","No","No",280.614830515579,35494.5978623224 "7659","No","No",143.917847054434,41626.6876952005 "7660","No","No",1027.05457933546,44268.9587280937 "7661","No","No",127.54538940606,33070.4990606837 "7662","Yes","No",1809.40986352205,33453.406538286 "7663","No","No",1626.39108717515,61438.0944057847 "7664","No","No",628.87553620734,48380.5108388692 "7665","No","Yes",385.350358534473,22395.8823581039 "7666","No","No",753.999942823528,29020.7290572193 "7667","No","No",650.2493011075,33475.7442375698 "7668","No","No",232.763666039282,58488.7902999066 "7669","No","No",1005.62300888315,43471.7803207004 "7670","No","No",82.4275698236085,29761.5445256896 "7671","No","Yes",41.3855163829771,18664.9010060066 "7672","No","No",510.657513331156,25855.917022987 "7673","No","No",1588.91625121915,54043.0062999103 "7674","No","Yes",1127.43595508475,23495.5655168774 "7675","No","Yes",1242.72294339113,23037.4137184069 "7676","No","No",1730.11045772474,48766.8009059003 "7677","No","No",915.462438962574,33887.763638343 "7678","No","No",65.3329838593119,31992.2422205879 "7679","No","No",180.171498916997,21403.0777065766 "7680","No","No",989.262577822306,48055.4122370631 "7681","No","No",314.985176814067,51112.9378660257 "7682","No","No",607.27706010457,36487.990989239 "7683","No","Yes",724.437846238017,15835.6275220604 "7684","No","No",832.217401259712,44053.2560569607 "7685","No","Yes",794.146806723789,12519.7683906824 "7686","No","No",1806.71487708391,39082.7860963992 "7687","No","No",394.501839643007,29642.9102659475 "7688","No","No",108.003864382255,44764.2888968549 "7689","No","No",806.550181313343,27622.9041506617 "7690","No","No",845.077745416634,38410.8435707644 "7691","No","No",659.808946789516,39712.958918746 "7692","No","No",1248.83064907828,39317.9041803876 "7693","No","No",852.522041028705,34237.6456678607 "7694","No","No",878.927937083077,47228.3409313744 "7695","No","Yes",819.912190542397,16585.0280991299 "7696","No","No",0,34213.4915205813 "7697","No","No",620.681596802363,34549.0864666961 "7698","No","No",917.856226992842,49353.9506343612 "7699","No","No",539.441908788564,26164.8446811129 "7700","No","No",747.139341956808,42318.9332825577 "7701","No","No",864.460772629318,44429.0667539874 "7702","No","Yes",391.998226720825,9995.04163332249 "7703","No","No",151.260770326673,57657.2822222499 "7704","No","No",873.125525094058,34352.7003173698 "7705","No","No",28.7897760191421,55369.201386131 "7706","No","No",228.511851114921,57232.2685587695 "7707","No","No",1190.13932322518,27734.7389829589 "7708","No","Yes",1845.97643893727,12107.7418248053 "7709","No","No",107.154768462625,42776.3018691308 "7710","No","No",2058.78478074305,55021.5518021545 "7711","No","No",914.637312628131,46492.6488301171 "7712","No","No",799.73270458257,45702.4016718804 "7713","No","No",890.248108001647,34679.4827616344 "7714","No","No",1184.49229812903,43228.8058978192 "7715","No","No",1143.12286444744,42672.129149678 "7716","No","No",718.743118187293,31371.7810801086 "7717","No","No",847.654914338946,43515.3022044232 "7718","No","No",1067.27320063911,50647.8724040193 "7719","No","No",791.542583674003,32574.3412705245 "7720","No","No",826.355312408359,37241.440631236 "7721","No","Yes",652.755692307818,23492.3232419236 "7722","No","No",827.634736669455,36439.6609398738 "7723","No","Yes",704.095463378673,16509.5229344982 "7724","No","No",773.593731357215,29661.4635320764 "7725","No","No",402.129014682231,42978.3936060898 "7726","No","No",411.537626865253,30065.4443474788 "7727","No","No",340.964399114303,27262.0579810414 "7728","No","Yes",1021.56825009016,14500.6291712537 "7729","No","No",1323.64068113702,30517.2082497801 "7730","No","Yes",1362.6444485929,18205.2317816041 "7731","No","No",347.460916522461,24735.5506928776 "7732","Yes","No",1610.48401491748,35589.7338305398 "7733","No","No",1313.83680422269,40843.0997786338 "7734","No","Yes",705.390544240798,19125.6849820595 "7735","No","No",705.735232894335,45280.8192290912 "7736","No","No",0,38968.4157913305 "7737","No","Yes",0,23735.4085420558 "7738","No","No",1562.66985789502,52422.7802153993 "7739","No","Yes",655.611221042021,19039.1682730003 "7740","No","Yes",780.254075842619,20758.4712409247 "7741","No","No",946.137573571247,40038.683105794 "7742","No","No",1402.51244469243,46207.7798397669 "7743","No","No",321.588332058415,52711.6173635883 "7744","No","No",1824.29374770111,22471.4457240322 "7745","No","No",0,23562.2906124825 "7746","No","No",602.195012175499,26768.9174174437 "7747","No","No",314.45919529541,40016.4759256171 "7748","No","No",1223.71401172324,64440.2175262069 "7749","No","No",487.11688827906,55459.4529950443 "7750","No","No",324.851543385128,52838.8493294787 "7751","No","No",98.2290556803614,48070.1593162269 "7752","No","No",0,18063.8883588351 "7753","No","Yes",345.799607124424,15967.9908471267 "7754","No","No",869.308119274179,32571.1692558153 "7755","No","No",437.555256719357,37212.2693602431 "7756","No","No",323.595054114491,34129.6560741734 "7757","No","No",1286.90555743471,45569.0675184161 "7758","No","Yes",940.47935428257,20578.8072250756 "7759","No","No",1385.30347695259,35045.438734077 "7760","No","No",765.818663634114,33216.3531980412 "7761","No","No",599.009724958459,53004.5854640233 "7762","No","No",1153.3292507774,17598.4340274502 "7763","No","No",352.278325535015,34359.8412383948 "7764","No","No",226.217345575457,59680.0022588775 "7765","No","Yes",754.968696018072,30340.120404255 "7766","No","No",1713.53785147756,43899.0842902538 "7767","No","No",969.538309805488,33293.7947247849 "7768","No","No",1024.61298649142,34401.017743276 "7769","No","No",838.653016857442,25272.4860672589 "7770","No","No",1072.03377011872,47029.260367657 "7771","No","Yes",686.694378860884,18551.5300581174 "7772","No","No",715.544075669576,50127.9556316689 "7773","No","No",1130.77214546715,40314.2715443769 "7774","No","No",1286.63632041227,44825.8658404379 "7775","No","No",937.501193105071,33266.5194383876 "7776","No","Yes",1881.25652109686,14992.3867271917 "7777","No","No",135.953345751202,49372.8359844109 "7778","No","Yes",1471.92392898896,19774.9238785274 "7779","No","No",773.171566359335,37877.6045199555 "7780","No","No",552.672566101431,50688.4963275297 "7781","No","No",1074.08765319171,35873.2286380915 "7782","No","Yes",137.431468636565,22783.4209710542 "7783","No","Yes",523.831492714496,12062.3943636302 "7784","No","No",724.537790180162,33254.5284949545 "7785","Yes","No",2040.59017105597,50930.9107859245 "7786","No","Yes",1415.89080238048,22823.6278584034 "7787","No","No",174.483634673712,54992.9893047717 "7788","No","No",805.314488077273,36864.6892862884 "7789","No","Yes",1008.03312956121,13547.0785381477 "7790","No","Yes",0,21665.5268097879 "7791","No","No",1078.41038955072,44474.420294412 "7792","No","No",768.694006876275,32373.771051203 "7793","No","No",391.189784489765,42212.0303371115 "7794","No","No",0,46910.7978946537 "7795","No","Yes",1318.57773531948,18042.0176142666 "7796","No","No",955.449340796982,40698.9761263581 "7797","No","No",1425.53485976141,33666.1042566101 "7798","No","Yes",1196.49194120137,14916.4446906476 "7799","Yes","No",2038.89185057887,58606.4862432055 "7800","No","Yes",1047.99823953348,15846.655228066 "7801","No","No",995.346099927345,46702.239073216 "7802","No","No",1657.25590018684,29945.5660173299 "7803","No","Yes",396.582633428736,18244.166018854 "7804","No","Yes",594.558985346466,13180.5021134281 "7805","No","No",931.710876495276,50210.0694668726 "7806","No","No",1318.80706574655,44778.0460012765 "7807","No","No",24.2635999898018,36070.138850872 "7808","No","No",713.673397858288,48914.5602035217 "7809","No","No",891.751685184564,53044.8356060182 "7810","No","No",1794.41157502235,44037.8475163971 "7811","No","Yes",1412.08996685442,17049.6600099038 "7812","Yes","No",2024.82021156467,64135.4310819166 "7813","No","No",399.597296046437,42578.0459414764 "7814","Yes","No",1598.02083082886,39163.3610556876 "7815","No","No",1045.31135178129,31754.023779871 "7816","Yes","Yes",2578.46902158917,25706.6477744655 "7817","No","No",1113.2891420998,42292.4901451926 "7818","No","Yes",645.118687643084,16097.2170185444 "7819","No","Yes",861.104127009331,15873.6128609255 "7820","No","Yes",408.218352153679,21432.7264338213 "7821","No","Yes",794.973101379144,21590.9618652424 "7822","No","No",1477.63795612057,36546.8231488484 "7823","No","No",634.399979828231,33377.360386157 "7824","No","No",798.082090735915,38080.9623405107 "7825","No","Yes",0,19919.5634409027 "7826","No","Yes",980.101705745882,16381.2031300222 "7827","No","No",831.245423092704,27706.9538518972 "7828","Yes","Yes",2083.22837647615,20103.602739227 "7829","No","Yes",1436.07482635181,21511.4578059897 "7830","No","No",1467.22519103062,28845.0222016802 "7831","No","No",469.438477180174,37879.2565232606 "7832","No","No",1166.71587666917,31032.3859736364 "7833","No","No",844.041292318579,32089.6246466696 "7834","No","Yes",1538.97375070282,15757.9335417675 "7835","No","No",562.701116936926,39067.7515107504 "7836","No","No",1112.11088540741,29229.5316824489 "7837","No","No",246.39376404033,33647.993225282 "7838","No","No",562.723868379586,60196.1826087633 "7839","No","No",916.569239827395,42486.3989116241 "7840","No","No",618.5663093699,28477.2795325714 "7841","No","Yes",1604.6137382887,15467.2189070394 "7842","No","No",847.614963857933,42308.052316687 "7843","No","No",304.482793486527,52543.8282903446 "7844","No","No",778.819743345405,31986.5712070236 "7845","No","Yes",1464.39479015494,13968.5080055771 "7846","No","No",221.47998570854,37782.9970839142 "7847","No","No",592.045181611353,39064.994480207 "7848","No","No",1010.61245522492,34055.5715925025 "7849","No","No",1194.45646352906,49316.9977584631 "7850","No","No",844.312566858413,52237.7254846561 "7851","No","Yes",179.503977524429,19020.2959614411 "7852","No","No",355.930112598893,32120.3172410799 "7853","No","Yes",1776.72897362065,21280.8766053934 "7854","No","No",27.3018826937546,25050.827087992 "7855","No","Yes",631.019886409912,20753.5181088166 "7856","No","No",187.977684707438,49989.3074311213 "7857","No","Yes",1511.43409836329,11793.1617767047 "7858","No","No",1008.47823148071,22094.7480844484 "7859","No","No",820.493047331982,43829.6950758028 "7860","No","No",112.033309975348,40057.0774440998 "7861","No","Yes",1675.65876432611,20773.1332965924 "7862","No","Yes",592.893197700487,14833.289667755 "7863","No","No",492.39892684554,36004.3787656855 "7864","No","No",364.746192677668,46096.1601457535 "7865","No","No",1025.32734772889,44194.5137131782 "7866","No","No",612.657277408042,38635.364437286 "7867","No","No",1456.63098450781,38676.5456644415 "7868","No","Yes",1762.59824620554,13099.5888853228 "7869","No","Yes",180.095142403637,27351.4288203371 "7870","Yes","Yes",1721.97302703926,15179.7493287096 "7871","No","No",0,30822.454186489 "7872","No","No",1029.78686137899,69547.4369460224 "7873","No","No",268.443287008073,55294.9511030761 "7874","No","No",1711.43208391272,39019.6896454184 "7875","No","No",0,36886.9862572698 "7876","No","Yes",1295.81806531379,22241.7034671195 "7877","No","No",1722.12591993846,21623.0364539985 "7878","No","Yes",560.381753116869,23546.3963352205 "7879","No","No",676.572023475436,41328.4276238236 "7880","No","No",518.93699412848,28231.0120735046 "7881","No","No",626.404687195669,18130.3220987571 "7882","No","No",524.380176840498,38020.6399233986 "7883","No","No",0,33932.8527518265 "7884","No","No",517.499185500047,60790.9083158423 "7885","No","No",563.369693580382,22083.9085966864 "7886","No","No",865.886543679469,59740.7325304862 "7887","No","Yes",618.119217335142,24698.8272377675 "7888","No","No",1428.81282966821,41417.0536914817 "7889","No","No",1195.62870012121,34701.8024887858 "7890","No","No",218.014100689461,29211.398463684 "7891","No","No",1434.13804791172,38038.6038911651 "7892","No","No",506.267392227237,48843.0018072785 "7893","No","No",1322.36785444532,34622.6862457067 "7894","No","No",584.818827844497,49317.8348463311 "7895","No","No",815.072837026635,35017.8533639568 "7896","No","No",0,50956.67560531 "7897","No","Yes",489.927554476048,21445.5300432689 "7898","No","No",644.88983010905,42211.3598012121 "7899","No","No",1151.20364449996,36468.7244958993 "7900","No","No",1440.43396156724,27532.6535733937 "7901","No","Yes",858.215383079938,12588.108122033 "7902","No","No",0,29021.7452781286 "7903","No","No",0,54053.903924382 "7904","Yes","Yes",1402.20572671052,15964.2091821951 "7905","No","Yes",1171.7247120782,23505.1976209285 "7906","No","No",662.302632070322,44664.005908681 "7907","No","Yes",1142.73479164867,12893.9590863901 "7908","No","No",785.430997498407,37465.3600970998 "7909","No","No",705.548610503539,32899.6067177725 "7910","No","Yes",1713.31247126829,17432.2735890031 "7911","No","No",861.642116047731,38982.3915157176 "7912","No","No",398.427319929336,37094.5678677176 "7913","No","Yes",703.685970450978,16617.5700884556 "7914","No","No",366.260111383432,52360.9128805627 "7915","No","No",1054.1159630688,41781.7285800243 "7916","No","No",189.732742353513,53266.3383188017 "7917","No","No",944.204246156795,41883.4142988308 "7918","No","No",0,36969.1717526428 "7919","No","No",499.913435722248,28352.5533921151 "7920","No","No",866.31097695602,59647.4402882698 "7921","No","No",761.988490630495,39172.9452351635 "7922","No","No",1150.99981758188,50099.2936231523 "7923","No","No",53.4370529548792,51027.0683584044 "7924","No","No",319.767426854798,36057.4011097469 "7925","No","No",0,35116.5909600078 "7926","No","No",222.105456229842,41217.3493585232 "7927","No","Yes",1336.99863968121,21309.2510819392 "7928","No","Yes",1397.50486310496,26604.5570945362 "7929","No","No",794.584066954045,37520.2533303122 "7930","No","Yes",883.157341326026,18213.0759618371 "7931","No","No",1168.1673080252,17198.9835593493 "7932","No","No",257.447025110164,38275.9533677335 "7933","No","Yes",1273.48851311202,17105.8670470047 "7934","No","Yes",1934.51114219071,17084.048577191 "7935","No","Yes",1704.01419282432,17986.7635790881 "7936","No","Yes",220.891418767173,25667.8659407236 "7937","No","No",323.305124093072,51306.2686232584 "7938","No","No",969.404142604547,31476.5166150492 "7939","No","No",385.185120450238,50316.8015163965 "7940","No","No",995.40840887124,40907.4969532705 "7941","No","No",758.392131608197,40751.4074796687 "7942","No","Yes",652.867587670394,23515.1313179576 "7943","No","Yes",903.176837327325,15810.5741940783 "7944","No","No",533.429586263046,24857.9065324464 "7945","No","Yes",1151.85630836281,23250.384513708 "7946","No","No",1271.32854424032,43878.8133733466 "7947","No","No",136.118440276158,44757.692802711 "7948","No","Yes",1171.95044240375,15850.7772560773 "7949","No","No",512.660945594458,49989.5995789838 "7950","No","No",172.157592295485,28370.8659088461 "7951","No","No",1256.22265846487,42125.9373293965 "7952","No","No",835.837183227152,57505.9653004257 "7953","No","No",1026.63361568078,61064.3875769551 "7954","No","Yes",1144.27482876516,16002.3554700591 "7955","No","Yes",682.954298780229,15728.0479104477 "7956","No","No",797.672816440294,45377.7233416886 "7957","No","No",97.3269353362984,62335.1968533621 "7958","No","Yes",1436.32931848388,7761.31894307372 "7959","No","Yes",1325.624925599,15880.4471490978 "7960","No","No",1462.69493022106,50508.7464409683 "7961","No","No",191.913012578999,55659.4732930998 "7962","No","No",854.884279854547,44173.8277325458 "7963","No","No",864.343796306282,34598.4343942247 "7964","No","No",476.567195634253,46953.4182817587 "7965","No","No",1155.68038885258,50955.1065346111 "7966","No","No",1127.70019314671,32068.1465386873 "7967","No","No",0,62192.9956472797 "7968","No","No",312.916985128483,31328.0435013798 "7969","No","Yes",467.894660421885,16371.6977475365 "7970","No","Yes",1055.59777321371,16810.5595800266 "7971","No","Yes",989.235474989736,13609.631284009 "7972","No","No",245.70672370182,40462.5538115373 "7973","No","No",585.752613204564,43627.3279236822 "7974","No","No",610.854306313866,39175.0805291355 "7975","No","No",258.036510671323,40138.8417326327 "7976","No","No",1092.99815937252,37351.3396590005 "7977","No","No",1387.87328681612,27145.7032793199 "7978","No","No",833.084193233188,49704.5119584713 "7979","No","No",1184.87086972763,41802.944332633 "7980","No","Yes",916.794393751044,17152.1579637038 "7981","No","Yes",1427.33757806663,22909.430467279 "7982","No","Yes",1413.27442745588,19064.6221920762 "7983","No","Yes",1592.54963490252,18024.2817202795 "7984","No","No",0,26941.7977424554 "7985","No","No",1050.20409704366,34803.5337637529 "7986","No","No",1511.17770618893,35899.2558430202 "7987","No","No",894.681739327321,37232.293745958 "7988","No","Yes",781.613729542008,12195.9699546127 "7989","No","No",0,43311.6406962292 "7990","No","No",1094.88661521626,38342.715005316 "7991","No","No",0,59266.9608687076 "7992","No","Yes",875.670060915039,18687.0451725029 "7993","No","No",81.9180917096782,40936.906439517 "7994","No","No",371.181858124564,34679.9607338813 "7995","No","Yes",1438.05549698093,19200.5018262535 "7996","No","No",674.598956464598,67278.9484413768 "7997","No","No",1097.7625478144,42228.9704754292 "7998","No","No",593.060286904382,47787.5959226368 "7999","No","No",1167.10118913466,35952.1936607058 "8000","No","No",1114.826925896,33729.3898552217 "8001","No","No",304.146597789837,23866.9358580166 "8002","No","No",353.63113130111,40686.7601478226 "8003","No","No",1269.42033524182,39010.1481869142 "8004","No","Yes",397.54248845196,22710.8657401321 "8005","No","No",607.166270936521,49547.4658155602 "8006","No","No",1667.48036480455,47991.5850452853 "8007","No","No",956.311350604852,42971.901112669 "8008","No","No",668.3980286378,38637.4338847191 "8009","No","No",290.679874013809,37603.9721703408 "8010","No","Yes",826.727455791863,18776.3012421982 "8011","No","No",1102.11145915496,48079.1253033663 "8012","No","No",348.658867896976,36519.0901860126 "8013","No","Yes",991.232829247188,8926.799451933 "8014","No","No",1224.23578236207,32751.6969190413 "8015","No","No",146.365856827095,44666.9323010869 "8016","No","Yes",697.135579980937,18377.1497139722 "8017","No","No",956.446909552778,40740.3291117901 "8018","No","Yes",1184.90943155283,13276.221116225 "8019","No","No",1702.23668300415,36530.4736214361 "8020","No","No",0,36850.9711754768 "8021","No","No",965.459761747828,25045.7255420055 "8022","No","No",331.164338742849,25922.4167354017 "8023","No","No",1307.09366867241,35425.6099922775 "8024","No","No",1637.03755674049,45027.538161563 "8025","No","Yes",1091.93210326853,11703.3805642246 "8026","No","Yes",1499.19013015969,17560.3718351052 "8027","No","Yes",770.290543708965,22114.7182592628 "8028","No","Yes",1147.35490966558,19188.9082733679 "8029","No","No",1037.27416271053,28437.7724528546 "8030","No","No",626.973938404489,50447.7741503172 "8031","No","No",847.720792941679,55260.3498094267 "8032","No","Yes",1199.59268578389,16454.749842006 "8033","No","No",1288.28509541537,54666.3774464645 "8034","No","No",675.225387145285,33700.2126144862 "8035","No","No",541.44096207966,32502.6968388091 "8036","No","Yes",1165.00739121577,18389.0790407725 "8037","No","No",1042.79193502536,26141.0059458739 "8038","No","No",989.217092749214,42813.375110046 "8039","No","No",586.602608270933,27798.1683237731 "8040","No","No",931.591055383966,33302.240019542 "8041","No","Yes",978.53856684773,16514.3249498654 "8042","No","No",958.936828886891,47468.6697094555 "8043","No","No",384.532041382923,36019.4103983883 "8044","No","No",645.075136365722,43244.5237618794 "8045","No","No",424.760272309022,29502.4035832783 "8046","No","No",612.551875753766,33036.2413164312 "8047","No","No",1381.44222217693,47470.0187655353 "8048","No","No",0,45560.9128917675 "8049","No","No",1096.02610874365,23954.2179245426 "8050","No","No",945.685449516158,38714.5182938666 "8051","No","No",722.768006648193,20962.1064483564 "8052","No","Yes",887.880819486513,20563.1471269038 "8053","No","Yes",1049.95328779119,19724.8326135229 "8054","No","No",728.041685121268,29188.9427360122 "8055","No","No",1114.90403246296,40084.0014692393 "8056","No","Yes",1451.30354178896,14185.1379196466 "8057","No","Yes",629.213189509353,16007.6929485013 "8058","No","No",630.230741457689,49059.2627644256 "8059","No","Yes",1372.97803245667,10776.4442846822 "8060","No","Yes",746.863836108701,13904.4276434159 "8061","No","Yes",1400.54583563652,16519.0832437927 "8062","No","No",971.35143511577,46533.8564831326 "8063","No","No",637.082386355173,49097.9006748914 "8064","No","No",1778.42910924859,34591.2382681188 "8065","No","Yes",678.205083642297,12787.0905671847 "8066","No","No",1094.77298187378,46617.8825725774 "8067","No","Yes",879.852004959113,23996.7401964865 "8068","No","No",1449.32434566807,38720.3815836494 "8069","No","No",322.00162519978,43774.4421094367 "8070","No","No",1430.57687000073,44104.9589155541 "8071","No","Yes",1199.3855860032,18884.1274708906 "8072","No","No",168.367517347414,47684.5262213006 "8073","No","Yes",1143.3982045504,15997.1711895633 "8074","No","No",416.906490149379,38104.7732254315 "8075","No","No",1352.61366887416,42194.3866996432 "8076","No","No",1431.74197311519,37793.2873225102 "8077","No","No",481.305040751321,35747.7451040985 "8078","No","No",774.073176557921,46082.0432177328 "8079","No","No",0,34749.7935898833 "8080","No","Yes",1186.89100186271,14256.7295542742 "8081","No","Yes",978.359335975962,16679.8939738249 "8082","No","No",1409.11216032403,30626.2239874826 "8083","No","No",1491.47928224386,54835.7700509163 "8084","No","Yes",1228.48496561983,18937.2069449315 "8085","No","No",1553.47898510568,44425.890616496 "8086","No","No",1200.04162184687,56081.0802320515 "8087","No","No",984.860839214177,45435.4971157382 "8088","No","No",558.320540180268,38014.7600990968 "8089","No","Yes",778.853871913263,16007.4569754174 "8090","No","No",163.353170816826,45183.1451245658 "8091","No","Yes",574.818229191728,16479.5388337621 "8092","No","No",1149.93685609785,39231.6504810631 "8093","No","No",774.53807406404,22691.8824439653 "8094","No","No",866.772499634281,30400.5605118558 "8095","No","No",325.859608024347,36682.2825686063 "8096","No","Yes",879.627008263598,14898.3114661048 "8097","No","No",160.50306078312,19132.6948604593 "8098","No","No",905.719002527264,38210.7337742896 "8099","No","Yes",649.931060017559,13475.0195145782 "8100","No","No",196.912925664956,35737.6036276591 "8101","No","No",488.566318858869,25407.2159165707 "8102","No","No",449.274316089442,13124.5631922754 "8103","No","No",824.802432209204,40957.5222660038 "8104","No","Yes",600.602171819777,18630.3791308478 "8105","No","No",912.065530843446,62142.0610606175 "8106","No","No",619.139261665316,41281.9809640348 "8107","No","No",225.364695124737,60275.8833588615 "8108","No","No",369.430953350466,63536.7751705256 "8109","No","No",745.666146610358,54891.4339618085 "8110","No","Yes",782.352280928641,22692.6699880665 "8111","No","Yes",1051.24716182541,23200.9709928678 "8112","No","Yes",613.601284003546,9506.46030537807 "8113","No","No",863.618400665702,30397.1872633216 "8114","No","No",943.086028421649,29622.6077434668 "8115","No","Yes",1102.63126154414,10671.9235752487 "8116","No","Yes",1175.13333149015,15444.9269201034 "8117","No","No",491.449369823872,51484.245489143 "8118","No","Yes",1131.08556788632,21829.0823944909 "8119","No","Yes",717.371845383157,16319.1169756245 "8120","No","Yes",517.300565516777,17068.3388808094 "8121","Yes","Yes",2038.54315996182,12181.902584317 "8122","No","No",868.494476319032,22176.2762497007 "8123","No","No",111.416890994626,33328.2458835673 "8124","No","Yes",1587.56439786646,13080.6887489066 "8125","No","Yes",640.998430228533,21680.097686865 "8126","No","Yes",1928.59211959305,17570.1950770634 "8127","No","Yes",759.678794164084,18871.4017881629 "8128","No","No",1306.35396408392,35652.7619798141 "8129","No","No",908.174289735733,46791.0363559916 "8130","No","No",871.67741216338,28182.116302446 "8131","No","No",0,38878.1745666488 "8132","No","No",0,53302.2130321841 "8133","No","Yes",947.525154569841,24073.0909458376 "8134","No","No",222.880275629056,40849.9209013436 "8135","No","No",1237.53437819226,30967.5887589274 "8136","No","No",1318.71911205766,36822.9249600433 "8137","No","Yes",1030.05211219446,9760.39956109943 "8138","No","No",925.706239813761,62764.8842873843 "8139","No","No",425.779790910006,42131.5359555794 "8140","No","Yes",1901.6537550579,21323.1632661849 "8141","Yes","No",1940.3716198907,41162.9336560565 "8142","No","Yes",227.31723199312,24282.2285628356 "8143","No","No",836.574229518366,51238.5809287878 "8144","No","Yes",981.997998407385,20147.5118507633 "8145","No","No",1186.79623136733,52689.2501384527 "8146","No","Yes",315.978748024358,13186.1176938327 "8147","No","Yes",768.447241174727,21497.5288874548 "8148","No","Yes",969.90946533819,13962.3324283703 "8149","No","No",1175.19147310583,50921.2562794578 "8150","No","Yes",1684.2753411013,20344.1782031723 "8151","No","No",1120.62319369579,48571.2600711802 "8152","No","No",784.470053468051,52617.207089956 "8153","No","No",604.980002579675,38885.3103196378 "8154","No","No",517.978901464771,41755.3439780178 "8155","No","No",270.264088797442,41978.0478846199 "8156","No","No",825.600966046992,33986.6973244399 "8157","No","No",623.517380541497,51677.3454162215 "8158","No","No",529.508360526441,38328.6126282346 "8159","No","Yes",1014.76966176828,12239.8838074693 "8160","No","No",288.534653798734,44081.0348138192 "8161","No","No",500.25272381345,17104.0542524538 "8162","No","No",565.675982283623,37299.0792940605 "8163","No","No",1005.33716823962,34297.8977552662 "8164","No","No",852.393368457823,46320.8548881979 "8165","No","No",613.150113768004,34286.112453527 "8166","No","No",905.565725913233,52997.7310413533 "8167","No","No",1086.18172881883,52507.5972870699 "8168","No","No",1057.17812713189,35807.0248552158 "8169","No","No",252.899460581594,27454.6189545124 "8170","No","Yes",1401.28270335388,16683.0530020691 "8171","No","No",1529.13125892736,36572.0256735791 "8172","No","Yes",947.453711010131,21945.7930360235 "8173","No","No",0,33917.5941246225 "8174","No","Yes",1312.90720253482,15495.0265880783 "8175","No","No",1269.2905749073,43581.1988403355 "8176","No","Yes",20.2580938434145,21530.3315137875 "8177","No","No",0,30818.5119478012 "8178","No","No",35.3229997480005,53407.2696317298 "8179","No","No",897.312690752823,31465.9647696669 "8180","No","No",1043.55235783125,38393.6118953888 "8181","No","No",1165.32396595771,33433.8289153912 "8182","No","No",1299.47321012077,55165.4729773302 "8183","No","No",675.776528968365,21758.0228077015 "8184","No","Yes",1202.38503020909,20550.6377000894 "8185","No","No",1190.15983100714,30746.3769711559 "8186","No","Yes",535.010596224683,13909.3915908113 "8187","No","No",194.193554789385,43150.501726601 "8188","No","No",430.620319374712,46182.6649756 "8189","No","No",1047.92709078908,59765.5996686006 "8190","No","No",220.791699313198,26453.2892952264 "8191","Yes","Yes",1493.96853901776,24126.029785681 "8192","No","Yes",856.655399246759,15523.1029435474 "8193","No","Yes",1635.50002360542,10596.5268944023 "8194","No","No",666.613888740094,49215.0245344022 "8195","Yes","No",1562.83791774789,49303.0094684327 "8196","No","No",255.888371780844,48833.2287713088 "8197","No","No",602.361701994454,53800.5472092154 "8198","No","No",1599.31469461935,28825.4745687684 "8199","No","No",150.94951081572,36923.5521943078 "8200","No","No",1388.81659047311,35460.8012411956 "8201","No","No",87.9486517918008,47924.6979109095 "8202","No","Yes",1935.82770125724,17969.7985313908 "8203","No","Yes",1289.3159628111,7677.89639750202 "8204","No","No",871.987212227636,45496.9481609842 "8205","No","No",1333.69998094298,44361.6208714047 "8206","No","No",181.179344587582,37380.1443180605 "8207","No","No",791.182225188319,48206.731750984 "8208","No","No",69.177023653734,24556.0217815517 "8209","No","No",940.894483512081,54839.1236462734 "8210","No","Yes",346.215577878245,17866.5280381284 "8211","No","No",214.84623495229,39629.2001796429 "8212","No","Yes",676.831307875609,16998.6517153961 "8213","No","No",595.996994273606,37417.137823355 "8214","No","Yes",999.391696394237,23688.6489687946 "8215","No","No",1447.04307363001,22433.6367726481 "8216","No","No",464.098477616815,44769.8648263187 "8217","No","No",872.63990775056,29749.170678731 "8218","No","No",381.704099186758,25011.1033931994 "8219","No","Yes",866.49676067859,24262.6938973924 "8220","No","Yes",1243.34410193846,23634.7485750949 "8221","No","No",1184.30802110083,37600.0753409499 "8222","No","Yes",757.407102750296,25309.77323254 "8223","No","No",939.258489668574,56225.8207299037 "8224","No","No",560.770233567651,61472.8586941428 "8225","No","No",971.278833313912,26853.3009009738 "8226","No","No",518.680792277915,30151.3304613229 "8227","No","No",834.263678916678,28022.8368210329 "8228","No","Yes",545.585579909597,19454.3257965573 "8229","No","No",1057.35087177407,39651.123507722 "8230","No","Yes",720.516450875564,20222.9489909686 "8231","No","No",1285.51797563905,37442.6425889869 "8232","No","Yes",406.339769411729,30088.4425077181 "8233","No","No",1023.89203173754,33392.7097834514 "8234","No","No",356.244118146921,21319.0859608547 "8235","No","No",657.088818826134,31724.6285500371 "8236","No","Yes",1168.54641431588,25802.2764766761 "8237","No","No",344.88224152182,26227.3292753008 "8238","No","Yes",535.335989397998,24268.8284962213 "8239","No","Yes",1222.9665870908,21373.3500951251 "8240","No","Yes",663.602728097061,21436.5216376398 "8241","No","Yes",591.537144690117,20961.4652602437 "8242","No","Yes",941.718008883302,23362.9771743543 "8243","No","No",434.544943739374,35620.0652976999 "8244","Yes","No",1804.19050453849,23096.0843640887 "8245","No","No",0,34227.947139365 "8246","No","No",0,28356.2519409008 "8247","No","No",586.470977472847,52203.8589273578 "8248","No","No",707.43614919,42407.7542299089 "8249","No","No",1491.6405870679,61096.4921750445 "8250","No","Yes",556.182234259286,21650.8299183564 "8251","No","No",683.14754196625,44439.5287386404 "8252","No","Yes",671.131730723303,11857.4776351159 "8253","No","No",1020.19775584997,43592.8341359861 "8254","No","Yes",1183.06770190887,13210.8776348588 "8255","No","Yes",1127.53613107086,19322.9696557329 "8256","No","No",1545.98280486837,32691.9238251651 "8257","No","No",1114.3977298144,44195.5445481969 "8258","No","No",843.497244001002,41917.319765103 "8259","No","No",1047.67337025525,34413.1959130021 "8260","No","Yes",810.540945659107,17252.2542514058 "8261","No","Yes",501.110562487269,26425.6980101533 "8262","No","Yes",1031.63836091527,21432.147052673 "8263","No","No",360.215031490771,44082.1871282945 "8264","No","No",1234.83167806921,40155.4514111614 "8265","Yes","No",2236.76421456131,37113.8830697644 "8266","No","No",750.840531468744,32034.7121252064 "8267","No","No",231.968340323912,42465.9608187879 "8268","No","No",1616.50019408524,41825.4039844618 "8269","No","No",981.799329814043,49644.9187081982 "8270","No","No",538.019925084371,27284.5108594155 "8271","No","No",136.30734254125,48799.6549055704 "8272","No","No",614.940983622697,30905.479817434 "8273","No","Yes",824.040741788241,11659.1932751954 "8274","No","No",393.061267139273,44149.388311577 "8275","No","Yes",759.397130569606,18693.1879014694 "8276","No","Yes",1743.79883736231,17541.0028662017 "8277","No","Yes",621.170106310103,17503.6899747362 "8278","No","No",1360.54717336406,54705.1269778723 "8279","No","No",253.521881501858,37506.2067343011 "8280","No","No",1392.33267765748,48709.5292601184 "8281","No","No",1508.25085941898,43525.0527725642 "8282","No","Yes",1823.86706045805,19447.9665572514 "8283","No","No",0,39423.5125227997 "8284","No","No",728.673461012883,36557.2348355276 "8285","No","No",1471.19873782547,56477.1308610149 "8286","No","No",967.256762447018,32201.6340844054 "8287","No","No",640.705982383149,38792.3571871445 "8288","No","Yes",559.566410763486,15720.3824613913 "8289","No","Yes",1258.11453317171,20010.576269278 "8290","No","No",1126.88769620057,32770.5790184123 "8291","No","No",1341.26314052855,46263.8850122052 "8292","No","No",751.101930768505,50290.1441115538 "8293","No","No",325.927636632494,57313.2824969147 "8294","No","Yes",905.901945054864,20285.2251283281 "8295","No","No",699.604275562255,49035.2474604604 "8296","No","No",996.445905646337,51393.7887153379 "8297","No","Yes",1034.1702134313,23825.0285135993 "8298","No","Yes",1464.63624150705,14763.5626843165 "8299","No","No",280.724169013609,40382.5992622225 "8300","No","No",725.867685728056,41792.6729233945 "8301","No","Yes",1162.59092159727,15419.1105209588 "8302","No","Yes",193.719762500207,18002.547648728 "8303","No","No",743.18182701654,50250.9190142536 "8304","No","No",1403.83983418344,43225.0418957429 "8305","No","No",460.139804417708,52708.5598496177 "8306","No","No",1218.21988712889,36290.16200667 "8307","No","No",903.987020156951,51705.2716003957 "8308","No","Yes",1473.69593100509,19759.5018682479 "8309","No","No",525.515682022251,50763.9840052729 "8310","Yes","Yes",1874.82261243745,14957.8163342872 "8311","No","No",700.622387844543,42023.8887828787 "8312","No","Yes",1164.66696609579,23297.1578875709 "8313","No","Yes",1803.76634928102,23201.826982472 "8314","No","Yes",451.711523066804,22483.0958101843 "8315","No","No",1101.98446046958,36231.8538227436 "8316","No","Yes",1343.77712401475,28198.005353463 "8317","No","No",606.435876464573,38897.0794077548 "8318","No","No",0,45380.6567630619 "8319","No","Yes",0,20963.3831145759 "8320","No","No",1140.82015178859,36495.0553896058 "8321","No","No",1597.64740187317,42515.0888693793 "8322","No","Yes",521.841479256212,10316.3367412718 "8323","No","Yes",837.521493456654,13215.7858131515 "8324","No","No",390.310315291063,42322.246697405 "8325","No","Yes",806.481972726929,22127.0817878431 "8326","No","No",890.266646268634,38376.0906470453 "8327","No","Yes",237.383029626622,21376.6832351471 "8328","No","Yes",808.396167027043,11804.0344760529 "8329","No","No",694.390945705502,46128.8647070701 "8330","No","No",492.25394545489,42143.1984404939 "8331","No","Yes",460.595414827766,12939.009089927 "8332","No","Yes",838.459954530528,19805.8752348908 "8333","No","No",675.842504719532,38173.9257538527 "8334","No","No",625.419874645033,47406.2407650345 "8335","No","No",45.4762817817571,27599.0723332859 "8336","No","No",474.769235479092,30799.949385159 "8337","No","No",1024.82365673274,46113.6471170703 "8338","No","No",696.107576993413,40325.38480824 "8339","No","Yes",953.533658439997,25820.5874829041 "8340","No","No",1143.85523050669,50690.2576998117 "8341","No","Yes",683.441300405235,22595.4539568037 "8342","No","No",644.604409116029,30276.5707302591 "8343","Yes","Yes",2034.67471782133,17133.9659619014 "8344","No","Yes",1345.49162351815,12235.3876699232 "8345","No","Yes",1307.0870915147,18082.5548896089 "8346","No","No",705.500524263981,52559.0312585917 "8347","No","No",0,47725.5215295292 "8348","No","No",501.169619687987,35664.8053896805 "8349","No","No",991.520923604118,30775.5207643452 "8350","No","Yes",956.692234248303,19594.5490428608 "8351","No","No",353.649992387444,30726.2856927119 "8352","No","No",838.924060067205,47864.4189213508 "8353","No","Yes",353.652760924622,20531.4965369275 "8354","No","Yes",751.243140185971,16475.0275586338 "8355","No","No",991.158408318519,42767.6902792807 "8356","No","Yes",1096.4896471406,17856.265031594 "8357","Yes","No",1655.77559694702,25639.7935387017 "8358","No","No",0,35577.425283317 "8359","No","Yes",485.653177783496,16099.9179399102 "8360","No","No",850.466593719231,34367.6765291129 "8361","No","Yes",0,17695.8401686948 "8362","No","Yes",766.635537082227,21718.8136181928 "8363","No","No",309.179162515638,31232.0708902559 "8364","No","No",244.662374521967,29275.115419093 "8365","Yes","Yes",1013.21688638161,19651.2617936432 "8366","No","No",357.592156699681,48565.0177083166 "8367","No","Yes",1908.24200791737,17642.6266276482 "8368","No","No",1449.13570769994,40495.4721803858 "8369","No","No",464.41630119677,38236.740022089 "8370","No","No",1491.70754528024,40637.4479829066 "8371","No","No",256.89418684711,39019.8757442 "8372","No","No",0,35025.9713946151 "8373","No","No",0,23910.1396582202 "8374","No","No",817.621089103321,43705.822710524 "8375","No","Yes",888.306320762449,22901.6339371219 "8376","No","No",1240.75460457603,51511.2975985728 "8377","No","No",828.644161650737,10948.504497517 "8378","No","Yes",959.854227591364,18481.7526600941 "8379","No","No",1281.44884880957,48837.3787603345 "8380","No","Yes",1577.67543060735,11951.4786137937 "8381","No","Yes",1444.11426844796,21441.0121279953 "8382","No","Yes",647.670287929141,13618.3477949365 "8383","No","No",720.164918693873,43654.2303440958 "8384","No","No",64.1547933628275,47969.0051087279 "8385","No","Yes",546.028664099578,21615.2690793228 "8386","No","Yes",1102.12727684037,14009.9429940502 "8387","No","No",1294.52356958022,28001.0490731826 "8388","No","No",341.322290452253,33808.3361791774 "8389","No","No",399.390381379442,17348.7842322496 "8390","No","No",710.394633535282,31483.3472045777 "8391","No","No",1467.57338371779,26697.7858985394 "8392","No","Yes",282.831518827634,13371.055021089 "8393","No","No",544.22518162658,46149.5102207517 "8394","No","No",1585.86037254851,42709.4918931997 "8395","No","No",0,28784.4692369344 "8396","No","No",1033.42627176237,43594.7623211524 "8397","No","No",1131.05364603221,38834.2362457054 "8398","No","No",544.287295321035,24477.4719149196 "8399","No","No",1116.72035656284,33716.1775223316 "8400","Yes","No",2155.28898610335,34787.2526819072 "8401","No","No",732.056646560392,39433.4806360451 "8402","No","No",591.636269770793,33852.3096699306 "8403","No","No",0,63251.307626935 "8404","No","No",453.849958087348,27865.2847981077 "8405","No","No",170.070917002394,27005.5771185451 "8406","No","No",916.729177155089,37212.8085297821 "8407","No","No",611.337290220736,38389.2825323233 "8408","No","No",258.629672515951,33327.9377775435 "8409","No","Yes",357.595665269024,18141.0028164559 "8410","No","No",813.173887123882,49274.3828394648 "8411","Yes","No",1743.06470981777,22308.1257490576 "8412","No","No",801.802711515901,46182.2570982408 "8413","No","No",674.736614723598,26060.4860985104 "8414","No","No",430.490648307719,39921.1369084698 "8415","No","No",1352.99553198552,34089.0331773621 "8416","No","Yes",1040.88021196313,19427.8142430555 "8417","No","No",1305.77469775412,34412.116373967 "8418","No","No",1294.76170642516,37712.3868971499 "8419","No","Yes",583.295482029807,23694.3673679543 "8420","No","Yes",1409.2991781164,21508.5015068054 "8421","No","No",886.216628786159,40486.8594433597 "8422","No","No",515.619799710376,39638.6396270428 "8423","No","No",1866.30465255816,58710.8876485058 "8424","No","No",657.705720718074,41224.7968784511 "8425","No","No",270.224332861831,49128.0371444139 "8426","No","No",953.391788924619,20749.338158676 "8427","No","No",630.220778875387,24919.1838767956 "8428","Yes","Yes",2024.66016984007,9663.7881589584 "8429","No","Yes",497.056988344806,23119.1350274858 "8430","No","No",48.7255629593075,37957.9021382577 "8431","No","No",440.024542832313,49358.4257857338 "8432","No","No",1217.94865980061,43996.0139956854 "8433","No","Yes",1203.98225964262,21524.318420608 "8434","No","Yes",1493.87356174054,15626.6594167928 "8435","No","No",0,48025.6168546343 "8436","No","No",1204.95434803363,47167.9384961006 "8437","No","No",945.669717469501,39928.2438966955 "8438","No","Yes",807.595571807103,16926.3733350784 "8439","No","No",514.381527331564,20632.2681224495 "8440","No","No",1493.3574345851,51510.1480660087 "8441","No","No",738.221429789569,25184.4673054809 "8442","No","Yes",451.91246146881,22316.2613245872 "8443","No","No",997.027882271094,35591.3872732176 "8444","No","No",1082.07439363356,30627.4616912529 "8445","No","Yes",1001.34888620142,19314.9223285455 "8446","No","No",1058.62751384414,49380.0784348946 "8447","No","No",245.346492518079,42703.0186661609 "8448","No","No",579.381824881827,32296.2634047504 "8449","No","No",1180.93571396495,35352.1517992282 "8450","No","No",969.083028484442,45192.338963931 "8451","No","No",0,44561.3254511423 "8452","No","Yes",714.175499668216,19995.8563982326 "8453","No","No",0,36379.5188526604 "8454","No","Yes",100.850759138746,17315.1301918906 "8455","No","No",1856.53087551349,33498.8345204157 "8456","No","No",620.45730931752,41059.0965018736 "8457","Yes","No",1815.79252000645,31632.5838611298 "8458","No","No",1508.14501433939,31101.0812174785 "8459","No","No",1170.91697571401,38712.4200991916 "8460","Yes","No",2063.57193445013,37372.7584928128 "8461","No","Yes",284.841577198801,20477.837227372 "8462","No","No",878.446109878267,29561.7830760682 "8463","Yes","Yes",1740.76830587972,18161.2440790232 "8464","Yes","No",1994.39506620033,44794.3375042287 "8465","No","No",1290.17921206669,42813.975170851 "8466","No","No",441.336983219759,55970.9233586644 "8467","No","Yes",1790.41372522763,22953.4310754149 "8468","No","No",821.250479687844,68721.9744687402 "8469","No","No",341.040378604856,40255.4675973271 "8470","No","No",216.961691805065,31742.9944511373 "8471","No","No",48.237989993603,37536.3614328607 "8472","No","No",501.360657821036,49897.300730356 "8473","No","No",267.416624954798,24154.5097950922 "8474","No","No",623.618428429323,54008.1958257334 "8475","No","No",752.739378189563,38671.7859860491 "8476","No","No",0,38665.8702365134 "8477","No","No",413.114594729778,63793.5576339873 "8478","No","No",895.439223193743,26138.1012162755 "8479","No","Yes",127.663375125104,13942.2441190945 "8480","Yes","No",1361.73579057918,50322.355320138 "8481","No","No",592.611517621491,55124.8644992906 "8482","No","Yes",947.850996952402,22047.9205558962 "8483","No","No",784.171574845199,47322.6891083565 "8484","No","No",952.311152143376,21990.091473372 "8485","No","No",448.263531441352,26350.871022339 "8486","No","No",316.124008088576,37322.9315631556 "8487","No","Yes",1246.11719840856,9846.70264448697 "8488","No","No",680.706468644222,42316.4031121769 "8489","No","No",1208.30437571947,38461.0465350321 "8490","Yes","No",1292.43021067816,50990.5771675202 "8491","No","No",663.610198685482,48089.520547403 "8492","No","No",435.592200214182,38830.5180173373 "8493","No","No",579.193281037698,36181.8127643826 "8494","No","Yes",819.031064689632,22092.7223037395 "8495","No","No",603.020399834637,51229.7884696056 "8496","Yes","Yes",2654.32257628018,21930.3888786977 "8497","No","Yes",0,23274.9761587336 "8498","No","Yes",1487.04354464178,21412.3515514101 "8499","No","No",1466.77219186985,46875.0835420014 "8500","No","No",1168.4885668002,40615.5666922786 "8501","No","Yes",592.296945792535,19744.9783929469 "8502","No","Yes",1255.97389096594,21757.6763903522 "8503","No","No",389.792381033256,53685.4731538122 "8504","No","No",604.304327008842,38758.5455337612 "8505","No","No",940.392399703689,33874.8145278687 "8506","No","No",329.518976607022,38150.6349302136 "8507","No","No",1465.02703244964,18600.2135039367 "8508","No","Yes",1817.28007187911,20751.4324171627 "8509","No","Yes",1055.06379764618,16174.2063787243 "8510","No","Yes",536.010217846914,23587.4940781989 "8511","No","No",817.474328116273,41994.9253402325 "8512","No","No",1244.56356571126,36157.8184658576 "8513","No","No",983.127571332577,19985.6014307873 "8514","No","No",644.800255330071,32298.3085674304 "8515","No","No",896.981467925666,35755.7484517946 "8516","No","No",527.271574424434,41573.9819083321 "8517","No","No",0,51122.5156157189 "8518","No","Yes",1427.94053080774,12666.2607692499 "8519","No","Yes",1262.48076570285,15636.2573617591 "8520","No","No",1283.27848260299,46335.8360623501 "8521","No","No",489.51991369456,22750.6921764142 "8522","No","No",887.201436107651,41641.4535720123 "8523","No","No",328.013011130292,38500.3995970506 "8524","No","Yes",1521.49494912154,18018.9043408893 "8525","No","No",326.038112595005,25498.0135270893 "8526","No","No",1816.9735015648,29897.1818126619 "8527","No","No",1534.00700450546,35566.2670692778 "8528","No","Yes",1657.11385858028,10852.2931297992 "8529","No","No",1270.4569758694,36092.5870995613 "8530","No","No",560.514619197812,25254.0416554866 "8531","No","No",0,28490.7714643949 "8532","No","No",697.932758212992,35706.6613545057 "8533","No","No",1420.50748026314,37437.7379047098 "8534","No","No",695.669009847766,36977.6401878797 "8535","No","Yes",212.821368527709,24515.9754650541 "8536","No","Yes",929.411129986556,23236.7517512913 "8537","No","No",1676.11479875847,25317.1713937274 "8538","No","No",571.959941777441,24932.0059234333 "8539","No","No",355.016331184177,36327.8770094896 "8540","No","Yes",1315.42144462588,21650.4151619057 "8541","No","Yes",1006.99410894368,17834.0641906451 "8542","No","No",332.674169599933,22938.5931481233 "8543","Yes","No",1622.4990392531,39228.5414258989 "8544","No","No",0,26394.5453626774 "8545","No","No",1131.60205423585,19893.7723062072 "8546","No","No",0,44981.150289516 "8547","No","No",1493.74224806877,32742.8582115942 "8548","No","No",47.4234792771126,29567.857431916 "8549","No","No",153.712633619584,54331.5297705247 "8550","No","No",458.997386968815,21165.866479197 "8551","No","Yes",1260.82817647004,22372.287502262 "8552","No","Yes",1080.47766220473,18741.3168628509 "8553","No","No",1814.10564871295,32977.9086247262 "8554","No","Yes",1739.83781216118,21593.0128492377 "8555","No","No",0,50496.4737233152 "8556","No","No",983.490679181841,20828.5306523573 "8557","No","No",0,28176.1188629536 "8558","No","Yes",138.906309174776,13005.8951509307 "8559","No","No",870.347965939696,42397.0998165847 "8560","No","Yes",584.486401116587,14017.3905494261 "8561","No","Yes",1508.70177606082,25338.2646859801 "8562","No","Yes",1282.4749516367,25304.5864378799 "8563","No","No",521.736727978673,28401.4974561068 "8564","No","No",1150.67771161838,38342.2890564805 "8565","No","Yes",1010.84859095171,16428.7545549193 "8566","No","Yes",1746.29737190901,24536.5538729105 "8567","No","No",1382.26899258445,19023.9962118209 "8568","No","No",499.818601940851,31335.9607609844 "8569","No","No",339.676804208343,43308.965897573 "8570","No","No",253.630102218173,50236.5051828946 "8571","No","No",690.185731263381,32761.2272146714 "8572","No","No",743.052553428231,33556.0164881628 "8573","No","No",736.49552163315,49119.3478190345 "8574","No","Yes",584.518096158552,19624.5886598667 "8575","Yes","Yes",1276.68508261978,19282.4359237479 "8576","No","No",399.877160707318,47291.0158892892 "8577","No","No",182.238720004123,45937.9768756614 "8578","No","No",743.666169687606,37542.5803390161 "8579","No","No",731.101627213473,26655.4147068459 "8580","No","No",615.726657355146,38687.1152204681 "8581","No","No",499.149148884078,56343.6104353604 "8582","No","No",785.033516931214,45598.9153979293 "8583","No","Yes",969.25234104125,16864.0434885401 "8584","No","No",841.490063864523,43371.9244400238 "8585","No","No",181.171482584218,35175.9035445688 "8586","No","No",811.596366615229,38323.7238673524 "8587","No","No",1625.63987632474,65026.7389252459 "8588","No","No",962.223837965554,43974.0568690248 "8589","No","No",617.025054245827,33369.0893641112 "8590","No","Yes",478.923674934818,19730.1851629865 "8591","No","No",1017.74972070304,30227.8632254641 "8592","No","No",708.500161609795,35086.9049249202 "8593","No","No",423.407947289886,40844.3415096871 "8594","No","No",0,29775.1588729276 "8595","No","Yes",935.693635042886,25362.3218840663 "8596","No","No",0,51719.3748711348 "8597","No","Yes",1757.84545885824,17426.5197120225 "8598","No","No",733.5453865337,30638.2161878522 "8599","No","Yes",1050.40938603661,16746.0628214843 "8600","No","No",25.8003766684075,44091.687910866 "8601","No","No",646.081240203633,36686.9594469989 "8602","No","No",695.471767186167,25544.8920404563 "8603","No","No",536.517494230315,28629.4636706794 "8604","No","No",542.277143335525,52447.2193378773 "8605","No","No",811.769946136174,46076.3022364223 "8606","No","Yes",911.760824480021,21082.5527948271 "8607","No","No",621.303498905369,50474.9790084357 "8608","No","No",549.393127695549,39131.4948805194 "8609","No","No",929.297154195484,42503.4097188356 "8610","No","No",154.663920437736,44714.3716756576 "8611","No","No",36.2350412345537,49075.9815581156 "8612","No","No",718.595253590074,39157.7899326726 "8613","No","No",379.100360643884,31350.9286329779 "8614","No","No",904.335711193638,30890.745549857 "8615","No","No",1028.96434239191,18701.4095944644 "8616","No","No",343.493829781314,67930.3436152597 "8617","No","No",375.79931917431,21297.5846156923 "8618","No","Yes",502.261086940031,13572.748909077 "8619","No","Yes",1231.55882465424,15727.6696283886 "8620","No","No",456.871512841706,54894.1644540352 "8621","No","Yes",1112.12991899495,22709.4334546068 "8622","No","No",1063.71286098607,36475.0979894526 "8623","No","Yes",895.823244916992,19825.6298997185 "8624","No","No",1407.09214245668,43677.9764174713 "8625","No","No",418.498344050518,29856.471677401 "8626","No","No",684.90629721516,14756.9983525477 "8627","No","No",650.04611001589,46137.9329673966 "8628","No","No",495.421154240144,26740.7690090816 "8629","No","No",698.905129961079,27001.5538993092 "8630","No","No",847.772967201651,42193.5975640784 "8631","No","No",1185.15973428525,35793.3485205462 "8632","No","No",1315.609131464,54833.0555196068 "8633","No","No",0,32809.33478523 "8634","No","No",629.087770988306,32296.9316451165 "8635","No","No",326.670018453137,50562.4903339961 "8636","No","No",0,35775.3169310198 "8637","No","No",949.282372434899,26960.7427591373 "8638","No","No",1077.73308347226,50334.8541187515 "8639","No","No",1256.18672994804,31706.1785617479 "8640","No","No",1356.72983609052,37664.0373894486 "8641","No","No",564.128292140862,37695.7753708914 "8642","No","No",793.970969480621,41931.585345531 "8643","No","Yes",412.388636174531,9892.1275493933 "8644","No","Yes",810.668587280614,19925.7437697109 "8645","No","Yes",1273.83577633193,15593.6416810446 "8646","No","No",1386.66847806246,56325.4493583427 "8647","No","Yes",574.673144256394,22814.3464399736 "8648","No","Yes",1614.14163797244,11334.2924739847 "8649","No","No",0,45642.7619356526 "8650","No","No",949.996706817807,32676.2307500825 "8651","No","Yes",618.756752341743,18297.3277705301 "8652","No","No",1408.17611903654,47496.1643104349 "8653","No","No",465.919878364343,41133.9485633097 "8654","No","No",952.927819302997,44894.4429254273 "8655","No","Yes",17.6095775951027,13739.7546026196 "8656","No","Yes",989.884597421335,23416.5004655854 "8657","No","Yes",1817.17117640169,24601.0374851681 "8658","No","No",746.836510472922,41294.4522465602 "8659","No","No",549.06492953427,58539.4142705508 "8660","No","Yes",993.049538227269,20538.5457418214 "8661","No","Yes",1447.4181082241,16658.4240877415 "8662","No","Yes",598.218194371973,19794.5764098749 "8663","No","Yes",79.9899964022965,14390.8131164386 "8664","No","No",641.254587415807,31306.5348373144 "8665","No","Yes",562.837698264136,25068.0464477888 "8666","No","Yes",448.243210690723,23540.8910274387 "8667","No","Yes",1134.69657246644,20068.0185456427 "8668","No","No",1649.21160693666,42148.7438795368 "8669","No","Yes",817.676646707753,22339.8854145467 "8670","No","Yes",948.151302609926,18107.3571528728 "8671","No","Yes",1180.01808623234,19871.2067440711 "8672","No","No",761.187658836634,54681.8283898569 "8673","No","No",420.495831855675,58264.205816867 "8674","No","Yes",1841.40853381388,18000.7046803395 "8675","No","No",102.721441131555,13719.3568745031 "8676","No","No",265.592845889327,24833.3415942315 "8677","No","No",1558.86107533,45255.9671130598 "8678","No","Yes",220.659533399654,20148.5797584961 "8679","No","No",325.870131459589,35015.2689694775 "8680","No","No",1272.47738589833,42671.3185857913 "8681","No","No",906.231097084323,46715.2346835251 "8682","No","No",1070.81004817041,35979.4701445554 "8683","No","Yes",0,15572.0212631125 "8684","No","No",722.133486767882,22669.2398040671 "8685","No","No",1453.29287212607,43370.7578850906 "8686","No","No",1207.2878520836,33671.4595004888 "8687","No","No",1118.2199230073,32632.9130726689 "8688","No","No",1281.92157268812,56778.4153893202 "8689","No","Yes",878.998393552351,12054.8590388342 "8690","No","No",735.103337670526,51403.7159698486 "8691","No","No",914.341082341985,43460.1663790825 "8692","No","No",4.15111164507675,22722.2220379254 "8693","No","No",1063.59232923721,38057.3335707839 "8694","No","No",331.842827689507,37264.6948218815 "8695","No","No",838.578904753819,43501.2575307341 "8696","No","No",418.299642765707,49670.02198153 "8697","No","No",538.942731686188,23289.2804604069 "8698","No","Yes",2133.74548094099,19675.5075861463 "8699","No","No",1651.32255274413,34024.6636828514 "8700","No","Yes",1152.97327187599,13036.0667091531 "8701","No","Yes",1065.25635541797,16658.9472446304 "8702","No","No",486.652639922064,30838.629697034 "8703","No","Yes",770.826666509719,18896.728996789 "8704","No","No",1202.46348882287,42818.6431073491 "8705","No","No",323.800101436117,34576.4920335218 "8706","Yes","No",2062.87062844915,30839.1806730601 "8707","No","No",1058.28433162142,39314.5134702092 "8708","No","No",796.025053310521,38443.8964134579 "8709","No","Yes",1379.7700166326,15509.4093982645 "8710","No","No",1201.3324891043,23969.451819827 "8711","No","No",1114.11600743864,40359.9672061569 "8712","No","No",821.607102285366,50689.1932164429 "8713","No","No",1079.96576515199,43215.8058047755 "8714","No","Yes",662.99536303253,12008.3357418696 "8715","No","Yes",1343.70154908718,27168.4082179624 "8716","No","Yes",553.455736792548,21358.4206646296 "8717","No","No",472.95405502977,63759.787033535 "8718","No","Yes",1806.55167228604,17648.1976000877 "8719","No","Yes",855.226995923742,15348.7066607031 "8720","No","Yes",790.55432859871,20568.8272424665 "8721","No","No",1380.14403201419,48087.825053096 "8722","No","No",1522.53080154876,30765.5637963114 "8723","No","Yes",967.34904728104,14725.1409118618 "8724","No","Yes",886.221140404153,12796.0589938103 "8725","Yes","No",1323.62814220734,18820.7949690603 "8726","No","No",1351.32542269803,46663.3922059486 "8727","No","No",294.01879031285,59128.5034044914 "8728","No","No",1756.05071636763,52497.5856036506 "8729","No","No",439.496364012163,46784.9448129273 "8730","No","No",725.78329190466,35503.6442079735 "8731","No","No",1049.94676843874,43172.3271897794 "8732","No","No",1138.62885942419,36978.4593789249 "8733","No","No",568.224254556575,39873.2428466328 "8734","No","No",0,43160.324200842 "8735","No","No",572.665857566113,42285.2852956933 "8736","No","No",1270.39317811661,43032.2715865563 "8737","No","No",1444.43210450129,19153.3427287452 "8738","Yes","No",1926.59908212714,59224.4527589955 "8739","No","No",101.993455724981,27909.6310390187 "8740","No","No",547.174974932957,36969.0032256196 "8741","No","No",907.633103990479,28577.0965501992 "8742","No","No",282.889217701565,42132.0738127017 "8743","No","Yes",811.965045172706,12853.175607259 "8744","No","Yes",1305.10445258064,20573.5538687732 "8745","No","Yes",533.916542918411,21390.6866179289 "8746","No","Yes",1420.59613950384,20197.8115347314 "8747","No","No",89.3129240969444,39915.4535908417 "8748","No","No",839.040920045443,36665.7014593259 "8749","No","No",522.15345763795,40717.1625219394 "8750","No","No",488.721126253656,46503.1661460333 "8751","No","Yes",983.268502993472,24554.2715630512 "8752","No","No",442.665900584843,43991.8123694379 "8753","No","Yes",977.589372049767,17637.7341978841 "8754","No","Yes",317.267999810114,17801.5372223518 "8755","No","No",1033.75665823613,21837.2428327308 "8756","No","No",629.320183234782,52089.633050086 "8757","No","No",1328.33410346743,39877.6124571625 "8758","No","Yes",1486.37729960117,19164.3503996306 "8759","No","No",760.55329349048,19957.8391361009 "8760","No","Yes",1204.24147023262,19302.90147641 "8761","No","Yes",1367.78651452727,12449.27903567 "8762","No","No",226.299225371108,34305.2560781237 "8763","No","No",902.416395242314,37905.6314758056 "8764","No","No",462.004289552745,33157.3621976191 "8765","No","No",1072.37936473568,19958.54399237 "8766","No","No",424.048189994703,25081.84300618 "8767","No","No",846.131294772518,29812.0877039202 "8768","No","Yes",951.58853631512,12163.1848463548 "8769","No","No",1079.82329871977,44390.7160538533 "8770","No","Yes",1395.66898658783,21374.5921195464 "8771","No","No",828.889545195886,52560.907351965 "8772","No","No",829.884262065395,40749.7874334028 "8773","No","No",1626.16941874389,32827.7028585804 "8774","No","No",1057.63317363302,37229.8073120709 "8775","No","No",729.225990859972,35633.5029167277 "8776","No","Yes",154.875531554762,20685.4574218412 "8777","No","No",1583.096100745,15350.4560462834 "8778","No","No",0,40766.6953402928 "8779","No","No",528.569204946604,42249.3569999467 "8780","No","No",809.104673981283,24820.5255893773 "8781","No","Yes",132.104558748117,20065.722478815 "8782","No","Yes",2149.33681165388,15093.827527253 "8783","No","No",497.725785169606,26591.113170886 "8784","No","No",489.165560680408,26875.7237397548 "8785","No","Yes",596.539256038559,9518.83233207234 "8786","No","Yes",1883.06545604736,23989.8924556863 "8787","No","Yes",748.059228265943,17362.8074609483 "8788","No","No",1046.91812133872,42376.5021708491 "8789","No","No",310.130223883326,37697.2201903282 "8790","No","Yes",1065.52107615044,21129.2344637769 "8791","No","Yes",1097.06748078784,20564.1257982162 "8792","No","No",1154.85867839604,57640.9169618088 "8793","Yes","No",2049.0298451449,52568.9088071495 "8794","No","No",1398.65246735208,34194.082402249 "8795","No","No",130.346822483144,53852.755086508 "8796","No","No",1400.16318688457,52343.4771775422 "8797","No","No",0,51740.4215992712 "8798","No","Yes",552.33423955957,21262.5663587934 "8799","No","No",0,58233.020960533 "8800","No","No",246.636545293022,18953.671937326 "8801","No","No",0,38249.9823756967 "8802","No","Yes",655.510126293906,15771.4924298364 "8803","No","Yes",100.355432954224,13940.6026640982 "8804","No","Yes",1103.00356549214,25385.6019398336 "8805","No","Yes",928.233411504668,20932.6920591533 "8806","No","No",509.317798586812,18221.1465584724 "8807","No","Yes",420.257063909017,24703.9980491056 "8808","No","No",307.730562590318,48123.5510489485 "8809","No","No",733.076086748384,40056.1003653385 "8810","No","No",851.564659931381,33211.1755013218 "8811","No","No",1300.33718168884,47580.5438257053 "8812","No","Yes",203.966127021897,16433.6742949772 "8813","No","Yes",1557.52557142796,17132.312357933 "8814","No","No",0,41359.8916092437 "8815","No","No",1136.45503135114,47721.2737069072 "8816","No","No",986.181543809418,34780.9543914093 "8817","No","No",452.827107725658,62912.4443393412 "8818","No","No",775.493559468194,46025.8708003111 "8819","No","Yes",926.078163581303,17660.8072407267 "8820","No","No",1074.99126730894,27834.7900360085 "8821","No","No",844.465479105882,44518.3952707398 "8822","No","No",391.558358025563,45822.5243565918 "8823","No","Yes",1283.02855570716,15638.0065909407 "8824","No","Yes",1343.24351654883,7032.06000893064 "8825","No","Yes",1049.42003607627,15815.3439749118 "8826","No","Yes",728.985838205656,17360.5229950272 "8827","No","Yes",1203.10325643309,19967.863098697 "8828","No","No",221.334856461027,31764.2029103442 "8829","No","No",149.223218755774,36550.3334635728 "8830","No","No",474.628374825756,28182.9755685504 "8831","No","Yes",962.466536438663,14606.0900592801 "8832","No","No",1166.21318553678,36324.6788608866 "8833","Yes","Yes",2207.59905386637,19780.7635185799 "8834","No","Yes",1244.92351098597,24291.4079834424 "8835","No","No",913.453599210553,52793.1802484307 "8836","Yes","No",1315.55876543897,35456.6960512827 "8837","No","No",80.7149257730499,37651.567826129 "8838","No","Yes",745.221141236584,24689.5184815316 "8839","No","No",1505.0940829015,43036.1211524722 "8840","No","Yes",903.438811968714,13028.1508626046 "8841","No","No",250.988820359623,33568.5315548661 "8842","No","No",857.150742319289,34691.3221784726 "8843","No","No",92.9756885589492,49608.5864392816 "8844","No","No",1363.31037880418,35387.6989212415 "8845","No","No",146.897152742157,41872.1725190737 "8846","No","Yes",2014.49764757381,15728.93807223 "8847","No","No",1112.46852397583,43201.5204912199 "8848","No","Yes",237.163586366623,25219.9830590923 "8849","No","No",1018.3667900265,47723.3267841425 "8850","No","No",150.302385684606,39730.1650335799 "8851","No","No",1074.12404031907,47517.8669242321 "8852","No","No",0,30098.4215418435 "8853","No","Yes",1205.94504053624,12950.81642991 "8854","No","Yes",713.246393380936,20549.851899935 "8855","No","No",1351.85296584556,40177.95896223 "8856","No","No",254.728057897549,53696.832200196 "8857","No","Yes",842.255987408822,23310.2288610289 "8858","No","No",390.980823542815,47083.4314972953 "8859","No","Yes",639.46830362075,12323.3498411588 "8860","No","Yes",514.334987256277,27443.9752498741 "8861","No","No",791.663341774579,48127.6261396151 "8862","No","Yes",1204.91790442105,11339.1567691282 "8863","No","No",1000.52543821309,53680.9837392223 "8864","No","Yes",810.308012417556,16248.4555455672 "8865","No","No",797.865393271633,43717.0684112059 "8866","No","No",0,46461.3201193472 "8867","No","No",990.144772287608,48040.6018919919 "8868","No","Yes",284.050551961391,15352.3597814414 "8869","No","No",1080.32128118414,48226.7297027404 "8870","No","No",1433.99232687817,19864.975375759 "8871","No","No",792.974067741037,28674.6706260091 "8872","No","No",1351.95743719203,24136.0719476857 "8873","No","No",528.676844819959,39925.1847361413 "8874","No","No",692.052822388672,39586.8490171988 "8875","No","No",1085.52023487308,36746.3203519003 "8876","No","No",567.704178336162,50643.3162179576 "8877","No","No",1190.06130329303,41965.8799496593 "8878","No","Yes",289.356947353925,15715.5006522284 "8879","No","No",1440.1329269194,28370.1043239688 "8880","No","No",373.178886417864,30826.0750245479 "8881","No","No",733.20056907891,38592.0420222931 "8882","No","Yes",1095.61200214885,10450.7448786067 "8883","No","No",1117.62970369796,61940.0157774647 "8884","No","No",505.015128111594,43658.813144044 "8885","No","Yes",230.159168685849,24776.6931484107 "8886","No","No",586.775650400868,32622.3761384089 "8887","No","Yes",513.797677681162,15540.4543835634 "8888","No","Yes",1212.75666202829,13722.900826077 "8889","No","No",578.483646602543,45066.2073302758 "8890","No","No",1229.52030155885,59755.0301243891 "8891","No","Yes",1829.9099412937,21018.9601164828 "8892","No","Yes",973.264479997202,16984.6107557205 "8893","No","No",690.640342447775,26989.3943527933 "8894","No","No",781.667785915406,49427.5177211641 "8895","No","No",652.202761375539,36348.2962358233 "8896","No","No",762.923197677572,50293.8722536696 "8897","No","Yes",843.642431501666,17992.3171675151 "8898","No","Yes",1316.21098311729,16327.6259820021 "8899","No","Yes",559.903182577809,9357.75924827898 "8900","No","No",355.030065741944,52926.7777630445 "8901","No","No",1635.20290200127,31541.094039298 "8902","No","No",696.895693166017,63952.3134935061 "8903","No","No",444.042702686403,47857.7146122207 "8904","No","No",1585.52508909154,49011.4156672029 "8905","No","No",1322.0809830351,48906.5183241643 "8906","No","No",941.741632288605,34559.6465423569 "8907","No","Yes",1426.01417736484,20779.6789340972 "8908","Yes","Yes",1359.21394743248,25548.4874099867 "8909","No","No",1504.56938589151,36697.4019859209 "8910","No","No",48.2656403155554,32081.0922978199 "8911","No","No",0,47393.328688244 "8912","No","Yes",802.369267071566,18999.5252923259 "8913","No","No",600.93909025164,43846.2088931824 "8914","No","No",1440.02571265889,41814.8038417079 "8915","No","Yes",1184.20444313768,23235.6567863856 "8916","No","No",31.8620653736333,33702.6511297977 "8917","No","No",580.379056126581,55724.2712260263 "8918","No","Yes",591.986469895437,8815.1763760225 "8919","No","No",915.592009370862,37720.1872737065 "8920","Yes","No",2006.98617301263,50033.5331529481 "8921","No","Yes",1216.58625032905,18140.6239934368 "8922","No","No",970.925552198971,46051.8683748365 "8923","No","No",664.71894351335,36998.5660140661 "8924","No","No",873.879608564925,46203.9095502441 "8925","No","No",444.281400129866,56881.2065664973 "8926","No","No",641.760448114412,44857.7012299345 "8927","No","Yes",1106.32369416819,21202.0300750189 "8928","No","No",616.554649797188,46107.2079296282 "8929","No","No",1164.36214026539,38759.7305513767 "8930","No","No",828.662811758189,28427.6702930321 "8931","No","No",23.2983318114218,37975.5389792909 "8932","No","No",717.434420182684,45267.819845936 "8933","No","No",167.584156691883,49087.2556946302 "8934","No","No",821.853292644843,35358.3927357629 "8935","No","No",769.666701899912,39401.4750601507 "8936","No","No",0,37343.4168074676 "8937","No","No",1038.70026585785,33783.7142156398 "8938","No","Yes",1050.15133269262,16963.8126910891 "8939","No","Yes",927.632100647308,20640.7741049258 "8940","No","No",1014.72262870562,38780.7897165122 "8941","No","Yes",1391.4415971628,11685.6454285004 "8942","No","No",290.483067019993,47724.2397601074 "8943","No","No",656.434943665867,26551.6009022426 "8944","No","No",1456.64293691918,24089.0953411859 "8945","No","Yes",1240.72401222539,19702.7994991218 "8946","No","No",636.606045459298,31870.5514728832 "8947","No","No",1665.03697302705,48295.5251505377 "8948","No","No",825.955944652207,31661.6259861064 "8949","No","No",0,61608.5320455831 "8950","No","Yes",1152.12441898794,18644.4000439626 "8951","No","Yes",711.039875304138,22000.1065648767 "8952","No","No",1221.0831226742,29370.5849131354 "8953","No","No",781.291702589044,36744.5682634056 "8954","No","No",0,41671.2094610296 "8955","No","No",919.300136080993,33866.3633768088 "8956","No","No",155.989916940972,50135.8501709004 "8957","No","No",0,42616.6015727837 "8958","No","Yes",1520.85164475355,20044.0814993756 "8959","No","No",407.321538164032,38285.4149141094 "8960","No","No",555.22995118937,22788.9680825098 "8961","No","No",705.197176762044,35864.0117216156 "8962","No","Yes",916.12897063954,28839.5837329101 "8963","No","No",1083.28118704441,45260.4166799581 "8964","No","Yes",771.133261396283,20655.0710742505 "8965","No","No",1700.29497614814,53844.5789864386 "8966","No","No",679.266804773665,36694.7502626291 "8967","No","No",762.991490694281,44162.3628946132 "8968","No","Yes",1196.53699597576,25651.5363814897 "8969","No","No",627.383759585527,47489.2830811426 "8970","No","Yes",1175.79905681463,18178.0819336875 "8971","No","No",660.200571229794,33598.089137525 "8972","No","Yes",822.625324265157,10923.3816767271 "8973","No","No",842.407539122614,38161.7386616171 "8974","No","No",1248.39968478018,41555.8109876492 "8975","No","Yes",1405.87665380559,27071.322496909 "8976","No","No",419.702000130701,44989.7628489879 "8977","No","Yes",91.733946503422,19153.7284337776 "8978","No","No",157.003453234473,50131.8788806077 "8979","No","No",666.529950650783,51876.4896525719 "8980","No","No",806.781241079411,55735.5491959437 "8981","No","No",0,44754.2488808886 "8982","No","No",1378.26643610381,40228.9341678732 "8983","No","No",354.216390971718,25427.0544326248 "8984","No","No",596.182688889079,55591.0589187562 "8985","No","No",102.469862910735,44600.4319739208 "8986","No","No",637.216999432894,48461.9094371498 "8987","No","No",1274.79655026368,18044.8231222898 "8988","No","No",403.041481443931,29200.9837620227 "8989","No","No",619.515173902886,53747.5491352023 "8990","No","No",1111.69076640993,31059.4626439165 "8991","No","No",1235.48576796347,29992.185950678 "8992","No","No",850.385568380253,45530.3770572617 "8993","Yes","Yes",2352.05494931522,24067.5481040571 "8994","No","No",1518.35251457509,53971.7305926683 "8995","No","No",0,47935.283197733 "8996","No","No",541.944001798071,37640.3002604157 "8997","No","Yes",1401.19360905062,17688.8564659358 "8998","No","No",329.465684346918,46028.0154528353 "8999","No","No",530.093820522838,21736.8098186961 "9000","No","No",0,27455.9089977047 "9001","No","No",1112.06413995964,27694.7212677386 "9002","No","No",291.076141258525,23479.6134347452 "9003","No","No",1133.4149388708,36456.9490261566 "9004","No","Yes",488.957012076425,15912.3045797469 "9005","No","No",926.547899439048,25363.0146355545 "9006","No","No",783.797563315914,33151.5672432225 "9007","No","Yes",246.081818997006,20046.7724578198 "9008","No","Yes",860.917730636065,11575.7021870812 "9009","No","No",1838.19486106974,32308.024036755 "9010","No","Yes",918.828888145091,16110.9904627923 "9011","No","No",1040.10566508529,16905.4579370983 "9012","No","No",951.620225963668,41689.5683729734 "9013","No","No",749.114739643679,46478.1051575446 "9014","No","No",70.1854776566071,36216.9635264652 "9015","No","No",1002.35121821511,43048.1699151943 "9016","No","No",948.705393027503,14095.809610144 "9017","No","No",983.619015796229,24666.6828328998 "9018","No","Yes",0,16156.0291216807 "9019","No","Yes",1209.3841983712,12830.8328351056 "9020","No","No",527.172784913709,28931.1282763333 "9021","No","No",671.765480006205,40907.8081017102 "9022","No","No",807.29453070076,49367.7759269551 "9023","No","Yes",1189.4647404608,17287.6392061415 "9024","No","No",612.10792157668,31367.7130801548 "9025","No","No",1.98073444076283,42380.8748504793 "9026","No","No",507.907526435418,45727.76852889 "9027","No","No",1678.11846572952,41813.8923436118 "9028","No","No",0,51054.5690234529 "9029","No","Yes",378.672174850814,14328.3118855115 "9030","No","Yes",1202.76071083541,20973.2596532462 "9031","No","Yes",1038.54099708928,21839.720028992 "9032","No","No",333.180057472427,29400.4778472657 "9033","No","No",1322.2517605997,43802.6272391063 "9034","No","Yes",1579.21699595418,15111.9144799438 "9035","No","No",852.530776892318,46662.7679457832 "9036","No","No",1407.86920793967,43033.9359309394 "9037","No","Yes",0,17791.4332277217 "9038","No","No",350.196085511402,46893.7319861286 "9039","No","Yes",1276.35083901532,27732.2688220081 "9040","No","No",17.0316800105643,24492.2134816103 "9041","Yes","No",1288.40699655441,44253.3087353926 "9042","No","No",861.36386043585,47969.6772642797 "9043","No","No",1209.75664132667,40605.8134050359 "9044","No","No",1067.77922869907,28077.2546815944 "9045","No","No",831.587329996423,32203.2718441375 "9046","Yes","No",1747.98366856951,18966.10957371 "9047","No","No",0,58211.5360729805 "9048","No","Yes",1177.32765461107,13737.0503356651 "9049","No","No",0,50559.470747056 "9050","No","No",943.467289283768,26388.6171578782 "9051","No","No",61.1833446196181,37604.2178046417 "9052","No","No",1436.64766913975,38571.3280595237 "9053","No","No",343.643178302344,43483.7379647757 "9054","No","No",1018.38287102808,30846.8209363716 "9055","No","Yes",1173.09812006685,23811.0003015511 "9056","No","No",979.851049135932,44869.0469120209 "9057","No","No",444.604796363456,51584.3363563541 "9058","No","No",282.042433702886,50501.0772381175 "9059","No","Yes",1420.02298162135,26424.5390754184 "9060","No","No",654.661360097169,32400.4814786393 "9061","No","No",1388.56348925402,21151.2631286477 "9062","No","Yes",0,13621.8111912884 "9063","No","No",0.0238162970920257,37981.7806257266 "9064","No","Yes",1132.08405700115,15675.5344367768 "9065","No","No",1330.48109685153,50459.0468967413 "9066","No","No",815.174023270193,37946.9813996175 "9067","No","No",1163.32404039928,38323.0844014907 "9068","No","No",769.230636542265,49590.0665811938 "9069","No","No",698.078872879415,38960.2671895006 "9070","No","No",0,41239.0205103957 "9071","Yes","Yes",1789.47747479376,17667.7822202713 "9072","No","No",1124.966526782,50701.727536775 "9073","No","No",1012.28620807044,60697.6336154775 "9074","No","No",0,31722.3296748607 "9075","No","No",481.77780560423,34478.9529015915 "9076","No","Yes",1383.56982356533,17245.0286854431 "9077","No","No",856.770451438768,42662.8019755055 "9078","No","No",994.011888922971,52188.7752690302 "9079","No","No",203.328123506147,40490.1449892228 "9080","Yes","No",1856.91471650834,33445.6168691596 "9081","No","No",566.872719168326,67018.4196136116 "9082","No","No",1428.72525803425,51633.4328536076 "9083","No","No",1339.19996299738,44257.9352999586 "9084","No","Yes",215.63389776376,23221.6193715472 "9085","Yes","No",1125.6565618153,34758.1237796202 "9086","No","No",514.859436188812,57241.7030807118 "9087","No","Yes",564.802762069897,21314.7794434341 "9088","No","Yes",705.883064516133,11121.6993090859 "9089","No","No",390.021724300271,39029.8570729439 "9090","No","No",690.601097770566,43511.3372747162 "9091","No","Yes",1596.70105479512,21581.272259309 "9092","No","No",1578.46371134843,51413.8402653719 "9093","No","Yes",1363.99295684132,18140.3610309984 "9094","No","No",819.326374631826,22406.0549367066 "9095","No","No",0,44712.2316847198 "9096","No","No",870.020567920588,40535.3101192342 "9097","No","No",629.271891437048,35695.0886113163 "9098","No","No",217.51241222814,39616.2602452715 "9099","No","Yes",1702.98170171568,25203.4567626209 "9100","No","No",86.5788882292029,31893.2233621957 "9101","No","Yes",967.1689244161,27077.6267654492 "9102","No","Yes",329.764331286904,17762.7738754145 "9103","No","No",594.364428159126,24273.5624820861 "9104","No","No",51.0723020671674,38764.3946808286 "9105","No","No",345.393868141835,27012.753881309 "9106","No","Yes",740.577850671659,17700.0720673343 "9107","No","No",1128.83347504188,45043.9356174808 "9108","No","No",1549.2633061346,43240.459025584 "9109","No","Yes",472.024537068754,13685.4701306953 "9110","No","No",466.109768644457,26598.1213495462 "9111","No","No",633.7831602792,37672.1580967363 "9112","No","No",959.021460172678,46133.1342729851 "9113","No","No",1634.99668519232,36995.7511638982 "9114","No","No",155.993061347122,37599.7679668851 "9115","No","No",1060.97292028918,37410.3763831821 "9116","No","No",862.150195723777,59240.8450311379 "9117","No","Yes",380.90510662748,22042.5700144763 "9118","No","No",184.530473857988,35058.3406548568 "9119","No","No",1690.3873495135,46228.3200574542 "9120","No","No",406.998521872771,41505.4060514131 "9121","No","No",626.168125274639,35196.0782332706 "9122","No","No",1915.33206600636,21361.048134107 "9123","No","Yes",1017.36096639883,21702.1831030868 "9124","No","No",669.36147892363,46007.0052657782 "9125","No","No",574.469877633891,46696.1863447367 "9126","No","Yes",256.325670466206,15627.662788709 "9127","No","Yes",1365.79119035916,22301.7060630287 "9128","No","No",1194.64523564299,35622.3282129261 "9129","No","No",286.301054522557,30026.0707568402 "9130","No","Yes",1260.49400898862,8549.2531756823 "9131","No","No",659.783085264805,42054.9149889584 "9132","No","Yes",583.774223240858,12240.6605181135 "9133","No","No",1024.81947679618,40380.2979636242 "9134","No","No",1045.42688593122,50639.0600933807 "9135","No","No",522.774408905781,37481.6821850974 "9136","No","No",212.93178251117,46843.9124938965 "9137","No","No",0,54609.728556779 "9138","No","No",316.56387222423,30293.9633320726 "9139","No","No",625.017328733068,58911.6086513796 "9140","No","Yes",789.377266158372,21140.5088670155 "9141","No","No",454.488146311927,39608.3228717815 "9142","No","No",1293.29760636786,65128.4045281209 "9143","No","No",964.090413444914,48405.8431092384 "9144","No","No",316.017511904727,39959.9300030972 "9145","No","No",826.022722200688,53874.3719444383 "9146","No","No",667.492041321912,24613.6755190923 "9147","No","Yes",950.477292877919,17932.1250861819 "9148","No","No",0,54659.1631878342 "9149","No","No",650.290138457368,44358.6516229275 "9150","No","No",448.881996836721,38426.2593436877 "9151","No","No",1326.41236983709,35158.1903317436 "9152","No","No",1322.09397673286,51845.1803956487 "9153","No","No",575.137656473335,25669.6971678928 "9154","No","No",392.47718191513,20674.6728093574 "9155","No","Yes",716.048096702279,15149.8757737644 "9156","No","No",358.923951537742,50989.7441954935 "9157","No","No",946.892055516687,9364.84978102991 "9158","No","No",184.887298302054,49716.0204052985 "9159","No","No",600.820085751327,49727.4899119465 "9160","No","No",965.150483568005,34783.006878247 "9161","No","No",937.037055360113,42169.0433987106 "9162","No","No",1225.92264757412,43718.6949293441 "9163","No","No",581.313104571568,32454.1101531922 "9164","No","No",62.1109338524258,51206.2925195464 "9165","No","No",1653.55187635321,23137.5612152665 "9166","No","Yes",994.090738839954,17401.8472379021 "9167","No","Yes",1080.75973269095,16900.3906039523 "9168","No","No",663.663792792779,51135.0862626239 "9169","No","No",0,44464.2972936873 "9170","No","No",11.1380700574389,52195.9205188668 "9171","No","Yes",1403.1635255755,28207.9316716435 "9172","No","No",1005.52542938779,34587.2436322169 "9173","No","Yes",831.304495716088,17572.3179345351 "9174","No","No",154.212463380725,29153.4515783616 "9175","No","No",497.881905243542,55543.6246875475 "9176","No","Yes",601.891220583823,16948.6132290621 "9177","No","No",832.344535599559,51737.371047564 "9178","No","No",1557.55901598546,36742.1885265389 "9179","No","No",705.338209861416,23952.5445114994 "9180","Yes","No",1234.10202131484,43764.8686376452 "9181","No","Yes",816.443608151587,19141.7302065139 "9182","No","No",768.37858481136,43325.9703901599 "9183","No","Yes",1725.33924356463,18268.1953665361 "9184","No","No",1004.12540732619,53397.3919952222 "9185","No","Yes",952.887131441381,15082.6771111652 "9186","No","No",1965.32935816705,31804.6342196168 "9187","No","No",930.081301597559,21575.4238472606 "9188","No","No",499.646323784874,69342.6724803793 "9189","No","No",1140.1401141,41775.5181102699 "9190","No","No",518.369905831186,27527.2348024601 "9191","No","No",1167.88915820962,35969.0235564662 "9192","No","No",1402.24271716909,32742.2706120643 "9193","No","No",0,31363.6495017099 "9194","No","No",42.1499932320341,31812.8915318739 "9195","No","No",989.017791693055,35129.0917367816 "9196","No","No",10.2314853105521,27237.3807737476 "9197","No","Yes",1298.51180862112,20491.7703437282 "9198","No","No",987.250044908775,50045.7631787153 "9199","No","No",920.574314458369,40527.9870563083 "9200","No","No",534.055544790253,30948.806749184 "9201","No","Yes",1249.76647351391,16251.2847001414 "9202","No","Yes",732.429941772304,26433.105443857 "9203","No","No",655.199872371663,38192.5303918194 "9204","No","No",224.209109065902,51199.6416695462 "9205","No","No",635.808710980531,40497.3816214593 "9206","No","Yes",1384.41537314232,13707.0415964143 "9207","No","No",979.105937917122,46319.9119942633 "9208","No","Yes",1463.82811094,15657.4344832514 "9209","No","No",1302.7837778175,50709.5086274927 "9210","No","Yes",50.951486258891,16251.6110559006 "9211","No","No",1235.18768402375,50865.52407028 "9212","No","Yes",1047.22562427263,18069.2523486806 "9213","No","Yes",1032.62578929059,21122.9570145721 "9214","No","Yes",1285.95639658624,24106.5802664105 "9215","No","No",1265.12773929921,49385.5218570693 "9216","No","No",1032.51300052367,42495.4626119106 "9217","No","No",566.367097183945,39033.3249938756 "9218","No","No",521.800206899137,22209.0552074691 "9219","No","Yes",313.213361441899,28399.3508567594 "9220","No","Yes",0,18251.7256240426 "9221","No","Yes",982.800355690071,20312.210964034 "9222","No","No",430.469060274272,47462.0709857981 "9223","No","Yes",1255.84888805629,22022.5765757422 "9224","No","No",1082.1694961193,54099.9195245639 "9225","No","No",450.327485622248,52446.4100002697 "9226","No","No",814.655042444551,42520.0936476942 "9227","No","Yes",1068.45464067538,13638.7026931268 "9228","No","No",549.168989264142,64952.6126393417 "9229","No","No",928.409668215284,41482.4435346174 "9230","No","No",1476.76264263876,54844.519341711 "9231","No","Yes",785.854959727702,19188.9142292579 "9232","No","No",1493.61037995993,38744.2282579575 "9233","No","No",1074.01591044855,50491.2605127071 "9234","No","No",693.358479926231,46466.2993893935 "9235","No","No",848.605387082035,22749.6476762886 "9236","No","No",1233.71187441207,72461.3013920211 "9237","No","No",1264.13238499978,35385.1168046383 "9238","No","No",1474.63803590209,39872.2277658541 "9239","No","No",700.244848184181,25919.0393463935 "9240","No","No",803.975566261737,41429.2482535756 "9241","No","No",120.843053016424,36205.8777610819 "9242","No","No",1032.40348383143,38691.7939259647 "9243","No","No",563.992089929205,60222.3676486086 "9244","No","No",377.363641801591,37442.8426514135 "9245","No","No",0,26493.2426781175 "9246","No","Yes",688.697976264174,18794.4897248302 "9247","No","Yes",583.248474622869,17353.8385772636 "9248","No","No",1509.87113078024,41246.5870119825 "9249","No","No",43.1435004219103,34316.8901483245 "9250","No","No",860.751294274713,36605.231775094 "9251","No","No",204.030246673872,51108.0449636601 "9252","No","No",1059.24438703765,59865.0282342774 "9253","No","No",1207.74122415822,33416.6065697538 "9254","No","No",615.821849382944,34590.6835797159 "9255","No","No",1018.56812990717,34103.8795198849 "9256","No","No",1436.67072419004,46755.2808284924 "9257","Yes","No",1800.64173306343,48708.9599348881 "9258","No","No",0,56943.909437874 "9259","No","Yes",1006.9691579167,10364.8185337407 "9260","No","No",868.72989169156,40902.4296102798 "9261","No","No",1068.57703503957,26315.0470909899 "9262","No","No",838.849150459366,34358.8666722966 "9263","No","No",1278.42997211826,25590.6565248632 "9264","No","No",264.016096356061,45987.473909461 "9265","No","No",1168.57073487805,47561.0980956441 "9266","No","Yes",1600.62553366906,24223.2514087651 "9267","No","No",456.138752190196,43943.4958888918 "9268","No","Yes",1578.28955492315,12778.5984954933 "9269","No","Yes",1205.31003148042,19889.5707482555 "9270","No","Yes",1115.54335974595,22552.7130871241 "9271","No","Yes",950.488155976941,13299.4869550647 "9272","Yes","No",1547.99544475031,37524.2535271978 "9273","No","No",256.438984796291,40227.3820841249 "9274","No","Yes",1367.85595504108,12489.814247912 "9275","No","No",400.888873152191,53900.664457035 "9276","No","Yes",1020.58903292674,13094.9457323397 "9277","No","No",596.429706719568,12135.5415583733 "9278","No","No",289.531496978857,36841.998173589 "9279","No","No",775.733982696868,37022.003238302 "9280","No","No",895.323834867129,43554.0743998906 "9281","No","No",1798.77891710501,57191.6322372635 "9282","No","No",1112.45500095933,40576.1902203327 "9283","No","Yes",1225.34597052574,5524.3747895647 "9284","No","No",927.615950846859,40618.1106498673 "9285","No","No",252.106953682049,38494.654686523 "9286","No","Yes",1128.35620851187,15669.096533398 "9287","No","No",424.495933817511,23983.7731637878 "9288","No","Yes",1084.44653079612,26713.7971950018 "9289","No","No",1360.39857054015,29868.3111925025 "9290","No","Yes",1009.10925113012,8868.65674492432 "9291","No","No",0,29097.5448355388 "9292","No","No",336.503548704535,40626.994174489 "9293","No","No",537.140426047159,52513.6672206072 "9294","No","No",600.134860988896,39395.9783993341 "9295","No","No",938.090134362438,46370.8212570407 "9296","Yes","No",2095.11481689194,44647.5864831921 "9297","No","No",1176.7915053022,30579.2492243849 "9298","No","No",1099.624909713,48202.2148811926 "9299","No","No",417.646983046744,54009.4508784744 "9300","No","No",1175.59495320808,19030.1394436242 "9301","No","No",1245.08629467938,40290.5038943139 "9302","No","Yes",1381.27451157699,23903.8545527795 "9303","No","No",1068.9868881856,37171.6514118965 "9304","No","No",635.761848193517,49414.7265627533 "9305","No","No",347.601510839327,49332.9942041319 "9306","No","No",1579.90936267244,45406.5115513117 "9307","No","No",288.178064347863,36514.6759218012 "9308","No","Yes",1626.90142107237,11702.2834962136 "9309","No","Yes",846.171959465112,19577.4271953577 "9310","No","No",1395.60265575127,54148.8485683706 "9311","No","Yes",339.695098161915,27387.2624791806 "9312","No","Yes",1634.26972580171,18036.6305852339 "9313","No","No",75.3986906473086,50551.0364578898 "9314","No","Yes",375.918849493335,20740.0761917877 "9315","No","Yes",770.408789116406,1498.22727449612 "9316","No","No",347.371078226378,18488.1473162035 "9317","No","No",771.173706094358,45956.7873065643 "9318","No","No",1272.07680514996,21503.1953515833 "9319","No","Yes",985.240889672317,17263.756508129 "9320","No","No",751.354391933644,27179.7616531196 "9321","No","No",829.689664731405,35594.2239070406 "9322","No","No",910.087841290055,25183.7682534076 "9323","No","No",712.936992421474,20810.3189465256 "9324","No","No",977.515331107566,33690.6493109395 "9325","No","No",1379.28702192603,57843.8867791593 "9326","No","No",1322.96904167252,51956.2918282558 "9327","No","No",460.23443941905,47305.2160400713 "9328","No","Yes",596.056247366741,16084.9077085452 "9329","Yes","Yes",1538.0156030863,21356.9371123679 "9330","No","No",471.918842996091,60656.0507877414 "9331","No","No",1186.88519892898,27494.329371648 "9332","No","Yes",541.33470653612,21245.3206345669 "9333","No","Yes",1286.355522567,20029.8912328088 "9334","No","Yes",1723.21605596598,23278.9957793958 "9335","No","No",288.807949617577,30470.7070130486 "9336","No","Yes",1595.90680015678,23308.1362848463 "9337","No","No",1064.97510630953,45737.7812288087 "9338","No","Yes",1941.0540620836,14756.2114753991 "9339","No","Yes",889.642251418017,16701.3693468808 "9340","No","No",604.839524336024,27419.4252219695 "9341","No","No",1003.6014265304,24978.084721436 "9342","No","Yes",1464.35589747508,21826.4414843116 "9343","No","No",322.288698122369,19420.3997838148 "9344","No","No",639.867034351065,34879.5585105014 "9345","No","No",687.156829276007,26902.7025896597 "9346","No","Yes",978.236903521764,15073.7878502656 "9347","No","No",337.175668241883,35040.9416198665 "9348","No","No",880.75085172512,34604.6793905292 "9349","No","No",1285.52803809771,39530.7596773893 "9350","No","No",939.69867396675,52383.2752163082 "9351","No","Yes",729.812198863064,9871.92421926215 "9352","No","No",0,62160.2862201972 "9353","No","Yes",1471.03353995012,12665.2418905555 "9354","No","Yes",816.965766002804,13932.2099389238 "9355","No","Yes",1323.39565781292,23072.5499188748 "9356","No","Yes",383.823400970598,11777.5376921697 "9357","No","No",1634.73155470246,40868.3321227274 "9358","No","No",846.393292818549,38352.5651402481 "9359","No","No",364.663051203468,10239.9724854423 "9360","No","Yes",833.614495245054,11078.3902844208 "9361","No","Yes",1867.55226831937,16650.0417627663 "9362","No","No",823.609775829112,34856.5260704175 "9363","No","No",1255.34997743235,23297.4749578769 "9364","No","No",1024.4083050747,45202.2655386312 "9365","No","No",0,36922.8679525624 "9366","No","Yes",1447.97079301048,16421.4554957761 "9367","No","Yes",1057.59936601373,21570.7527878446 "9368","No","Yes",1027.13290130047,16259.380550917 "9369","No","Yes",1212.73704115468,18090.4779152969 "9370","Yes","No",1815.17411191986,23648.4135102395 "9371","No","Yes",167.637914781781,16771.5670281056 "9372","No","No",272.526141718933,32687.1095927352 "9373","No","No",0,39462.6882917635 "9374","No","No",1387.28864569868,29712.7724259701 "9375","No","No",624.547832745273,48345.3366279687 "9376","No","No",262.995114778805,17822.6133515974 "9377","No","No",986.760089723137,44605.4451140349 "9378","No","No",0,43930.9036889936 "9379","No","Yes",884.311899856719,17542.9196731794 "9380","No","No",929.830153708422,45178.0530481921 "9381","No","No",751.843861266577,52663.2929945444 "9382","No","Yes",0,18875.7716745482 "9383","No","Yes",879.710515261613,17863.8422294102 "9384","No","Yes",1313.97624829786,20030.4287054934 "9385","No","No",319.131596884487,34296.7741208314 "9386","No","No",996.181984627573,57972.5044444709 "9387","No","No",1123.43472291482,45366.811408952 "9388","No","No",110.555931121184,32419.1507927822 "9389","No","No",581.960758402304,31654.5589159892 "9390","No","No",982.226465463733,38152.6966116717 "9391","No","No",874.617420386964,37143.6448678682 "9392","No","No",650.007041287637,41427.8773217528 "9393","No","No",1452.68442788761,43418.8290856032 "9394","No","Yes",1443.86042588629,19146.2914155916 "9395","No","Yes",0,13911.4412816929 "9396","No","No",737.348779490127,50264.7601726517 "9397","No","No",106.191037697253,41514.7584689918 "9398","No","Yes",1273.75233922209,19635.6615017973 "9399","No","No",863.046051003096,50667.8767561549 "9400","No","No",1504.68256832061,38223.2459784659 "9401","No","Yes",1182.67904454398,17287.7484677075 "9402","No","No",853.060422763735,39553.3656783293 "9403","No","Yes",160.887137472449,19686.7441982352 "9404","No","No",1118.56597660815,46578.4655109694 "9405","No","Yes",271.669900090936,14080.7540730871 "9406","No","No",584.090255400821,24580.8568389694 "9407","No","No",911.931544151435,40503.003979245 "9408","No","No",745.86661817674,54677.6833488426 "9409","No","Yes",1291.07585166573,17136.5133355865 "9410","No","No",572.88950065498,43381.9152726882 "9411","No","No",445.829287617145,42343.8006824259 "9412","No","No",865.400213478165,53798.8192148106 "9413","No","No",886.777432995006,43410.381538287 "9414","No","Yes",451.695309013678,11460.4346982733 "9415","No","No",558.321406990805,42767.3247588271 "9416","No","No",1602.00389348608,41827.7012514993 "9417","No","No",503.499285174721,36521.4325133663 "9418","No","No",521.90282712011,47032.5993473814 "9419","No","No",1214.54965376974,21630.0378315175 "9420","No","Yes",596.205213621811,22324.4684122297 "9421","No","No",926.166134018374,41501.7233827868 "9422","No","No",522.644337059267,35893.2877978631 "9423","No","No",986.264752865454,38664.7898161626 "9424","No","Yes",885.923577632711,22365.8549815303 "9425","No","No",562.314178399933,63794.5420691952 "9426","No","No",503.301857053805,37749.5207774081 "9427","No","No",1375.38495384183,47099.2068738094 "9428","No","Yes",1089.40525917146,19053.5890648439 "9429","No","No",770.486334076718,25445.8776820274 "9430","No","No",797.316656880086,35034.8069148208 "9431","No","Yes",389.213241765338,22907.7674644876 "9432","No","No",589.391036933054,38255.5370311758 "9433","Yes","No",2073.7828464432,52335.5505993235 "9434","No","No",1128.41146297844,51778.1798537095 "9435","No","No",1142.66970009878,40823.3797085521 "9436","No","Yes",1007.53782731167,16814.2955002652 "9437","No","Yes",789.099153486285,18653.6328463855 "9438","Yes","No",961.732661954925,27600.4162967222 "9439","No","Yes",1264.64988701795,23852.642260934 "9440","No","Yes",1627.45984040875,19630.1613011152 "9441","No","Yes",979.065326799836,17666.3870981162 "9442","No","No",768.810302366349,47003.4405822046 "9443","No","No",714.512491266083,48115.5046955907 "9444","No","No",223.356345671541,51662.5972987814 "9445","No","No",1659.29219094815,36641.7272339608 "9446","No","No",1062.28400958965,50894.1036458965 "9447","No","No",38.6791212371011,30961.7422399322 "9448","No","No",1216.98145158854,37967.6880750024 "9449","Yes","No",1825.97059923332,39407.9170346961 "9450","No","Yes",293.519570874315,10592.8466920888 "9451","No","No",1588.87635591145,45093.4459240335 "9452","No","No",1926.2468757744,46535.201990519 "9453","No","No",892.919519826276,9299.86818569379 "9454","No","Yes",1583.41803094344,23434.7087125009 "9455","No","Yes",968.953961017051,13867.5243122361 "9456","No","No",258.25525911809,38309.9880459355 "9457","No","Yes",492.245941753357,23689.7895020492 "9458","No","No",1240.57389071057,35598.887273363 "9459","Yes","No",1658.96768927915,38204.1226198861 "9460","No","Yes",877.156229246366,22046.5385541872 "9461","No","Yes",0,20877.8877962384 "9462","No","Yes",1041.31044163521,12078.7776128838 "9463","No","No",1806.91653062691,36306.8176295486 "9464","No","No",0,28705.2025005847 "9465","No","No",1500.59400368875,27354.5002462612 "9466","No","No",1329.91138843467,50560.7622488765 "9467","No","No",913.886573498561,15220.503772624 "9468","No","No",898.566828456017,37919.7506774816 "9469","No","No",0,47231.2730755509 "9470","No","No",457.601501646266,49908.5974364961 "9471","No","No",882.087963611419,43549.9904046431 "9472","No","No",602.622894902464,25376.4500993846 "9473","No","No",513.396271437243,19021.6422758867 "9474","No","No",880.717005225234,35579.2426234722 "9475","No","No",815.691294664279,48646.541509537 "9476","No","No",1295.61334588531,39717.736012915 "9477","No","No",1740.63412327172,48311.4395809251 "9478","Yes","No",1506.19184823604,47061.3945398275 "9479","No","No",906.416188038229,49815.6511359632 "9480","No","No",1278.01755344051,41691.1955153279 "9481","No","No",45.8224265782371,32525.63843899 "9482","No","No",629.605587398253,50113.8207069077 "9483","No","No",270.587863722704,33490.0052711357 "9484","No","No",1486.0548096624,34705.3612203416 "9485","No","Yes",830.651798095757,14420.6226252465 "9486","Yes","Yes",1719.25565479764,15752.0080061962 "9487","No","No",935.636598446705,21730.8612688672 "9488","No","Yes",482.13520417464,17459.0041908228 "9489","No","No",335.824542648486,29402.7675584317 "9490","No","No",870.412379656213,17685.4482369216 "9491","No","No",527.940359109328,47963.1790421382 "9492","No","No",1104.30662323205,40006.133313516 "9493","No","Yes",1220.93883078966,6744.04242461348 "9494","No","No",1338.53245663217,35072.3032579073 "9495","No","Yes",1129.23429282609,22689.6135887033 "9496","No","No",915.518055990193,42331.0216310488 "9497","No","No",833.957706602402,34174.6453235057 "9498","No","No",381.566519897813,49114.8926501904 "9499","No","No",218.589806829151,34512.6334707916 "9500","No","No",1156.99452812612,53450.2735865097 "9501","Yes","Yes",2046.63951494124,17910.6344721428 "9502","No","Yes",1368.38301833943,16449.7249385124 "9503","No","Yes",1302.51631796853,18210.8064208001 "9504","No","No",1175.28913922627,35830.045567112 "9505","No","Yes",256.367784428102,18200.8804470926 "9506","No","No",908.998794729013,46174.4710581454 "9507","No","Yes",1107.00241299216,30618.6203455371 "9508","No","No",618.460731226128,49385.7880266266 "9509","No","No",932.872998040885,61192.8971316666 "9510","No","No",547.717727410382,50619.3610620419 "9511","Yes","Yes",1726.47960966875,13654.6049381595 "9512","No","No",581.003569445871,52917.7294357654 "9513","No","No",356.613167951343,44473.3964918855 "9514","No","No",644.863070527484,38794.6761434136 "9515","No","Yes",737.082247582862,24637.617488291 "9516","Yes","No",1666.1138341785,25054.7678239285 "9517","No","Yes",1215.47001413849,20456.4382893475 "9518","No","Yes",1002.77528438556,11604.2877499049 "9519","No","No",363.229330063018,51821.4268263811 "9520","No","No",0,45178.5916919899 "9521","No","No",29.6164764973496,26710.009566346 "9522","No","Yes",1036.11739842406,15067.748240504 "9523","Yes","No",959.159213374077,59435.2345810762 "9524","No","No",390.530294876658,57525.2664771593 "9525","No","No",451.076051642189,38348.4903195754 "9526","No","No",1412.99670449889,53295.8729914521 "9527","No","No",216.528262219422,28859.6946187879 "9528","No","Yes",1027.07059027312,24346.9397452388 "9529","No","No",143.754709337909,48250.3075662067 "9530","No","Yes",887.656422160429,16993.2876040408 "9531","No","No",1199.98026561327,38251.1825246834 "9532","No","Yes",1075.17907339542,21569.3705840819 "9533","No","No",932.602433217053,44714.4841039603 "9534","No","Yes",1434.58997748353,16613.4314534251 "9535","No","No",444.586300271673,51386.2831024757 "9536","No","No",853.212216590271,31607.3933989458 "9537","No","Yes",973.047858215706,23033.8503613238 "9538","No","Yes",102.283071552971,20671.0472107307 "9539","Yes","No",652.397134412879,46155.0438680055 "9540","No","No",132.73090182934,33370.8343428413 "9541","No","No",1128.47074465602,49540.702085553 "9542","No","No",1315.22523886647,52556.1538329754 "9543","No","Yes",1025.85824127717,21561.8889323212 "9544","No","No",785.786657440919,48179.3828770989 "9545","No","Yes",1775.18153723891,20385.8735233901 "9546","No","No",362.055049681232,50906.4812600996 "9547","No","No",1154.57891449163,61089.4308700936 "9548","No","No",18.294581765502,43247.9034246982 "9549","No","No",0,37517.2464147507 "9550","No","Yes",1740.87005025992,17478.0312948152 "9551","No","Yes",1228.99390086462,18810.3843581736 "9552","No","Yes",1669.72370904243,20301.3159786935 "9553","No","No",1584.56594315008,45447.1870281177 "9554","No","No",751.122224356379,37304.1989940684 "9555","No","No",1063.33626057666,39301.2818118726 "9556","No","No",710.136461015427,46308.2696465604 "9557","No","No",1063.72450300539,26045.9283574804 "9558","No","No",162.784651965433,33935.4913310022 "9559","No","No",615.001394580548,40236.5335580854 "9560","No","No",1011.36719214186,28172.9153660159 "9561","No","Yes",1658.37357455808,22010.4856755611 "9562","No","No",1490.98304584582,39596.0574087303 "9563","No","Yes",1630.48855467074,16310.5340605392 "9564","No","No",781.274957828979,53178.926801699 "9565","No","No",476.301211791106,25774.4876162707 "9566","No","No",892.445059906566,28187.540727095 "9567","No","Yes",1671.52320759969,9981.89701353152 "9568","No","No",813.86094063887,33357.8088167162 "9569","No","No",1280.23019022832,23647.3332028812 "9570","No","No",564.394853544301,30380.6400043349 "9571","No","No",525.871381443789,8017.63859108991 "9572","No","No",837.328407015019,61950.8030010727 "9573","No","Yes",1847.46964656061,19388.6893093459 "9574","No","Yes",717.759666195472,19567.702770302 "9575","No","Yes",1935.50421960499,9431.2938713916 "9576","No","No",808.494793730309,56204.6630143615 "9577","No","No",218.739421958108,53259.7623227317 "9578","No","Yes",118.201492870089,15472.655985471 "9579","No","No",988.172046073138,49057.0419217536 "9580","No","Yes",673.327247930574,14431.4594866873 "9581","No","Yes",616.312018469622,14663.5638803911 "9582","No","Yes",475.853204682757,19993.7559366484 "9583","No","No",221.546755897456,43668.392321756 "9584","No","No",959.172025652896,38310.086011965 "9585","No","No",575.674057777466,36958.7524117206 "9586","No","No",1017.65591423765,37241.790991973 "9587","No","No",1763.84563955144,36686.3483703886 "9588","No","No",883.390659909625,38408.9767061792 "9589","No","No",830.234100005215,36523.4811843369 "9590","No","No",163.261027090534,40600.4154666133 "9591","No","Yes",2.99446199667136,18710.2647984133 "9592","No","No",51.1859856979337,39385.7596831095 "9593","No","No",806.216663210777,35259.3046445798 "9594","No","No",1186.48588492632,50371.7254602767 "9595","No","Yes",357.951290354411,14338.5287369149 "9596","No","Yes",1590.8230986799,21784.1131156343 "9597","No","Yes",822.090169266773,20906.2178401806 "9598","No","No",1082.8154177681,41355.9855919617 "9599","No","No",779.477523952232,34089.7970086937 "9600","No","No",4.6794144400302,44571.7062209609 "9601","No","No",58.7512052743834,26939.0399063082 "9602","No","Yes",966.481828288842,23116.5802065553 "9603","No","No",683.921880812288,37383.2326530231 "9604","No","Yes",0,18235.6743746751 "9605","No","No",1139.02030927059,24573.920953365 "9606","No","No",1293.45968181568,48039.9364466138 "9607","No","No",304.544338825751,47217.8722103104 "9608","No","No",1215.1489392085,51804.9939548461 "9609","No","Yes",305.787956878261,16594.5278409234 "9610","No","No",693.717332635451,40148.8711102766 "9611","Yes","Yes",1502.18673866603,18603.495531833 "9612","No","No",1645.42317956837,36839.3962080674 "9613","No","No",279.670673019681,58566.8842182417 "9614","No","No",1267.48521068266,40034.5667342325 "9615","No","No",456.373018755051,47633.7854435193 "9616","No","No",962.134281546038,44696.2905307889 "9617","No","Yes",698.9785363366,25103.0094533339 "9618","No","No",619.029259422622,42868.5896075151 "9619","No","No",870.971725740693,39653.3767206921 "9620","No","No",217.738226298202,47657.3062761409 "9621","No","No",713.326063707486,44605.3511864782 "9622","No","Yes",306.433812567408,13934.5183209416 "9623","No","No",1314.89538557468,33706.5593609176 "9624","No","No",1057.6796686199,39708.0333375873 "9625","No","Yes",625.601199796924,16134.2115079184 "9626","No","No",1302.65558132293,28978.5573129088 "9627","No","No",1408.35147419162,33697.3459632332 "9628","No","Yes",926.569431024724,19243.406446276 "9629","No","No",1018.40963958971,25394.2546280925 "9630","No","No",0,40737.866812646 "9631","No","No",724.887324252241,27800.9523774513 "9632","No","Yes",325.283631228391,15962.7098774277 "9633","No","No",445.717373373907,25171.8603546071 "9634","No","No",1367.44276590447,45919.5922447472 "9635","No","No",1353.91874089042,39879.1590476355 "9636","No","No",1555.96807003044,34417.8730826113 "9637","No","No",1267.16580008473,51197.7995950094 "9638","No","Yes",640.819040858052,19055.9165274273 "9639","No","No",658.053709086965,41882.5806543853 "9640","No","Yes",808.833786517671,18791.5595576156 "9641","No","No",819.11260539853,50082.8887115636 "9642","No","Yes",1365.02282368458,23281.320499788 "9643","No","No",396.844085106912,32656.5228381594 "9644","No","No",421.698130449243,32290.3259596544 "9645","No","No",969.358837365413,46026.7193738543 "9646","No","Yes",1490.07545066509,15910.8018539424 "9647","No","Yes",1079.0779493071,17966.7693767183 "9648","No","No",809.455689909933,39077.4328082427 "9649","No","Yes",641.893645617273,16400.3647500988 "9650","No","No",872.32089314313,44407.7901606273 "9651","No","Yes",1004.63015294009,9643.36615066435 "9652","No","Yes",1170.91153622666,19473.6919261194 "9653","No","No",1433.64610048881,44617.7387007948 "9654","No","No",579.280219432576,50813.5092488359 "9655","Yes","No",2128.79599194797,42096.5023677566 "9656","No","Yes",842.910746273251,14462.2764563912 "9657","No","No",4.10094016965502,42174.1797420201 "9658","No","No",218.379741369937,36044.8150648758 "9659","No","Yes",717.875483900523,23406.8197691114 "9660","No","Yes",1146.8349874397,14336.4285457286 "9661","No","No",968.515851521507,41714.9898391776 "9662","No","No",1124.5871562623,45622.9423367253 "9663","No","No",419.000799287843,37186.789402739 "9664","No","Yes",320.725569726674,12589.7675596142 "9665","No","No",426.764149765367,38495.7980226005 "9666","No","No",949.177591550543,36557.9615912885 "9667","No","No",968.736619525114,17352.410331845 "9668","No","No",1188.96516821723,42286.488174869 "9669","No","Yes",1436.82998948372,22925.4699177569 "9670","No","Yes",843.017896577615,12268.9335211883 "9671","No","No",1410.95991508544,58310.255932724 "9672","No","Yes",598.733312937679,23118.5310986333 "9673","No","No",72.9283697000853,13300.7695476218 "9674","No","No",1347.78084965639,29345.9582133348 "9675","No","No",0,41160.622506494 "9676","No","Yes",1280.84806618713,20575.2450146805 "9677","No","No",1088.57477295941,43883.1492462512 "9678","No","No",1111.95814288827,47254.6895873957 "9679","No","No",1124.14174377155,46052.1816302638 "9680","No","No",0,36337.3521663594 "9681","No","Yes",711.851231569769,15132.3935899747 "9682","No","No",548.839275833041,44909.0661956785 "9683","No","No",385.250183291053,55268.6605512573 "9684","No","No",1132.17490347674,56152.4290396227 "9685","No","No",399.118375316584,48889.9890284738 "9686","No","Yes",810.102225230511,15102.32418046 "9687","No","No",1036.77474609973,46239.0732170886 "9688","No","No",927.76611806029,38197.3735404727 "9689","No","No",999.826090658299,43661.1417440736 "9690","No","No",649.269775479187,31039.0020043034 "9691","No","No",1391.31830146058,48414.9057421767 "9692","No","No",1058.56369974681,38917.8309339491 "9693","No","No",415.541737898413,44147.2206538574 "9694","No","No",771.137416855989,42418.3680140177 "9695","No","No",727.974547043257,20456.156388785 "9696","No","No",239.327165000461,49328.2092582724 "9697","No","Yes",1219.76034968629,17208.2088611799 "9698","No","No",953.936465024584,41250.4780369892 "9699","No","No",143.375320218317,17435.096380549 "9700","No","Yes",1669.27810558434,13771.3933964254 "9701","No","Yes",719.554053545902,17195.7445380271 "9702","No","No",295.3071501902,45776.8432775556 "9703","No","No",804.499658822933,51014.8240369344 "9704","No","No",619.368815439907,45886.0785009503 "9705","No","No",1157.11692920969,38867.0636275315 "9706","No","No",287.843200948489,46617.0633958336 "9707","No","Yes",1070.7521199751,11383.4426471097 "9708","No","No",452.367912290375,29254.8710158075 "9709","No","No",492.352311836963,39305.2270474498 "9710","No","Yes",1033.04184648414,18958.3150837176 "9711","No","No",1191.610584117,49004.8361762043 "9712","No","Yes",1463.37845118945,14380.6253065591 "9713","No","No",152.440267006946,23366.5174413879 "9714","No","No",182.370459994264,45507.9336965974 "9715","No","No",732.137066876115,42693.9402612385 "9716","No","No",1916.08850756454,23316.5702484103 "9717","No","Yes",419.710782172972,18073.0018129069 "9718","No","No",1418.55617364355,33960.5677357044 "9719","No","Yes",811.688675857525,20016.7525348576 "9720","No","No",214.236495085322,38720.8107572671 "9721","No","Yes",799.159267652907,19547.4131831191 "9722","No","No",831.456141881062,58476.7392311882 "9723","No","Yes",713.559839270764,24324.1439422418 "9724","No","Yes",870.773035482323,16446.354825625 "9725","No","No",301.319402807109,51539.9523173009 "9726","No","Yes",1235.96648680657,21706.6303125178 "9727","No","No",572.004055050836,42484.5705940718 "9728","No","No",545.993291219821,52619.6217723053 "9729","No","Yes",1407.04012421074,25589.7427593565 "9730","No","No",1171.16331315331,27338.0027086173 "9731","No","No",322.982327526016,25267.3976162142 "9732","No","No",497.540672262589,43898.4284977249 "9733","No","No",92.1021951040721,22726.4131778057 "9734","No","No",395.475507300842,45084.105615353 "9735","No","Yes",184.925246905994,11126.2661759336 "9736","No","No",209.674450616566,35688.1358061838 "9737","No","No",376.185498059799,31373.3563929914 "9738","No","No",1492.18965381051,39004.5029437998 "9739","No","No",905.531751819024,43066.0600596803 "9740","No","Yes",627.66812838312,18539.564145443 "9741","No","Yes",1224.52065302574,22327.4078004255 "9742","No","No",667.372311156338,35694.4287751412 "9743","No","No",278.703161386556,30113.8533896619 "9744","No","No",1389.80307501266,48868.0931533735 "9745","No","No",1060.72884144048,49396.7719405986 "9746","No","Yes",1080.5689215192,20439.852989353 "9747","No","Yes",912.559428715564,14262.1284978301 "9748","No","No",534.432226361313,34129.4754090997 "9749","No","No",280.461678558834,26212.9076178057 "9750","No","Yes",801.721578482952,18698.4092841064 "9751","No","No",1125.15873643759,37864.3259790881 "9752","No","Yes",1569.30275654962,13711.492401417 "9753","No","No",755.460443248137,33460.9262064348 "9754","No","Yes",860.828676826597,27186.5000242093 "9755","No","No",1233.61892565538,49448.1710013837 "9756","No","No",699.568498285891,48773.819553427 "9757","No","No",914.881075502437,39789.0554443783 "9758","No","No",1650.03210342038,49481.7130266447 "9759","No","No",366.594361337791,33708.7860682045 "9760","No","No",400.646928884124,37173.4847875624 "9761","No","No",0,37538.0450518034 "9762","No","No",1902.14989954198,35008.6661733839 "9763","No","No",982.631024138588,60388.0198980962 "9764","No","No",717.969637240982,43826.8788845714 "9765","No","No",874.45120069409,24707.490254048 "9766","No","No",1577.03483745032,33319.3124684899 "9767","No","Yes",1700.57236567333,20844.719155924 "9768","No","No",425.819908128894,14540.9046427866 "9769","No","No",667.656103587994,52946.3650042158 "9770","No","No",0,48112.4782746703 "9771","No","Yes",764.807163405562,18347.3113707265 "9772","No","No",1030.19129899136,34250.8745410279 "9773","No","No",426.28639637922,38585.5490904503 "9774","No","No",0,43599.4532930336 "9775","No","No",1039.20725473548,40028.9041967729 "9776","No","No",603.253138096093,50214.8553012712 "9777","No","Yes",1446.64376016459,8797.28391539218 "9778","No","No",1396.20751479794,39023.4817075264 "9779","No","No",297.243033683459,39081.9228975074 "9780","No","No",613.977076452465,34752.0876379183 "9781","No","No",828.840863016667,39984.2734678397 "9782","No","No",675.114951936145,58672.0516489082 "9783","No","Yes",1670.46730713431,15838.3145696838 "9784","Yes","Yes",1530.55147909759,13003.9292044954 "9785","No","Yes",356.19874792355,21466.2070771506 "9786","No","No",284.169210304994,37463.6175129986 "9787","Yes","No",1698.82614249543,27374.8875156932 "9788","No","Yes",0,20195.0026594829 "9789","No","Yes",1038.88674842652,10414.5543533648 "9790","No","No",392.566454848147,45469.7222771505 "9791","No","No",23.3571065489047,56686.9156223935 "9792","No","Yes",1503.9727209424,14661.8318983141 "9793","No","Yes",799.51645086393,23024.8527528002 "9794","No","No",1534.68321023724,48592.3338269502 "9795","No","Yes",655.449164552291,18265.5954293392 "9796","No","Yes",939.704886735988,11331.4325243357 "9797","Yes","Yes",1867.30856911342,24720.4805591524 "9798","No","No",399.901820436333,40863.1150523706 "9799","No","No",381.258558545531,55896.2338543989 "9800","No","No",1509.91566408553,24427.7685054556 "9801","No","No",1209.65202808003,58174.9210563944 "9802","No","No",1359.80213917798,46235.2353636695 "9803","No","No",1267.55073982519,10233.8797549679 "9804","No","No",890.149840963937,38350.2924207536 "9805","No","No",1508.74901177888,30587.3439815421 "9806","No","No",1260.15486906425,35733.4658537 "9807","No","No",0,33220.9851811449 "9808","No","No",67.3884622916294,48792.1174388257 "9809","No","No",1132.64780262819,33677.781447611 "9810","No","No",0,22074.4936909088 "9811","No","No",861.590053056554,32901.010461517 "9812","No","No",796.298975514892,37923.3936187679 "9813","No","No",1356.15922208888,42262.9300706052 "9814","Yes","No",1975.65302824061,38221.8397449546 "9815","No","No",663.663633754263,43951.2530570445 "9816","No","No",0,39043.2774348674 "9817","No","No",398.023124263748,33056.6711872941 "9818","No","No",304.077953300737,47196.0764675098 "9819","No","No",1292.67276322286,52541.6492484632 "9820","No","No",1664.09565193609,54087.6410964728 "9821","No","No",1069.71985668762,34538.9974168635 "9822","No","Yes",618.624121259494,20836.7930537286 "9823","No","Yes",1609.13605855122,16373.9453593471 "9824","No","Yes",1538.44930304403,15991.2210227014 "9825","No","No",734.253410791397,56253.8102626269 "9826","No","No",931.957796048969,40913.4349678136 "9827","No","Yes",0,17557.9633365884 "9828","No","No",524.862618447016,54738.5066498565 "9829","No","No",1135.49329308145,37962.9829034037 "9830","No","No",1115.96125304207,30620.2684728371 "9831","No","No",157.66047507126,42125.7336109977 "9832","No","Yes",11.3955682154315,19387.920643909 "9833","No","Yes",434.839281135161,16775.3204827761 "9834","No","Yes",863.321267047228,20425.8513260722 "9835","No","Yes",822.886668672738,22376.226052396 "9836","No","Yes",1203.94690391731,20904.8381765433 "9837","No","No",901.613561622198,35283.8956355289 "9838","No","No",1000.76456080856,36709.083782756 "9839","No","Yes",715.341171028252,21309.1405400513 "9840","No","No",325.091275054021,41257.5607449296 "9841","No","Yes",948.880409167519,8503.60256314103 "9842","No","No",751.340141034422,68883.3952663083 "9843","No","No",1484.77769480138,32479.0899645699 "9844","No","No",1253.86047741196,41767.3970567096 "9845","No","No",1262.16841196536,29545.5002108332 "9846","No","Yes",46.0102253175322,13950.0869473289 "9847","No","No",0,39469.9289877503 "9848","No","Yes",906.123815340083,19275.8001435789 "9849","No","No",273.63978799535,21911.6338748215 "9850","No","No",1037.76652304171,53823.2298198052 "9851","No","Yes",508.050299741586,14925.9611545816 "9852","No","No",543.971897115436,34390.5025931627 "9853","No","Yes",1219.97548042256,15039.5536205707 "9854","No","Yes",697.171326380402,22254.0619647508 "9855","No","Yes",1066.54575990381,15553.0884143881 "9856","No","No",761.553724640498,46836.6722671501 "9857","Yes","No",1973.82214669185,27340.0122687502 "9858","No","No",1021.27960003743,44718.4077235003 "9859","No","No",783.087084312125,36917.1031687996 "9860","No","No",1354.33294605204,29590.8288796286 "9861","No","No",677.708824050348,31158.468211245 "9862","No","No",317.855557759746,63021.7479456945 "9863","No","No",141.128483677956,41300.7220664453 "9864","No","No",759.230268223227,48560.1362364964 "9865","No","No",1133.9457958626,47188.9477836487 "9866","No","No",0,43593.953602744 "9867","No","No",599.718846289024,48085.8843441802 "9868","No","Yes",529.273442611172,20358.8336346446 "9869","No","No",962.144360844805,60455.463133907 "9870","No","No",675.02273307249,44480.0130544315 "9871","No","Yes",1038.62008149838,12312.8959635019 "9872","No","Yes",656.808385859257,19017.4277962265 "9873","No","No",1103.72380706592,39532.9075065434 "9874","No","No",2391.0077393729,50302.9095568637 "9875","No","No",440.487028918919,39395.9601410214 "9876","No","No",1070.86403155186,36017.0029644353 "9877","No","No",1275.20685173645,58961.7330359858 "9878","No","No",763.039976306975,35277.9017788768 "9879","No","No",781.904404455422,65617.6449283193 "9880","No","No",853.704015364221,46291.5811377682 "9881","No","No",323.034915715153,33673.8096869927 "9882","No","No",980.037168872519,31977.5633320135 "9883","No","No",1077.00753980888,33071.4685262081 "9884","Yes","No",1335.61287132382,37595.3442741023 "9885","No","No",438.080376882359,44737.658451196 "9886","No","No",955.420645475078,45575.4209895681 "9887","No","Yes",923.018822925402,19136.6149186515 "9888","No","No",728.212549683954,50403.5592512078 "9889","No","No",259.506285168662,40405.3591974712 "9890","No","Yes",606.951443394452,26718.8715454547 "9891","No","Yes",512.449777710332,24192.8889910366 "9892","No","No",0,43969.2150996534 "9893","No","No",663.675171211673,38338.205726286 "9894","Yes","No",2288.40808192017,52043.5690521956 "9895","No","No",0,34836.3406992442 "9896","No","No",1693.64257792408,26995.6933911804 "9897","No","Yes",906.033700467737,22658.7633289403 "9898","No","No",763.534729752426,49201.4346992107 "9899","No","No",1218.86498579543,45593.8602149062 "9900","No","No",496.375478407846,33782.5371965622 "9901","No","No",1695.38723798363,26623.7681519036 "9902","No","Yes",1128.76872801296,17718.941736732 "9903","No","No",978.239289996625,43410.3633154939 "9904","No","No",1084.90992326231,15981.6890852726 "9905","No","No",1248.88790288262,31960.4212982045 "9906","No","No",1071.24143217021,58134.5550658653 "9907","No","No",834.319787658759,33687.7504000506 "9908","No","No",1500.57210625523,39891.8640984595 "9909","No","Yes",958.874768969235,25282.2410536958 "9910","No","No",981.062638685672,54020.434153568 "9911","No","No",1017.78825221517,29828.3303377842 "9912","No","Yes",1106.10720094121,9610.50342319676 "9913","Yes","No",2148.89845431192,44309.9171725874 "9914","No","Yes",1113.75259775529,17810.6730641504 "9915","No","Yes",1882.84179031769,15968.0365405299 "9916","No","No",1189.24118445074,29889.6022774471 "9917","No","No",1092.42595724569,43578.6469767627 "9918","No","No",748.487023875035,40727.1415628446 "9919","No","No",631.512865795982,35053.3471968094 "9920","No","No",477.907292410447,34318.9831975541 "9921","No","No",1128.7915629401,29722.1726627668 "9922","Yes","Yes",1627.89832265731,17546.9970160528 "9923","No","No",625.870177750823,53756.0440632584 "9924","No","No",751.366627619233,31574.4211611568 "9925","No","No",1074.5145384901,41545.6835352068 "9926","No","Yes",501.058247569098,23090.9971921175 "9927","No","No",876.474860305473,39499.2768099668 "9928","No","Yes",580.351481416073,17624.1589132222 "9929","No","No",560.297082198125,28419.3543789813 "9930","No","Yes",364.173414588991,21487.644097097 "9931","No","No",898.89572800124,41268.312610849 "9932","No","Yes",705.930232147799,19891.3037808484 "9933","No","No",846.419381894194,36115.7620857935 "9934","No","No",813.364070539993,44707.6770312609 "9935","No","No",528.882015990961,44538.5514600982 "9936","No","No",1486.20106810863,51021.6143568027 "9937","No","No",696.465751345071,37599.6201297167 "9938","No","Yes",1775.58170109373,13735.1908717439 "9939","No","No",319.60236937232,53135.3670426105 "9940","No","No",879.035415033513,52945.8189085451 "9941","No","Yes",421.957264818512,21744.9742361818 "9942","No","No",449.312927967573,47494.4324934018 "9943","No","No",611.179743925803,38712.3942626891 "9944","No","No",461.75210433955,37617.0436674515 "9945","No","Yes",1478.60087988669,13375.0157233804 "9946","No","No",1105.46742506561,32371.4011676102 "9947","No","Yes",734.459199314855,17619.4871763725 "9948","No","No",583.307443674091,37118.8306627309 "9949","No","No",456.710814525515,21892.177211324 "9950","Yes","No",1750.25315038805,51578.9401632488 "9951","No","No",879.624128238925,33682.1861575423 "9952","Yes","No",1515.60623850741,48688.5120858599 "9953","No","No",13.9444746256728,31071.6342873547 "9954","No","Yes",776.544280000297,14229.7281237904 "9955","No","Yes",865.906315848438,18064.243987294 "9956","No","Yes",692.356317768419,18689.0521414683 "9957","No","No",415.76825935316,38425.7594997553 "9958","No","No",1765.9908949866,47642.4221201503 "9959","No","No",1391.03387680895,53255.0211240433 "9960","No","No",0,53946.2336524856 "9961","No","Yes",826.741212842474,18856.9000299931 "9962","No","No",896.721924827569,48703.4129743348 "9963","No","Yes",1635.17512227273,13518.9306215118 "9964","No","No",453.648232351194,32178.6221698724 "9965","No","No",789.551178485739,30777.8389985845 "9966","No","Yes",905.142369281084,13485.5142357004 "9967","No","No",1439.11879366717,20187.7876921826 "9968","No","No",1092.53077482295,43482.7882015413 "9969","No","Yes",871.750774173528,14247.9468496142 "9970","No","No",991.335394429677,44445.5789158122 "9971","No","Yes",1294.50040763618,25687.3260499738 "9972","No","Yes",180.620128036497,20975.5604951023 "9973","No","No",755.432800695292,14455.8653647921 "9974","No","No",876.119027014223,37668.3667878908 "9975","No","Yes",933.332024817394,26051.3983197067 "9976","No","No",908.315933521783,21287.9424874118 "9977","No","No",218.417559204658,25401.1331213124 "9978","No","Yes",915.439827443333,16624.3391107753 "9979","Yes","No",2202.46239490796,47287.2571079624 "9980","No","No",173.249171660872,30697.2450619626 "9981","No","Yes",770.01574072709,13684.7899518481 "9982","No","No",739.418017847965,40656.9514480558 "9983","No","No",623.526118935649,59441.3099813585 "9984","No","No",506.625453519083,49861.0034106156 "9985","No","No",875.241640429435,52861.7441970002 "9986","No","No",842.949429303309,39957.1278550817 "9987","No","Yes",401.332673531641,15332.0178326495 "9988","No","No",1092.90658305201,45479.4669852726 "9989","No","No",0,41740.6865972451 "9990","No","Yes",999.281111981561,20013.3506439163 "9991","No","No",372.379238540558,25374.8990852495 "9992","No","No",658.799558170067,54802.078221336 "9993","No","No",1111.64731685838,45490.6824625512 "9994","No","No",938.83624142578,56633.4487439326 "9995","No","Yes",172.412987480205,14955.9416889885 "9996","No","No",711.555020492185,52992.3789139665 "9997","No","No",757.962918447896,19660.721767987 "9998","No","No",845.411989217448,58636.1569838071 "9999","No","No",1569.00905338372,36669.1123645833 "10000","No","Yes",200.922182634797,16862.9523209407 PKLLpygam/datasets/faithful.csv"","eruptions","waiting" "1",3.6,79 "2",1.8,54 "3",3.333,74 "4",2.283,62 "5",4.533,85 "6",2.883,55 "7",4.7,88 "8",3.6,85 "9",1.95,51 "10",4.35,85 "11",1.833,54 "12",3.917,84 "13",4.2,78 "14",1.75,47 "15",4.7,83 "16",2.167,52 "17",1.75,62 "18",4.8,84 "19",1.6,52 "20",4.25,79 "21",1.8,51 "22",1.75,47 "23",3.45,78 "24",3.067,69 "25",4.533,74 "26",3.6,83 "27",1.967,55 "28",4.083,76 "29",3.85,78 "30",4.433,79 "31",4.3,73 "32",4.467,77 "33",3.367,66 "34",4.033,80 "35",3.833,74 "36",2.017,52 "37",1.867,48 "38",4.833,80 "39",1.833,59 "40",4.783,90 "41",4.35,80 "42",1.883,58 "43",4.567,84 "44",1.75,58 "45",4.533,73 "46",3.317,83 "47",3.833,64 "48",2.1,53 "49",4.633,82 "50",2,59 "51",4.8,75 "52",4.716,90 "53",1.833,54 "54",4.833,80 "55",1.733,54 "56",4.883,83 "57",3.717,71 "58",1.667,64 "59",4.567,77 "60",4.317,81 "61",2.233,59 "62",4.5,84 "63",1.75,48 "64",4.8,82 "65",1.817,60 "66",4.4,92 "67",4.167,78 "68",4.7,78 "69",2.067,65 "70",4.7,73 "71",4.033,82 "72",1.967,56 "73",4.5,79 "74",4,71 "75",1.983,62 "76",5.067,76 "77",2.017,60 "78",4.567,78 "79",3.883,76 "80",3.6,83 "81",4.133,75 "82",4.333,82 "83",4.1,70 "84",2.633,65 "85",4.067,73 "86",4.933,88 "87",3.95,76 "88",4.517,80 "89",2.167,48 "90",4,86 "91",2.2,60 "92",4.333,90 "93",1.867,50 "94",4.817,78 "95",1.833,63 "96",4.3,72 "97",4.667,84 "98",3.75,75 "99",1.867,51 "100",4.9,82 "101",2.483,62 "102",4.367,88 "103",2.1,49 "104",4.5,83 "105",4.05,81 "106",1.867,47 "107",4.7,84 "108",1.783,52 "109",4.85,86 "110",3.683,81 "111",4.733,75 "112",2.3,59 "113",4.9,89 "114",4.417,79 "115",1.7,59 "116",4.633,81 "117",2.317,50 "118",4.6,85 "119",1.817,59 "120",4.417,87 "121",2.617,53 "122",4.067,69 "123",4.25,77 "124",1.967,56 "125",4.6,88 "126",3.767,81 "127",1.917,45 "128",4.5,82 "129",2.267,55 "130",4.65,90 "131",1.867,45 "132",4.167,83 "133",2.8,56 "134",4.333,89 "135",1.833,46 "136",4.383,82 "137",1.883,51 "138",4.933,86 "139",2.033,53 "140",3.733,79 "141",4.233,81 "142",2.233,60 "143",4.533,82 "144",4.817,77 "145",4.333,76 "146",1.983,59 "147",4.633,80 "148",2.017,49 "149",5.1,96 "150",1.8,53 "151",5.033,77 "152",4,77 "153",2.4,65 "154",4.6,81 "155",3.567,71 "156",4,70 "157",4.5,81 "158",4.083,93 "159",1.8,53 "160",3.967,89 "161",2.2,45 "162",4.15,86 "163",2,58 "164",3.833,78 "165",3.5,66 "166",4.583,76 "167",2.367,63 "168",5,88 "169",1.933,52 "170",4.617,93 "171",1.917,49 "172",2.083,57 "173",4.583,77 "174",3.333,68 "175",4.167,81 "176",4.333,81 "177",4.5,73 "178",2.417,50 "179",4,85 "180",4.167,74 "181",1.883,55 "182",4.583,77 "183",4.25,83 "184",3.767,83 "185",2.033,51 "186",4.433,78 "187",4.083,84 "188",1.833,46 "189",4.417,83 "190",2.183,55 "191",4.8,81 "192",1.833,57 "193",4.8,76 "194",4.1,84 "195",3.966,77 "196",4.233,81 "197",3.5,87 "198",4.366,77 "199",2.25,51 "200",4.667,78 "201",2.1,60 "202",4.35,82 "203",4.133,91 "204",1.867,53 "205",4.6,78 "206",1.783,46 "207",4.367,77 "208",3.85,84 "209",1.933,49 "210",4.5,83 "211",2.383,71 "212",4.7,80 "213",1.867,49 "214",3.833,75 "215",3.417,64 "216",4.233,76 "217",2.4,53 "218",4.8,94 "219",2,55 "220",4.15,76 "221",1.867,50 "222",4.267,82 "223",1.75,54 "224",4.483,75 "225",4,78 "226",4.117,79 "227",4.083,78 "228",4.267,78 "229",3.917,70 "230",4.55,79 "231",4.083,70 "232",2.417,54 "233",4.183,86 "234",2.217,50 "235",4.45,90 "236",1.883,54 "237",1.85,54 "238",4.283,77 "239",3.95,79 "240",2.333,64 "241",4.15,75 "242",2.35,47 "243",4.933,86 "244",2.9,63 "245",4.583,85 "246",3.833,82 "247",2.083,57 "248",4.367,82 "249",2.133,67 "250",4.35,74 "251",2.2,54 "252",4.45,83 "253",3.567,73 "254",4.5,73 "255",4.15,88 "256",3.817,80 "257",3.917,71 "258",4.45,83 "259",2,56 "260",4.283,79 "261",4.767,78 "262",4.533,84 "263",1.85,58 "264",4.25,83 "265",1.983,43 "266",2.25,60 "267",4.75,75 "268",4.117,81 "269",2.15,46 "270",4.417,90 "271",1.817,46 "272",4.467,74 PKL%9'pygam/datasets/hepatitis_A_bulgaria.csv"age","hepatitis_A_positive","total" 1,3,16 2,3,15 3,3,16 4,4,13 5,7,12 6,4,15 7,3,12 8,4,11 9,7,10 10,8,15 11,2,7 12,3,7 13,2,11 14,0,1 15,5,16 16,13,41 17,1,2 18,3,6 19,15,32 20,22,37 21,15,24 22,7,10 23,8,10 24,7,11 25,12,15 26,5,10 27,10,13 28,15,19 29,9,12 30,9,9 31,9,14 32,8,10 33,9,11 34,8,9 35,9,14 36,13,14 37,6,7 38,15,16 39,11,13 40,6,8 41,8,8 42,13,14 43,7,10 44,5,5 45,7,7 46,9,9 47,9,9 48,22,22 49,6,7 50,10,10 51,6,6 52,13,14 53,8,8 54,7,7 55,13,13 56,11,11 57,8,8 58,8,8 59,9,10 60,13,16 61,5,5 62,5,6 63,5,5 64,5,5 65,10,10 66,8,8 67,4,4 68,5,5 69,4,5 70,8,8 71,0,0 72,9,9 73,1,1 74,4,4 75,7,7 76,6,6 77,2,2 78,3,3 79,2,2 80,4,4 81,1,1 82,1,1 83,2,2 84,0,0 85,0,0 86,1,1 PKL=m-}}pygam/datasets/load_datasets.py""" GAM datasets """ # -*- coding: utf-8 -*- from os.path import dirname import pandas as pd import numpy as np from pygam.utils import make_2d PATH = dirname(__file__) def _clean_X_y(X, y): """ensure that X and y data are float and correct shapes """ return make_2d(X, verbose=False).astype('float'), y.astype('float') def mcycle(return_X_y=True): """motorcyle acceleration dataset Parameters ---------- return_X_y : bool, if True, returns a model-ready tuple of data (X, y) otherwise, returns a Pandas DataFrame Returns ------- model-ready tuple of data (X, y) OR Pandas DataFrame Notes ----- X contains the times after the impact. y contains the acceleration. Source: https://vincentarelbundock.github.io/Rdatasets/doc/MASS/mcycle.html """ # y is real # recommend LinearGAM motor = pd.read_csv(PATH + '/mcycle.csv', index_col=0) if return_X_y: X = motor.times.values y = motor.accel return _clean_X_y(X, y) return motor def coal(return_X_y=True): """coal-mining accidents dataset Parameters ---------- return_X_y : bool, if True, returns a model-ready tuple of data (X, y) otherwise, returns a Pandas DataFrame Returns ------- model-ready tuple of data (X, y) OR Pandas DataFrame Notes ----- The (X, y) tuple is a processed version of the otherwise raw DataFrame. A histogram of 150 bins has been computed describing the number accidents per year. X contains the midpoints of histogram bins. y contains the count in each histogram bin. Source: https://vincentarelbundock.github.io/Rdatasets/doc/boot/coal.html """ # y is counts # recommend PoissonGAM coal = pd.read_csv(PATH + '/coal.csv', index_col=0) if return_X_y: y, x = np.histogram(coal.values, bins=150) X = x[:-1] + np.diff(x)/2 # get midpoints of bins return _clean_X_y(X, y) return coal def faithful(return_X_y=True): """old-faithful dataset Parameters ---------- return_X_y : bool, if True, returns a model-ready tuple of data (X, y) otherwise, returns a Pandas DataFrame Returns ------- model-ready tuple of data (X, y) OR Pandas DataFrame Notes ----- The (X, y) tuple is a processed version of the otherwise raw DataFrame. A histogram of 200 bins has been computed describing the wating time between eruptions. X contains the midpoints of histogram bins. y contains the count in each histogram bin. Source: https://vincentarelbundock.github.io/Rdatasets/doc/datasets/faithful.html """ # y is counts # recommend PoissonGAM faithful = pd.read_csv(PATH + '/faithful.csv', index_col=0) if return_X_y: y, x = np.histogram(faithful['eruptions'], bins=200) X = x[:-1] + np.diff(x)/2 # get midpoints of bins return _clean_X_y(X, y) return faithful def wage(return_X_y=True): """wage dataset Parameters ---------- return_X_y : bool, if True, returns a model-ready tuple of data (X, y) otherwise, returns a Pandas DataFrame Returns ------- model-ready tuple of data (X, y) OR Pandas DataFrame Notes ----- X contains the year, age and education of each sampled person. The education category has been transformed to integers. y contains the wage. Source: https://github.com/JWarmenhoven/ISLR-python/blob/master/Notebooks/Data/Wage.csv """ # y is real # recommend LinearGAM wage = pd.read_csv(PATH + '/wage.csv', index_col=0) if return_X_y: X = wage[['year', 'age', 'education']].values X[:,-1] = np.unique(X[:,-1], return_inverse=True)[1] y = wage['wage'].values return _clean_X_y(X, y) return wage def trees(return_X_y=True): """cherry trees dataset Parameters ---------- return_X_y : bool, if True, returns a model-ready tuple of data (X, y) otherwise, returns a Pandas DataFrame Returns ------- model-ready tuple of data (X, y) OR Pandas DataFrame Notes ----- X contains the girth and the height of each tree. y contains the volume. Source: https://vincentarelbundock.github.io/Rdatasets/doc/datasets/trees.html """ # y is real. # recommend InvGaussGAM, or GAM(distribution='gamma', link='log') trees = pd.read_csv(PATH + '/trees.csv', index_col=0) if return_X_y: y = trees.Volume.values X = trees[['Girth', 'Height']].values return _clean_X_y(X, y) return trees def default(return_X_y=True): """credit default dataset Parameters ---------- return_X_y : bool, if True, returns a model-ready tuple of data (X, y) otherwise, returns a Pandas DataFrame Returns ------- model-ready tuple of data (X, y) OR Pandas DataFrame Notes ----- X contains the category of student or not, credit card balance, and income. y contains the outcome of default (0) or not (1). Source: https://vincentarelbundock.github.io/Rdatasets/doc/ISLR/Default.html """ # y is binary # recommend LogisticGAM default = pd.read_csv(PATH + '/default.csv', index_col=0) if return_X_y: default = default.values default[:,0] = np.unique(default[:,0], return_inverse=True)[1] default[:,1] = np.unique(default[:,1], return_inverse=True)[1] X = default[:,1:] y = default[:,0] return _clean_X_y(X, y) return default def cake(return_X_y=True): """cake dataset Parameters ---------- return_X_y : bool, if True, returns a model-ready tuple of data (X, y) otherwise, returns a Pandas DataFrame Returns ------- model-ready tuple of data (X, y) OR Pandas DataFrame Notes ----- X contains the category of recipe used transformed to an integer, the catergory of replicate, and the temperatue. y contains the angle at which the cake broke. Source: https://vincentarelbundock.github.io/Rdatasets/doc/lme4/cake.html """ # y is real # recommend LinearGAM cake = pd.read_csv(PATH + '/cake.csv', index_col=0) if return_X_y: X = cake[['recipe', 'replicate', 'temperature']].values X[:,0] = np.unique(cake.values[:,1], return_inverse=True)[1] X[:,1] -= 1 y = cake['angle'].values return _clean_X_y(X, y) return cake def hepatitis(return_X_y=True): """hepatitis in Bulgaria dataset Parameters ---------- return_X_y : bool, if True, returns a model-ready tuple of data (X, y) otherwise, returns a Pandas DataFrame Returns ------- model-ready tuple of data (X, y) OR Pandas DataFrame Notes ----- X contains the age of each patient group. y contains the ratio of HAV positive patients to the total number for each age group. Groups with 0 total patients are excluded. """ # y is real # recommend LinearGAM hep = pd.read_csv(PATH + '/hepatitis_A_bulgaria.csv').astype(float) if return_X_y: # eliminate 0/0 mask = (hep.total > 0).values hep = hep[mask] X = hep.age.values y = hep.hepatitis_A_positive.values / hep.total.values return _clean_X_y(X, y) return hep PKL"Ipygam/datasets/mcycle.csv"","times","accel" "1",2.4,0 "2",2.6,-1.3 "3",3.2,-2.7 "4",3.6,0 "5",4,-2.7 "6",6.2,-2.7 "7",6.6,-2.7 "8",6.8,-1.3 "9",7.8,-2.7 "10",8.2,-2.7 "11",8.8,-1.3 "12",8.8,-2.7 "13",9.6,-2.7 "14",10,-2.7 "15",10.2,-5.4 "16",10.6,-2.7 "17",11,-5.4 "18",11.4,0 "19",13.2,-2.7 "20",13.6,-2.7 "21",13.8,0 "22",14.6,-13.3 "23",14.6,-5.4 "24",14.6,-5.4 "25",14.6,-9.3 "26",14.6,-16 "27",14.6,-22.8 "28",14.8,-2.7 "29",15.4,-22.8 "30",15.4,-32.1 "31",15.4,-53.5 "32",15.4,-54.9 "33",15.6,-40.2 "34",15.6,-21.5 "35",15.8,-21.5 "36",15.8,-50.8 "37",16,-42.9 "38",16,-26.8 "39",16.2,-21.5 "40",16.2,-50.8 "41",16.2,-61.7 "42",16.4,-5.4 "43",16.4,-80.4 "44",16.6,-59 "45",16.8,-71 "46",16.8,-91.1 "47",16.8,-77.7 "48",17.6,-37.5 "49",17.6,-85.6 "50",17.6,-123.1 "51",17.6,-101.9 "52",17.8,-99.1 "53",17.8,-104.4 "54",18.6,-112.5 "55",18.6,-50.8 "56",19.2,-123.1 "57",19.4,-85.6 "58",19.4,-72.3 "59",19.6,-127.2 "60",20.2,-123.1 "61",20.4,-117.9 "62",21.2,-134 "63",21.4,-101.9 "64",21.8,-108.4 "65",22,-123.1 "66",23.2,-123.1 "67",23.4,-128.5 "68",24,-112.5 "69",24.2,-95.1 "70",24.2,-81.8 "71",24.6,-53.5 "72",25,-64.4 "73",25,-57.6 "74",25.4,-72.3 "75",25.4,-44.3 "76",25.6,-26.8 "77",26,-5.4 "78",26.2,-107.1 "79",26.2,-21.5 "80",26.4,-65.6 "81",27,-16 "82",27.2,-45.6 "83",27.2,-24.2 "84",27.2,9.5 "85",27.6,4 "86",28.2,12 "87",28.4,-21.5 "88",28.4,37.5 "89",28.6,46.9 "90",29.4,-17.4 "91",30.2,36.2 "92",31,75 "93",31.2,8.1 "94",32,54.9 "95",32,48.2 "96",32.8,46.9 "97",33.4,16 "98",33.8,45.6 "99",34.4,1.3 "100",34.8,75 "101",35.2,-16 "102",35.2,-54.9 "103",35.4,69.6 "104",35.6,34.8 "105",35.6,32.1 "106",36.2,-37.5 "107",36.2,22.8 "108",38,46.9 "109",38,10.7 "110",39.2,5.4 "111",39.4,-1.3 "112",40,-21.5 "113",40.4,-13.3 "114",41.6,30.8 "115",41.6,-10.7 "116",42.4,29.4 "117",42.8,0 "118",42.8,-10.7 "119",43,14.7 "120",44,-1.3 "121",44.4,0 "122",45,10.7 "123",46.6,10.7 "124",47.8,-26.8 "125",47.8,-14.7 "126",48.8,-13.3 "127",50.6,0 "128",52,10.7 "129",53.2,-14.7 "130",55,-2.7 "131",55,10.7 "132",55.4,-2.7 "133",57.6,10.7 PKL6++pygam/datasets/trees.csv"","Girth","Height","Volume" "1",8.3,70,10.3 "2",8.6,65,10.3 "3",8.8,63,10.2 "4",10.5,72,16.4 "5",10.7,81,18.8 "6",10.8,83,19.7 "7",11,66,15.6 "8",11,75,18.2 "9",11.1,80,22.6 "10",11.2,75,19.9 "11",11.3,79,24.2 "12",11.4,76,21 "13",11.4,76,21.4 "14",11.7,69,21.3 "15",12,75,19.1 "16",12.9,74,22.2 "17",12.9,85,33.8 "18",13.3,86,27.4 "19",13.7,71,25.7 "20",13.8,64,24.9 "21",14,78,34.5 "22",14.2,80,31.7 "23",14.5,74,36.3 "24",16,72,38.3 "25",16.3,77,42.6 "26",17.3,81,55.4 "27",17.5,82,55.7 "28",17.9,80,58.3 "29",18,80,51.5 "30",18,80,51 "31",20.6,87,77 PKLP\^~^~pygam/datasets/wage.csv"","year","age","sex","maritl","race","education","region","jobclass","health","health_ins","logwage","wage" "231655",2006,18,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.31806333496276,75.0431540173515 "86582",2004,24,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.25527250510331,70.4760196469445 "161300",2003,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.8750612633917,130.982177377461 "155159",2003,43,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "11443",2005,50,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.31806333496276,75.0431540173515 "376662",2008,54,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "450601",2009,44,"1. Male","2. Married","4. Other","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.13302127864665,169.528538036679 "377954",2008,30,"1. Male","1. Never Married","3. Asian","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.7160033436348,111.720849360989 "228963",2006,41,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "81404",2004,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "302778",2007,45,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.76342799356294,117.146816914805 "305706",2007,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "8690",2005,35,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.49415459401844,89.4924795180001 "153561",2003,39,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "449654",2009,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "447660",2009,51,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "160191",2003,37,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "230312",2006,50,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.36055176170483,212.842352315711 "301585",2007,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.86102634169657,129.156693004704 "153682",2003,37,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.5910646070265,98.5993438603892 "158226",2003,38,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.30102999566398,200.543262324662 "11141",2005,40,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.92012332629072,50.406660861266 "448410",2009,75,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "305116",2007,40,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.07918124604763,160.642475408263 "233002",2006,38,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.54406804435028,94.0727147457005 "8684",2005,49,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62618633492728,277.601417511009 "229379",2006,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.43136376415899,84.0459576539924 "86064",2004,34,"1. Male","2. Married","4. Other","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.17609125905568,65.1108537153447 "378472",2008,57,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.75587485567249,116.265324062503 "157244",2003,18,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.25527250510331,70.4760196469445 "82694",2004,55,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.27646180417324,195.676307990453 "7690",2005,51,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.61909333062674,101.402052302992 "377879",2008,33,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "9747",2005,34,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.7160033436348,111.720849360989 "233301",2006,36,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.49847596780109,89.8800467811106 "157123",2003,56,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "230823",2006,70,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "80406",2004,25,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.64345267648619,103.90247060316 "228851",2006,32,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.66275783168157,105.927810775063 "153810",2003,27,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.19312459835446,66.2294082943902 "81383",2004,28,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.54406804435028,34.6074177301288 "303642",2007,27,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "87492",2004,43,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.81291335664286,45.282169994022 "8692",2005,50,"1. Male","1. Never Married","4. Other","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "86929",2004,39,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "380872",2008,52,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "449480",2009,35,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.59061783348625,267.901086855275 "305136",2007,57,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "227963",2006,25,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.19312459835446,66.2294082943902 "232863",2006,33,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.75587485567249,116.265324062503 "8621",2005,57,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.30102999566398,200.543262324662 "379668",2008,71,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "84595",2004,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.60688524128857,272.294783220064 "154634",2003,23,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.55630250076729,35.0334213214995 "450864",2009,30,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "84377",2004,22,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "234086",2006,59,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.30102999566398,200.543262324662 "154482",2003,28,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "85916",2004,61,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "161065",2003,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "12003",2005,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.02938377768521,152.838800991182 "228071",2006,54,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.76342799356294,117.146816914805 "13479",2005,69,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.3533390953113,77.7376033039781 "81494",2004,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "159076",2003,48,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.83250891270624,125.525498433836 "159207",2003,49,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81491318127507,123.336103962059 "447501",2009,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.06445798922692,158.294621427791 "153767",2003,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.30102999566398,200.543262324662 "81071",2004,55,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "376442",2008,21,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.25527250510331,70.4760196469445 "87299",2004,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "228621",2006,31,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "232494",2006,25,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "228400",2006,32,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.61278385671974,100.764272842107 "451860",2009,40,"1. Male","1. Never Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "157058",2003,44,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "159583",2003,60,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.59198011410292,268.266292012557 "233759",2006,23,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "159224",2003,63,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.73239375982297,113.567089569751 "374859",2008,44,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.47712125471966,87.9810327856054 "11710",2005,47,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.85733249643127,128.680488220624 "86298",2004,61,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.67024585307412,106.723977625299 "453021",2009,55,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.19033169817029,66.0446942318056 "161431",2003,24,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.94200805302231,51.521956314716 "305888",2007,42,"1. Male","3. Widowed","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "232199",2006,25,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "86568",2004,34,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.50514997831991,90.4819133566401 "447500",2009,53,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.22063101944809,68.0764282889521 "452506",2009,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "450908",2009,70,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.85125834871908,127.901232979118 "82573",2004,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.87691031134463,131.224593755096 "159196",2003,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "156110",2003,33,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.34242268082221,76.8936025176112 "14148",2005,34,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "232000",2006,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.39794000867204,81.2832532842527 "453486",2009,74,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "156065",2003,40,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.5910646070265,98.5993438603892 "229079",2006,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.30102999566398,200.543262324662 "450905",2009,43,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.05307844348342,156.503510882633 "10660",2005,33,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.97634997900327,144.944364980516 "449456",2009,62,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "374660",2008,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.79934054945358,121.430313822622 "87463",2004,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.7160033436348,111.720849360989 "9273",2005,34,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.23044892137827,68.7480877337669 "377517",2008,50,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "231592",2006,46,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.55630250076729,95.2307125669819 "303825",2007,41,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "156310",2003,63,"1. Male","4. Divorced","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.16316137497702,64.2743972206327 "303376",2007,38,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.85733249643127,128.680488220624 "230586",2006,35,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "450109",2009,29,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.72427586960079,112.6488963421 "379991",2008,66,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "87291",2004,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.32935719413155,75.8954848228103 "228517",2006,39,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.719720651334,112.136922992214 "160971",2003,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.44715803134222,85.3839403789827 "307464",2007,51,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "449246",2009,55,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "233043",2006,51,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "377184",2008,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.62321723414596,276.778413321176 "8033",2005,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "233687",2006,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.51851393987789,91.6992261117042 "447751",2009,43,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.46239799789896,86.6951548289402 "230398",2006,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.09342168516223,162.946460744664 "378429",2008,59,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.93601079571521,139.213788138664 "447412",2009,57,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.55630250076729,95.2307125669819 "13924",2005,25,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.20411998265593,66.9616443217359 "87630",2004,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.8766796104192,131.194323611687 "84600",2004,41,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "451987",2009,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "160246",2003,61,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.37106786227174,79.1280844956297 "307755",2007,49,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.65006456117768,104.591737924918 "375007",2008,52,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.88649072517248,132.487821126123 "303430",2007,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "379330",2008,60,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "8339",2005,46,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "83190",2004,21,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.02118929906994,55.7673905084923 "452580",2009,61,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.67209785793572,106.921814091211 "302701",2007,32,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "83222",2004,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "159871",2003,35,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.48784512011144,88.9296066367913 "82108",2004,26,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "229714",2006,32,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "159048",2003,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.67209785793572,106.921814091211 "302868",2007,22,"1. Male","1. Never Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.07918124604763,59.0970640815891 "10499",2005,51,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.17609125905568,65.1108537153447 "84127",2004,44,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.79239168949825,120.589436530402 "11661",2005,35,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.06069784035361,157.700527725737 "86282",2004,60,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.86332286012046,129.453644576625 "305327",2007,40,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "81655",2004,35,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.07918124604763,59.0970640815891 "303953",2007,35,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "374752",2008,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "159109",2003,43,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "159285",2003,33,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "159909",2003,60,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.03342375548695,153.457515308961 "378138",2008,38,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.91907809237607,136.876367635184 "9786",2005,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.31806333496276,75.0431540173515 "86191",2004,55,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.86923171973098,130.220832358777 "154759",2003,57,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.65321251377534,104.921506533664 "12122",2005,64,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",3.90308998699194,49.5553381215226 "306309",2007,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.81954393554187,123.908567597957 "377137",2008,35,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "375944",2008,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.35869609957381,78.155161407934 "304068",2007,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "156557",2003,58,"1. Male","4. Divorced","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "306779",2007,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.84509804001426,127.115743812184 "161021",2003,46,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.23044892137827,68.7480877337669 "85966",2004,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.43546212055982,84.39111474778 "453692",2009,55,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "233313",2006,51,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "9681",2005,49,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.25527250510331,70.4760196469445 "379875",2008,34,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "305250",2007,53,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5,148.413159102577 "84642",2004,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "451306",2009,50,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17026171539496,175.960883130401 "228212",2006,37,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.5910646070265,98.5993438603892 "157989",2003,39,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "88028",2004,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "155697",2003,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.94939000664491,141.08887439127 "234523",2006,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "233149",2006,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.86332286012046,129.453644576625 "13626",2005,27,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "234640",2006,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.64345267648619,103.90247060316 "453255",2009,44,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "154195",2003,37,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.02118929906994,151.591484239814 "232628",2006,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.6232492903979,101.82435207568 "85539",2004,26,"1. Male","1. Never Married","3. Asian","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "377464",2008,39,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "230582",2006,25,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60205999132796,99.6894636984864 "9573",2005,31,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "84164",2004,58,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.02530586526477,152.216806827106 "11880",2005,30,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "85545",2004,27,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.17609125905568,65.1108537153447 "153581",2003,40,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "232176",2006,55,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.15836249209525,173.879493310012 "450900",2009,35,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.26481782300954,193.411070530969 "377900",2008,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.74036268949424,114.475713290347 "232371",2006,29,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.07918124604763,160.642475408263 "12056",2005,25,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.49415459401844,89.4924795180001 "84397",2004,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.79239168949825,120.589436530402 "233497",2006,27,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.30102999566398,73.7757432746946 "228458",2006,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "230993",2006,49,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "153269",2003,22,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.54406804435028,34.6074177301288 "305585",2007,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "302536",2007,33,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.44715803134222,85.3839403789827 "307024",2007,63,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.76312762749814,318.342430056529 "233435",2006,49,"1. Male","1. Never Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "12288",2005,39,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "303912",2007,25,"1. Male","1. Never Married","4. Other","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.30102999566398,73.7757432746946 "14404",2005,29,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "233441",2006,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.31806333496276,75.0431540173515 "377452",2008,35,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.04336227802113,154.990260276812 "449474",2009,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "381113",2008,58,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.29207877211666,73.118306923864 "156406",2003,39,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "378714",2008,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.06069784035361,157.700527725737 "376309",2008,29,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "451901",2009,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.67521907955274,107.256062128429 "450725",2009,62,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.36921585741014,78.9816745162994 "375024",2008,27,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "159821",2003,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "229865",2006,56,"1. Male","5. Separated","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.60205999132796,99.6894636984864 "83880",2004,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "9965",2005,23,"1. Male","1. Never Married","4. Other","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "157250",2003,46,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "453371",2009,26,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "228243",2006,43,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "307645",2007,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "156420",2003,54,"1. Male","5. Separated","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "160039",2003,62,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.56110138364906,95.6888119067371 "233379",2006,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "231082",2006,53,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "301920",2007,48,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "80687",2004,23,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.11394335230684,61.1875264339915 "450566",2009,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "86450",2004,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.5467412584381,256.400649562425 "234600",2006,55,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "307663",2007,59,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "303900",2007,60,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.02118929906994,55.7673905084923 "453852",2009,49,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.32221929473392,75.3556793180091 "230477",2006,45,"1. Male","2. Married","3. Asian","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "227901",2006,31,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.77815125038364,43.7351116779821 "86826",2004,34,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "8653",2005,26,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "305209",2007,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "81173",2004,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.22788670461367,68.5721657022738 "451854",2009,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "228591",2006,36,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.57978359661681,97.4932940453934 "302140",2007,38,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.13353890837022,62.3983547205685 "153731",2003,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.57978359661681,97.4932940453934 "228955",2006,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "9621",2005,47,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.11394335230684,61.1875264339915 "305165",2007,35,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.77815125038364,118.884359339886 "378023",2008,49,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.17609125905568,65.1108537153447 "82989",2004,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "82023",2004,32,"1. Male","3. Widowed","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "374706",2008,57,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "379611",2008,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "452592",2009,73,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.50514997831991,90.4819133566401 "305871",2007,29,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "157388",2003,49,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "448936",2009,30,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "377039",2008,29,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "82375",2004,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.55630250076729,95.2307125669819 "449852",2009,39,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.05307844348342,156.503510882633 "301195",2007,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "228628",2006,45,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "85756",2004,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4,54.5981500331442 "160269",2003,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",3.47712125471966,32.3664131748549 "301711",2007,58,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.77815125038364,118.884359339886 "304988",2007,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "156809",2003,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "14133",2005,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "306552",2007,41,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.70757017609794,110.782650276254 "377157",2008,27,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.53857373380686,93.5572673479306 "82901",2004,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "159765",2003,32,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "229546",2006,46,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "9730",2005,52,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",3.95424250943932,52.1561711699147 "158570",2003,22,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.77815125038364,43.7351116779821 "83618",2004,53,"1. Male","3. Widowed","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "379620",2008,34,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "449489",2009,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "447879",2009,42,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "10076",2005,25,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "84867",2004,29,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.46239799789896,86.6951548289402 "14063",2005,28,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "12822",2005,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.20411998265593,66.9616443217359 "302239",2007,55,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "84949",2004,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.66124460895933,105.767639622758 "11129",2005,41,"1. Male","4. Divorced","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "450963",2009,61,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.17609125905568,176.989650489877 "154245",2003,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.17609125905568,65.1108537153447 "231844",2006,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "87485",2004,27,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.27875360095283,72.1504556815713 "306574",2007,33,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.49136169383427,89.2428846644714 "154477",2003,58,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.17609125905568,65.1108537153447 "13319",2005,27,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.98227123303957,145.805163374625 "452710",2009,52,"1. Male","5. Separated","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "156407",2003,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.7160033436348,41.0998036301194 "153297",2003,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.22530928172586,68.3956538035455 "13996",2005,25,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "80386",2004,25,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "12586",2005,41,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "234325",2006,54,"1. Male","5. Separated","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "305437",2007,23,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39724458101039,81.226746312023 "231481",2006,36,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.14612803567824,63.1888610037461 "83198",2004,31,"1. Male","5. Separated","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "231026",2006,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.52891670027766,92.6581301668597 "303072",2007,46,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.34242268082221,76.8936025176112 "305362",2007,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "447780",2009,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.38021124171161,79.8549003093467 "87269",2004,33,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.46239799789896,86.6951548289402 "307318",2007,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.89762709129044,133.971500070695 "302976",2007,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.83250891270624,125.525498433836 "302515",2007,25,"1. Male","1. Never Married","4. Other","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.53147891704226,92.8958447894966 "14041",2005,24,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.27875360095283,72.1504556815713 "228348",2006,24,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "381272",2008,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.25527250510331,70.4760196469445 "87402",2004,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.84509804001426,127.115743812184 "451721",2009,42,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "8318",2005,30,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "447992",2009,55,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4,54.5981500331442 "377619",2008,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.43136376415899,84.0459576539924 "153764",2003,60,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.44715803134222,85.3839403789827 "158574",2003,40,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "374992",2008,41,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.70757017609794,110.782650276254 "155488",2003,80,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.38021124171161,79.8549003093467 "8969",2005,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.57978359661681,97.4932940453934 "86280",2004,40,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.14612803567824,171.765132627508 "451302",2009,35,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.92348752840002,137.481247831663 "448525",2009,55,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.32221929473392,75.3556793180091 "381232",2008,24,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "304500",2007,39,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "156397",2003,30,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "9066",2005,68,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "82172",2004,54,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "375305",2008,27,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "13745",2005,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "87094",2004,53,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "87118",2004,48,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.44715803134222,85.3839403789827 "11498",2005,59,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "87260",2004,30,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "303688",2007,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.09691001300806,163.515863976238 "304050",2007,39,"1. Male","2. Married","4. Other","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "378178",2008,45,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60205999132796,99.6894636984864 "302298",2007,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.64100585131578,281.745970551857 "157594",2003,30,"1. Male","1. Never Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "10835",2005,57,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "81344",2004,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.91907809237607,136.876367635184 "449687",2009,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.23044892137827,186.876677628007 "7980",2005,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.50514997831991,90.4819133566401 "449444",2009,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.44715803134222,85.3839403789827 "10723",2005,43,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "154638",2003,33,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.79239168949825,120.589436530402 "85115",2004,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "232201",2006,37,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.69019608002851,108.874525834712 "452906",2009,41,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.6534054906645,38.6059145209601 "301654",2007,33,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.53147891704226,92.8958447894966 "307056",2007,50,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.83884909073726,126.323880709786 "161096",2003,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.25527250510331,191.573683548412 "87060",2004,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.04921802267018,155.900506146767 "12303",2005,37,"1. Male","3. Widowed","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "229331",2006,20,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.07918124604763,59.0970640815891 "159410",2003,26,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "154322",2003,29,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.50514997831991,90.4819133566401 "378567",2008,57,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "450843",2009,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.02118929906994,151.591484239814 "85580",2004,54,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.60688524128857,272.294783220064 "303657",2007,38,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.57978359661681,97.4932940453934 "231767",2006,23,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.2211533219547,68.111994065327 "82755",2004,31,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "84630",2004,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.60688524128857,272.294783220064 "154919",2003,33,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.7160033436348,111.720849360989 "83800",2004,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "375159",2008,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "452406",2009,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "375122",2008,30,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.24551266781415,69.7915308454408 "87199",2004,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "82912",2004,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8463371121298,127.273347006486 "379794",2008,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "307692",2007,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.14612803567824,171.765132627508 "7744",2005,28,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.95424250943933,141.77517233318 "85617",2004,52,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7481880270062,115.375038556391 "82419",2004,23,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.27875360095283,72.1504556815713 "158170",2003,65,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.30102999566398,73.7757432746946 "10787",2005,27,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "86679",2004,33,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.04139268515822,20.9343779401018 "379950",2008,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "380366",2008,27,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.63346845557959,102.870246933215 "377229",2008,48,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.7481880270062,115.375038556391 "14381",2005,38,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.57978359661681,97.4932940453934 "380704",2008,58,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.65321251377534,104.921506533664 "154336",2003,40,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.7481880270062,115.375038556391 "303935",2007,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.53781909507327,93.4866920429597 "449322",2009,53,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.81291335664286,123.089699847943 "447585",2009,25,"1. Male","1. Never Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "154099",2003,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.56820172406699,96.3706528322308 "83458",2004,40,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.43136376415899,84.0459576539924 "228692",2006,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "10081",2005,50,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.55630250076729,95.2307125669819 "86122",2004,34,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "452287",2009,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "82373",2004,49,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.7160033436348,111.720849360989 "448894",2009,41,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "81495",2004,37,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "155436",2003,58,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "231274",2006,28,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.2211533219547,68.111994065327 "158044",2003,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "153953",2003,50,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.96930872345047,143.92735936583 "450724",2009,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.64345267648619,103.90247060316 "160958",2003,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "376843",2008,30,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "229069",2006,49,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.92941892571429,138.299126920883 "9667",2005,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77539197169661,118.55677641507 "450052",2009,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "448988",2009,58,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "82603",2004,45,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.01072386539177,150.01328628271 "7878",2005,44,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.57978359661681,97.4932940453934 "14321",2005,35,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.50514997831991,90.4819133566401 "8396",2005,59,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "447417",2009,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.8750612633917,130.982177377461 "87860",2004,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.01703333929878,150.962783462143 "232031",2006,61,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.8750612633917,130.982177377461 "378256",2008,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "155519",2003,34,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "304018",2007,33,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.73239375982297,113.567089569751 "9841",2005,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "448723",2009,50,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.06069784035361,157.700527725737 "233955",2006,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "8039",2005,39,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.43136376415899,84.0459576539924 "448678",2009,26,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918848422867,160.643638171791 "306092",2007,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.86923171973098,47.9055670370271 "153618",2003,20,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.07918124604763,59.0970640815891 "157194",2003,31,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "306995",2007,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "304167",2007,56,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "12086",2005,61,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.96848294855393,143.808556824369 "12979",2005,56,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.70757017609794,110.782650276254 "451080",2009,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "85699",2004,42,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.79239168949825,120.589436530402 "81085",2004,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.60688524128857,272.294783220064 "228178",2006,30,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65753388755799,105.375892660271 "12945",2005,48,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.23426412437879,69.0108766220885 "450263",2009,33,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "301266",2007,50,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.49136169383427,89.2428846644714 "157405",2003,31,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.14612803567824,171.765132627508 "161083",2003,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.89209460269048,133.232350826567 "8459",2005,35,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.30102999566398,200.543262324662 "451331",2009,47,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.53147891704226,92.8958447894966 "305396",2007,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5,148.413159102577 "451170",2009,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.78534407394068,119.742556289908 "306067",2007,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "303214",2007,47,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.66275783168157,105.927810775063 "452388",2009,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.59061783348625,267.901086855275 "302942",2007,36,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.65321251377534,104.921506533664 "11666",2005,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.84509804001426,127.115743812184 "378911",2008,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.06069784035361,157.700527725737 "82114",2004,37,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5,148.413159102577 "7969",2005,23,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.17609125905568,65.1108537153447 "379907",2008,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "232187",2006,34,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.36172783601759,78.3924668009837 "379987",2008,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.93601079571521,139.213788138664 "448271",2009,44,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.72427586960079,112.6488963421 "378868",2008,61,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.38021124171161,79.8549003093467 "11319",2005,40,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "155212",2003,37,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "160678",2003,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "86604",2004,38,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "227990",2006,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "8348",2005,30,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "156680",2003,51,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.26007138798508,70.8150386167557 "158692",2003,39,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "231182",2006,56,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "306711",2007,44,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.57978359661681,97.4932940453934 "12734",2005,51,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "229031",2006,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.32014628611105,75.1996281485946 "449980",2009,27,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.17609125905568,65.1108537153447 "160714",2003,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.98677173426625,146.462838515063 "302861",2007,51,"1. Male","2. Married","3. Asian","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.39794000867204,81.2832532842527 "230508",2006,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.84509804001426,127.115743812184 "12537",2005,63,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.30102999566398,73.7757432746946 "450603",2009,61,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.17609125905568,65.1108537153447 "86119",2004,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "448869",2009,33,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.38021124171161,79.8549003093467 "451086",2009,35,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.30102999566398,73.7757432746946 "154643",2003,28,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "304493",2007,50,"1. Male","2. Married","3. Asian","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "303813",2007,41,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.65082021253478,284.524740902214 "376113",2008,23,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.77815125038364,118.884359339886 "86394",2004,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.67209785793572,106.921814091211 "301315",2007,63,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60530504614111,100.013486924706 "232504",2006,59,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69019608002851,108.874525834712 "10753",2005,30,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "157040",2003,30,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7481880270062,115.375038556391 "305092",2007,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.8750612633917,130.982177377461 "12728",2005,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.38021124171161,79.8549003093467 "447357",2009,57,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.67209785793572,106.921814091211 "159513",2003,52,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.13385812520333,22.9624006796429 "161380",2003,54,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74651743741465,115.182455126581 "14457",2005,30,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.64345267648619,103.90247060316 "158761",2003,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.21748394421391,184.469464222499 "154582",2003,38,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.75044127844004,314.32933644529 "158274",2003,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "378307",2008,39,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.85733249643127,128.680488220624 "9863",2005,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "155729",2003,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4,54.5981500331442 "87848",2004,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "305240",2007,44,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "159441",2003,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.52353837170365,92.1611220323496 "80586",2004,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.84509804001426,127.115743812184 "83515",2004,18,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.73062079788728,41.7049904993395 "231410",2006,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "81995",2004,50,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "232366",2006,50,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62689955920852,277.79948020565 "229698",2006,53,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.60205999132796,99.6894636984864 "449667",2009,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "81457",2004,27,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.43136376415899,84.0459576539924 "83804",2004,56,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.09691001300806,163.515863976238 "154652",2003,50,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "159717",2003,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "302069",2007,50,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.84509804001426,127.115743812184 "13267",2005,49,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.27875360095283,72.1504556815713 "8550",2005,42,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "449709",2009,50,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.23044892137827,186.876677628007 "157793",2003,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "302529",2007,28,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.93951925261862,139.703071527658 "157309",2003,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "451256",2009,24,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.19312459835446,66.2294082943902 "159735",2003,25,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "85268",2004,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "453542",2009,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "158301",2003,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "307764",2007,33,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.67209785793572,106.921814091211 "231800",2006,39,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62689955920852,277.79948020565 "12439",2005,52,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "7412",2005,46,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "86091",2004,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.67209785793572,106.921814091211 "159115",2003,61,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.04139268515823,56.9055391446732 "10935",2005,32,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "447841",2009,42,"1. Male","4. Divorced","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "234010",2006,61,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.27875360095283,196.125272594255 "453198",2009,27,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.51851393987789,91.6992261117042 "376184",2008,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.30102999566398,200.543262324662 "160130",2003,58,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.47712125471966,32.3664131748549 "306716",2007,25,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "304809",2007,34,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.61278385671974,100.764272842107 "11522",2005,44,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.44715803134222,85.3839403789827 "306077",2007,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "301911",2007,51,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.57978359661681,97.4932940453934 "155698",2003,50,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.79588001734407,121.010826565755 "450165",2009,64,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.89762709129044,133.971500070695 "159956",2003,54,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "380945",2008,42,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "301907",2007,31,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.39794000867204,81.2832532842527 "159358",2003,25,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "233565",2006,32,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.67209785793572,106.921814091211 "301859",2007,51,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "302193",2007,75,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",3.97772360528885,53.3953468905727 "161261",2003,28,"1. Male","2. Married","4. Other","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "451254",2009,28,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.19312459835446,66.2294082943902 "305400",2007,32,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.56820172406699,96.3706528322308 "233567",2006,53,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.6072834161861,272.403225755586 "380078",2008,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.57634135020579,97.1582750436503 "80581",2004,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.30102999566398,200.543262324662 "87755",2004,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.81291335664286,123.089699847943 "13685",2005,35,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "83327",2004,46,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "159834",2003,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "84809",2004,43,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.04139268515823,154.68529299563 "87700",2004,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "305809",2007,37,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "380902",2008,59,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "158812",2003,33,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.68124123737559,107.903923866876 "306821",2007,23,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "231279",2006,37,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "12575",2005,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.30102999566398,27.1405792079024 "232850",2006,25,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "379119",2008,27,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.62940959910272,102.453557578372 "81696",2004,47,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.60688524128857,272.294783220064 "378745",2008,52,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "304502",2007,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "80930",2004,33,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.47712125471966,87.9810327856054 "9157",2005,37,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "377201",2008,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.38738982633873,80.4302079458208 "160496",2003,51,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5,148.413159102577 "306557",2007,40,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "302928",2007,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "7880",2005,64,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "379439",2008,54,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.38810120157052,80.487444359511 "155174",2003,50,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "80508",2004,32,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69460519893357,109.355626400253 "81575",2004,37,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "231191",2006,19,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "232830",2006,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "85999",2004,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "450673",2009,26,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60205999132796,99.6894636984864 "447485",2009,46,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.06069784035361,157.700527725737 "453584",2009,18,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.90308998699194,49.5553381215226 "8016",2005,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.50514997831991,90.4819133566401 "160160",2003,62,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "380311",2008,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "11315",2005,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.89209460269048,133.232350826567 "232256",2006,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.90308998699194,134.705375118879 "80679",2004,32,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "229791",2006,48,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "450800",2009,35,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "230173",2006,61,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.8750612633917,130.982177377461 "228889",2006,47,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.49136169383427,89.2428846644714 "7978",2005,55,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "374363",2008,28,"1. Male","4. Divorced","4. Other","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "380398",2008,52,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",5.00860017176192,149.695042068453 "452862",2009,27,"1. Male","1. Never Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "228899",2006,22,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "232593",2006,20,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.24748226067705,69.9291272064087 "231255",2006,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.67209785793572,106.921814091211 "306356",2007,29,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "158824",2003,31,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "380061",2008,59,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.02118929906994,151.591484239814 "376529",2008,36,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "304383",2007,32,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.20411998265593,66.9616443217359 "10445",2005,32,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.64345267648619,103.90247060316 "229647",2006,25,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "377052",2008,43,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.90308998699194,134.705375118879 "380800",2008,44,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.77815125038364,43.7351116779821 "450000",2009,57,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.75966784468963,116.707154559148 "233715",2006,49,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "304660",2007,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.9731278535997,144.47808766541 "233026",2006,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "80647",2004,58,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "87572",2004,59,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.2430380486863,189.244162932803 "11809",2005,39,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "233001",2006,60,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.56467789772798,96.0316570194457 "305553",2007,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.71011736511182,111.065194319742 "379752",2008,44,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "380738",2008,70,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "447577",2009,27,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "87038",2004,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.77815125038364,118.884359339886 "154076",2003,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.84509804001426,127.115743812184 "374391",2008,29,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "449807",2009,42,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.72427586960079,112.6488963421 "307460",2007,51,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.64100585131578,281.745970551857 "449365",2009,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.74037848173373,114.477521132502 "378727",2008,48,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.7160033436348,111.720849360989 "156087",2003,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.90308998699194,134.705375118879 "12157",2005,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.32221929473392,75.3556793180091 "301568",2007,31,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.78532983501077,119.74085129618 "10832",2005,59,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "160170",2003,19,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.30102999566398,27.1405792079024 "453712",2009,42,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.20411998265593,182.020620963512 "87395",2004,35,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "305387",2007,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.95424250943933,141.77517233318 "229944",2006,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "380031",2008,58,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.90969506679213,135.59805975224 "231476",2006,26,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "154504",2003,30,"1. Male","1. Never Married","3. Asian","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "231749",2006,54,"1. Male","5. Separated","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62689955920852,277.79948020565 "377308",2008,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "8330",2005,44,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "154617",2003,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.56820172406699,96.3706528322308 "87791",2004,73,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.32221929473392,75.3556793180091 "230102",2006,65,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "157248",2003,28,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.55630250076729,95.2307125669819 "447647",2009,53,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4,54.5981500331442 "231197",2006,53,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.49136169383427,89.2428846644714 "379516",2008,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "451555",2009,27,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.57333584006607,96.8667032433329 "158257",2003,57,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "81725",2004,32,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.43136376415899,84.0459576539924 "305274",2007,51,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.9982593384237,148.155046727428 "379947",2008,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",3.90308998699194,49.5553381215226 "84795",2004,50,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "83423",2004,53,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7481880270062,115.375038556391 "301999",2007,54,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.17609125905568,65.1108537153447 "305108",2007,24,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "375810",2008,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "153403",2003,30,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.55630250076729,95.2307125669819 "154768",2003,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "302561",2007,55,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.9912260756925,147.116689159978 "153724",2003,45,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.94448267215017,140.398200161944 "84494",2004,44,"1. Male","1. Never Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "83214",2004,37,"1. Male","3. Widowed","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "378589",2008,41,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.7481880270062,115.375038556391 "307823",2007,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.07918124604763,59.0970640815891 "303202",2007,52,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "452445",2009,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "159137",2003,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.26140562707414,70.9095858696657 "451436",2009,27,"1. Male","1. Never Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.30102999566398,200.543262324662 "232410",2006,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.57978359661681,97.4932940453934 "307670",2007,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "159052",2003,30,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.23044892137827,186.876677628007 "155165",2003,43,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "13246",2005,48,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "158241",2003,33,"1. Male","1. Never Married","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.15836249209525,63.9666908300607 "379243",2008,29,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "9196",2005,24,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "450568",2009,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "7781",2005,50,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.95424250943933,141.77517233318 "10997",2005,24,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.34242268082221,76.8936025176112 "153426",2003,42,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.81954393554187,123.908567597957 "80273",2004,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "374547",2008,49,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.63191940591859,279.1974969917 "85217",2004,46,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4,54.5981500331442 "377128",2008,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "158403",2003,41,"1. Male","1. Never Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.19312459835446,180.030197076236 "228131",2006,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "452170",2009,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "154530",2003,34,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.51851393987789,91.6992261117042 "81780",2004,24,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.07918124604763,59.0970640815891 "378629",2008,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.81954393554187,123.908567597957 "305370",2007,33,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "301646",2007,25,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "12249",2005,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.76342799356294,117.146816914805 "302635",2007,48,"1. Male","1. Never Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "8793",2005,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.57978359661681,97.4932940453934 "12032",2005,25,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77085201164214,118.019753340006 "13257",2005,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "156095",2003,27,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.75511226639507,116.176695171054 "232674",2006,58,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.32221929473392,75.3556793180091 "378952",2008,52,"1. Male","4. Divorced","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "304280",2007,60,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.7160033436348,111.720849360989 "376160",2008,39,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.64345267648619,103.90247060316 "86736",2004,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.9912260756925,147.116689159978 "305599",2007,31,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "9903",2005,45,"1. Male","3. Widowed","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "13558",2005,43,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.61278385671974,100.764272842107 "378086",2008,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.79239168949825,120.589436530402 "80963",2004,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.26717172840301,193.866878146586 "376772",2008,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "453319",2009,51,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.59061783348625,267.901086855275 "231608",2006,47,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.16136800223498,174.402876012275 "87803",2004,52,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.89762709129044,133.971500070695 "154604",2003,31,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "304641",2007,40,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "452853",2009,26,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "85681",2004,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.55630250076729,95.2307125669819 "452452",2009,38,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.69897000433602,109.833985642199 "8297",2005,50,"1. Male","2. Married","4. Other","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.7160033436348,111.720849360989 "233667",2006,63,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "377125",2008,35,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.45319598633954,85.9010443226556 "380656",2008,29,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "374314",2008,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "306069",2007,29,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.53147891704226,92.8958447894966 "306727",2007,62,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "379612",2008,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.82607480270083,124.720446242886 "153785",2003,56,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85125834871908,127.901232979118 "157154",2003,58,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.57978359661681,97.4932940453934 "306904",2007,39,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.29003461136252,198.350290464385 "9761",2005,49,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.53147891704226,92.8958447894966 "86702",2004,24,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "158105",2003,61,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "379806",2008,58,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "449268",2009,47,"1. Male","2. Married","3. Asian","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "83615",2004,41,"1. Male","5. Separated","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "378890",2008,71,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "230899",2006,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.01110502981598,150.070476909424 "9311",2005,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.17609125905568,176.989650489877 "7750",2005,31,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "302750",2007,56,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.82930377283103,125.12381572196 "231066",2006,44,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62689955920852,277.79948020565 "157343",2003,33,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "9952",2005,36,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.10659881321254,60.7397785177603 "233281",2006,31,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.52218331761869,92.0363233010764 "86503",2004,55,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "14172",2005,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.20411998265593,66.9616443217359 "14341",2005,50,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "231725",2006,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.13987908640124,170.6951277113 "377627",2008,25,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "375298",2008,55,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "84172",2004,28,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "154047",2003,30,"1. Male","2. Married","4. Other","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.81291335664286,123.089699847943 "375008",2008,46,"1. Male","1. Never Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.79239168949825,120.589436530402 "86259",2004,48,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.8750612633917,130.982177377461 "230737",2006,42,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "378052",2008,23,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.60205999132796,36.6737041960799 "155909",2003,60,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "375457",2008,34,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.3096301674259,74.412963512917 "155588",2003,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.86033800657099,129.067820506745 "306550",2007,28,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.4320066872696,84.1000101164483 "82560",2004,33,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.22530928172586,185.918662879754 "379734",2008,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "376576",2008,47,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.09691001300806,163.515863976238 "158927",2003,24,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.14612803567824,63.1888610037461 "374739",2008,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.90308998699194,134.705375118879 "83417",2004,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.79518458968242,120.926701544426 "14351",2005,23,"1. Male","1. Never Married","4. Other","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "159265",2003,56,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.88649072517248,132.487821126123 "157150",2003,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.89209460269048,133.232350826567 "451548",2009,58,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "302614",2007,30,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "453033",2009,46,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.01283722470517,150.330653495766 "84994",2004,48,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.63108441419736,278.964466695847 "227948",2006,50,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.58771096501891,98.2692308087927 "380920",2008,43,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "231461",2006,37,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "160102",2003,49,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.17609125905568,176.989650489877 "449353",2009,31,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "448411",2009,54,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "306810",2007,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.93951925261862,139.703071527658 "155681",2003,70,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.36172783601759,78.3924668009837 "10055",2005,30,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424733490676,141.775856466307 "233682",2006,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.75587485567249,116.265324062503 "157882",2003,34,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "302173",2007,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "231216",2006,28,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.50514997831991,90.4819133566401 "9850",2005,38,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "161403",2003,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.14460533871474,63.0927167348386 "377645",2008,52,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.17609125905568,65.1108537153447 "84260",2004,34,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.02118929906994,151.591484239814 "155985",2003,33,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "306353",2007,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "228023",2006,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.38021124171161,79.8549003093467 "156832",2003,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.64443858946784,104.004959912222 "304488",2007,63,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.01703333929878,55.5361044177385 "305737",2007,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "303148",2007,31,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "302080",2007,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.26503255685882,193.452606894109 "447857",2009,21,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.63346845557959,102.870246933215 "233741",2006,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.10380372095596,164.646988930328 "85657",2004,18,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.24303804868629,69.6190369046763 "379124",2008,28,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "157694",2003,33,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "83479",2004,32,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "450888",2009,29,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "14252",2005,28,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.41497334797082,82.6796372966372 "14421",2005,42,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.76168733198664,116.943081320617 "301908",2007,28,"1. Male","3. Widowed","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4,54.5981500331442 "452061",2009,36,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "304906",2007,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "302424",2007,53,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.64100585131578,281.745970551857 "159404",2003,48,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.09691001300806,163.515863976238 "231750",2006,36,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.18858541025256,179.214858036271 "305745",2007,55,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.83884909073726,126.323880709786 "376178",2008,37,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.25527250510331,70.4760196469445 "450343",2009,68,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77085201164214,118.019753340006 "160548",2003,65,"1. Male","2. Married","4. Other","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.26717172840301,71.3196387942183 "302678",2007,37,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.74036268949424,114.475713290347 "302085",2007,33,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "159635",2003,19,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4,54.5981500331442 "81174",2004,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "82948",2004,22,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.38738982633873,80.4302079458208 "82251",2004,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.49136169383427,89.2428846644714 "379828",2008,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.76342799356294,117.146816914805 "450063",2009,36,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.84509804001426,127.115743812184 "9535",2005,37,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "154111",2003,24,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.95904139232109,52.4070640482002 "305404",2007,66,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "85550",2004,35,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.14612803567824,63.1888610037461 "447980",2009,33,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.27875360095283,196.125272594255 "14481",2005,44,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "85819",2004,48,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "450651",2009,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.93651374247889,51.2396549228382 "82222",2004,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "12508",2005,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.14612803567824,63.1888610037461 "377741",2008,74,"1. Male","4. Divorced","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5,148.413159102577 "302139",2007,33,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "153833",2003,62,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.8750612633917,130.982177377461 "85624",2004,56,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "230790",2006,29,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "449764",2009,56,"1. Male","1. Never Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.38021124171161,79.8549003093467 "449202",2009,47,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "13741",2005,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "302523",2007,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "81623",2004,25,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "13718",2005,45,"1. Male","4. Divorced","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.32221929473392,75.3556793180091 "10378",2005,40,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.91381385238372,136.15771083723 "161366",2003,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.90308998699194,134.705375118879 "9215",2005,56,"1. Male","2. Married","3. Asian","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.40654018043396,81.9853178344996 "157493",2003,47,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "302363",2007,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.7781657266251,118.886080351034 "11991",2005,38,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7979596437372,121.262745732618 "449684",2009,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "11238",2005,44,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60205999132796,99.6894636984864 "159751",2003,42,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.81954393554187,123.908567597957 "452407",2009,55,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "233537",2006,61,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "229847",2006,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "9864",2005,30,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "447299",2009,49,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "231895",2006,33,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.91381385238372,136.15771083723 "230128",2006,31,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.39794000867204,81.2832532842527 "12999",2005,35,"1. Male","1. Never Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.22696059353245,68.5086896572248 "160782",2003,55,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "379257",2008,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "161228",2003,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77085201164214,118.019753340006 "232829",2006,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "234092",2006,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "84421",2004,47,"1. Male","2. Married","3. Asian","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "157953",2003,60,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.81291335664286,123.089699847943 "86497",2004,28,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "7737",2005,28,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "13471",2005,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.09691001300806,163.515863976238 "448820",2009,29,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.76342799356294,117.146816914805 "85643",2004,40,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.52504480703685,92.3000614282589 "453480",2009,32,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60530504614111,100.013486924706 "85241",2004,33,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.00860017176192,55.0697284222779 "156206",2003,40,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "84713",2004,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "155666",2003,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.7481880270062,115.375038556391 "83567",2004,39,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.30102999566398,73.7757432746946 "449541",2009,44,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.59061783348625,267.901086855275 "448368",2009,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.86332286012046,129.453644576625 "377037",2008,44,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.56820172406699,96.3706528322308 "231115",2006,29,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "305375",2007,49,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "303226",2007,47,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "85015",2004,46,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.24990244443139,190.547678564741 "228219",2006,41,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77085201164214,118.019753340006 "379558",2008,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.38021124171161,79.8549003093467 "160043",2003,43,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.28330122870355,72.4793162971252 "82149",2004,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "156798",2003,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.31005573775089,74.4446382014083 "9029",2005,56,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "157633",2003,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "9820",2005,29,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "448635",2009,33,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.59061783348625,267.901086855275 "81776",2004,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "86230",2004,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.53147891704226,92.8958447894966 "84040",2004,44,"1. Male","1. Never Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.25527250510331,70.4760196469445 "11619",2005,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.30102999566398,200.543262324662 "87714",2004,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "14549",2005,29,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "83620",2004,42,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "378744",2008,68,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "10047",2005,47,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "11784",2005,30,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "12453",2005,39,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.21748394421391,67.8625234113681 "378962",2008,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.83250891270624,125.525498433836 "230457",2006,49,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.10720996964787,165.208773767255 "447527",2009,36,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "154701",2003,44,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.72427586960079,112.6488963421 "453719",2009,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "153784",2003,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.31806333496276,75.0431540173515 "160819",2003,39,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "380247",2008,30,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.07918124604763,59.0970640815891 "81823",2004,33,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.15533603746506,63.7733911962488 "155141",2003,28,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.43136376415899,84.0459576539924 "156716",2003,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54262627781805,93.9371815810521 "7546",2005,30,"1. Male","2. Married","4. Other","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "374359",2008,25,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "301939",2007,52,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "306511",2007,26,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.20411998265593,66.9616443217359 "452755",2009,54,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "8667",2005,62,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "450499",2009,57,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.95424250943933,141.77517233318 "156050",2003,32,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.96378782734556,143.134940811134 "160046",2003,60,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",3.55630250076729,35.0334213214995 "87749",2004,40,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "8363",2005,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.70965997225026,111.014405508798 "234293",2006,54,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.88649072517248,132.487821126123 "448089",2009,48,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "453187",2009,35,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "447835",2009,46,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.96772577592089,143.699710133813 "307486",2007,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "82464",2004,58,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.60688524128857,272.294783220064 "155315",2003,30,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.30102999566398,200.543262324662 "380158",2008,27,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.4471890512688,85.3865890236244 "375387",2008,55,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "85776",2004,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.1117328566111,61.0524210501246 "229893",2006,55,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "229973",2006,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.98227123303957,145.805163374625 "13960",2005,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.72427586960079,112.6488963421 "234361",2006,27,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.67209785793572,106.921814091211 "301929",2007,49,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.67209785793572,106.921814091211 "306789",2007,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "230376",2006,50,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "380304",2008,44,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.9731278535997,144.47808766541 "306501",2007,57,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.07773117965239,160.409701962289 "376743",2008,72,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.47712125471966,87.9810327856054 "230371",2006,23,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.17609125905568,65.1108537153447 "304137",2007,31,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "374823",2008,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4,54.5981500331442 "451590",2009,63,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "227916",2006,48,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.40303468374459,81.698421724729 "7993",2005,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.74036268949424,114.475713290347 "159388",2003,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.96028522328063,142.634472767972 "304858",2007,44,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "230749",2006,44,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "86325",2004,32,"1. Male","2. Married","4. Other","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4,54.5981500331442 "154901",2003,60,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "81954",2004,42,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "451332",2009,48,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "379839",2008,36,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47713573096112,87.9823064294987 "449978",2009,31,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "233080",2006,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "307530",2007,29,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.67209785793572,106.921814091211 "161327",2003,46,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.83884909073726,126.323880709786 "158949",2003,35,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "448811",2009,50,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.53147891704226,92.8958447894966 "11623",2005,25,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4,54.5981500331442 "10265",2005,33,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.56820172406699,96.3706528322308 "379315",2008,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "230661",2006,51,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "81295",2004,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "305243",2007,59,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.93449845124357,139.00340805947 "228627",2006,62,"1. Male","5. Separated","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "13060",2005,28,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "375312",2008,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "156535",2003,52,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "304223",2007,29,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.49415459401844,89.4924795180001 "307620",2007,34,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.53147891704226,92.8958447894966 "85969",2004,25,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4,54.5981500331442 "13360",2005,66,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "11113",2005,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.23044892137827,68.7480877337669 "305667",2007,45,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.53147891704226,92.8958447894966 "234017",2006,35,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "12837",2005,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "302321",2007,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "81373",2004,60,"1. Male","1. Never Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.34439227368511,77.0452008528242 "160726",2003,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "452148",2009,55,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "229256",2006,32,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "306650",2007,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.89209460269048,133.232350826567 "452276",2009,57,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.05690485133647,157.10350432345 "302510",2007,51,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.64100585131578,281.745970551857 "81228",2004,59,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.20411998265593,182.020620963512 "228440",2006,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77995705124691,119.09923477134 "228053",2006,56,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.27230584440209,71.6867436659172 "10471",2005,30,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "231759",2006,21,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.27875360095283,72.1504556815713 "155837",2003,60,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "302024",2007,60,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "301193",2007,48,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "158905",2003,39,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "453630",2009,32,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7481880270062,115.375038556391 "303454",2007,51,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.25527250510331,191.573683548412 "228501",2006,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.46239799789896,86.6951548289402 "304450",2007,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.32878720035453,75.8522371953675 "378489",2008,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "86991",2004,28,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.04139268515823,56.9055391446732 "153315",2003,24,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "231642",2006,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.53147891704226,92.8958447894966 "234448",2006,31,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "80744",2004,72,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.53147891704226,92.8958447894966 "374333",2008,50,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "304748",2007,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "232443",2006,27,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "451096",2009,27,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "82862",2004,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.84509804001426,127.115743812184 "380709",2008,20,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "376073",2008,49,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "301216",2007,25,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.16136800223498,64.1592325660882 "233939",2006,41,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.49415459401844,89.4924795180001 "451070",2009,53,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "449595",2009,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.84509804001426,127.115743812184 "158200",2003,32,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.20411998265593,66.9616443217359 "9638",2005,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "157436",2003,26,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "452319",2009,31,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.89209460269048,133.232350826567 "302474",2007,32,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "230090",2006,50,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.78887511577542,120.166119635421 "306734",2007,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.7481880270062,115.375038556391 "234336",2006,47,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.72427586960079,112.6488963421 "8827",2005,55,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "8301",2005,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "85748",2004,25,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.11394335230684,61.1875264339915 "376569",2008,60,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.56110138364906,95.6888119067371 "378593",2008,62,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.49136169383427,89.2428846644714 "158180",2003,63,"1. Male","5. Separated","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.85125834871908,127.901232979118 "82969",2004,31,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "228806",2006,29,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "380329",2008,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "304795",2007,28,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.3324384599156,76.1296996370986 "14455",2005,36,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.81291335664286,123.089699847943 "304663",2007,28,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "87070",2004,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "380220",2008,35,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.56820172406699,96.3706528322308 "12400",2005,46,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "303868",2007,37,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.50514997831991,90.4819133566401 "7845",2005,41,"1. Male","4. Divorced","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "234319",2006,59,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.30102999566398,73.7757432746946 "233042",2006,51,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.68124123737559,107.903923866876 "233381",2006,26,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "157856",2003,34,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.09691001300806,60.1541246622441 "82387",2004,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "301852",2007,23,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "82525",2004,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.96378782734556,143.134940811134 "449130",2009,25,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.23552844690755,69.0981838087226 "84343",2004,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.36921585741014,78.9816745162994 "452636",2009,36,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "233211",2006,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4,54.5981500331442 "233851",2006,34,"1. Male","5. Separated","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "12233",2005,34,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "12501",2005,55,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62618633492728,277.601417511009 "153789",2003,39,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.35945602012099,78.214575693165 "87826",2004,40,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.41497334797082,82.6796372966372 "8875",2005,32,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.76342799356294,117.146816914805 "229950",2006,63,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "85730",2004,38,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "377504",2008,67,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.07918124604763,59.0970640815891 "13650",2005,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.75587485567249,116.265324062503 "155246",2003,31,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.11394335230684,61.1875264339915 "227999",2006,41,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "157775",2003,47,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.36172783601759,78.3924668009837 "453565",2009,61,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.80617997398389,122.263673892802 "8927",2005,61,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "380898",2008,21,"1. Male","2. Married","4. Other","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4,54.5981500331442 "85375",2004,22,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.19033169817029,66.0446942318056 "153469",2003,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84385542262316,126.957885677185 "83341",2004,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "8279",2005,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85125834871908,127.901232979118 "307337",2007,36,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "13148",2005,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "84841",2004,54,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "85515",2004,27,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "86629",2004,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.88081359228079,131.737801155001 "231027",2006,35,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.30102999566398,73.7757432746946 "157246",2003,60,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "13588",2005,42,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.51745982654023,91.602615662534 "376203",2008,41,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "83057",2004,35,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.88016738443536,131.652698654268 "230814",2006,34,"1. Male","1. Never Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.73518995947785,309.5717712662 "305515",2007,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.2578944687308,70.6610476694407 "307267",2007,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.44090908206522,84.8520440937874 "88046",2004,59,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "302698",2007,29,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.64345267648619,103.90247060316 "232536",2006,32,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "158406",2003,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "452654",2009,30,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.66651798055488,106.326864894674 "155330",2003,33,"1. Male","1. Never Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.59769518592551,99.2552868268562 "307313",2007,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.89209460269048,133.232350826567 "159448",2003,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.36172783601759,78.3924668009837 "155833",2003,46,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "307280",2007,63,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "7401",2005,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.56820172406699,96.3706528322308 "11845",2005,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "307683",2007,46,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.64100585131578,281.745970551857 "8589",2005,45,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "375802",2008,48,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.30102999566398,200.543262324662 "305144",2007,28,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "453214",2009,65,"1. Male","4. Divorced","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.47712125471966,87.9810327856054 "8360",2005,50,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.57978359661681,97.4932940453934 "377324",2008,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.68124123737559,107.903923866876 "302793",2007,48,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.56110138364906,95.6888119067371 "154537",2003,30,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "232060",2006,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47035167934582,87.3874499713449 "83048",2004,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.48674209553399,88.8315691738134 "376922",2008,55,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "87672",2004,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.5506685412044,94.6956951317194 "234303",2006,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.80617997398389,122.263673892802 "374328",2008,41,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.88649072517248,132.487821126123 "158629",2003,34,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.56820172406699,96.3706528322308 "231349",2006,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.49136169383427,89.2428846644714 "377297",2008,49,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "230086",2006,62,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "81256",2004,31,"1. Male","1. Never Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "306063",2007,43,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60616631460762,100.099662492042 "378700",2008,43,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8998205024271,134.265677158654 "86261",2004,43,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "450507",2009,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.69635638873333,109.547296634249 "159849",2003,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.25527250510331,70.4760196469445 "301682",2007,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.97123408764553,144.204738892859 "448787",2009,29,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "82646",2004,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "81754",2004,46,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "14268",2005,40,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "85704",2004,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "233733",2006,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.7481880270062,115.375038556391 "229393",2006,38,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "83536",2004,32,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.61909333062674,101.402052302992 "375861",2008,28,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.97313709380952,144.479422679423 "14368",2005,33,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "85295",2004,44,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.09691001300806,163.515863976238 "231204",2006,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.39794000867204,81.2832532842527 "13498",2005,31,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.69897000433602,40.4056652596845 "302692",2007,48,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.57978359661681,97.4932940453934 "307635",2007,50,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.76342799356294,117.146816914805 "83924",2004,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "80239",2004,31,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.43136376415899,84.0459576539924 "379220",2008,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.48657215051836,88.8164739741151 "453870",2009,54,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.46239799789896,86.6951548289402 "85521",2004,24,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.32221929473392,75.3556793180091 "9738",2005,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.5910646070265,98.5993438603892 "157529",2003,65,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "307581",2007,28,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69722934275972,109.642968140263 "380007",2008,30,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.38021124171161,79.8549003093467 "453715",2009,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.11394335230684,166.324941233877 "381016",2008,35,"1. Male","5. Separated","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.93449845124357,139.00340805947 "8356",2005,46,"1. Male","2. Married","4. Other","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "156461",2003,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.44715803134222,85.3839403789827 "380325",2008,71,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60208170550921,99.6916283970721 "156598",2003,39,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "450872",2009,41,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.23044892137827,68.7480877337669 "305335",2007,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.93951925261862,139.703071527658 "449727",2009,76,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "452029",2009,20,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "232822",2006,34,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "158958",2003,26,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "233370",2006,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "161344",2003,25,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "233394",2006,62,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "233584",2006,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.19728055812562,180.779952229859 "448801",2009,37,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "302882",2007,32,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.49415459401844,89.4924795180001 "306349",2007,55,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.86923171973098,130.220832358777 "452162",2009,36,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.35024801833416,77.4976813877358 "231483",2006,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "82643",2004,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.22188609733587,185.283317088498 "305066",2007,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.85733249643127,128.680488220624 "11473",2005,34,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.9912260756925,147.116689159978 "86233",2004,39,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.67209785793572,106.921814091211 "12787",2005,50,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.7481880270062,115.375038556391 "233174",2006,54,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "303344",2007,60,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5,148.413159102577 "307057",2007,48,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "301337",2007,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.83884909073726,126.323880709786 "81731",2004,20,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "157918",2003,60,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.68124123737559,107.903923866876 "160058",2003,37,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4,54.5981500331442 "159843",2003,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "157233",2003,54,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.28330122870355,72.4793162971252 "231489",2006,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.8750612633917,130.982177377461 "452313",2009,32,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "233665",2006,35,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "157818",2003,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "376459",2008,38,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "13375",2005,62,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.38916608436453,80.5731997057359 "154265",2003,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "156078",2003,28,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.95424250943933,141.77517233318 "303231",2007,61,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "159873",2003,26,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "228330",2006,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "451634",2009,28,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.73239375982297,113.567089569751 "159186",2003,61,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.62099961890593,101.595538208147 "160564",2003,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "447672",2009,31,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "452613",2009,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "12504",2005,44,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.36172783601759,78.3924668009837 "302206",2007,46,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.76312762749814,318.342430056529 "234624",2006,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "159256",2003,40,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.57978359661681,97.4932940453934 "14460",2005,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.47567118832443,87.8535469003831 "233287",2006,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.21584369204863,184.167135799587 "452861",2009,43,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "88065",2004,30,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "7550",2005,58,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.07918124604763,59.0970640815891 "302313",2007,60,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "82600",2004,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.8750612633917,130.982177377461 "380306",2008,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "13488",2005,47,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "153493",2003,59,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.21018470547241,67.3689820806645 "227880",2006,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.42270471737679,83.3213415447885 "378323",2008,39,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "81976",2004,40,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.66275783168157,105.927810775063 "155452",2003,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "450962",2009,29,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "11853",2005,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.93449845124357,139.00340805947 "156191",2003,58,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.81291335664286,123.089699847943 "87661",2004,18,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.02530586526477,55.9974338324572 "82514",2004,35,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "378030",2008,30,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","2. No",5.03742649794062,154.072997206315 "157381",2003,48,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.77815125038364,118.884359339886 "86485",2004,27,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "10930",2005,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.79518458968242,120.926701544426 "307771",2007,34,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.57978359661681,97.4932940453934 "85202",2004,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "233889",2006,20,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.31806333496276,75.0431540173515 "7496",2005,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.49415459401844,89.4924795180001 "453337",2009,42,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.29003461136252,198.350290464385 "376076",2008,45,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.17840134153376,65.2614390229193 "160307",2003,59,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.68124123737559,107.903923866876 "161341",2003,44,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "11390",2005,67,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.34242268082221,76.8936025176112 "301389",2007,26,"1. Male","1. Never Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "304303",2007,40,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.94448267215017,140.398200161944 "87441",2004,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "12175",2005,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "12033",2005,43,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.94448267215017,140.398200161944 "82301",2004,34,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.38021124171161,79.8549003093467 "83227",2004,44,"1. Male","4. Divorced","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.38021124171161,79.8549003093467 "153765",2003,53,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.59198011410292,268.266292012557 "158059",2003,54,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.82607480270083,124.720446242886 "375572",2008,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5,148.413159102577 "448806",2009,30,"1. Male","1. Never Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "82280",2004,48,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "153375",2003,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "380151",2008,30,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.84509804001426,127.115743812184 "230950",2006,38,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.70757017609794,110.782650276254 "14546",2005,25,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "450602",2009,59,"1. Male","3. Widowed","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "81692",2004,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","2. No",5.60688524128857,272.294783220064 "158659",2003,40,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.59198011410292,268.266292012557 "306889",2007,36,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.09691001300806,163.515863976238 "379968",2008,60,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "10750",2005,40,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.81291335664286,123.089699847943 "155530",2003,28,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "86633",2004,34,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "378686",2008,39,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.16731733474818,175.443549299129 "10144",2005,26,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.56820172406699,96.3706528322308 "87286",2004,28,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.57403126772772,96.9340904570115 "87895",2004,27,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "375523",2008,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "451283",2009,38,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.7427934507407,311.934568896444 "14519",2005,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "380780",2008,58,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "86239",2004,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.92941892571429,138.299126920883 "10984",2005,32,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",3.86981820797933,47.933671329738 "231862",2006,27,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "449495",2009,51,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "448715",2009,50,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.89209460269048,133.232350826567 "448977",2009,25,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7481880270062,115.375038556391 "234530",2006,60,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.79518458968242,120.926701544426 "86190",2004,62,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5,148.413159102577 "230114",2006,53,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.79239168949825,120.589436530402 "447347",2009,39,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.9731278535997,144.47808766541 "155626",2003,23,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.50514997831991,90.4819133566401 "376579",2008,47,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5,148.413159102577 "451819",2009,32,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "155900",2003,57,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.59198011410292,268.266292012557 "8505",2005,40,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.36172783601759,78.3924668009837 "234613",2006,57,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "11832",2005,31,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "11081",2005,28,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.49136169383427,89.2428846644714 "301246",2007,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "375987",2008,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "156259",2003,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.25527250510331,70.4760196469445 "85655",2004,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.68841982200271,108.681308237349 "448836",2009,27,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.38916608436453,80.5731997057359 "153902",2003,19,"1. Male","1. Never Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "305415",2007,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "9743",2005,44,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "230054",2006,32,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "12519",2005,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4,54.5981500331442 "227962",2006,31,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.19312459835446,66.2294082943902 "83739",2004,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.60688524128857,272.294783220064 "157490",2003,50,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "82456",2004,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",3.84509804001426,46.7632687977187 "159012",2003,20,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "88116",2004,33,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.39794000867204,81.2832532842527 "376549",2008,26,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "87170",2004,40,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.11394335230684,166.324941233877 "11435",2005,29,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "85129",2004,35,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "448698",2009,34,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "154709",2003,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "379618",2008,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.08707120590654,161.914951381929 "161267",2003,22,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "380753",2008,39,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60205999132796,99.6894636984864 "153467",2003,42,"1. Male","2. Married","3. Asian","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.64345267648619,103.90247060316 "231484",2006,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69019608002851,108.874525834712 "379211",2008,45,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "156236",2003,42,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "450978",2009,52,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "84773",2004,27,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.72015930340596,112.186122875854 "449829",2009,46,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.13033376849501,169.073540049428 "305946",2007,59,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.56820172406699,96.3706528322308 "12507",2005,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.39794000867204,81.2832532842527 "154311",2003,19,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4,54.5981500331442 "154975",2003,64,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.68124123737559,107.903923866876 "307420",2007,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.91907809237607,136.876367635184 "228741",2006,45,"1. Male","5. Separated","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.17609125905568,65.1108537153447 "376605",2008,53,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.19033169817029,179.528092196451 "304583",2007,28,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.19312459835446,66.2294082943902 "159573",2003,39,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "375743",2008,52,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.17609125905568,176.989650489877 "449387",2009,41,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.74036268949424,114.475713290347 "83565",2004,44,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.34242268082221,76.8936025176112 "7664",2005,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "157200",2003,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "230665",2006,31,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "12813",2005,28,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.64345267648619,103.90247060316 "302409",2007,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "83416",2004,56,"1. Male","3. Widowed","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "83964",2004,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.91381385238372,136.15771083723 "13483",2005,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "232794",2006,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "447864",2009,28,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.57978359661681,97.4932940453934 "452049",2009,19,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.77815125038364,43.7351116779821 "87163",2004,48,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.76342799356294,117.146816914805 "157204",2003,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "80604",2004,57,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.60688524128857,272.294783220064 "161272",2003,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "87121",2004,45,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.20411998265593,66.9616443217359 "231993",2006,52,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.85125834871908,127.901232979118 "377133",2008,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "449641",2009,46,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.30997065704107,74.4383046681824 "156429",2003,45,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.96378782734556,143.134940811134 "12311",2005,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "379397",2008,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "84236",2004,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.79934054945358,121.430313822622 "451645",2009,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.5910646070265,98.5993438603892 "8988",2005,49,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "307325",2007,57,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "11919",2005,77,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "11403",2005,48,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.07918124604763,160.642475408263 "88019",2004,56,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "306940",2007,39,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.09691001300806,163.515863976238 "155528",2003,44,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.70757017609794,110.782650276254 "301789",2007,49,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "378048",2008,58,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4,54.5981500331442 "8841",2005,46,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.84447717574568,127.036846683616 "85602",2004,39,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.81291335664286,123.089699847943 "304529",2007,26,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "157296",2003,61,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "155829",2003,62,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "379034",2008,47,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.47712125471966,87.9810327856054 "153627",2003,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "229223",2006,35,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "380392",2008,61,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "158726",2003,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.90308998699194,134.705375118879 "377495",2008,18,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.34242268082221,76.8936025176112 "230878",2006,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.61909333062674,101.402052302992 "453110",2009,27,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "85888",2004,22,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.55630250076729,95.2307125669819 "376196",2008,29,"1. Male","2. Married","4. Other","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "228775",2006,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "153559",2003,25,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "304567",2007,35,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "83140",2004,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "450085",2009,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.97772360528885,145.143601176911 "378923",2008,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "87254",2004,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.85733249643127,128.680488220624 "9513",2005,66,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.53147891704226,92.8958447894966 "156960",2003,23,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.23044892137827,68.7480877337669 "80462",2004,28,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "304074",2007,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "306048",2007,20,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.77815125038364,43.7351116779821 "448446",2009,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.2430380486863,189.244162932803 "448106",2009,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",3.47712125471966,32.3664131748549 "86335",2004,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "230002",2006,64,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "447211",2009,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5,148.413159102577 "305589",2007,52,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "8755",2005,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.81291335664286,123.089699847943 "13308",2005,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "448287",2009,40,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.31806333496276,75.0431540173515 "10187",2005,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.07918124604763,160.642475408263 "80524",2004,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "377969",2008,55,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "153484",2003,53,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "11876",2005,33,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "229679",2006,45,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.55630250076729,95.2307125669819 "229435",2006,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "80558",2004,32,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.43136376415899,84.0459576539924 "11650",2005,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.17609125905568,176.989650489877 "82081",2004,35,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "82799",2004,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "155256",2003,38,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "80446",2004,31,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "159200",2003,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "8197",2005,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.95904139232109,142.457169885112 "153388",2003,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "88113",2004,50,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "155513",2003,40,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.7160033436348,111.720849360989 "158884",2003,29,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.08813608870055,59.6286455536557 "230315",2006,25,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60205999132796,99.6894636984864 "86782",2004,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "306149",2007,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.46239799789896,86.6951548289402 "380883",2008,29,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.53307266004881,93.0440149336701 "7639",2005,32,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "381143",2008,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "9181",2005,59,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "158451",2003,31,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.47712125471966,87.9810327856054 "229117",2006,29,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.68574173860226,108.390640020409 "233600",2006,52,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "231346",2006,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.30102999566398,73.7757432746946 "379646",2008,28,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.66692026535949,106.369647181498 "228164",2006,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.36172783601759,78.3924668009837 "85693",2004,49,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.28443073384452,72.5612283088075 "452344",2009,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.30105170984523,73.7773452719489 "160400",2003,26,"1. Male","1. Never Married","4. Other","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.64345267648619,38.2235828218228 "160533",2003,31,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "307204",2007,50,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.92022771145693,50.4119228435697 "450078",2009,62,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.1385016384297,170.460165914858 "84607",2004,35,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.81291335664286,123.089699847943 "10989",2005,22,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "155859",2003,55,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.70757017609794,110.782650276254 "234391",2006,63,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.83250891270624,125.525498433836 "81772",2004,63,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.31806333496276,75.0431540173515 "377896",2008,39,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.55630250076729,95.2307125669819 "153951",2003,28,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "231716",2006,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "229399",2006,58,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.25527250510331,70.4760196469445 "302102",2007,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "81714",2004,49,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.93559794430031,139.156325391862 "155433",2003,62,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",3.23044892137827,25.2910080971035 "87168",2004,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.39995047438631,81.4468348606011 "85320",2004,54,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "7420",2005,26,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.75739602879302,116.442318333651 "451424",2009,46,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "229703",2006,58,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.00860017176192,149.695042068453 "14417",2005,22,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "9241",2005,58,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.62618633492728,277.601417511009 "377591",2008,63,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.91907809237607,136.876367635184 "302226",2007,67,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.86332286012046,129.453644576625 "376645",2008,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "157321",2003,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.18571209987001,178.700657207025 "154342",2003,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.90308998699194,49.5553381215226 "301885",2007,43,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "84599",2004,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "374558",2008,31,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.53147891704226,92.8958447894966 "301209",2007,41,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "378837",2008,21,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.43136376415899,84.0459576539924 "374851",2008,51,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.34242268082221,76.8936025176112 "153917",2003,43,"1. Male","5. Separated","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "86617",2004,34,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "374294",2008,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "375787",2008,35,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "83031",2004,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "155234",2003,46,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "156931",2003,38,"1. Male","1. Never Married","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "84305",2004,44,"1. Male","1. Never Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.50514997831991,90.4819133566401 "233131",2006,50,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.71601169537145,111.721782427997 "451873",2009,55,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.68124123737559,107.903923866876 "452428",2009,49,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.25527250510331,191.573683548412 "232403",2006,47,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "158091",2003,40,"1. Male","2. Married","4. Other","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.93187467468532,138.639172221569 "159901",2003,21,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.98227123303957,53.6387220221678 "374894",2008,60,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.53317446074239,93.0534873610655 "376018",2008,56,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "85534",2004,61,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.85733249643127,128.680488220624 "378978",2008,44,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.91381385238372,136.15771083723 "305552",2007,43,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.07918124604763,160.642475408263 "12671",2005,29,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "157620",2003,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5,148.413159102577 "156543",2003,26,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.68574173860226,108.390640020409 "234246",2006,28,"1. Male","1. Never Married","4. Other","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.20682587603185,67.1430807546635 "157606",2003,38,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77085201164214,118.019753340006 "230929",2006,45,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "87063",2004,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.85733249643127,47.3389060962716 "157575",2003,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.14176323027579,62.91365496918 "8274",2005,44,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.25527250510331,70.4760196469445 "229913",2006,48,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "301692",2007,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.53035340356016,92.7913480810133 "304818",2007,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60208170550921,99.6916283970721 "448786",2009,40,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.74036268949424,114.475713290347 "229605",2006,71,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.49136169383427,89.2428846644714 "231509",2006,30,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.77815125038364,118.884359339886 "80950",2004,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "87704",2004,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "158664",2003,40,"1. Male","2. Married","4. Other","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "81095",2004,59,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.49052030936335,89.1678286670778 "302918",2007,46,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "161349",2003,38,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.25527250510331,70.4760196469445 "306415",2007,26,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.53781909507327,93.4866920429597 "10603",2005,53,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.25527250510331,70.4760196469445 "86007",2004,46,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "306146",2007,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.5910646070265,98.5993438603892 "234661",2006,28,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4,54.5981500331442 "84287",2004,30,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.46239799789896,86.6951548289402 "377509",2008,34,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "377763",2008,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",5.07918124604763,160.642475408263 "306688",2007,22,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.07918124604763,59.0970640815891 "302888",2007,37,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.52968695377292,92.7295279091354 "377799",2008,27,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.14612803567824,63.1888610037461 "381003",2008,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "380799",2008,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.17609125905568,65.1108537153447 "83368",2004,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "11548",2005,54,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69583177282669,109.489841452174 "304155",2007,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "9144",2005,21,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "11624",2005,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "153897",2003,72,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.2430380486863,189.244162932803 "157384",2003,38,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "453498",2009,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "229614",2006,35,"1. Male","5. Separated","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "380993",2008,60,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "159758",2003,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "10899",2005,45,"1. Male","4. Divorced","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.30102999566398,73.7757432746946 "374347",2008,61,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.66915875743291,106.608021493532 "374986",2008,64,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.55630250076729,95.2307125669819 "81794",2004,39,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.25527250510331,70.4760196469445 "303090",2007,46,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.66275783168157,105.927810775063 "375451",2008,25,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.03342375548695,56.4538649754188 "154262",2003,80,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "379725",2008,51,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "88050",2004,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.31806333496276,75.0431540173515 "451349",2009,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "84848",2004,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "306255",2007,41,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "82384",2004,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.55630250076729,95.2307125669819 "378696",2008,31,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "85794",2004,49,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "450118",2009,47,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.50514997831991,90.4819133566401 "9457",2005,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "230105",2006,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "153266",2003,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.44715803134222,85.3839403789827 "157526",2003,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.25527250510331,191.573683548412 "234243",2006,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "231448",2006,39,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "449095",2009,63,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.14612803567824,171.765132627508 "303172",2007,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.29666519026153,73.4544282607621 "81506",2004,62,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "80235",2004,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.60688524128857,272.294783220064 "87943",2004,29,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.63346845557959,102.870246933215 "83985",2004,43,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "375234",2008,34,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.81291335664286,123.089699847943 "156633",2003,38,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "14384",2005,25,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "8450",2005,64,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "160165",2003,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "451015",2009,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.4345689040342,84.3157688645753 "232095",2006,30,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "154723",2003,33,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.04921802267018,57.3525910796177 "304780",2007,29,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "377397",2008,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.83250891270624,125.525498433836 "303182",2007,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69019608002851,108.874525834712 "11131",2005,40,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.17609125905568,65.1108537153447 "7535",2005,24,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "375336",2008,30,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.26007138798508,70.8150386167557 "451744",2009,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "232578",2006,47,"1. Male","2. Married","4. Other","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "374914",2008,25,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.43136376415899,84.0459576539924 "307821",2007,44,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "305822",2007,41,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.57978359661681,97.4932940453934 "7495",2005,54,"1. Male","5. Separated","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "449798",2009,59,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.30102999566398,200.543262324662 "159599",2003,25,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.0899051114394,59.7342233407467 "448887",2009,63,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.51851393987789,91.6992261117042 "453745",2009,49,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "375738",2008,35,"1. Male","5. Separated","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "229672",2006,24,"1. Male","1. Never Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.19312459835446,66.2294082943902 "161522",2003,66,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.53147891704226,92.8958447894966 "378510",2008,57,"1. Male","2. Married","4. Other","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "160189",2003,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "230629",2006,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.88649072517248,132.487821126123 "233946",2006,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "86943",2004,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.60205999132796,99.6894636984864 "230497",2006,23,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.69897000433602,40.4056652596845 "377005",2008,30,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "80350",2004,38,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.63346845557959,102.870246933215 "81917",2004,43,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "301556",2007,58,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.7160033436348,111.720849360989 "8888",2005,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.13033376849501,62.198679430261 "307676",2007,48,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.25527250510331,70.4760196469445 "7381",2005,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.45484486000851,86.0428011301927 "233790",2006,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "303636",2007,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.73239375982297,113.567089569751 "81716",2004,58,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.61278385671974,100.764272842107 "158585",2003,20,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.11394335230684,61.1875264339915 "307816",2007,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.73279569828933,113.61274572643 "154833",2003,50,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "450754",2009,55,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.6532318153234,104.923531700709 "157064",2003,39,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "377858",2008,32,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62321723414596,276.778413321176 "380391",2008,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5,148.413159102577 "452617",2009,24,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5,148.413159102577 "452685",2009,53,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "154958",2003,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.39794000867204,81.2832532842527 "161421",2003,25,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "229694",2006,24,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "7822",2005,57,"1. Male","5. Separated","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "12679",2005,43,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.17609125905568,65.1108537153447 "447486",2009,33,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.48072537898849,88.2986994723057 "13835",2005,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "379762",2008,39,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "81141",2004,32,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.25527250510331,70.4760196469445 "7699",2005,48,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "85842",2004,29,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "12364",2005,35,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.5910646070265,98.5993438603892 "84080",2004,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.89209460269048,133.232350826567 "451706",2009,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "14152",2005,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.51851393987789,91.6992261117042 "85144",2004,35,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.07913781442782,160.635498596854 "302797",2007,27,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "81223",2004,57,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "88062",2004,48,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.57978359661681,97.4932940453934 "452864",2009,41,"1. Male","4. Divorced","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.5854607295085,98.0483505056004 "12144",2005,59,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "160944",2003,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "8105",2005,54,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.89209460269048,133.232350826567 "154672",2003,34,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "453271",2009,43,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "155921",2003,43,"1. Male","4. Divorced","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "154732",2003,62,"1. Male","3. Widowed","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.12762304959803,62.0303046060726 "233690",2006,45,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.57978359661681,97.4932940453934 "86143",2004,40,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.98227123303957,145.805163374625 "156740",2003,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "12718",2005,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5,148.413159102577 "449744",2009,21,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.90308998699194,49.5553381215226 "448117",2009,54,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.30102999566398,73.7757432746946 "154750",2003,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "83654",2004,54,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "81277",2004,35,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "379686",2008,23,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.12057393120585,61.5945831752282 "227939",2006,61,"1. Male","3. Widowed","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.71349054309394,111.440469567068 "80897",2004,51,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "231662",2006,43,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "154839",2003,20,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.32221929473392,75.3556793180091 "305114",2007,51,"1. Male","2. Married","4. Other","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.93449845124357,139.00340805947 "450873",2009,65,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "447174",2009,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "377920",2008,24,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.19318027356535,66.2330957333126 "161041",2003,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.29446622616159,73.2930820722881 "14541",2005,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.8750612633917,130.982177377461 "376938",2008,33,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62321723414596,276.778413321176 "447645",2009,36,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.46487687145819,86.9103277389946 "80720",2004,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "447722",2009,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "155179",2003,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "8907",2005,33,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.91907809237607,136.876367635184 "160862",2003,47,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.43136376415899,84.0459576539924 "155453",2003,37,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.27875360095283,196.125272594255 "378199",2008,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.79934054945358,121.430313822622 "12156",2005,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.56848333727166,96.3977959023552 "447458",2009,57,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "232327",2006,61,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "301930",2007,47,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "158517",2003,29,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "12579",2005,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "13995",2005,57,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5,148.413159102577 "82195",2004,39,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.39794000867204,81.2832532842527 "306499",2007,59,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.98227123303957,145.805163374625 "302319",2007,31,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.00432137378264,149.055895589404 "447816",2009,26,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.57978359661681,97.4932940453934 "449074",2009,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77085201164214,118.019753340006 "229524",2006,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60205999132796,99.6894636984864 "232133",2006,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.77815125038364,118.884359339886 "85388",2004,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "13298",2005,32,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "307289",2007,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "7589",2005,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "9082",2005,40,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "305036",2007,60,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.04139268515823,154.68529299563 "302117",2007,30,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "160497",2003,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "450224",2009,32,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "449975",2009,26,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "80475",2004,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "378718",2008,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.90308998699194,134.705375118879 "13370",2005,35,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.57978359661681,97.4932940453934 "380165",2008,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "86118",2004,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.14612803567824,171.765132627508 "159505",2003,50,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.2169572073611,67.8267871319966 "450919",2009,19,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.30102999566398,73.7757432746946 "80496",2004,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.51851393987789,91.6992261117042 "302736",2007,53,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.20411998265593,66.9616443217359 "81910",2004,22,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.55630250076729,95.2307125669819 "159140",2003,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.5910646070265,98.5993438603892 "8846",2005,33,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "7415",2005,31,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "80565",2004,43,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.50514997831991,90.4819133566401 "452789",2009,57,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "13535",2005,40,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "156743",2003,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.43710021942166,84.5294690248517 "87391",2004,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "450392",2009,58,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "155733",2003,50,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "12600",2005,38,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "80237",2004,33,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.61909333062674,101.402052302992 "306346",2007,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.00432137378264,149.055895589404 "81445",2004,48,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.30102999566398,73.7757432746946 "231389",2006,53,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.07918124604763,160.642475408263 "378598",2008,37,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "306310",2007,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.78252278729839,119.405204322401 "380028",2008,54,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "86072",2004,41,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.04257551244019,154.868367231559 "11321",2005,57,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.32221929473392,75.3556793180091 "307301",2007,54,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77524625974024,118.539502533774 "447298",2009,25,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.34242268082221,76.8936025176112 "161253",2003,35,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.13033376849501,62.198679430261 "377359",2008,29,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.20411998265593,182.020620963512 "453728",2009,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.59061783348625,267.901086855275 "14042",2005,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.95424250943933,141.77517233318 "304908",2007,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.23044892137827,186.876677628007 "160028",2003,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.27875360095283,72.1504556815713 "13005",2005,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.90308998699194,49.5553381215226 "158124",2003,51,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "86567",2004,55,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "82851",2004,37,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.57978359661681,97.4932940453934 "305392",2007,48,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "153650",2003,42,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "304093",2007,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "233121",2006,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.47712125471966,87.9810327856054 "230850",2006,33,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.43136376415899,84.0459576539924 "157822",2003,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.36172783601759,78.3924668009837 "451294",2009,20,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.83657727484065,46.3665027412862 "14543",2005,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.88930170250631,132.860765311572 "159847",2003,58,"1. Male","4. Divorced","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.12057393120585,61.5945831752282 "83903",2004,38,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "378535",2008,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.19312459835446,66.2294082943902 "453171",2009,54,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69019608002851,108.874525834712 "301347",2007,66,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "453420",2009,47,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.02938377768521,152.838800991182 "155699",2003,35,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.34242268082221,76.8936025176112 "380739",2008,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.96378782734556,143.134940811134 "9766",2005,35,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.82994669594164,125.20428658029 "234383",2006,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.32559775286002,75.610695863947 "232723",2006,41,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "81234",2004,40,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "229581",2006,50,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.07918124604763,59.0970640815891 "87788",2004,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "452608",2009,43,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.55630250076729,95.2307125669819 "8652",2005,26,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "451324",2009,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.90308998699194,49.5553381215226 "160285",2003,61,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.8750612633917,130.982177377461 "84767",2004,24,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",3.77815125038364,43.7351116779821 "229001",2006,66,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "230839",2006,50,"1. Male","3. Widowed","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "11453",2005,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.31806333496276,75.0431540173515 "87015",2004,62,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.51851393987789,91.6992261117042 "157453",2003,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "87789",2004,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "10827",2005,54,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.13672056715641,170.156834417801 "450748",2009,29,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.92941892571429,138.299126920883 "83883",2004,39,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "230302",2006,71,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.47712125471966,87.9810327856054 "160949",2003,22,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.36172783601759,78.3924668009837 "302490",2007,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.81291335664286,123.089699847943 "452615",2009,35,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.75587485567249,116.265324062503 "156728",2003,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.50514997831991,90.4819133566401 "158466",2003,51,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "8344",2005,55,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "7436",2005,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "374803",2008,57,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "12491",2005,21,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "232762",2006,60,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "230998",2006,41,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.30102999566398,73.7757432746946 "84524",2004,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.93701610746481,139.353811767493 "13464",2005,32,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "159550",2003,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "234248",2006,36,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "234357",2006,28,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.16731733474818,64.5420748732979 "451267",2009,60,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.92941892571429,138.299126920883 "155944",2003,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.49136169383427,89.2428846644714 "228029",2006,55,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "159068",2003,36,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "228443",2006,46,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "376883",2008,62,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.49415459401844,89.4924795180001 "233097",2006,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.63245729218472,102.766280877288 "228418",2006,36,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "80966",2004,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "229478",2006,22,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "374483",2008,51,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.86740855652279,129.983634818897 "381181",2008,57,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.70757017609794,110.782650276254 "12955",2005,55,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "161502",2003,36,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "380218",2008,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62321723414596,276.778413321176 "156036",2003,38,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",3.17609125905568,23.9529444789965 "229899",2006,27,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.64345267648619,103.90247060316 "305122",2007,32,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "450849",2009,44,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.27230584440209,71.6867436659172 "376406",2008,56,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.62321723414596,276.778413321176 "303218",2007,38,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "156645",2003,36,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60205999132796,99.6894636984864 "14338",2005,28,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69019608002851,108.874525834712 "14140",2005,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "380621",2008,42,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.36925297501043,78.9846061809321 "447629",2009,51,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.41497334797082,82.6796372966372 "86490",2004,55,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.49415459401844,89.4924795180001 "302168",2007,39,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "158551",2003,42,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.69780453269401,109.706051812711 "233702",2006,33,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "378925",2008,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "160680",2003,40,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "158298",2003,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.39269695325967,80.8581959564691 "450290",2009,51,"1. Male","2. Married","3. Asian","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.68124123737559,107.903923866876 "305059",2007,76,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.34242268082221,76.8936025176112 "301937",2007,57,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "160924",2003,27,"1. Male","5. Separated","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "12963",2005,26,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.43136376415899,84.0459576539924 "10344",2005,25,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "8757",2005,27,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.61909333062674,101.402052302992 "82071",2004,33,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "155631",2003,51,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "9139",2005,22,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "10933",2005,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.85358871196926,128.199636871795 "449746",2009,34,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.91645394854993,136.517655222436 "379247",2008,47,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "13497",2005,31,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "14109",2005,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.51851393987789,91.6992261117042 "234415",2006,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.36172783601759,78.3924668009837 "234376",2006,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "155250",2003,40,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.91381385238372,136.15771083723 "85134",2004,51,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "381020",2008,31,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.33445375115093,76.2832778539642 "159971",2003,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "9591",2005,48,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.4749297859928,87.7884362154584 "83666",2004,54,"1. Male","4. Divorced","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "301931",2007,56,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.03742649794062,154.072997206315 "307750",2007,61,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "453302",2009,32,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "307225",2007,60,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.10380372095596,164.646988930328 "230293",2006,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "154660",2003,22,"1. Male","1. Never Married","3. Asian","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.80617997398389,44.9782920272516 "156739",2003,46,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.67024585307412,106.723977625299 "8789",2005,53,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "375928",2008,43,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "447995",2009,32,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.32221929473392,75.3556793180091 "447215",2009,30,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "448598",2009,50,"1. Male","1. Never Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "229234",2006,40,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62689955920852,277.79948020565 "447888",2009,55,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.38021124171161,79.8549003093467 "82715",2004,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "82946",2004,35,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.32221929473392,75.3556793180091 "80449",2004,33,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.6060372331735,100.086742317948 "86044",2004,33,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.63346845557959,102.870246933215 "157202",2003,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77670118398841,118.712094053725 "450096",2009,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "448535",2009,42,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.81624129999178,123.500017774584 "450450",2009,58,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "451844",2009,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.34242268082221,76.8936025176112 "451460",2009,47,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "11973",2005,30,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "452739",2009,34,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "230033",2006,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.00860017176192,149.695042068453 "377968",2008,58,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "447810",2009,44,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.6532318153234,104.923531700709 "9620",2005,28,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.11394335230684,61.1875264339915 "83273",2004,46,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "381222",2008,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "301976",2007,37,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.26007138798508,70.8150386167557 "381289",2008,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "307040",2007,56,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "450227",2009,38,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "302539",2007,41,"1. Male","1. Never Married","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.32221929473392,75.3556793180091 "86544",2004,62,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "86015",2004,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "84882",2004,44,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "301497",2007,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "378528",2008,51,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.34242268082221,76.8936025176112 "7539",2005,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.46239799789896,86.6951548289402 "14035",2005,52,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "379720",2008,27,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.61278385671974,100.764272842107 "87842",2004,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "12496",2005,51,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.20736503746907,67.1792914754174 "453550",2009,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.38021124171161,79.8549003093467 "12905",2005,28,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "307423",2007,49,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.05994188806195,57.9709421772731 "302880",2007,61,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "229722",2006,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "13420",2005,23,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.49415459401844,89.4924795180001 "305048",2007,53,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.02259743678984,151.805096289083 "81872",2004,55,"1. Male","1. Never Married","3. Asian","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "11889",2005,48,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "301313",2007,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "448972",2009,31,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "304644",2007,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.85733249643127,128.680488220624 "380216",2008,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.04139268515823,154.68529299563 "154881",2003,49,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.8750612633917,130.982177377461 "85010",2004,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.79239168949825,120.589436530402 "303653",2007,20,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "374554",2008,46,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.70205122487265,110.172930287822 "7830",2005,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.02530586526477,152.216806827106 "14307",2005,19,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.25527250510331,70.4760196469445 "83763",2004,56,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "161310",2003,44,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.6232492903979,101.82435207568 "450610",2009,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.44715803134222,85.3839403789827 "8736",2005,42,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "379881",2008,32,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "161031",2003,32,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "156574",2003,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "380839",2008,57,"1. Male","1. Never Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.93167140563483,138.610994032645 "380501",2008,26,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "449794",2009,67,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.02118929906994,151.591484239814 "81288",2004,31,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "231420",2006,49,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.64345267648619,103.90247060316 "10519",2005,29,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.85733249643127,128.680488220624 "381177",2008,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.69019608002851,108.874525834712 "229249",2006,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "453598",2009,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.55630250076729,95.2307125669819 "82185",2004,33,"1. Male","5. Separated","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.5910646070265,98.5993438603892 "453746",2009,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "448132",2009,43,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "86463",2004,36,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.55022835305509,94.6540203819701 "84715",2004,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "155547",2003,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "83136",2004,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "8414",2005,34,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54961623951909,94.5960991038653 "304459",2007,30,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.84509804001426,127.115743812184 "378108",2008,21,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.38021124171161,29.3769761006037 "155401",2003,39,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.86332286012046,129.453644576625 "228504",2006,28,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "376032",2008,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "305001",2007,24,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.50514997831991,90.4819133566401 "10568",2005,57,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.26007138798508,70.8150386167557 "158869",2003,48,"1. Male","5. Separated","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.55630250076729,95.2307125669819 "82571",2004,31,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "233856",2006,47,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.20411998265593,182.020620963512 "85706",2004,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.07918124604763,160.642475408263 "87534",2004,30,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.25527250510331,70.4760196469445 "158028",2003,41,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.8750612633917,130.982177377461 "376894",2008,26,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "450739",2009,32,"1. Male","1. Never Married","3. Asian","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "453840",2009,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.579554960401,97.4710060955894 "85005",2004,42,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.7160033436348,111.720849360989 "12029",2005,24,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.14875685132179,172.217265521809 "233756",2006,44,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.86332286012046,129.453644576625 "228877",2006,30,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "233966",2006,58,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "376565",2008,33,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "375596",2008,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.54406804435028,94.0727147457005 "7603",2005,28,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.57403126772772,96.9340904570115 "376986",2008,41,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62321723414596,276.778413321176 "448055",2009,22,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.47712125471966,32.3664131748549 "81116",2004,37,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.43616264704076,84.450253670189 "228861",2006,18,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "87034",2004,37,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.43933269383026,84.7183897030478 "305311",2007,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.12221587827283,167.706575552614 "378766",2008,49,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "13578",2005,36,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "302454",2007,47,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "160354",2003,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "452525",2009,34,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.74036268949424,114.475713290347 "83954",2004,62,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "302858",2007,44,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "11897",2005,48,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.02530586526477,152.216806827106 "305534",2007,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.82607480270083,124.720446242886 "448547",2009,35,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "154312",2003,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.49136169383427,89.2428846644714 "13095",2005,34,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "155937",2003,50,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "233677",2006,50,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.03342375548695,153.457515308961 "82261",2004,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",3.84509804001426,46.7632687977187 "450761",2009,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.86332286012046,129.453644576625 "11935",2005,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "449193",2009,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "13380",2005,30,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "13510",2005,34,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "303955",2007,50,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "82964",2004,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.70757017609794,110.782650276254 "155032",2003,53,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "81944",2004,40,"1. Male","1. Never Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "228060",2006,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "228305",2006,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "8471",2005,44,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5,148.413159102577 "375955",2008,54,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.55630250076729,95.2307125669819 "378357",2008,36,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.09691001300806,163.515863976238 "228453",2006,62,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.63300866811593,279.501781963737 "375260",2008,33,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.74036268949424,114.475713290347 "84747",2004,44,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.63346845557959,102.870246933215 "9001",2005,80,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "13523",2005,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "377490",2008,58,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.25527250510331,70.4760196469445 "85233",2004,51,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.6232492903979,101.82435207568 "8658",2005,60,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62618633492728,277.601417511009 "302756",2007,33,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.47712125471966,87.9810327856054 "228793",2006,28,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "85808",2004,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "229152",2006,56,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "449705",2009,59,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.14612803567824,171.765132627508 "85799",2004,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.31806333496276,75.0431540173515 "155865",2003,34,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.27875360095283,72.1504556815713 "85689",2004,37,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",3.54406804435028,34.6074177301288 "450894",2009,36,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "378221",2008,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "230406",2006,36,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.94448267215017,140.398200161944 "376602",2008,23,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.30102999566398,27.1405792079024 "156489",2003,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "7568",2005,33,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.74036268949424,114.475713290347 "453257",2009,48,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "376581",2008,28,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "379989",2008,37,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "234332",2006,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.46239799789896,86.6951548289402 "11046",2005,22,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.14612803567824,63.1888610037461 "303385",2007,60,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.74429298312268,114.926521781463 "450697",2009,30,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "156124",2003,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "161043",2003,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "449651",2009,55,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.63648789635337,103.181326958727 "233230",2006,26,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.73239375982297,113.567089569751 "231523",2006,39,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "154395",2003,42,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "304408",2007,71,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.66052397693021,105.69144753053 "380248",2008,33,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "83466",2004,49,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.94645226501307,51.7514403709426 "13091",2005,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.39794000867204,81.2832532842527 "84078",2004,41,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.06445798922692,158.294621427791 "14266",2005,59,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",3.99122607569249,54.121205395165 "82469",2004,33,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "450648",2009,47,"1. Male","1. Never Married","4. Other","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.27230584440209,71.6867436659172 "230082",2006,34,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "302568",2007,23,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "452618",2009,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85125834871908,127.901232979118 "449703",2009,30,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "228508",2006,54,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.49415459401844,89.4924795180001 "453301",2009,46,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "8172",2005,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.92427928606188,137.590142766506 "380101",2008,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.17609125905568,176.989650489877 "306319",2007,57,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.57978359661681,97.4932940453934 "10780",2005,46,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.61278385671974,100.764272842107 "8168",2005,30,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.39794000867204,81.2832532842527 "234147",2006,32,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.04139268515823,56.9055391446732 "379279",2008,53,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.66275783168157,105.927810775063 "13027",2005,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.92941892571429,138.299126920883 "159780",2003,31,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69019608002851,108.874525834712 "153749",2003,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.34242268082221,76.8936025176112 "87231",2004,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "381130",2008,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "83569",2004,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.32221929473392,75.3556793180091 "82380",2004,24,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.31175386105575,74.5711617723683 "87411",2004,53,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "80378",2004,39,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.55630250076729,95.2307125669819 "306390",2007,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.97772360528885,145.143601176911 "233582",2006,36,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.94448267215017,140.398200161944 "230156",2006,34,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "80860",2004,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "157459",2003,60,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.07918124604763,59.0970640815891 "228496",2006,43,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "453835",2009,20,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.16435285578444,64.3510245722737 "376688",2008,27,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.89209460269048,133.232350826567 "84683",2004,35,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.07918124604763,59.0970640815891 "380971",2008,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "448578",2009,56,"1. Male","2. Married","4. Other","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.09691001300806,60.1541246622441 "376787",2008,19,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.43152458418745,30.9237526933873 "231118",2006,35,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "7373",2005,23,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "156889",2003,45,"1. Male","3. Widowed","4. Other","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "80853",2004,54,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.17609125905568,65.1108537153447 "379750",2008,43,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "377519",2008,42,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "11199",2005,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.2430380486863,189.244162932803 "306981",2007,49,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "232149",2006,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.71119963523198,111.185461930226 "13294",2005,50,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "229612",2006,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "12617",2005,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.23044892137827,186.876677628007 "451199",2009,58,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.04139268515823,154.68529299563 "7609",2005,41,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.82607480270083,124.720446242886 "231686",2006,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62689955920852,277.79948020565 "234389",2006,51,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60108172778402,99.5919888162707 "229901",2006,44,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "153622",2003,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "86931",2004,34,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.97772360528885,145.143601176911 "9860",2005,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "82359",2004,59,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.5467412584381,256.400649562425 "83774",2004,61,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.73239375982297,113.567089569751 "379289",2008,40,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77085201164214,118.019753340006 "451529",2009,49,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "157319",2003,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "10740",2005,54,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "83212",2004,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "234447",2006,29,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "448296",2009,66,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.92941892571429,138.299126920883 "229238",2006,61,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.67687643197314,107.433970610403 "156703",2003,34,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "303382",2007,41,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.79934054945358,121.430313822622 "83663",2004,48,"1. Male","4. Divorced","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "13264",2005,26,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "228067",2006,54,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.50514997831991,90.4819133566401 "379994",2008,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "374633",2008,60,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.9912260756925,147.116689159978 "380994",2008,57,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "452521",2009,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "301537",2007,54,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "452259",2009,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "380756",2008,62,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "156099",2003,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "379666",2008,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.7160033436348,111.720849360989 "13066",2005,55,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "233531",2006,57,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.81291335664286,123.089699847943 "159976",2003,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "155361",2003,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "301559",2007,28,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.63245729218472,102.766280877288 "159911",2003,58,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.79239168949825,120.589436530402 "378511",2008,47,"1. Male","1. Never Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.95424250943933,141.77517233318 "303173",2007,60,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.67209785793572,106.921814091211 "155313",2003,26,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.59198011410292,268.266292012557 "231958",2006,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "375616",2008,31,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "307319",2007,63,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.30102999566398,200.543262324662 "12456",2005,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "448765",2009,30,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.83250891270624,125.525498433836 "301777",2007,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "11762",2005,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "379995",2008,29,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "302475",2007,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.07918124604763,160.642475408263 "303761",2007,57,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.83250891270624,125.525498433836 "7976",2005,46,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.89209460269048,133.232350826567 "157964",2003,21,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.31806333496276,75.0431540173515 "9336",2005,34,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "379954",2008,39,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.14612803567824,63.1888610037461 "230714",2006,26,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "83126",2004,42,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "82701",2004,48,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.36172783601759,78.3924668009837 "452203",2009,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "154263",2003,80,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "230644",2006,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.36172783601759,78.3924668009837 "304966",2007,31,"1. Male","1. Never Married","4. Other","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.39794000867204,81.2832532842527 "156987",2003,41,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.26007138798508,70.8150386167557 "88084",2004,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "160389",2003,43,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.87215627274829,130.602227520314 "81881",2004,54,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.30102999566398,200.543262324662 "83677",2004,39,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "80890",2004,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "306629",2007,21,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.56584781867352,96.1440722120499 "12188",2005,59,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "301793",2007,29,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.13097669160562,62.2386812563875 "447716",2009,29,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.92427928606188,137.590142766506 "10043",2005,33,"1. Male","1. Never Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "156286",2003,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.04921802267018,155.900506146767 "376933",2008,53,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "160815",2003,63,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "84588",2004,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "156257",2003,21,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.14612803567824,63.1888610037461 "306463",2007,39,"1. Male","3. Widowed","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "304367",2007,30,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.20411998265593,182.020620963512 "156055",2003,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.75587485567249,116.265324062503 "84965",2004,40,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.54406804435028,94.0727147457005 "86137",2004,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5,148.413159102577 "7434",2005,43,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",3,20.0855369231877 "13145",2005,42,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "376834",2008,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "80861",2004,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.39794000867204,81.2832532842527 "307009",2007,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.25527250510331,70.4760196469445 "9407",2005,60,"1. Male","3. Widowed","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.53147891704226,92.8958447894966 "448011",2009,57,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "301160",2007,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.49415459401844,89.4924795180001 "87472",2004,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "86258",2004,51,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "86622",2004,33,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.19312459835446,66.2294082943902 "234539",2006,59,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "233141",2006,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "160720",2003,33,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.75587485567249,116.265324062503 "380833",2008,28,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.83884909073726,126.323880709786 "447332",2009,49,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.41572436176872,82.7417541674462 "13074",2005,51,"1. Male","5. Separated","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.72427586960079,112.6488963421 "377769",2008,36,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "159957",2003,26,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "14047",2005,22,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.9895388033205,54.0299651757595 "229085",2006,47,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.76342799356294,117.146816914805 "156367",2003,59,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "86170",2004,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.85125834871908,127.901232979118 "231625",2006,32,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "376206",2008,45,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "374441",2008,39,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.23044892137827,68.7480877337669 "229681",2006,64,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.55630250076729,95.2307125669819 "84975",2004,36,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "80338",2004,61,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "158704",2003,34,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.23044892137827,68.7480877337669 "86260",2004,52,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "377704",2008,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "450907",2009,36,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.0152591349936,150.695182101741 "8898",2005,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "86506",2004,39,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.32221929473392,75.3556793180091 "81695",2004,59,"1. Male","3. Widowed","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "452011",2009,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17010322768245,175.93299770235 "233422",2006,40,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.29003461136252,198.350290464385 "232655",2006,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "161451",2003,25,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "450319",2009,59,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "305903",2007,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.33645973384853,76.436454372814 "12064",2005,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.54406804435028,94.0727147457005 "448531",2009,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "450203",2009,63,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.70757017609794,110.782650276254 "302905",2007,53,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.53147891704226,92.8958447894966 "377539",2008,25,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "306049",2007,53,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "234286",2006,23,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.32221929473392,75.3556793180091 "82123",2004,36,"1. Male","1. Never Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.27875360095283,72.1504556815713 "13073",2005,19,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.44715803134222,31.4109962716359 "12975",2005,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.53147891704226,92.8958447894966 "9152",2005,43,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.64345267648619,103.90247060316 "85858",2004,40,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "449352",2009,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.19728055812562,180.779952229859 "156000",2003,63,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "374878",2008,45,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",3.60205999132796,36.6737041960799 "374341",2008,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.30102999566398,73.7757432746946 "453736",2009,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.5910646070265,98.5993438603892 "83544",2004,37,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.05115252244738,57.4636470385133 "374646",2008,41,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "14363",2005,45,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.41497334797082,82.6796372966372 "380303",2008,22,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "11668",2005,58,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.42696971235214,227.458934033008 "156595",2003,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "303371",2007,39,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.75587485567249,116.265324062503 "12558",2005,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.95424250943933,141.77517233318 "154495",2003,33,"1. Male","1. Never Married","3. Asian","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "232910",2006,35,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.51188336097887,91.0932184689733 "448457",2009,63,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.74036268949424,114.475713290347 "156591",2003,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "374845",2008,31,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "154639",2003,41,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.53147891704226,92.8958447894966 "376657",2008,66,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62321723414596,276.778413321176 "453155",2009,45,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "302655",2007,47,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "234441",2006,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.82607480270083,124.720446242886 "10756",2005,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.61278385671974,100.764272842107 "157788",2003,62,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.13462328966244,169.800342280671 "159478",2003,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "82408",2004,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.91907809237607,136.876367635184 "231687",2006,41,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62689955920852,277.79948020565 "451735",2009,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "14361",2005,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "447846",2009,64,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "87736",2004,29,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.11394335230684,61.1875264339915 "159033",2003,49,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "452456",2009,32,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.89209460269048,133.232350826567 "229915",2006,41,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "85977",2004,58,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "158370",2003,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "306799",2007,34,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.57403126772772,96.9340904570115 "86857",2004,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "154144",2003,23,"1. Male","1. Never Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.47712125471966,87.9810327856054 "155861",2003,40,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "302734",2007,46,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.64100585131578,281.745970551857 "87460",2004,35,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.67209785793572,106.921814091211 "301952",2007,42,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.00000868580278,148.414448195605 "452190",2009,47,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.7160033436348,111.720849360989 "302487",2007,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "375314",2008,34,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69019608002851,108.874525834712 "80513",2004,57,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "8245",2005,32,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.45636603312904,86.1737867271136 "450802",2009,55,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.63346845557959,102.870246933215 "380599",2008,22,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.33445375115093,76.2832778539642 "8760",2005,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.82607480270083,124.720446242886 "228870",2006,26,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.20411998265593,66.9616443217359 "86333",2004,27,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4,54.5981500331442 "82672",2004,34,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "303408",2007,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.51854025995801,91.7016396744449 "379215",2008,23,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.36114208775333,78.3465619952665 "153433",2003,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "452035",2009,49,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.02118929906994,151.591484239814 "12738",2005,47,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.79239168949825,120.589436530402 "10025",2005,35,"1. Male","4. Divorced","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "302428",2007,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.40654018043396,81.9853178344996 "230517",2006,55,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.92427928606188,137.590142766506 "451939",2009,69,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",3.69897000433602,40.4056652596845 "83710",2004,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "11155",2005,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.04139268515823,154.68529299563 "10801",2005,47,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.96511699828459,143.325318108778 "377849",2008,22,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.36172783601759,78.3924668009837 "155762",2003,42,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.44715803134222,85.3839403789827 "380873",2008,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07188200730613,159.474176661105 "11350",2005,48,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.19312459835446,66.2294082943902 "449916",2009,28,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.7160033436348,111.720849360989 "11955",2005,49,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.50785587169583,90.7270793135127 "452076",2009,51,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.85733249643127,128.680488220624 "158386",2003,58,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "8307",2005,32,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "452919",2009,55,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "304571",2007,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.54406804435028,94.0727147457005 "84662",2004,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "157527",2003,44,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.20411998265593,182.020620963512 "155753",2003,25,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "85476",2004,73,"1. Male","4. Divorced","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.53147891704226,92.8958447894966 "86888",2004,18,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.27875360095283,72.1504556815713 "11885",2005,52,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.80617997398389,122.263673892802 "379300",2008,28,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.27875360095283,72.1504556815713 "84104",2004,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "451062",2009,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "379529",2008,44,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "155117",2003,29,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.55630250076729,95.2307125669819 "234168",2006,48,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.95424250943933,141.77517233318 "228808",2006,62,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.6232492903979,101.82435207568 "85191",2004,40,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.88081359228079,131.737801155001 "159708",2003,24,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.19456983922864,66.3251949430473 "155806",2003,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "378375",2008,54,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.09691001300806,163.515863976238 "155162",2003,69,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "230689",2006,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.81291335664286,123.089699847943 "158165",2003,73,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.69372694892365,40.1943705168112 "448727",2009,30,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.2558029853537,70.5134157015506 "154715",2003,41,"1. Male","1. Never Married","3. Asian","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.30102999566398,73.7757432746946 "449784",2009,48,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.61392634785569,100.879460918798 "82382",2004,63,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.43136376415899,84.0459576539924 "159218",2003,29,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.44715803134222,85.3839403789827 "81077",2004,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "303201",2007,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.51188336097887,91.0932184689733 "375099",2008,54,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "452764",2009,33,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.59061783348625,267.901086855275 "84935",2004,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.07918124604763,160.642475408263 "302956",2007,31,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "231714",2006,46,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.9393245252363,139.675870162748 "377432",2008,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.82930377283103,125.12381572196 "450157",2009,45,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.73239375982297,113.567089569751 "155744",2003,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.20411998265593,182.020620963512 "12978",2005,31,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "228951",2006,19,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.34242268082221,76.8936025176112 "156037",2003,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "302728",2007,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95904139232109,142.457169885112 "233642",2006,55,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "228903",2006,59,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "449895",2009,49,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.63346845557959,102.870246933215 "451041",2009,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "376582",2008,27,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.11394335230684,61.1875264339915 "160144",2003,34,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.39797475084092,81.2860772898212 "379821",2008,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62321723414596,276.778413321176 "161269",2003,35,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.59198011410292,268.266292012557 "87217",2004,33,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "160293",2003,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.9731278535997,144.47808766541 "86674",2004,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "87761",2004,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "303104",2007,47,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "229277",2006,45,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.27875360095283,196.125272594255 "452824",2009,34,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.13033376849501,169.073540049428 "232086",2006,25,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.24303804868629,69.6190369046763 "233767",2006,56,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.82607480270083,124.720446242886 "12838",2005,54,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74942709912175,115.51808515372 "159042",2003,41,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.49136169383427,89.2428846644714 "375741",2008,46,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62321723414596,276.778413321176 "85607",2004,44,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.13987908640124,170.6951277113 "86744",2004,44,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "11797",2005,46,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "452631",2009,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "374872",2008,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.85733249643127,128.680488220624 "448646",2009,27,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "379131",2008,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.85733249643127,128.680488220624 "231134",2006,56,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.94448267215017,140.398200161944 "9431",2005,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "379883",2008,33,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.83250891270624,125.525498433836 "376403",2008,32,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "376258",2008,39,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "14511",2005,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.27875360095283,72.1504556815713 "449447",2009,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "231149",2006,36,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.62689955920852,277.79948020565 "13208",2005,37,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "376577",2008,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "9330",2005,51,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.35945602012099,78.214575693165 "380510",2008,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "234379",2006,56,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "449359",2009,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "449768",2009,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "304596",2007,32,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "83073",2004,21,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.43136376415899,84.0459576539924 "80331",2004,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "307248",2007,48,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "87597",2004,32,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.74585519517373,115.106201691293 "161439",2003,30,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",3.97081161087252,53.0275511164817 "234656",2006,30,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "153663",2003,33,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.38021124171161,79.8549003093467 "11542",2005,56,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.03342375548695,56.4538649754188 "81869",2004,46,"1. Male","4. Divorced","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "156792",2003,49,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "376283",2008,24,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "452245",2009,48,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.9912260756925,147.116689159978 "231515",2006,37,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.69897000433602,109.833985642199 "306859",2007,53,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "82001",2004,56,"1. Male","2. Married","2. Black","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "375236",2008,34,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.69019608002851,108.874525834712 "86010",2004,56,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "230943",2006,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "228764",2006,47,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.30102999566398,27.1405792079024 "156896",2003,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.25527250510331,70.4760196469445 "453724",2009,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.11727129565576,166.879383279962 "379194",2008,25,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "452457",2009,35,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "232552",2006,40,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.64345267648619,103.90247060316 "450777",2009,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.54406804435028,34.6074177301288 "158588",2003,50,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.60530504614111,100.013486924706 "377411",2008,48,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17236937676384,64.8689691939769 "302723",2007,40,"1. Male","1. Never Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "153400",2003,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "86089",2004,30,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "160883",2003,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "379090",2008,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "302129",2007,32,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "86755",2004,53,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.96378782734556,143.134940811134 "377441",2008,32,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.34242268082221,76.8936025176112 "87396",2004,39,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "307386",2007,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "84169",2004,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.32221929473392,75.3556793180091 "449775",2009,66,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "228357",2006,40,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "449987",2009,52,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.89209460269048,133.232350826567 "303856",2007,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.83250891270624,125.525498433836 "304921",2007,32,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.49415459401844,89.4924795180001 "374988",2008,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.43136376415899,84.0459576539924 "229150",2006,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.13033376849501,169.073540049428 "84663",2004,47,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "379349",2008,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.97099736557249,144.170606488233 "157534",2003,53,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "305469",2007,66,"1. Male","4. Divorced","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.25527250510331,70.4760196469445 "231089",2006,33,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.30102999566398,73.7757432746946 "82956",2004,58,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.54406804435028,94.0727147457005 "379819",2008,41,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.42114306707167,83.1913242935054 "449534",2009,54,"1. Male","2. Married","3. Asian","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "448935",2009,26,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.46239799789896,86.6951548289402 "375717",2008,24,"1. Male","1. Never Married","4. Other","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.25527250510331,70.4760196469445 "304731",2007,62,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.8750612633917,130.982177377461 "10772",2005,63,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.91488766741439,136.303997562054 "14158",2005,26,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.73639650227664,114.022580378556 "85775",2004,45,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.66464197555613,106.127582150788 "161082",2003,23,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "377328",2008,31,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.75587485567249,116.265324062503 "155957",2003,44,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.96378782734556,143.134940811134 "154985",2003,43,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4,54.5981500331442 "87716",2004,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.8750612633917,48.185650217039 "374629",2008,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "232517",2006,55,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.76715586608218,117.584340323354 "84219",2004,45,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.60688524128857,272.294783220064 "380749",2008,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "453653",2009,63,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "81828",2004,57,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.57978359661681,97.4932940453934 "377546",2008,69,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "451614",2009,31,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "160598",2003,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.59198011410292,268.266292012557 "7816",2005,43,"1. Male","5. Separated","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "157421",2003,19,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.94939000664491,51.9036962665682 "9691",2005,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "304770",2007,31,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.90308998699194,134.705375118879 "81122",2004,49,"1. Male","1. Never Married","4. Other","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "233881",2006,29,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.55630250076729,95.2307125669819 "377413",2008,26,"1. Male","2. Married","4. Other","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.34242268082221,76.8936025176112 "303918",2007,37,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.75587485567249,116.265324062503 "229437",2006,30,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "447724",2009,35,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.87993268171161,131.62180303309 "85017",2004,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "9109",2005,44,"1. Male","4. Divorced","4. Other","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.23044892137827,68.7480877337669 "84346",2004,65,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.83250891270624,125.525498433836 "301863",2007,54,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "452767",2009,56,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.94448267215017,140.398200161944 "380912",2008,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "450623",2009,37,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.06069784035361,58.0147820121857 "7899",2005,30,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "13782",2005,46,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.44715803134222,85.3839403789827 "452871",2009,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.88081359228079,131.737801155001 "13456",2005,58,"1. Male","4. Divorced","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "306022",2007,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.46239799789896,86.6951548289402 "232102",2006,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.06069784035361,157.700527725737 "375105",2008,33,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17614916112655,65.11462387776 "81175",2004,51,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.50514997831991,90.4819133566401 "375985",2008,50,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.84509804001426,46.7632687977187 "233063",2006,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.44715803134222,85.3839403789827 "85647",2004,46,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.93951925261862,139.703071527658 "11736",2005,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "153843",2003,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "10673",2005,47,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "84898",2004,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.26481782300954,71.1519565433031 "375389",2008,36,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "374477",2008,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.17609125905568,65.1108537153447 "160912",2003,29,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.83250891270624,125.525498433836 "13605",2005,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "305951",2007,20,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.26007138798508,70.8150386167557 "84566",2004,32,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.72427586960079,112.6488963421 "160765",2003,36,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.46239799789896,86.6951548289402 "449036",2009,31,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "13295",2005,28,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "7863",2005,41,"1. Male","4. Divorced","4. Other","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.76342799356294,117.146816914805 "87877",2004,54,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "86166",2004,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "160895",2003,19,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.23044892137827,68.7480877337669 "450033",2009,59,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",5.59061783348625,267.901086855275 "156104",2003,64,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "160718",2003,31,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.52891670027766,92.6581301668597 "81086",2004,37,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "87767",2004,30,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "13125",2005,24,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "231653",2006,26,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.31806333496276,75.0431540173515 "85304",2004,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "375038",2008,39,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62321723414596,276.778413321176 "9595",2005,48,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62618633492728,277.601417511009 "87553",2004,53,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.38916608436453,80.5731997057359 "81392",2004,42,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "451374",2009,44,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "158047",2003,25,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "81515",2004,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",3.77815125038364,43.7351116779821 "153519",2003,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.6232492903979,101.82435207568 "380550",2008,33,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "304366",2007,30,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.79934054945358,121.430313822622 "304377",2007,38,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "9064",2005,29,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "378073",2008,57,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "158940",2003,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74741180788642,115.285516994187 "380022",2008,23,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.59108687796735,98.6015397849967 "227841",2006,46,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.9731278535997,144.47808766541 "12002",2005,61,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.91381385238372,136.15771083723 "304602",2007,70,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.61278385671974,100.764272842107 "450489",2009,59,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.34242268082221,76.8936025176112 "158881",2003,57,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.50514997831991,90.4819133566401 "154684",2003,25,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.46239799789896,86.6951548289402 "9521",2005,48,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.81954393554187,123.908567597957 "451147",2009,52,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.17609125905568,65.1108537153447 "448799",2009,44,"1. Male","5. Separated","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.88081359228079,131.737801155001 "86446",2004,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.20411998265593,66.9616443217359 "378317",2008,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.27875360095283,196.125272594255 "7499",2005,51,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.11394335230684,166.324941233877 "154659",2003,43,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "159096",2003,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.79239168949825,120.589436530402 "379777",2008,28,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.6232492903979,101.82435207568 "161093",2003,54,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5,148.413159102577 "8398",2005,34,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.06923136334717,159.052027129346 "86001",2004,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "9947",2005,36,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.94200805302231,140.051197616953 "13597",2005,36,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.88546864938853,132.352477709878 "8402",2005,71,"1. Male","3. Widowed","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "229336",2006,31,"1. Male","1. Never Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.57978359661681,97.4932940453934 "9471",2005,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.90308998699194,134.705375118879 "307463",2007,20,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.27875360095283,72.1504556815713 "303301",2007,23,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "307758",2007,42,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.90308998699194,49.5553381215226 "8704",2005,41,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.00432137378264,149.055895589404 "450579",2009,27,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.80617997398389,122.263673892802 "377548",2008,29,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.6232492903979,101.82435207568 "379802",2008,41,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "155828",2003,41,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "160072",2003,22,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.39794000867204,81.2832532842527 "158458",2003,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "380862",2008,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "229278",2006,49,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5,148.413159102577 "158416",2003,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "374326",2008,38,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.86332286012046,129.453644576625 "84906",2004,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.90308998699194,134.705375118879 "10154",2005,47,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.38021124171161,79.8549003093467 "304890",2007,52,"1. Male","2. Married","4. Other","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.2211533219547,68.111994065327 "448330",2009,56,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.69897000433602,40.4056652596845 "302440",2007,30,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.88081359228079,131.737801155001 "8594",2005,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.90308998699194,134.705375118879 "160473",2003,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.74036268949424,114.475713290347 "452589",2009,43,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.83884909073726,126.323880709786 "154916",2003,35,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.75966784468963,116.707154559148 "453566",2009,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "453173",2009,69,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39724458101039,81.226746312023 "231286",2006,68,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "83337",2004,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "8625",2005,46,"1. Male","1. Never Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "304249",2007,39,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "452699",2009,66,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.69897000433602,109.833985642199 "13542",2005,30,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "233331",2006,30,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "12638",2005,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.27875360095283,72.1504556815713 "376869",2008,49,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "11100",2005,54,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "379372",2008,48,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.96378782734556,143.134940811134 "376009",2008,37,"1. Male","5. Separated","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.57978359661681,97.4932940453934 "304338",2007,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.95424250943933,141.77517233318 "304116",2007,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5,148.413159102577 "452574",2009,31,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.69897000433602,109.833985642199 "230268",2006,18,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.07918124604763,59.0970640815891 "159545",2003,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.02734960777476,152.52821689856 "229535",2006,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "161425",2003,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",3.77815125038364,43.7351116779821 "376778",2008,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.56820172406699,96.3706528322308 "232700",2006,24,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "306371",2007,35,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "304010",2007,27,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "154423",2003,44,"1. Male","1. Never Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "377710",2008,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.49136169383427,89.2428846644714 "8072",2005,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.44404479591808,85.1185334226767 "306740",2007,39,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "374463",2008,42,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.61278385671974,100.764272842107 "155676",2003,37,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "378483",2008,58,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "11655",2005,40,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.09691001300806,163.515863976238 "159926",2003,27,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.44715803134222,85.3839403789827 "161488",2003,31,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.32221929473392,75.3556793180091 "380370",2008,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "154590",2003,38,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.52891670027766,92.6581301668597 "86392",2004,34,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.92427928606188,137.590142766506 "12146",2005,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90417436828416,134.85152633512 "301904",2007,20,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.28330122870355,72.4793162971252 "375850",2008,28,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.18477374027202,178.533050380204 "449254",2009,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.5910646070265,98.5993438603892 "378197",2008,38,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.7481880270062,115.375038556391 "12275",2005,33,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.30102999566398,73.7757432746946 "447285",2009,43,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",3.60205999132796,36.6737041960799 "229216",2006,50,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "379593",2008,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "10380",2005,24,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.30319605742049,73.9357192871731 "378289",2008,41,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "453516",2009,37,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.77815125038364,118.884359339886 "8978",2005,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.90308998699194,134.705375118879 "87747",2004,25,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "13594",2005,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "448361",2009,40,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "82431",2004,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "227968",2006,50,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "154580",2003,42,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.41497334797082,82.6796372966372 "155201",2003,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.88081359228079,131.737801155001 "228062",2006,44,"1. Male","4. Divorced","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "301131",2007,19,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.72427586960079,41.4412130349115 "81508",2004,44,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "160105",2003,26,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "10455",2005,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.46239799789896,86.6951548289402 "230783",2006,32,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "380368",2008,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "8521",2005,35,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.26007138798508,70.8150386167557 "302231",2007,34,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.27875360095283,72.1504556815713 "154400",2003,23,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4,54.5981500331442 "376389",2008,60,"1. Male","2. Married","3. Asian","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "231469",2006,54,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "155163",2003,31,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.93951925261862,139.703071527658 "229213",2006,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.07918124604763,160.642475408263 "161447",2003,48,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",3.17609125905568,23.9529444789965 "11017",2005,48,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.7481880270062,115.375038556391 "81252",2004,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.74036268949424,114.475713290347 "227917",2006,55,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "82223",2004,35,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.92427928606188,137.590142766506 "450449",2009,37,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "155027",2003,27,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.14736710779379,23.2747040516601 "301716",2007,64,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "160957",2003,52,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "307162",2007,47,"1. Male","5. Separated","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "153288",2003,26,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.04139268515823,56.9055391446732 "10549",2005,41,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.85733249643127,128.680488220624 "448079",2009,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.31806333496276,75.0431540173515 "85787",2004,76,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.30102999566398,73.7757432746946 "232991",2006,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.68274058133502,108.065830309718 "232011",2006,39,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.81291335664286,123.089699847943 "234060",2006,39,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.62689955920852,277.79948020565 "83770",2004,23,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.30102999566398,73.7757432746946 "228316",2006,49,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.81954393554187,123.908567597957 "451479",2009,44,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.47712125471966,87.9810327856054 "233965",2006,20,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.25527250510331,70.4760196469445 "8562",2005,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62618633492728,277.601417511009 "231536",2006,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "451622",2009,46,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "451993",2009,33,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "159704",2003,62,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.59198011410292,268.266292012557 "228435",2006,38,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.8750612633917,130.982177377461 "11386",2005,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "10964",2005,46,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.62618633492728,277.601417511009 "227859",2006,18,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "449407",2009,63,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","2. No",5.59061783348625,267.901086855275 "233646",2006,43,"1. Male","1. Never Married","2. Black","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.78532983501077,119.74085129618 "450142",2009,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.95424250943933,141.77517233318 "375066",2008,53,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.85400223312699,128.252661096619 "377927",2008,58,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.50514997831991,90.4819133566401 "154494",2003,23,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.34242268082221,76.8936025176112 "80376",2004,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "81068",2004,35,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "233828",2006,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.30102999566398,200.543262324662 "85640",2004,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "10274",2005,32,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "153933",2003,56,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.59198011410292,268.266292012557 "10377",2005,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "87797",2004,40,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60205999132796,99.6894636984864 "84394",2004,26,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.41497334797082,82.6796372966372 "232457",2006,26,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "377675",2008,47,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69019608002851,108.874525834712 "304688",2007,25,"1. Male","1. Never Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4,54.5981500331442 "233833",2006,58,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",5.73518995947785,309.5717712662 "374782",2008,57,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.41500675395383,82.6823993373301 "154678",2003,30,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.08813608870055,59.6286455536557 "303392",2007,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.11394335230684,166.324941233877 "453674",2009,29,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.38021124171161,79.8549003093467 "302464",2007,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.77815125038364,118.884359339886 "230110",2006,37,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.53147891704226,92.8958447894966 "86348",2004,67,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.07918124604763,160.642475408263 "449111",2009,34,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.25527250510331,70.4760196469445 "156748",2003,50,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.79239168949825,120.589436530402 "8312",2005,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "378918",2008,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.14612803567824,171.765132627508 "154871",2003,27,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.79239168949825,120.589436530402 "302382",2007,39,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "305523",2007,54,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5,148.413159102577 "377010",2008,55,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.86332286012046,129.453644576625 "157367",2003,49,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.90308998699194,134.705375118879 "154310",2003,42,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.04139268515823,56.9055391446732 "8265",2005,39,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "154479",2003,32,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.2211533219547,68.111994065327 "14202",2005,39,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.85733249643127,128.680488220624 "161025",2003,50,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "85939",2004,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "158022",2003,40,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "229664",2006,51,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "448419",2009,28,"1. Male","2. Married","3. Asian","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.23044892137827,68.7480877337669 "301493",2007,53,"1. Male","4. Divorced","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "9698",2005,54,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "451173",2009,51,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "377766",2008,33,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.90308998699194,134.705375118879 "379628",2008,55,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.84509804001426,127.115743812184 "158239",2003,44,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.61278385671974,100.764272842107 "450366",2009,30,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "10192",2005,40,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "303306",2007,26,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.60205999132796,99.6894636984864 "230907",2006,49,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.72427586960079,112.6488963421 "87177",2004,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.09691001300806,163.515863976238 "85563",2004,43,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "378239",2008,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "232251",2006,32,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.90308998699194,49.5553381215226 "448807",2009,34,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.02938377768521,152.838800991182 "451298",2009,36,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5,148.413159102577 "234574",2006,51,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.61909333062674,101.402052302992 "303467",2007,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.56110138364906,95.6888119067371 "160372",2003,60,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "80668",2004,36,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.34242268082221,76.8936025176112 "230140",2006,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "87724",2004,60,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.92941892571429,138.299126920883 "159738",2003,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4,54.5981500331442 "13820",2005,41,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.17609125905568,65.1108537153447 "159737",2003,56,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "158555",2003,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "8911",2005,49,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "230355",2006,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.75587485567249,116.265324062503 "155813",2003,25,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "304171",2007,52,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "154382",2003,30,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "447429",2009,29,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.65321251377534,104.921506533664 "307480",2007,23,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "301212",2007,48,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.69019608002851,108.874525834712 "450515",2009,44,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "160071",2003,62,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "231742",2006,33,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.02118929906994,151.591484239814 "379911",2008,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.66275783168157,105.927810775063 "231151",2006,36,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.30102999566398,200.543262324662 "7548",2005,23,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.07918124604763,59.0970640815891 "157269",2003,51,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.23044892137827,68.7480877337669 "378112",2008,47,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "158610",2003,34,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.64345267648619,103.90247060316 "87409",2004,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "451122",2009,43,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.30102999566398,200.543262324662 "227949",2006,43,"1. Male","5. Separated","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "451359",2009,40,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.09691001300806,163.515863976238 "13067",2005,59,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.65321251377534,104.921506533664 "374802",2008,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "86228",2004,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "379346",2008,48,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "376228",2008,37,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.20411998265593,182.020620963512 "228763",2006,20,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.31806333496276,75.0431540173515 "85100",2004,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.11394335230684,61.1875264339915 "87786",2004,40,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "87346",2004,48,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.81885905297563,123.823733834101 "10641",2005,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",5.17609125905568,176.989650489877 "451408",2009,56,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "159969",2003,55,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.59198011410292,268.266292012557 "376315",2008,38,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.49415459401844,89.4924795180001 "233368",2006,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.53147891704226,92.8958447894966 "155264",2003,40,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.84509804001426,127.115743812184 "7747",2005,29,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7481880270062,115.375038556391 "302426",2007,45,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.87507284442347,130.983694295002 "157328",2003,39,"1. Male","2. Married","3. Asian","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.23044892137827,68.7480877337669 "9454",2005,50,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.20411998265593,182.020620963512 "160476",2003,50,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.96848294855393,143.808556824369 "84722",2004,57,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "160518",2003,30,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.14612803567824,63.1888610037461 "12284",2005,56,"1. Male","4. Divorced","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.32221929473392,75.3556793180091 "375528",2008,43,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609704961017,176.990675361059 "83300",2004,43,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "9974",2005,67,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.81291335664286,123.089699847943 "11998",2005,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "11771",2005,49,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7160033436348,111.720849360989 "85840",2004,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "83877",2004,59,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.9712758487381,144.210761166057 "305966",2007,51,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.76342799356294,117.146816914805 "7951",2005,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.36172783601759,78.3924668009837 "451372",2009,54,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.60205999132796,99.6894636984864 "83243",2004,55,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "10311",2005,45,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.84509804001426,127.115743812184 "159643",2003,54,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.93449845124357,139.00340805947 "378452",2008,23,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "153846",2003,74,"1. Male","3. Widowed","2. Black","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.25527250510331,70.4760196469445 "13108",2005,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.69897000433602,109.833985642199 "11905",2005,25,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.26007138798508,70.8150386167557 "375715",2008,45,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.25527250510331,70.4760196469445 "82621",2004,37,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.17609125905568,176.989650489877 "12425",2005,55,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.73239375982297,113.567089569751 "82295",2004,25,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "379133",2008,66,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "305527",2007,47,"1. Male","1. Never Married","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.08278537031645,161.222495456794 "13255",2005,36,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.84509804001426,127.115743812184 "86181",2004,63,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.90308998699194,134.705375118879 "157316",2003,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "450927",2009,37,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.59061783348625,267.901086855275 "229450",2006,32,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "85047",2004,43,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "447600",2009,37,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.81291335664286,123.089699847943 "450428",2009,26,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.20411998265593,66.9616443217359 "85993",2004,39,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "378229",2008,45,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "449815",2009,40,"1. Male","1. Never Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.91907809237607,136.876367635184 "229998",2006,51,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.03342375548695,153.457515308961 "448218",2009,52,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.11394335230684,61.1875264339915 "306163",2007,43,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.17609125905568,65.1108537153447 "11664",2005,52,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "8194",2005,50,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.20411998265593,182.020620963512 "14196",2005,54,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.74036268949424,114.475713290347 "88022",2004,28,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.57978359661681,97.4932940453934 "160061",2003,28,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.91907809237607,136.876367635184 "7840",2005,26,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.57978359661681,97.4932940453934 "450384",2009,45,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "160299",2003,34,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "233831",2006,73,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "449264",2009,31,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.73239375982297,113.567089569751 "12477",2005,29,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.50514997831991,90.4819133566401 "375640",2008,40,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07918124604763,160.642475408263 "161055",2003,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.19033169817029,179.528092196451 "82687",2004,42,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.99563519459755,147.766776237856 "301552",2007,50,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "375238",2008,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.07809415040641,59.0328548279404 "453137",2009,40,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.67577834167408,107.316063157849 "379538",2008,25,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",3.90308998699194,49.5553381215226 "451582",2009,47,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.9731278535997,144.47808766541 "447462",2009,27,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.39794000867204,81.2832532842527 "158645",2003,53,"1. Male","4. Divorced","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.40226138245468,81.6352686511494 "87154",2004,67,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "378986",2008,40,"1. Male","2. Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.8750612633917,130.982177377461 "160715",2003,44,"1. Male","2. Married","2. Black","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "81037",2004,33,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.39794000867204,81.2832532842527 "82804",2004,29,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.49136169383427,89.2428846644714 "154694",2003,32,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.73719264270474,114.113394510116 "452218",2009,27,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "157720",2003,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.72427586960079,112.6488963421 "374624",2008,36,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.04139268515823,56.9055391446732 "153643",2003,48,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "86198",2004,56,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "84791",2004,24,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.84509804001426,127.115743812184 "232289",2006,53,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "374507",2008,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.68124123737559,107.903923866876 "305083",2007,61,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",5.64100585131578,281.745970551857 "87712",2004,38,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",3.8750612633917,48.185650217039 "306948",2007,55,"1. Male","3. Widowed","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.84509804001426,127.115743812184 "13141",2005,70,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",3.91907809237607,50.3540016352083 "155887",2003,24,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.39794000867204,81.2832532842527 "228654",2006,22,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.31806333496276,75.0431540173515 "304515",2007,38,"1. Male","4. Divorced","2. Black","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.65321251377534,104.921506533664 "83807",2004,29,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.38021124171161,79.8549003093467 "229996",2006,30,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "301419",2007,38,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.14612803567824,171.765132627508 "306410",2007,49,"1. Male","5. Separated","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.57978359661681,97.4932940453934 "452996",2009,71,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.5910646070265,98.5993438603892 "14126",2005,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.43136376415899,84.0459576539924 "158400",2003,40,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.70132270778851,299.262976763971 "87273",2004,32,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.26007138798508,70.8150386167557 "231271",2006,33,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "155621",2003,40,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.30102999566398,73.7757432746946 "11861",2005,25,"1. Male","1. Never Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.35024801833416,77.4976813877358 "154008",2003,36,"1. Male","5. Separated","2. Black","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.51851393987789,91.6992261117042 "161216",2003,46,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.95424250943933,141.77517233318 "447422",2009,59,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.54032947479087,93.7216739620469 "156545",2003,49,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.96378782734556,143.134940811134 "13641",2005,41,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.51851393987789,91.6992261117042 "304636",2007,42,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "452513",2009,59,"1. Male","2. Married","2. Black","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "81809",2004,27,"1. Male","1. Never Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.33713966272456,76.4884433977401 "231777",2006,30,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.27230584440209,71.6867436659172 "9019",2005,54,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "9487",2005,31,"1. Male","1. Never Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.38916608436453,80.5731997057359 "304371",2007,34,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.09691001300806,163.515863976238 "305970",2007,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.68124123737559,107.903923866876 "155402",2003,40,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.89209460269048,133.232350826567 "307501",2007,29,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.30102999566398,73.7757432746946 "155886",2003,58,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.47712125471966,87.9810327856054 "229104",2006,41,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77923563167586,119.013345237399 "87711",2004,56,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.62621714578763,102.127000914639 "374720",2008,52,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.91907809237607,136.876367635184 "156049",2003,53,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "159113",2003,37,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.17609125905568,65.1108537153447 "449072",2009,30,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.54406804435028,94.0727147457005 "87306",2004,35,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "229074",2006,40,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.77815125038364,118.884359339886 "302202",2007,54,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.38021124171161,79.8549003093467 "303505",2007,22,"1. Male","1. Never Married","3. Asian","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.14612803567824,63.1888610037461 "11180",2005,37,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.90308998699194,134.705375118879 "9111",2005,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",5.6903298930171,295.991249982471 "447235",2009,62,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.69897000433602,109.833985642199 "304337",2007,47,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "159650",2003,51,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5,148.413159102577 "234513",2006,47,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "159500",2003,28,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "12446",2005,65,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.56110138364906,95.6888119067371 "9781",2005,42,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.74036268949424,114.475713290347 "305890",2007,58,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.65321251377534,104.921506533664 "306575",2007,32,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.6232492903979,101.82435207568 "153588",2003,34,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.98677173426625,146.462838515063 "306484",2007,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.38021124171161,79.8549003093467 "377256",2008,39,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.97772360528885,145.143601176911 "379428",2008,44,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.33605927786635,76.4058510654515 "450934",2009,38,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.43136376415899,84.0459576539924 "377314",2008,48,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.7481880270062,115.375038556391 "234185",2006,47,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.66275783168157,105.927810775063 "448466",2009,40,"1. Male","2. Married","4. Other","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.27875360095283,72.1504556815713 "12792",2005,27,"1. Male","5. Separated","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.38021124171161,79.8549003093467 "80262",2004,42,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.64345267648619,103.90247060316 "82810",2004,30,"1. Male","4. Divorced","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.48855071650044,88.9923771888426 "301634",2007,31,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "306030",2007,29,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.72427586960079,112.6488963421 "231565",2006,53,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.92941892571429,138.299126920883 "451279",2009,37,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.23044892137827,68.7480877337669 "307401",2007,48,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.69423655022735,109.315320019967 "453377",2009,56,"1. Male","4. Divorced","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "159201",2003,44,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "84893",2004,63,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.77085201164214,118.019753340006 "161391",2003,25,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.17609125905568,65.1108537153447 "161397",2003,31,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.54406804435028,94.0727147457005 "161416",2003,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.5910646070265,98.5993438603892 "306010",2007,25,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "306687",2007,50,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.60205999132796,99.6894636984864 "232349",2006,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.69019608002851,108.874525834712 "83445",2004,20,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.41497334797082,82.6796372966372 "303155",2007,30,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.49415459401844,89.4924795180001 "450065",2009,40,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.57978359661681,97.4932940453934 "231998",2006,34,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.04139268515823,56.9055391446732 "80918",2004,57,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.17609125905568,65.1108537153447 "304411",2007,42,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","1. Yes",4.49415459401844,89.4924795180001 "155790",2003,30,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.43136376415899,84.0459576539924 "159561",2003,37,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54406804435028,94.0727147457005 "377472",2008,50,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.44715803134222,85.3839403789827 "450455",2009,26,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.36172783601759,78.3924668009837 "304184",2007,59,"1. Male","2. Married","3. Asian","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.07773117965239,160.409701962289 "154351",2003,29,"1. Male","1. Never Married","4. Other","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.88930170250631,132.860765311572 "447182",2009,22,"1. Male","1. Never Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.47712125471966,87.9810327856054 "13962",2005,54,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.06369355759581,158.173662250538 "154728",2003,46,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.77815125038364,118.884359339886 "380298",2008,51,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.61909333062674,101.402052302992 "230171",2006,35,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.07918124604763,59.0970640815891 "307415",2007,49,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",4.44715803134222,85.3839403789827 "161305",2003,53,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "451605",2009,61,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",5.07918124604763,160.642475408263 "301838",2007,40,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.25527250510331,70.4760196469445 "154752",2003,52,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","1. <=Good","2. No",3.86593266819319,47.7477845118713 "8804",2005,40,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "158531",2003,56,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.44715803134222,85.3839403789827 "379706",2008,39,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "306214",2007,30,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.54200334750398,93.8786834850373 "158084",2003,58,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.8750612633917,130.982177377461 "305029",2007,33,"1. Male","2. Married","3. Asian","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5.12385164096709,167.981128202758 "307412",2007,51,"1. Male","2. Married","1. White","5. Advanced Degree","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.83695673705955,126.085057289999 "377739",2008,32,"1. Male","1. Never Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",5,148.413159102577 "451296",2009,50,"1. Male","2. Married","2. Black","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.88649072517248,132.487821126123 "157053",2003,26,"1. Male","1. Never Married","2. Black","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.77815125038364,118.884359339886 "303357",2007,35,"1. Male","2. Married","1. White","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.69897000433602,109.833985642199 "233408",2006,31,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.63346845557959,102.870246933215 "449482",2009,31,"1. Male","2. Married","1. White","4. College Grad","2. Middle Atlantic","2. Information","2. >=Very Good","1. Yes",4.89320675305985,133.380607661416 "376816",2008,44,"1. Male","2. Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",5.04139268515823,154.68529299563 "302281",2007,30,"1. Male","2. Married","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","2. >=Very Good","2. No",4.60205999132796,99.6894636984864 "10033",2005,27,"1. Male","2. Married","2. Black","1. < HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","2. No",4.19312459835446,66.2294082943902 "14375",2005,27,"1. Male","1. Never Married","1. White","3. Some College","2. Middle Atlantic","1. Industrial","2. >=Very Good","1. Yes",4.47712125471966,87.9810327856054 "453557",2009,55,"1. Male","5. Separated","1. White","2. HS Grad","2. Middle Atlantic","1. Industrial","1. <=Good","1. Yes",4.50514997831991,90.4819133566401 PK*Lpygam/tests/__init__.pyPKLxxpygam/tests/conftest.py# -*- coding: utf-8 -*- import pytest import pandas as pd import numpy as np from pygam import * from pygam.datasets import mcycle, coal, faithful, cake, coal, default, trees, hepatitis, wage @pytest.fixture def mcycle_X_y(): # y is real # recommend LinearGAM return mcycle(return_X_y=True) @pytest.fixture def coal_X_y(): # y is counts # recommend PoissonGAM return coal(return_X_y=True) @pytest.fixture def faithful_X_y(): # y is counts # recommend PoissonGAM return faithful(return_X_y=True) @pytest.fixture def wage_X_y(): # y is real # recommend LinearGAM return wage(return_X_y=True) @pytest.fixture def trees_X_y(): # y is real. # recommend InvGaussGAM, or GAM(distribution='gamma', link='log') return trees(return_X_y=True) @pytest.fixture def default_X_y(): # y is binary # recommend LogisticGAM return default(return_X_y=True) @pytest.fixture def cake_X_y(): # y is real # recommend LinearGAM return cake(return_X_y=True) @pytest.fixture def hepatitis_X_y(): # y is real # recommend LinearGAM return hepatitis(return_X_y=True) PKL閪??pygam/tests/test_GAM_methods.py# -*- coding: utf-8 -*- import sys import numpy as np import pytest import scipy as sp from pygam import * from pygam.utils import generate_X_grid @pytest.fixture def mcycle_gam(mcycle_X_y): X, y = mcycle_X_y gam = LinearGAM().fit(X,y) return gam def test_LinearGAM_pdeps_shape(wage_X_y): """ check that we get the expected number of partial dependence functions """ X, y = wage_X_y gam = LinearGAM().fit(X, y) pdeps = gam.partial_dependence(X) assert(X.shape == pdeps.shape) def test_LinearGAM_prediction(mcycle_X_y, mcycle_gam): """ check that we the predictions we get are correct shape """ X, y = mcycle_X_y preds = mcycle_gam.predict(X) assert(preds.shape == y.shape) def test_LogisticGAM_accuracy(default_X_y): """ check that we can compute accuracy correctly """ X, y = default_X_y gam = LogisticGAM().fit(X, y) preds = gam.predict(X) acc0 = (preds == y).mean() acc1 = gam.accuracy(X, y) assert(acc0 == acc1) def test_PoissonGAM_exposure(coal_X_y): """ check that we can fit a Poisson GAM with exposure, and it scales predictions """ X, y = coal_X_y gam = PoissonGAM().fit(X, y, exposure=np.ones_like(y)) assert((gam.predict(X, exposure=np.ones_like(y)*2) == 2 *gam.predict(X)).all()) def test_PoissonGAM_loglike(coal_X_y): """ check that our loglikelihood is scaled by exposure predictions that are twice as large with twice the exposure should have lower loglikelihood """ X, y = coal_X_y exposure = np.ones_like(y) gam_high_var = PoissonGAM().fit(X, y * 2, exposure=exposure * 2) gam_low_var = PoissonGAM().fit(X, y, exposure=exposure) assert gam_high_var.loglikelihood(X, y * 2, exposure * 2) < gam_low_var.loglikelihood(X, y, exposure) def test_large_GAM(coal_X_y): """ check that we can fit a GAM in py3 when we have more than 50,000 samples """ X = np.linspace(0, 100, 100000) y = X**2 gam = LinearGAM().fit(X, y) assert(gam._is_fitted) def test_summary(mcycle_X_y, mcycle_gam): """ check that we can get a summary if we've fitted the model, else not """ X, y = mcycle_X_y gam = LinearGAM() try: gam.summary() except AttributeError: assert(True) mcycle_gam.summary() assert(True) def test_more_splines_than_samples(mcycle_X_y): """ check that gridsearch returns the expected number of models """ X, y = mcycle_X_y n = len(X) gam = LinearGAM(n_splines=n+1).fit(X, y) assert(gam._is_fitted) def test_deviance_residuals(mcycle_X_y, mcycle_gam): """ for linear GAMs, the deviance residuals should be equal to the y - y_pred """ X, y = mcycle_X_y res = mcycle_gam.deviance_residuals(X, y) err = y - mcycle_gam.predict(X) assert((res == err).all()) def test_conf_intervals_return_array(mcycle_X_y, mcycle_gam): """ make sure that the confidence_intervals method returns an array """ X, y = mcycle_X_y conf_ints = mcycle_gam.confidence_intervals(X) assert(conf_ints.ndim == 2) def test_conf_intervals_quantiles_width_interchangable(mcycle_X_y, mcycle_gam): """ getting confidence_intervals via width or specifying quantiles should return the same result """ X, y = mcycle_X_y conf_ints_a = mcycle_gam.confidence_intervals(X, width=.9) conf_ints_b = mcycle_gam.confidence_intervals(X, quantiles=[.05, .95]) assert(np.allclose(conf_ints_a, conf_ints_b)) def test_conf_intervals_ordered(mcycle_X_y, mcycle_gam): """ comfidence intervals returned via width should be ordered """ X, y = mcycle_X_y conf_ints = mcycle_gam.confidence_intervals(X) assert((conf_ints[:,0] <= conf_ints[:,1]).all()) def test_partial_dependence_on_univar_data(mcycle_X_y, mcycle_gam): """ partial dependence with univariate data should equal the overall model if fit intercept is false """ X, y = mcycle_X_y gam = LinearGAM(fit_intercept=False).fit(X,y) pred = gam.predict(X) pdep = gam.partial_dependence(X) assert((pred == pdep.ravel()).all()) def test_partial_dependence_on_univar_data2(mcycle_X_y, mcycle_gam): """ partial dependence with univariate data should NOT equal the overall model if fit intercept is false """ X, y = mcycle_X_y gam = LinearGAM(fit_intercept=True).fit(X,y) pred = gam.predict(X) pdep = gam.partial_dependence(X) assert((pred != pdep.ravel()).all()) def test_partial_dependence_feature_doesnt_exist(mcycle_X_y, mcycle_gam): """ partial dependence should raise ValueError when requesting a nonexistent feature """ X, y = mcycle_X_y try: mcycle_gam.partial_dependence(X, feature=10) except ValueError: assert(True) def test_summary_returns_12_lines(mcycle_gam): """ check that the summary method works and returns 24 lines like: LinearGAM =============================================== ========================================================== Distribution: NormalDist Effective DoF: 11.2495 Link Function: IdentityLink Log Likelihood: -952.605 Number of Samples: 133 AIC: 1929.7091 AICc: 1932.4197 GCV: 605.6546 Scale: 514.2013 Pseudo R-Squared: 0.7969 ========================================================================================================== Feature Function Data Type Num Splines Spline Order Linear Fit Lambda P > x Sig. Code ================== ============== ============= ============= =========== ========== ========== ========== feature 1 numerical 25 3 False 1.0 3.43e-03 ** intercept 6.85e-02 . ========================================================================================================== Significance codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 WARNING: Fitting splines and a linear function to a feature introduces a model identifiability problem which can cause p-values to appear significant when they are not. WARNING: p-values calculated in this manner behave correctly for un-penalized models or models with known smoothing parameters, but when smoothing parameters have been estimated, the p-values are typically lower than they should be, meaning that the tests reject the null too readily. """ if sys.version_info.major == 2: from StringIO import StringIO if sys.version_info.major == 3: from io import StringIO stdout = sys.stdout #keep a handle on the real standard output sys.stdout = StringIO() #Choose a file-like object to write to mcycle_gam.summary() assert(len(sys.stdout.getvalue().split('\n')) == 24) def test_is_fitted_predict(mcycle_X_y): """ test predict requires fitted model """ X, y = mcycle_X_y gam = LinearGAM() try: gam.predict(X) except AttributeError: assert(True) def test_is_fitted_predict_mu(mcycle_X_y): """ test predict_mu requires fitted model """ X, y = mcycle_X_y gam = LinearGAM() try: gam.predict_mu(X) except AttributeError: assert(True) def test_is_fitted_dev_resid(mcycle_X_y): """ test deviance_residuals requires fitted model """ X, y = mcycle_X_y gam = LinearGAM() try: gam.deviance_residuals(X, y) except AttributeError: assert(True) def test_is_fitted_conf_intervals(mcycle_X_y): """ test confidence_intervals requires fitted model """ X, y = mcycle_X_y gam = LinearGAM() try: gam.confidence_intervals(X) except AttributeError: assert(True) def test_is_fitted_pdep(mcycle_X_y): """ test partial_dependence requires fitted model """ X, y = mcycle_X_y gam = LinearGAM() try: gam.partial_dependence(X) except AttributeError: assert(True) def test_is_fitted_summary(mcycle_X_y): """ test summary requires fitted model """ X, y = mcycle_X_y gam = LinearGAM() try: gam.summary() except AttributeError: assert(True) def test_set_params_with_external_param(): """ test set_params sets a real parameter """ gam = GAM(lam=1) gam.set_params(lam=420) assert(gam.lam == 420) def test_set_params_with_hidden_param(): """ test set_params should not set any params that are not exposed to the user """ gam = GAM() gam.set_params(_lam=420) assert(gam._lam != 420) def test_set_params_with_phony_param(): """ test set_params should not set any phony param """ gam = GAM() gam.set_params(cat=420) assert(not hasattr(gam, 'cat')) def test_set_params_with_hidden_param_deep(): """ test set_params can set hidden params if we use the deep=True """ gam = GAM() assert(gam._lam != 420) gam.set_params(_lam=420, deep=True) assert(gam._lam == 420) def test_set_params_with_phony_param_force(): """ test set_params can set phony params if we use the force=True """ gam = GAM() assert(not hasattr(gam, 'cat')) gam.set_params(cat=420, force=True) assert(gam.cat == 420) def test_get_params(): """ test gam gets our params """ gam = GAM(lam=420) params = gam.get_params() assert(params['lam'] == 420) def test_get_params_hidden(): """ test gam gets our params only if we do deep=True """ gam = GAM() params = gam.get_params() assert('_lam' not in list(params.keys())) params = gam.get_params(deep=True) assert('_lam' in list(params.keys())) class TestSamplingFromPosterior(object): def test_drawing_samples_from_unfitted_model(self, mcycle_X_y, mcycle_gam): X, y = mcycle_X_y gam = LinearGAM() with pytest.raises(AttributeError): gam.sample(X, y) with pytest.raises(AttributeError): gam._sample_coef(X, y) with pytest.raises(AttributeError): gam._bootstrap_samples_of_smoothing(X, y) assert mcycle_gam._is_fitted mcycle_gam.sample(X, y, n_draws=2) mcycle_gam._sample_coef(X, y, n_draws=2) mcycle_gam._bootstrap_samples_of_smoothing(X, y, n_bootstraps=1) assert True def test_sample_quantity(self, mcycle_X_y, mcycle_gam): X, y = mcycle_X_y for quantity in ['coefficients', 'response']: with pytest.raises(ValueError): mcycle_gam.sample(X, y, quantity=quantity, n_draws=2) for quantity in ['coef', 'mu', 'y']: mcycle_gam.sample(X, y, quantity=quantity, n_draws=2) assert True def test_shape_of_random_samples(self, mcycle_X_y, mcycle_gam): X, y = mcycle_X_y n_samples = len(X) n_draws = 5 sample_coef = mcycle_gam.sample(X, y, quantity='coef', n_draws=n_draws) sample_mu = mcycle_gam.sample(X, y, quantity='mu', n_draws=n_draws) sample_y = mcycle_gam.sample(X, y, quantity='y', n_draws=n_draws) assert sample_coef.shape == (n_draws, len(mcycle_gam.coef_)) assert sample_mu.shape == (n_draws, n_samples) assert sample_y.shape == (n_draws, n_samples) XX = generate_X_grid(mcycle_gam) n_samples_in_grid = len(XX) sample_coef = mcycle_gam.sample(X, y, quantity='coef', n_draws=n_draws, sample_at_X=XX) sample_mu = mcycle_gam.sample(X, y, quantity='mu', n_draws=n_draws, sample_at_X=XX) sample_y = mcycle_gam.sample(X, y, quantity='y', n_draws=n_draws, sample_at_X=XX) assert sample_coef.shape == (n_draws, len(mcycle_gam.coef_)) assert sample_mu.shape == (n_draws, n_samples_in_grid) assert sample_y.shape == (n_draws, n_samples_in_grid) def test_shape_bootstrap_samples_of_smoothing(self, mcycle_X_y, mcycle_gam): X, y = mcycle_X_y for n_bootstraps in [1, 2]: coef_bootstraps, cov_bootstraps = ( mcycle_gam._bootstrap_samples_of_smoothing( X, y, n_bootstraps=n_bootstraps)) assert len(coef_bootstraps) == len(cov_bootstraps) == n_bootstraps for coef, cov in zip(coef_bootstraps, cov_bootstraps): assert coef.shape == mcycle_gam.coef_.shape assert cov.shape == mcycle_gam.statistics_['cov'].shape for n_draws in [1, 2]: coef_draws = mcycle_gam._simulate_coef_from_bootstraps( n_draws, coef_bootstraps, cov_bootstraps) assert coef_draws.shape == (n_draws, len(mcycle_gam.coef_)) def test_bad_sample_params(self, mcycle_X_y, mcycle_gam): X, y = mcycle_X_y with pytest.raises(ValueError): mcycle_gam.sample(X, y, n_draws=0) with pytest.raises(ValueError): mcycle_gam.sample(X, y, n_bootstraps=0) def test_prediction_interval_unknown_scale(): """ the prediction intervals should be correct to a few decimal places we test at a large sample limit, where the t distribution becomes normal """ n = 1000000 X = np.linspace(0,1,n) y = np.random.randn(n) gam_a = LinearGAM(fit_linear=True, fit_splines=False).fit(X, y) gam_b = LinearGAM(n_splines=4).fit(X, y) XX = generate_X_grid(gam_a) intervals_a = gam_a.prediction_intervals(XX, quantiles=[0.1, .9]).mean(axis=0) intervals_b = gam_b.prediction_intervals(XX, quantiles=[0.1, .9]).mean(axis=0) assert np.allclose(intervals_a[0], sp.stats.norm.ppf(0.1), atol=0.01) assert np.allclose(intervals_a[1], sp.stats.norm.ppf(0.9), atol=0.01) assert np.allclose(intervals_b[0], sp.stats.norm.ppf(0.1), atol=0.01) assert np.allclose(intervals_b[1], sp.stats.norm.ppf(0.9), atol=0.01) def test_prediction_interval_known_scale(): """ the prediction intervals should be correct to a few decimal places we test at a large sample limit. """ n = 1000000 X = np.linspace(0,1,n) y = np.random.randn(n) gam_a = LinearGAM(fit_linear=True, fit_splines=False, scale=1.).fit(X, y) gam_b = LinearGAM(n_splines=4, scale=1.).fit(X, y) XX = generate_X_grid(gam_a) intervals_a = gam_a.prediction_intervals(XX, quantiles=[0.1, .9]).mean(axis=0) intervals_b = gam_b.prediction_intervals(XX, quantiles=[0.1, .9]).mean(axis=0) assert np.allclose(intervals_a[0], sp.stats.norm.ppf(0.1), atol=0.01) assert np.allclose(intervals_a[1], sp.stats.norm.ppf(0.9), atol=0.01) assert np.allclose(intervals_b[0], sp.stats.norm.ppf(0.1), atol=0.01) assert np.allclose(intervals_b[1], sp.stats.norm.ppf(0.9), atol=0.01) def test_pvalue_rejects_useless_feature(wage_X_y): """ check that a p-value can reject a useless feature """ X, y = wage_X_y # add empty feature X = np.c_[X, np.zeros(X.shape[0])] gam = LinearGAM().fit(X, y) # now do the test, with some safety p_values = gam._estimate_p_values() assert(p_values[-1] > .9) def test_pvalue_invariant_to_scale(wage_X_y): """ regression test. a bug made the F-statistic sensitive to scale changes, when it should be invariant. check that a p-value should not change when we change the scale of the response """ X, y = wage_X_y gamA = LinearGAM(n_splines=10).fit(X, y * 1000000) gamB = LinearGAM(n_splines=10).fit(X, y) assert np.allclose(gamA.statistics_['p_values'], gamB.statistics_['p_values']) PKLBJ pygam/tests/test_GAM_params.py# -*- coding: utf-8 -*- import numpy as np import pytest from pygam import * def test_expand_params(cake_X_y): """ check that gam expands lam, dtype, n_splines, fit_linear, fit_splines penalties, spline_order """ X, y = cake_X_y m = X.shape[1] gam = LinearGAM().fit(X, y) for param in ['dtype', 'n_splines', 'spline_order', 'fit_linear', 'fit_splines', 'penalties',]: assert(len(getattr(gam, '_' + param)) == m) assert(len(gam._lam) == (m + gam.fit_intercept)) def test_lam_non_neg_array_like(cake_X_y): """ lambda must be a non-negative float or array of floats """ X, y = cake_X_y try: gam = LinearGAM(lam=-1).fit(X, y) except ValueError: assert(True) try: gam = LinearGAM(lam=['hi']).fit(X, y) except ValueError: assert(True) def test_wrong_length_param(cake_X_y): """ If input param is iterable, then it must have have length equal to the number of features. """ X, y = cake_X_y m = X.shape[1] n_splines = [20] * (m+1) gam = LinearGAM(n_splines=n_splines) try: gam.fit(X, y) except ValueError: n_splines = [20] * (m) gam = LinearGAM(n_splines=n_splines).fit(X, y) assert(True) def test_penalties_must_be_or_contain_callable_or_auto(mcycle_X_y): """ penalty matrix must be/contain callable or auto, otherwise raise ValueError """ X, y = mcycle_X_y gam = LinearGAM(penalties='continuous') try: gam.fit(X, y) except ValueError: gam = LinearGAM(penalties='auto').fit(X, y) assert(True) # now do iterable gam = LinearGAM(penalties=['continuous']) try: gam.fit(X, y) except ValueError: gam = LinearGAM(penalties=['auto']).fit(X, y) assert(True) def test_line_or_spline(mcycle_X_y): """ a line or spline must be fit on each feature """ X, y = mcycle_X_y gam = LinearGAM(fit_linear=False ,fit_splines=False) try: gam.fit(X, y) except ValueError: gam = LinearGAM(fit_linear=False ,fit_splines=True).fit(X, y) assert(True) def test_linear_regression(mcycle_X_y): """ should be able to do linear regression """ X, y = mcycle_X_y gam = LinearGAM(fit_linear=True, fit_splines=False).fit(X, y) assert(gam._is_fitted) def test_compute_stats_even_if_not_enough_iters(default_X_y): """ should be able to do linear regression """ X, y = default_X_y gam = LogisticGAM(max_iter=1).fit(X, y) assert(hasattr(gam, 'statistics_')) # TODO categorical dtypes get no fit linear even if fit linear TRUE # TODO categorical dtypes get their own number of splines # TODO can force continuous dtypes on categorical vars if wanted PKLYrrpygam/tests/test_GAMs.py# -*- coding: utf-8 -*- import pytest from pygam import * def test_can_build_sub_models(): """ check that the inits of all the sub-models are correct """ LinearGAM() LogisticGAM() PoissonGAM() GammaGAM() InvGaussGAM() assert(True) def test_LinearGAM_uni(mcycle_X_y): """ check that we can fit a Linear GAM on real, univariate data """ X, y = mcycle_X_y gam = LinearGAM().fit(X, y) assert(gam._is_fitted) def test_LinearGAM_multi(wage_X_y): """ check that we can fit a Linear GAM on real, multivariate data """ X, y = wage_X_y gam = LinearGAM().fit(X, y) assert(gam._is_fitted) def test_LogisticGAM(default_X_y): """ check that we can fit a Logistic GAM on real data """ X, y = default_X_y gam = LogisticGAM().fit(X, y) assert(gam._is_fitted) def test_PoissonGAM(coal_X_y): """ check that we can fit a Poisson GAM on real data """ X, y = coal_X_y gam = PoissonGAM().fit(X, y) assert(gam._is_fitted) def test_InvGaussGAM(trees_X_y): """ check that we can fit a InvGauss GAM on real data """ X, y = trees_X_y gam = InvGaussGAM().fit(X, y) assert(gam._is_fitted) def test_GammaGAM(trees_X_y): """ check that we can fit a Gamma GAM on real data """ X, y = trees_X_y gam = GammaGAM().fit(X, y) assert(gam._is_fitted) def test_CustomGAM(trees_X_y): """ check that we can fit a Custom GAM on real data """ X, y = trees_X_y gam = GAM(distribution='gamma', link='inverse').fit(X, y) assert(gam._is_fitted) # TODO check dicts: DISTRIBUTIONS etc PK*L bbpygam/tests/test_core.py# -*- coding: utf-8 -*- import numpy as np import pytest from pygam.core import * def test_Core_class(): """ test attributes of core class """ c = Core() assert(c._name == None) c = Core(name='cat', line_width=70, line_offset=3) assert(c._name == 'cat') assert(c._line_width == 70) assert(c._line_offset == 3) def test_nice_repr(): """ test a simple repr for a fake object """ param_kvs = {} out = nice_repr('hi', param_kvs, line_width=30, line_offset=5, decimals=3) assert(out == "hi()") def test_nice_repr_more_attrs(): """ test a simple repr for a fake object with more attrs """ param_kvs = {'color': 'blue', 'n_ears': 3, 'height':1.3336} out = nice_repr('hi', param_kvs, line_width=60, line_offset=5, decimals=3) assert(out == "hi(color='blue', height=1.334, n_ears=3)") PKLVh pygam/tests/test_datasets.py# -*- coding: utf-8 -*- import numpy as np import pytest from pygam.datasets import cake from pygam.datasets import coal from pygam.datasets import default from pygam.datasets import faithful from pygam.datasets import hepatitis from pygam.datasets import mcycle from pygam.datasets import trees from pygam.datasets import wage from pygam.datasets import __all__ as DATASETS def _test_dataset(dataset_loader, n_rows, n_columns_X, n_columns_df, n_rows_X=None): """check the length of the dataset is the same regardless of the transformation check the columns of the dataset are correct in X_y and as a DataFrame check the transformation is correct check dtype is float for X_y check ndim for X is 2 Parameters ---------- dataset_loader : function, returns a dataframe or a tuple of arrays n_rows : int, expected number of rows in dataset n_columns_X : int, expected number of columns in the transformed dataset independent variables n_columns_df : int, expected number of columns in the original dataset dataframe n_rows_X : None, or int, expected number of rows in the transformed dataset independent variables if different from the original. This is usually necessary for datasets that use histogram transforms Returns ------- None """ if n_rows_X is None: n_rows_X = n_rows df = dataset_loader(return_X_y=False) X_y = dataset_loader(return_X_y=True) # number of rows never changes assert df.shape[0] == n_rows assert X_y[0].shape[0] == X_y[1].shape[0] == n_rows_X # check columns assert df.shape[1] == n_columns_df assert X_y[0].shape[1] == n_columns_X # check dtype assert X_y[0].dtype == X_y[1].dtype == 'float' # check shape assert X_y[0].ndim == 2 def test_cake(): _test_dataset(cake, n_rows=270, n_columns_X=3, n_columns_df=5) def test_coal(): _test_dataset(coal, n_rows=191, n_columns_X=1, n_columns_df=1, n_rows_X=150) def test_default(): _test_dataset(default, n_rows=10000, n_columns_X=3, n_columns_df=4) def test_faithful(): _test_dataset(faithful, n_rows=272, n_columns_X=1, n_columns_df=2, n_rows_X=200) def test_hepatitis(): _test_dataset(hepatitis, n_rows=86, n_columns_X=1, n_columns_df=3, n_rows_X=83) def test_mcycle(): _test_dataset(mcycle, n_rows=133, n_columns_X=1, n_columns_df=2) def test_trees(): _test_dataset(trees, n_rows=31, n_columns_X=2, n_columns_df=3) PKLWddpygam/tests/test_gridsearch.py# -*- coding: utf-8 -*- import numpy as np import pytest from pygam import * def test_gridsearch_returns_scores(mcycle_X_y): """ check that gridsearch returns the expected number of models """ n = 5 X, y = mcycle_X_y gam = LinearGAM() scores = gam.gridsearch(X, y, lam=np.logspace(-3,3, n), return_scores=True) assert(len(scores) == n) def test_gridsearch_returns_extra_score_if_fitted(mcycle_X_y): """ check that gridsearch returns an extra score if our model is pre-fitted """ n = 5 X, y = mcycle_X_y gam = LinearGAM().fit(X, y) scores = gam.gridsearch(X, y, lam=np.logspace(-3,3, n), return_scores=True) assert(len(scores) == n + 1) def test_gridsearch_keep_best(mcycle_X_y): """ check that gridsearch returns worse model if keep_best=False """ n = 5 X, y = mcycle_X_y gam = LinearGAM(lam=1000000).fit(X, y) score1 = gam.statistics_['GCV'] scores = gam.gridsearch(X, y, lam=np.logspace(-3,3, n), keep_best=False, return_scores=True) assert(np.min(list(scores.values())) < score1) def test_gridsearch_improves_objective(mcycle_X_y): """ check that gridsearch improves model objective """ n = 11 X, y = mcycle_X_y gam = LinearGAM().fit(X, y) objective_0 = gam.statistics_['GCV'] gam = LinearGAM().gridsearch(X, y, lam=np.logspace(-3,3, n)) objective_1 = gam.statistics_['GCV'] assert(objective_1 <= objective_0) def test_gridsearch_all_dimensions_same(cake_X_y): """ check that gridsearch searches all dimensions of lambda with equal values """ n = 5 X, y = cake_X_y scores = LinearGAM().gridsearch(X, y, lam=np.logspace(-3,3, n), return_scores=True) assert(len(scores) == n) assert(X.shape[1] > 1) def test_gridsearch_all_dimensions_independent(cake_X_y): """ check that gridsearch searches all dimensions of lambda independently """ n = 3 X, y = cake_X_y m = X.shape[1] scores = LinearGAM().gridsearch(X, y, lam=[np.logspace(-3,3, n)]*m, return_scores=True) assert(len(scores) == n**m) assert(m > 1) def test_GCV_objective_is_for_unknown_scale(mcycle_X_y, default_X_y, coal_X_y, trees_X_y): """ check that we use the GCV objective only for models with unknown scale & attempting to use it for models with known scale should return ValueError """ lam = np.linspace(1e-3, 1e3, 2) unknown_scale = [(LinearGAM, mcycle_X_y), (GammaGAM, trees_X_y), (InvGaussGAM, trees_X_y)] known_scale = [(LogisticGAM, default_X_y), (PoissonGAM, coal_X_y)] for gam, (X, y) in unknown_scale: scores1 = list(gam().gridsearch(X, y, lam=lam, objective='auto', return_scores=True).values()) scores2 = list(gam().gridsearch(X, y, lam=lam, objective='GCV', return_scores=True).values()) assert(np.allclose(scores1, scores2)) for gam, (X, y) in known_scale: try: list(gam().gridsearch(X, y, lam=lam, objective='GCV', return_scores=True).values()) except ValueError: assert(True) def test_UBRE_objective_is_for_known_scale(mcycle_X_y, default_X_y, coal_X_y, trees_X_y): """ check that we use the UBRE objective only for models with known scale & attempting to use it for models with unknown scale should return ValueError """ lam = np.linspace(1e-3, 1e3, 2) unknown_scale = [(LinearGAM, mcycle_X_y), (GammaGAM, trees_X_y), (InvGaussGAM, trees_X_y)] known_scale = [(LogisticGAM, default_X_y), (PoissonGAM, coal_X_y)] for gam, (X, y) in known_scale: scores1 = list(gam().gridsearch(X, y, lam=lam, objective='auto', return_scores=True).values()) scores2 = list(gam().gridsearch(X, y, lam=lam, objective='UBRE', return_scores=True).values()) assert(np.allclose(scores1, scores2)) for gam, (X, y) in unknown_scale: try: list(gam().gridsearch(X, y, lam=lam, objective='UBRE', return_scores=True).values()) except ValueError: assert(True) def test_no_models_fitted(mcycle_X_y): """ test no models fitted returns orginal gam """ X, y = mcycle_X_y scores = LinearGAM().gridsearch(X, y, lam=[-3, -2,-1], return_scores=True) # scores is not a dict of scores but an (unfitted) gam! assert(not isinstance(scores, dict)) assert(isinstance(scores, LinearGAM)) assert(not scores._is_fitted) PKLlH| | pygam/tests/test_penalties.py# -*- coding: utf-8 -*- import numpy as np import pytest from pygam import * from pygam.penalties import derivative from pygam.penalties import l2 from pygam.penalties import monotonic_inc from pygam.penalties import monotonic_dec from pygam.penalties import convex from pygam.penalties import concave from pygam.penalties import circular from pygam.penalties import none from pygam.penalties import wrap_penalty from pygam.utils import generate_X_grid def test_single_spline_penalty(): """ check that feature functions with only 1 basis are penalized correctly derivative penalty should be 0. l2 should penalty be 1. monotonic_ and convexity_ should be 0. """ coef = np.array(1.) assert(np.alltrue(derivative(1, coef).A == 0.)) assert(np.alltrue(l2(1, coef).A == 1.)) assert(np.alltrue(monotonic_inc(1, coef).A == 0.)) assert(np.alltrue(monotonic_dec(1, coef).A == 0.)) assert(np.alltrue(convex(1, coef).A == 0.)) assert(np.alltrue(concave(1, coef).A == 0.)) assert(np.alltrue(circular(1, coef).A == 0.)) assert(np.alltrue(none(1, coef).A == 0.)) def test_wrap_penalty(): """ check that wrap penalty indeed reduces inserts the desired penalty into the linear term when fit_linear is True, and 0, when fit_linear is False. """ coef = np.array(1.) n = 2 linear_penalty = -1 fit_linear = True p = wrap_penalty(none, fit_linear, linear_penalty=linear_penalty) P = p(n, coef).A assert(P.sum() == linear_penalty) fit_linear = False p = wrap_penalty(none, fit_linear, linear_penalty=linear_penalty) P = p(n, coef).A assert(P.sum() == 0.) def test_monotonic_inchepatitis_X_y(hepatitis_X_y): """ check that monotonic_inc constraint produces monotonic increasing function """ X, y = hepatitis_X_y gam = LinearGAM(constraints='monotonic_inc') gam.fit(X, y) XX = generate_X_grid(gam) Y = gam.predict(np.sort(XX)) diffs = np.diff(Y, n=1) assert(((diffs >= 0) + np.isclose(diffs, 0.)).all()) def test_monotonic_dec(hepatitis_X_y): """ check that monotonic_dec constraint produces monotonic decreasing function """ X, y = hepatitis_X_y gam = LinearGAM(constraints='monotonic_dec') gam.fit(X, y) XX = generate_X_grid(gam) Y = gam.predict(np.sort(XX)) diffs = np.diff(Y, n=1) assert(((diffs <= 0) + np.isclose(diffs, 0.)).all()) def test_convex(hepatitis_X_y): """ check that convex constraint produces convex function """ X, y = hepatitis_X_y gam = LinearGAM(constraints='convex') gam.fit(X, y) XX = generate_X_grid(gam) Y = gam.predict(np.sort(XX)) diffs = np.diff(Y, n=2) assert(((diffs >= 0) + np.isclose(diffs, 0.)).all()) def test_concave(hepatitis_X_y): """ check that concave constraint produces concave function """ X, y = hepatitis_X_y gam = LinearGAM(constraints='concave') gam.fit(X, y) XX = generate_X_grid(gam) Y = gam.predict(np.sort(XX)) diffs = np.diff(Y, n=2) assert(((diffs <= 0) + np.isclose(diffs, 0.)).all()) # TODO penalties gives expected matrix structure # TODO circular constraints PKLeepygam/tests/test_utils.py# -*- coding: utf-8 -*- from copy import deepcopy import numpy as np import pytest from pygam import * from pygam.utils import check_X, check_y, check_X_y from pygam.datasets import wage, default, mcycle # TODO check dtypes works as expected # TODO checkX, checky, check XY expand as needed, call out bad domain @pytest.fixture def wage_gam(wage_X_y): X, y = wage_X_y gam = LinearGAM().fit(X,y) return gam @pytest.fixture def default_gam(default_X_y): X, y = default_X_y gam = LogisticGAM().fit(X,y) return gam def test_check_X_categorical_prediction_exceeds_training(wage_X_y, wage_gam): """ if our categorical variable is outside the training range we should get an error """ X, y = wage_X_y gam = wage_gam eks = gam._edge_knots[-1] # last feature of wage dataset is categorical X[:,-1] = eks[-1] + 1 try: gam.predict(X) assert False except ValueError: X[:,-1] = eks[-1] gam.predict(X) assert(True) def test_check_y_not_int_not_float(wage_X_y, wage_gam): """y must be int or float, or we should get a value error""" X, y = wage_X_y y_str = ['hi'] * len(y) try: check_y(y_str, wage_gam.link, wage_gam.distribution) assert False except ValueError: check_y(y, wage_gam.link, wage_gam.distribution) assert(True) def test_check_y_casts_to_numerical(wage_X_y, wage_gam): """check_y will try to cast data to numerical types""" X, y = wage_X_y y = y.astype('object') y = check_y(y, wage_gam.link, wage_gam.distribution) assert y.dtype == 'float' def test_check_y_not_min_samples(wage_X_y, wage_gam): """check_y expects a minimum number of samples""" X, y = wage_X_y try: check_y(y, wage_gam.link, wage_gam.distribution, min_samples=len(y)+1, verbose=False) assert False except ValueError: check_y(y, wage_gam.link, wage_gam.distribution, min_samples=len(y), verbose=False) assert True def test_check_y_not_in_domain_link(default_X_y, default_gam): """if you give labels outide of the links domain, check_y will raise an error""" X, y = default_X_y gam = default_gam try: check_y(y + .1, default_gam.link, default_gam.distribution, verbose=False) assert False except ValueError: check_y(y, default_gam.link, default_gam.distribution, verbose=False) assert True def test_check_X_not_int_not_float(): """X must be an in or a float""" try: check_X(['hi'], verbose=False) assert False except ValueError: check_X([4], verbose=False) assert True def test_check_X_too_many_dims(): """check_X accepts at most 2D inputs""" try: check_X(np.ones((5,4,3))) assert False except ValueError: check_X(np.ones((5,4))) assert True def test_check_X_not_min_samples(): try: check_X(np.ones((5)), min_samples=6, verbose=False) assert False except ValueError: check_X(np.ones((5)), min_samples=5, verbose=False) assert True def test_check_X_y_different_lengths(): try: check_X_y(np.ones(5), np.ones(4)) assert False except ValueError: check_X_y(np.ones(5), np.ones(5)) assert True def test_input_data_after_fitting(mcycle_X_y): """ our check_X and check_y functions should be invoked any time external data is input to the model """ X, y = mcycle_X_y weights = np.ones_like(y) X_nan = deepcopy(X) X_nan[0] = X_nan[0] * np.nan y_nan = deepcopy(y.values) y_nan[0] = y_nan[0] * np.nan weights_nan = deepcopy(weights) weights_nan[0] = weights_nan[0] * np.nan gam = LinearGAM() with pytest.raises(ValueError): gam.fit(X_nan, y, weights) with pytest.raises(ValueError): gam.fit(X, y_nan, weights) with pytest.raises(ValueError): gam.fit(X, y, weights_nan) gam = gam.fit(X, y) # test X is nan with pytest.raises(ValueError): gam.predict(X_nan) with pytest.raises(ValueError): gam.predict_mu(X_nan) with pytest.raises(ValueError): gam.confidence_intervals(X_nan) with pytest.raises(ValueError): gam.prediction_intervals(X_nan) with pytest.raises(ValueError): gam.partial_dependence(X_nan) with pytest.raises(ValueError): gam.deviance_residuals(X_nan, y, weights) with pytest.raises(ValueError): gam.loglikelihood(X_nan, y, weights) with pytest.raises(ValueError): gam.gridsearch(X_nan, y, weights) with pytest.raises(ValueError): gam.sample(X_nan, y) # test y is nan with pytest.raises(ValueError): gam.deviance_residuals(X, y_nan, weights) with pytest.raises(ValueError): gam.loglikelihood(X, y_nan, weights) with pytest.raises(ValueError): gam.gridsearch(X, y_nan, weights) with pytest.raises(ValueError): gam.sample(X, y_nan, weights=weights, n_bootstraps=2) # test weights is nan with pytest.raises(ValueError): gam.deviance_residuals(X, y, weights_nan) with pytest.raises(ValueError): gam.loglikelihood(X, y, weights_nan) with pytest.raises(ValueError): gam.gridsearch(X, y, weights_nan) with pytest.raises(ValueError): gam.sample(X, y, weights=weights_nan, n_bootstraps=2) # # def test_b_spline_basis_clamped_what_we_want(): PK*LFLEEpygam-0.5.3.dist-info/LICENSE GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. {one line to give the program's name and a brief idea of what it does.} Copyright (C) {year} {name of author} This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: {project} Copyright (C) {year} {fullname} This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . PK!HxyUbpygam-0.5.3.dist-info/WHEEL HM K-*ϳR03rOK-J,/RH,Q034 /, (-JLR()*M ILR(4KM̫#DPK!H)FNmupygam-0.5.3.dist-info/METADATAKo0{lRib4VikyC-Wp_ 7$7GLY څѐ?)42ioۥgc0L֫-$_N3xTSQv4C;8+ !6F$ܣeҰp"6d~|Poc,YTطF %<`}p':u kP.4i ֻi]/狩KU(3u g6֬2l1eSm*/X,ֻ\u&o?&ng_O9Pl9& /9@תOעzVPK!H0%g! pygam-0.5.3.dist-info/RECORDuI}yX  !DgD׺vXe 'NfyzQ7E3cre'Oa*rpsr#,B0'RC@8CJ@U )7i7R+X1·i|J\RvqBn|"I Q퐾):pRzG8tZ`&e E3XH 3e"(.DK4+ζmrS.µ!1E}=ߘ}PjF)*fu2EU%h.pOp`x 8/G{=s `Mt4/䊓U={B0&_k 4B#DҨ>*;j~Z`hmm%DO1I(OߎaZ#Ov^qy OkD(SL@{h$%h]~uvSr^Z Ip$e֊+yfqKaBfn?BF&-Ecv#/ }4s,,ahR.m,^y,T߭i*AT fӓx51,/`$D а LwBʷYyG;P+ОM8,OqQ0NzJ (A|󾞑iQNY{y?hۍMQт [DIMqʳ{w`38y)c?y9}o "ƠD Fn+ݍ-/)ҀVoW$ ᖜFuLHg k(zY,!-Pԧ˵NӢF)[^'d؎ O`Ym/c ${? ס/9U~ۉm' {,?I6mEm`Bwk Oлߗy63C'.F!d~\y:8j%L[l#8!S༹^m }uA,m$ehT}$eYld'Q?R WɸjmvSc>csa؍:#^5x^h6˹bz ReնؘbR"1?' PKLفpygam/__init__.pyPK*L%pygam/callbacks.pyPK*LV7,MM spygam/core.pyPK}L'AA'pygam/distributions.pyPKFL'ipygam/links.pyPK´LϫI!I!pygam/penalties.pyPKғLKKpygam/pygam.pyPKғLm?``pygam/utils.pyPKL(q:UUspygam/datasets/__init__.pyPKLrapygam/datasets/blood1.csvPKL\79pygam/datasets/cake.csvPKLS'ԖrrVpygam/datasets/chicago.csvPKLoh pygam/datasets/coal.csvPKL% ++y pygam/datasets/default.csvPKLL %pygam/datasets/faithful.csvPKL%9'4pygam/datasets/hepatitis_A_bulgaria.csvPKL=m-}}7pygam/datasets/load_datasets.pyPKL"ITpygam/datasets/mcycle.csvPKL6++\pygam/datasets/trees.csvPKLP\^~^~F_pygam/datasets/wage.csvPK*Lpygam/tests/__init__.pyPKLxxpygam/tests/conftest.pyPKL閪??pygam/tests/test_GAM_methods.pyPKLBJ "pygam/tests/test_GAM_params.pyPKLYrr-pygam/tests/test_GAMs.pyPK*L bb4pygam/tests/test_core.pyPKLVh 8pygam/tests/test_datasets.pyPKLWddBpygam/tests/test_gridsearch.pyPKLlH| | Upygam/tests/test_penalties.pyPKLeekbpygam/tests/test_utils.pyPK*LFLEExpygam-0.5.3.dist-info/LICENSEPK!HxyUbpygam-0.5.3.dist-info/WHEELPK!H)FNmupygam-0.5.3.dist-info/METADATAPK!H0%g! pygam-0.5.3.dist-info/RECORDPK""Y