feat: 升级深度学习模型为 Temporal Fusion Transformer 架构

- 将 LSTMMLPRegressor 重构为 TemporalFusionRegressor,采用 Transformer Encoder 替代 LSTM
   - 新增 LearnedAttentionPooling 和 GatedResidualBlock 模块增强模型表达能力
   - 优化训练策略,使用 OneCycleLR 调度器和样本加权机制
   - 改进缺勤事件采样算法,基于压力、健康、家庭等维度更精确地计算缺勤时长
   - 更新 .gitignore 排除原始数据文件,删除不再使用的原始 CSV 文件
This commit is contained in:
2026-03-20 16:30:08 +08:00
parent ff0fbf96f7
commit 77e38fd15b
6 changed files with 225 additions and 12835 deletions

4
backend/.gitignore vendored
View File

@@ -66,4 +66,6 @@ Thumbs.db
.mypy_cache/ .mypy_cache/
.dmypy.json .dmypy.json
dmypy.json dmypy.json
models models
data

View File

@@ -55,8 +55,11 @@ STATIC_FEATURES = [
'岗位稳定性指数', '岗位稳定性指数',
] ]
DEFAULT_EPOCHS = 80 DEFAULT_EPOCHS = 80
DEFAULT_BATCH_SIZE = 256 DEFAULT_BATCH_SIZE = 128
EARLY_STOPPING_PATIENCE = 12 EARLY_STOPPING_PATIENCE = 16
TRANSFORMER_D_MODEL = 160
TRANSFORMER_HEADS = 5
TRANSFORMER_LAYERS = 3
BaseTorchModule = nn.Module if nn is not None else object BaseTorchModule = nn.Module if nn is not None else object
@@ -90,7 +93,46 @@ class SequenceStaticDataset(Dataset):
) )
class LSTMMLPRegressor(BaseTorchModule): class LearnedAttentionPooling(BaseTorchModule):
def __init__(self, hidden_dim: int):
super().__init__()
self.score = nn.Sequential(
nn.Linear(hidden_dim, hidden_dim),
nn.Tanh(),
nn.Linear(hidden_dim, 1),
)
def forward(self, sequence_x: torch.Tensor) -> torch.Tensor:
attn_scores = self.score(sequence_x).squeeze(-1)
attn_weights = torch.softmax(attn_scores, dim=1)
return torch.sum(sequence_x * attn_weights.unsqueeze(-1), dim=1)
class GatedResidualBlock(BaseTorchModule):
def __init__(self, input_dim: int, hidden_dim: int, dropout: float = 0.15):
super().__init__()
self.proj = nn.Linear(input_dim, hidden_dim) if input_dim != hidden_dim else nn.Identity()
self.net = nn.Sequential(
nn.Linear(input_dim, hidden_dim),
nn.LayerNorm(hidden_dim),
nn.GELU(),
nn.Dropout(dropout),
nn.Linear(hidden_dim, hidden_dim),
)
self.gate = nn.Sequential(
nn.Linear(hidden_dim * 2, hidden_dim),
nn.Sigmoid(),
)
self.out_norm = nn.LayerNorm(hidden_dim)
def forward(self, x: torch.Tensor) -> torch.Tensor:
residual = self.proj(x)
transformed = self.net(x)
gate = self.gate(torch.cat([residual, transformed], dim=-1))
return self.out_norm(residual + transformed * gate)
class TemporalFusionRegressor(BaseTorchModule):
def __init__( def __init__(
self, self,
seq_num_dim: int, seq_num_dim: int,
@@ -110,43 +152,57 @@ class LSTMMLPRegressor(BaseTorchModule):
static_cat_dim = sum(embedding.embedding_dim for embedding in self.static_cat_embeddings) static_cat_dim = sum(embedding.embedding_dim for embedding in self.static_cat_embeddings)
seq_input_dim = seq_num_dim + seq_cat_dim seq_input_dim = seq_num_dim + seq_cat_dim
static_input_dim = static_num_dim + static_cat_dim static_input_dim = static_num_dim + static_cat_dim
self.position_embedding = nn.Parameter(torch.randn(WINDOW_SIZE, TRANSFORMER_D_MODEL) * 0.02)
self.seq_projection = nn.Sequential( self.seq_projection = nn.Sequential(
nn.Linear(seq_input_dim, 128), nn.Linear(seq_input_dim, TRANSFORMER_D_MODEL),
nn.LayerNorm(128), nn.LayerNorm(TRANSFORMER_D_MODEL),
nn.GELU(), nn.GELU(),
nn.Dropout(0.15), nn.Dropout(0.12),
) )
self.lstm = nn.LSTM( encoder_layer = nn.TransformerEncoderLayer(
input_size=128, d_model=TRANSFORMER_D_MODEL,
hidden_size=96, nhead=TRANSFORMER_HEADS,
num_layers=2, dim_feedforward=TRANSFORMER_D_MODEL * 3,
dropout=0.15,
activation='gelu',
batch_first=True, batch_first=True,
dropout=0.2, norm_first=True,
bidirectional=True,
) )
self.sequence_encoder = nn.TransformerEncoder(
encoder_layer,
num_layers=TRANSFORMER_LAYERS,
)
self.sequence_pool = LearnedAttentionPooling(TRANSFORMER_D_MODEL)
self.sequence_head = nn.Sequential( self.sequence_head = nn.Sequential(
nn.Linear(96 * 2 * 2, 128), nn.Linear(TRANSFORMER_D_MODEL * 3, 192),
nn.LayerNorm(192),
nn.GELU(),
nn.Dropout(0.18),
nn.Linear(192, 128),
nn.GELU(), nn.GELU(),
nn.Dropout(0.2),
) )
self.static_net = nn.Sequential( self.static_net = nn.Sequential(
nn.Linear(static_input_dim, 96), GatedResidualBlock(static_input_dim, 128, dropout=0.15),
nn.LayerNorm(96), GatedResidualBlock(128, 96, dropout=0.12),
nn.GELU(), )
nn.Dropout(0.15), self.context_gate = nn.Sequential(
nn.Linear(96, 64), nn.Linear(128 + 96, 128 + 96),
nn.GELU(), nn.Sigmoid(),
nn.Dropout(0.1),
) )
self.fusion = nn.Sequential( self.fusion = nn.Sequential(
nn.Linear(128 + 64, 128), GatedResidualBlock(128 + 96, 160, dropout=0.18),
nn.LayerNorm(128), nn.Dropout(0.12),
nn.Linear(160, 96),
nn.GELU(), nn.GELU(),
nn.Dropout(0.2), nn.Dropout(0.08),
nn.Linear(128, 64), nn.Linear(96, 1),
)
self.shortcut_head = nn.Sequential(
nn.Linear(seq_num_dim + static_num_dim, 64),
nn.LayerNorm(64),
nn.GELU(), nn.GELU(),
nn.Dropout(0.1), nn.Dropout(0.08),
nn.Linear(64, 1), nn.Linear(64, 1),
) )
@@ -163,11 +219,12 @@ class LSTMMLPRegressor(BaseTorchModule):
seq_parts.append(seq_embedded) seq_parts.append(seq_embedded)
seq_input = torch.cat(seq_parts, dim=-1) seq_input = torch.cat(seq_parts, dim=-1)
seq_input = self.seq_projection(seq_input) seq_input = self.seq_projection(seq_input)
seq_input = seq_input + self.position_embedding.unsqueeze(0)
lstm_output, _ = self.lstm(seq_input) sequence_context = self.sequence_encoder(seq_input)
sequence_last = lstm_output[:, -1, :] sequence_last = sequence_context[:, -1, :]
sequence_mean = lstm_output.mean(dim=1) sequence_mean = sequence_context.mean(dim=1)
sequence_repr = self.sequence_head(torch.cat([sequence_last, sequence_mean], dim=1)) sequence_attended = self.sequence_pool(sequence_context)
sequence_repr = self.sequence_head(torch.cat([sequence_last, sequence_mean, sequence_attended], dim=1))
static_parts = [static_num_x] static_parts = [static_num_x]
static_embedded = self._embed_categorical(static_cat_x, self.static_cat_embeddings) static_embedded = self._embed_categorical(static_cat_x, self.static_cat_embeddings)
@@ -177,7 +234,13 @@ class LSTMMLPRegressor(BaseTorchModule):
static_repr = self.static_net(static_input) static_repr = self.static_net(static_input)
fused = torch.cat([sequence_repr, static_repr], dim=1) fused = torch.cat([sequence_repr, static_repr], dim=1)
return self.fusion(fused).squeeze(1) fused = fused * self.context_gate(fused)
shortcut = self.shortcut_head(torch.cat([seq_num_x[:, -1, :], static_num_x], dim=1))
return (self.fusion(fused) + shortcut).squeeze(1)
class LSTMMLPRegressor(TemporalFusionRegressor):
pass
def is_available() -> bool: def is_available() -> bool:
@@ -413,6 +476,15 @@ def _evaluate_model(
return metrics['rmse'], metrics return metrics['rmse'], metrics
def _compute_sample_weights(targets: torch.Tensor, target_transform: str) -> torch.Tensor:
if target_transform == 'log1p':
base_targets = torch.expm1(targets)
else:
base_targets = targets
normalized = torch.clamp(base_targets / 12.0, min=0.0, max=2.0)
return 1.0 + normalized * 0.8
def train_lstm_mlp( def train_lstm_mlp(
train_df: pd.DataFrame, train_df: pd.DataFrame,
test_df: pd.DataFrame, test_df: pd.DataFrame,
@@ -455,29 +527,35 @@ def train_lstm_mlp(
else: else:
print('[lstm_mlp] Training device: CPU') print('[lstm_mlp] Training device: CPU')
model = LSTMMLPRegressor( model = TemporalFusionRegressor(
seq_num_dim=train_seq_num.shape[-1], seq_num_dim=train_seq_num.shape[-1],
static_num_dim=train_static_num.shape[-1], static_num_dim=train_static_num.shape[-1],
seq_cat_cardinalities=[len(category_maps[feature]) + 1 for feature in feature_layout['seq_cat_features']], seq_cat_cardinalities=[len(category_maps[feature]) + 1 for feature in feature_layout['seq_cat_features']],
static_cat_cardinalities=[len(category_maps[feature]) + 1 for feature in feature_layout['static_cat_features']], static_cat_cardinalities=[len(category_maps[feature]) + 1 for feature in feature_layout['static_cat_features']],
).to(device) ).to(device)
optimizer = torch.optim.AdamW(model.parameters(), lr=0.0012, weight_decay=1e-4) optimizer = torch.optim.AdamW(model.parameters(), lr=9e-4, weight_decay=3e-4)
scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau( criterion = nn.SmoothL1Loss(beta=0.28, reduction='none')
optimizer, mode='min', factor=0.6, patience=4, min_lr=1e-5
)
criterion = nn.SmoothL1Loss(beta=0.35)
train_loader = DataLoader( train_loader = DataLoader(
SequenceStaticDataset(train_seq_num, train_seq_cat, train_static_num, train_static_cat, y_train), SequenceStaticDataset(train_seq_num, train_seq_cat, train_static_num, train_static_cat, y_train),
batch_size=batch_size, batch_size=batch_size,
shuffle=True, shuffle=True,
drop_last=False,
) )
val_loader = DataLoader( val_loader = DataLoader(
SequenceStaticDataset(val_seq_num, val_seq_cat, val_static_num, val_static_cat, y_val), SequenceStaticDataset(val_seq_num, val_seq_cat, val_static_num, val_static_cat, y_val),
batch_size=batch_size, batch_size=batch_size,
shuffle=False, shuffle=False,
) )
total_steps = max(20, epochs * max(1, len(train_loader)))
scheduler = torch.optim.lr_scheduler.OneCycleLR(
optimizer,
max_lr=0.0014,
total_steps=total_steps,
pct_start=0.12,
div_factor=12.0,
final_div_factor=40.0,
)
best_state = None best_state = None
best_metrics = None best_metrics = None
@@ -496,15 +574,17 @@ def train_lstm_mlp(
optimizer.zero_grad(set_to_none=True) optimizer.zero_grad(set_to_none=True)
predictions = model(batch_seq_num, batch_seq_cat, batch_static_num, batch_static_cat) predictions = model(batch_seq_num, batch_seq_cat, batch_static_num, batch_static_cat)
sample_weights = _compute_sample_weights(batch_target, target_transform)
loss = criterion(predictions, batch_target) loss = criterion(predictions, batch_target)
loss = (loss * sample_weights).mean()
loss.backward() loss.backward()
torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=1.0) torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=1.0)
optimizer.step() optimizer.step()
scheduler.step()
running_loss += float(loss.item()) * len(batch_target) running_loss += float(loss.item()) * len(batch_target)
train_loss = running_loss / max(1, len(train_loader.dataset)) train_loss = running_loss / max(1, len(train_loader.dataset))
val_rmse, val_metrics = _evaluate_model(model, val_loader, device, target_transform) val_rmse, val_metrics = _evaluate_model(model, val_loader, device, target_transform)
scheduler.step(val_rmse)
improved = val_rmse + 1e-4 < best_val_rmse improved = val_rmse + 1e-4 < best_val_rmse
if improved: if improved:
@@ -554,6 +634,7 @@ def train_lstm_mlp(
bundle = { bundle = {
'state_dict': model.state_dict(), 'state_dict': model.state_dict(),
'architecture': 'temporal_fusion_transformer',
'window_size': WINDOW_SIZE, 'window_size': WINDOW_SIZE,
'target_transform': target_transform, 'target_transform': target_transform,
'feature_layout': feature_layout, 'feature_layout': feature_layout,
@@ -583,6 +664,7 @@ def train_lstm_mlp(
'sequence_window_size': WINDOW_SIZE, 'sequence_window_size': WINDOW_SIZE,
'sequence_feature_names': SEQUENCE_FEATURES, 'sequence_feature_names': SEQUENCE_FEATURES,
'static_feature_names': STATIC_FEATURES, 'static_feature_names': STATIC_FEATURES,
'deep_learning_architecture': 'temporal_fusion_transformer',
'deep_validation_r2': round(float(best_metrics['r2']), 4) if best_metrics else None, 'deep_validation_r2': round(float(best_metrics['r2']), 4) if best_metrics else None,
}, },
} }

View File

@@ -161,68 +161,109 @@ def sample_event(rng, employee):
weekday = int(rng.integers(1, 8)) weekday = int(rng.integers(1, 8))
near_holiday = int(rng.random() < (0.3 if month in [1, 2, 4, 5, 9, 10] else 0.16)) near_holiday = int(rng.random() < (0.3 if month in [1, 2, 4, 5, 9, 10] else 0.16))
leave_type_items = ['病假', '事假', '年假', '调休', '婚假', '丧假', '产检育儿假', '工伤假', '其他'] leave_type_items = ['病假', '事假', '年假', '调休', '婚假', '丧假', '产检育儿假', '工伤假', '其他']
leave_type = weighted_choice(rng, leave_type_items, [0.3, 0.22, 0.12, 0.14, 0.03, 0.02, 0.06, 0.02, 0.09]) leave_probs = [0.26, 0.22, 0.11, 0.14, 0.03, 0.02, 0.07, 0.03, 0.12]
if employee['子女数量'] > 0 and rng.random() < 0.14: if employee['是否慢性病史'] == 1 or employee['年度体检异常标记'] == 1:
reason_category = '子女照护' leave_probs = [0.34, 0.18, 0.08, 0.1, 0.02, 0.02, 0.08, 0.04, 0.14]
elif employee['子女数量'] >= 2:
leave_probs = [0.22, 0.24, 0.1, 0.12, 0.03, 0.02, 0.12, 0.02, 0.13]
leave_type = weighted_choice(rng, leave_type_items, leave_probs)
if leave_type in ['病假', '工伤假']:
reason_category = weighted_choice(rng, ['身体不适', '就医复查', '职业疲劳'], [0.52, 0.3, 0.18])
elif leave_type == '产检育儿假':
reason_category = weighted_choice(rng, ['子女照护', '家庭事务', '身体不适'], [0.6, 0.25, 0.15])
elif leave_type in ['婚假', '丧假']:
reason_category = weighted_choice(rng, ['家庭事务', '突发事件'], [0.72, 0.28])
elif leave_type in ['年假', '调休']:
reason_category = weighted_choice(rng, ['职业疲劳', '家庭事务', '交通受阻'], [0.52, 0.28, 0.2])
else: else:
reason_category = weighted_choice( reason_category = weighted_choice(
rng, rng,
['身体不适', '家庭事务', '交通受阻', '突发事件', '职业疲劳', '就医复查'], ['身体不适', '家庭事务', '子女照护', '交通受阻', '突发事件', '职业疲劳'],
[0.28, 0.19, 0.09, 0.11, 0.2, 0.13], [0.2, 0.22, 0.14, 0.12, 0.12, 0.2],
) )
medical_certificate = int(leave_type in ['病假', '工伤假'] or reason_category in ['身体不适', '就医复查'])
urgent_leave = int(rng.random() < (0.45 if leave_type in ['病假', '事假', '工伤假'] else 0.18)) medical_certificate = int(
continuous_absence = int(rng.random() < (0.2 if leave_type in ['病假', '产检育儿假', '工伤假'] else 0.08)) leave_type in ['病假', '工伤假']
previous_overtime = int(rng.random() < min(0.85, employee['月均加班时长'] / 65)) or reason_category in ['身体不适', '就医复查']
or (employee['是否慢性病史'] == 1 and leave_type == '其他')
)
urgent_leave = int(
leave_type in ['病假', '工伤假']
or reason_category in ['突发事件', '身体不适']
or (near_holiday == 0 and leave_type == '事假' and rng.random() < 0.35)
)
continuous_absence = int(
leave_type in ['病假', '工伤假', '产检育儿假']
and (employee['近90天缺勤次数'] >= 2 or employee['近180天请假总时长'] >= 28)
)
previous_overtime = int(
employee['月均加班时长'] >= 30
or (employee['月均加班时长'] >= 24 and weekday in [1, 2, 5])
or (employee['是否夜班岗位'] == 1 and rng.random() < 0.65)
)
season = season_from_month(month) season = season_from_month(month)
channel = weighted_choice(rng, ['系统申请', '主管代提', '临时电话报备'], [0.68, 0.18, 0.14]) channel = weighted_choice(rng, ['系统申请', '主管代提', '临时电话报备'], [0.68, 0.18, 0.14])
base = 0.95 pressure_score = (
base += min(employee['月均加班时长'] / 28, 1.8) employee['月均加班时长'] * 0.032
base += min(employee['通勤时长分钟'] / 65, 1.2) + employee['通勤时长分钟'] * 0.018
base += employee['是否夜班岗位'] * 0.9 + employee['是否夜班岗位'] * 0.75
base += employee['是否慢性病史'] * 1.25 + employee['是否跨城通勤'] * 0.32
base += employee['年度体检异常标记'] * 0.6 + previous_overtime * 0.35
base += 0.35 * employee['子女数量'] )
base += 0.5 if employee['心理压力等级'] == '' else (0.2 if employee['心理压力等级'] == '' else -0.1) health_score = (
base += 0.4 if employee['是否跨城通勤'] else 0 employee['是否慢性病史'] * 1.2
base += 0.35 if previous_overtime else 0 + employee['年度体检异常标记'] * 0.55
base += 0.35 if near_holiday else 0 + (employee['BMI'] >= 28) * 0.3
base += 0.3 if continuous_absence else 0 + (employee['近30天睡眠时长均值'] < 6.4) * 0.45
base += 0.3 if employee['近90天缺勤次数'] >= 3 else 0 )
base -= 0.35 if employee['绩效等级'] == 'A' else (0.15 if employee['绩效等级'] == 'B' else 0) family_score = employee['子女数量'] * 0.18 + employee['是否独生子女家庭负担'] * 0.28
base -= min(employee['司龄年数'] / 40, 0.5) resilience_score = (
base -= min(employee['每周运动频次'] * 0.08, 0.3) (0.55 if employee['绩效等级'] == 'A' else 0.25 if employee['绩效等级'] == 'B' else 0.0)
base -= 0.2 if employee['近30天睡眠时长均值'] >= 7.5 else 0 + min(employee['司龄年数'] / 26, 0.65)
+ min(employee['每周运动频次'] * 0.06, 0.25)
)
base = 0.35
base += pressure_score
base += health_score
base += family_score
base += 0.4 if employee['心理压力等级'] == '' else (0.18 if employee['心理压力等级'] == '' else -0.05)
base += 0.18 if near_holiday else 0.0
base += 0.35 if continuous_absence else 0.0
base += 0.28 if employee['近90天缺勤次数'] >= 3 else 0.0
base += 0.18 if employee['近180天请假总时长'] >= 36 else 0.0
base -= resilience_score
leave_bonus = { leave_bonus = {
'病假': 2.0, '病假': 2.1,
'事假': 0.8, '事假': 0.8,
'年假': 0.1, '年假': 0.15,
'调休': 0.1, '调休': 0.1,
'婚假': 3.0, '婚假': 3.1,
'丧假': 2.8, '丧假': 2.8,
'产检育儿假': 2.4, '产检育儿假': 2.35,
'工伤假': 3.8, '工伤假': 3.9,
'其他': 0.5, '其他': 0.55,
} }
reason_bonus = { reason_bonus = {
'身体不适': 1.0, '身体不适': 1.0,
'家庭事务': 0.5, '家庭事务': 0.55,
'子女照护': 0.8, '子女照护': 0.75,
'交通受阻': 0.2, '交通受阻': 0.2,
'突发事件': 0.6, '突发事件': 0.6,
'职业疲劳': 0.7, '职业疲劳': 0.7,
'就医复查': 1.2, '就医复查': 1.15,
} }
industry_bonus = { industry_bonus = {
'制造业': 0.35, '制造业': 0.42,
'互联网': 0.2, '互联网': 0.22,
'零售连锁': 0.25, '零售连锁': 0.28,
'物流运输': 0.4, '物流运输': 0.5,
'金融服务': 0.1, '金融服务': 0.12,
'医药健康': 0.2, '医药健康': 0.24,
'建筑工程': 0.35, '建筑工程': 0.4,
} }
season_bonus = {1: 0.35, 2: 0.0, 3: 0.15, 4: 0.05} season_bonus = {1: 0.35, 2: 0.0, 3: 0.15, 4: 0.05}
weekday_bonus = {1: 0.05, 2: 0.0, 3: 0.0, 4: 0.05, 5: 0.15, 6: 0.25, 7: 0.3} weekday_bonus = {1: 0.05, 2: 0.0, 3: 0.0, 4: 0.05, 5: 0.15, 6: 0.25, 7: 0.3}
@@ -233,18 +274,21 @@ def sample_event(rng, employee):
duration += industry_bonus[employee['所属行业']] duration += industry_bonus[employee['所属行业']]
duration += season_bonus[season] duration += season_bonus[season]
duration += weekday_bonus[weekday] duration += weekday_bonus[weekday]
duration += 0.55 if medical_certificate else 0 duration += 0.55 if medical_certificate else 0.0
duration += 0.4 if urgent_leave else -0.05 duration += 0.28 if urgent_leave else -0.06
duration += rng.normal(0, 0.9)
if leave_type in ['', '丧假', '工伤假'] and rng.random() < 0.5: if leave_type == '' and employee['是否慢性病史'] == 1:
duration += rng.uniform(1.5, 5) duration += 0.85
if leave_type == '' and employee['是否慢性病史'] == 1 and rng.random() < 0.35: if leave_type == '工伤':
duration += rng.uniform(1, 4) duration += 1.0 + employee['是否夜班岗位'] * 0.3
if leave_type in ['婚假', '丧假']:
duration += 0.7 + 0.18 * near_holiday
if leave_type == '产检育儿假':
duration += 0.55 + employee['子女数量'] * 0.12
if leave_type in ['年假', '调休']: if leave_type in ['年假', '调休']:
duration *= rng.uniform(0.7, 0.95) duration *= 0.82 if near_holiday == 0 else 0.9
duration = round(float(np.clip(duration, 0.5, 24.0)), 1) duration = round(float(np.clip(duration + rng.normal(0, 0.35), 0.5, 18.0)), 1)
event = employee.copy() event = employee.copy()
event.update({ event.update({

View File

@@ -1,741 +0,0 @@
ID;Reason for absence;Month of absence;Day of the week;Seasons;Transportation expense;Distance from Residence to Work;Service time;Age;Work load Average/day ;Hit target;Disciplinary failure;Education;Son;Social drinker;Social smoker;Pet;Weight;Height;Body mass index;Absenteeism time in hours
11;26;7;3;1;289;36;13;33;239.554;97;0;1;2;1;0;1;90;172;30;4
36;0;7;3;1;118;13;18;50;239.554;97;1;1;1;1;0;0;98;178;31;0
3;23;7;4;1;179;51;18;38;239.554;97;0;1;0;1;0;0;89;170;31;2
7;7;7;5;1;279;5;14;39;239.554;97;0;1;2;1;1;0;68;168;24;4
11;23;7;5;1;289;36;13;33;239.554;97;0;1;2;1;0;1;90;172;30;2
3;23;7;6;1;179;51;18;38;239.554;97;0;1;0;1;0;0;89;170;31;2
10;22;7;6;1;361;52;3;28;239.554;97;0;1;1;1;0;4;80;172;27;8
20;23;7;6;1;260;50;11;36;239.554;97;0;1;4;1;0;0;65;168;23;4
14;19;7;2;1;155;12;14;34;239.554;97;0;1;2;1;0;0;95;196;25;40
1;22;7;2;1;235;11;14;37;239.554;97;0;3;1;0;0;1;88;172;29;8
20;1;7;2;1;260;50;11;36;239.554;97;0;1;4;1;0;0;65;168;23;8
20;1;7;3;1;260;50;11;36;239.554;97;0;1;4;1;0;0;65;168;23;8
20;11;7;4;1;260;50;11;36;239.554;97;0;1;4;1;0;0;65;168;23;8
3;11;7;4;1;179;51;18;38;239.554;97;0;1;0;1;0;0;89;170;31;1
3;23;7;4;1;179;51;18;38;239.554;97;0;1;0;1;0;0;89;170;31;4
24;14;7;6;1;246;25;16;41;239.554;97;0;1;0;1;0;0;67;170;23;8
3;23;7;6;1;179;51;18;38;239.554;97;0;1;0;1;0;0;89;170;31;2
3;21;7;2;1;179;51;18;38;239.554;97;0;1;0;1;0;0;89;170;31;8
6;11;7;5;1;189;29;13;33;239.554;97;0;1;2;0;0;2;69;167;25;8
33;23;8;4;1;248;25;14;47;205.917;92;0;1;2;0;0;1;86;165;32;2
18;10;8;4;1;330;16;4;28;205.917;92;0;2;0;0;0;0;84;182;25;8
3;11;8;2;1;179;51;18;38;205.917;92;0;1;0;1;0;0;89;170;31;1
10;13;8;2;1;361;52;3;28;205.917;92;0;1;1;1;0;4;80;172;27;40
20;28;8;6;1;260;50;11;36;205.917;92;0;1;4;1;0;0;65;168;23;4
11;18;8;2;1;289;36;13;33;205.917;92;0;1;2;1;0;1;90;172;30;8
10;25;8;2;1;361;52;3;28;205.917;92;0;1;1;1;0;4;80;172;27;7
11;23;8;3;1;289;36;13;33;205.917;92;0;1;2;1;0;1;90;172;30;1
30;28;8;4;1;157;27;6;29;205.917;92;0;1;0;1;1;0;75;185;22;4
11;18;8;4;1;289;36;13;33;205.917;92;0;1;2;1;0;1;90;172;30;8
3;23;8;6;1;179;51;18;38;205.917;92;0;1;0;1;0;0;89;170;31;2
3;18;8;2;1;179;51;18;38;205.917;92;0;1;0;1;0;0;89;170;31;8
2;18;8;5;1;235;29;12;48;205.917;92;0;1;1;0;1;5;88;163;33;8
1;23;8;5;1;235;11;14;37;205.917;92;0;3;1;0;0;1;88;172;29;4
2;18;8;2;1;235;29;12;48;205.917;92;0;1;1;0;1;5;88;163;33;8
3;23;8;2;1;179;51;18;38;205.917;92;0;1;0;1;0;0;89;170;31;2
10;23;8;2;1;361;52;3;28;205.917;92;0;1;1;1;0;4;80;172;27;1
11;24;8;3;1;289;36;13;33;205.917;92;0;1;2;1;0;1;90;172;30;8
19;11;8;5;1;291;50;12;32;205.917;92;0;1;0;1;0;0;65;169;23;4
2;28;8;6;1;235;29;12;48;205.917;92;0;1;1;0;1;5;88;163;33;8
20;23;8;6;1;260;50;11;36;205.917;92;0;1;4;1;0;0;65;168;23;4
27;23;9;3;1;184;42;7;27;241.476;92;0;1;0;0;0;0;58;167;21;2
34;23;9;2;1;118;10;10;37;241.476;92;0;1;0;0;0;0;83;172;28;4
3;23;9;3;1;179;51;18;38;241.476;92;0;1;0;1;0;0;89;170;31;4
5;19;9;3;1;235;20;13;43;241.476;92;0;1;1;1;0;0;106;167;38;8
14;23;9;4;1;155;12;14;34;241.476;92;0;1;2;1;0;0;95;196;25;2
34;23;9;2;1;118;10;10;37;241.476;92;0;1;0;0;0;0;83;172;28;3
3;23;9;3;1;179;51;18;38;241.476;92;0;1;0;1;0;0;89;170;31;3
15;23;9;5;1;291;31;12;40;241.476;92;0;1;1;1;0;1;73;171;25;4
20;22;9;6;1;260;50;11;36;241.476;92;0;1;4;1;0;0;65;168;23;8
15;14;9;2;4;291;31;12;40;241.476;92;0;1;1;1;0;1;73;171;25;32
20;0;9;2;4;260;50;11;36;241.476;92;1;1;4;1;0;0;65;168;23;0
29;0;9;2;4;225;26;9;28;241.476;92;1;1;1;0;0;2;69;169;24;0
28;23;9;3;4;225;26;9;28;241.476;92;0;1;1;0;0;2;69;169;24;2
34;23;9;3;4;118;10;10;37;241.476;92;0;1;0;0;0;0;83;172;28;2
11;0;9;3;4;289;36;13;33;241.476;92;1;1;2;1;0;1;90;172;30;0
36;0;9;3;4;118;13;18;50;241.476;92;1;1;1;1;0;0;98;178;31;0
28;18;9;4;4;225;26;9;28;241.476;92;0;1;1;0;0;2;69;169;24;3
3;23;9;4;4;179;51;18;38;241.476;92;0;1;0;1;0;0;89;170;31;3
13;0;9;4;4;369;17;12;31;241.476;92;1;1;3;1;0;0;70;169;25;0
33;23;9;6;4;248;25;14;47;241.476;92;0;1;2;0;0;1;86;165;32;1
3;23;9;6;4;179;51;18;38;241.476;92;0;1;0;1;0;0;89;170;31;3
20;23;9;6;4;260;50;11;36;241.476;92;0;1;4;1;0;0;65;168;23;4
3;23;10;3;4;179;51;18;38;253.465;93;0;1;0;1;0;0;89;170;31;3
34;23;10;3;4;118;10;10;37;253.465;93;0;1;0;0;0;0;83;172;28;3
36;0;10;4;4;118;13;18;50;253.465;93;1;1;1;1;0;0;98;178;31;0
22;23;10;5;4;179;26;9;30;253.465;93;0;3;0;0;0;0;56;171;19;1
3;23;10;6;4;179;51;18;38;253.465;93;0;1;0;1;0;0;89;170;31;3
28;23;10;6;4;225;26;9;28;253.465;93;0;1;1;0;0;2;69;169;24;3
34;23;10;3;4;118;10;10;37;253.465;93;0;1;0;0;0;0;83;172;28;3
28;23;10;4;4;225;26;9;28;253.465;93;0;1;1;0;0;2;69;169;24;2
33;23;10;4;4;248;25;14;47;253.465;93;0;1;2;0;0;1;86;165;32;2
15;23;10;5;4;291;31;12;40;253.465;93;0;1;1;1;0;1;73;171;25;5
3;23;10;4;4;179;51;18;38;253.465;93;0;1;0;1;0;0;89;170;31;8
28;23;10;4;4;225;26;9;28;253.465;93;0;1;1;0;0;2;69;169;24;3
20;19;10;5;4;260;50;11;36;253.465;93;0;1;4;1;0;0;65;168;23;16
15;14;10;3;4;291;31;12;40;253.465;93;0;1;1;1;0;1;73;171;25;8
28;28;10;3;4;225;26;9;28;253.465;93;0;1;1;0;0;2;69;169;24;2
11;26;10;4;4;289;36;13;33;253.465;93;0;1;2;1;0;1;90;172;30;8
10;23;10;6;4;361;52;3;28;253.465;93;0;1;1;1;0;4;80;172;27;1
20;28;10;6;4;260;50;11;36;253.465;93;0;1;4;1;0;0;65;168;23;3
3;23;11;5;4;179;51;18;38;306.345;93;0;1;0;1;0;0;89;170;31;1
28;23;11;4;4;225;26;9;28;306.345;93;0;1;1;0;0;2;69;169;24;1
3;13;11;5;4;179;51;18;38;306.345;93;0;1;0;1;0;0;89;170;31;8
17;21;11;5;4;179;22;17;40;306.345;93;0;2;2;0;1;0;63;170;22;8
15;23;11;5;4;291;31;12;40;306.345;93;0;1;1;1;0;1;73;171;25;5
14;10;11;2;4;155;12;14;34;306.345;93;0;1;2;1;0;0;95;196;25;32
6;22;11;2;4;189;29;13;33;306.345;93;0;1;2;0;0;2;69;167;25;8
15;14;11;2;4;291;31;12;40;306.345;93;0;1;1;1;0;1;73;171;25;40
28;23;11;4;4;225;26;9;28;306.345;93;0;1;1;0;0;2;69;169;24;1
14;6;11;6;4;155;12;14;34;306.345;93;0;1;2;1;0;0;95;196;25;8
28;23;11;4;4;225;26;9;28;306.345;93;0;1;1;0;0;2;69;169;24;3
17;21;11;4;4;179;22;17;40;306.345;93;0;2;2;0;1;0;63;170;22;8
28;13;11;6;4;225;26;9;28;306.345;93;0;1;1;0;0;2;69;169;24;3
20;28;11;6;4;260;50;11;36;306.345;93;0;1;4;1;0;0;65;168;23;4
33;28;11;2;4;248;25;14;47;306.345;93;0;1;2;0;0;1;86;165;32;1
28;28;11;3;4;225;26;9;28;306.345;93;0;1;1;0;0;2;69;169;24;3
11;7;11;4;4;289;36;13;33;306.345;93;0;1;2;1;0;1;90;172;30;24
15;23;11;5;4;291;31;12;40;306.345;93;0;1;1;1;0;1;73;171;25;3
33;23;12;3;4;248;25;14;47;261.306;97;0;1;2;0;0;1;86;165;32;1
34;19;12;3;4;118;10;10;37;261.306;97;0;1;0;0;0;0;83;172;28;64
36;23;12;4;4;118;13;18;50;261.306;97;0;1;1;1;0;0;98;178;31;2
1;26;12;4;4;235;11;14;37;261.306;97;0;3;1;0;0;1;88;172;29;8
28;23;12;5;4;225;26;9;28;261.306;97;0;1;1;0;0;2;69;169;24;2
20;26;12;6;4;260;50;11;36;261.306;97;0;1;4;1;0;0;65;168;23;8
34;19;12;3;4;118;10;10;37;261.306;97;0;1;0;0;0;0;83;172;28;56
10;22;12;4;4;361;52;3;28;261.306;97;0;1;1;1;0;4;80;172;27;8
28;28;12;5;4;225;26;9;28;261.306;97;0;1;1;0;0;2;69;169;24;3
20;28;12;6;4;260;50;11;36;261.306;97;0;1;4;1;0;0;65;168;23;3
28;23;12;3;4;225;26;9;28;261.306;97;0;1;1;0;0;2;69;169;24;2
10;22;12;4;4;361;52;3;28;261.306;97;0;1;1;1;0;4;80;172;27;8
34;27;12;6;4;118;10;10;37;261.306;97;0;1;0;0;0;0;83;172;28;2
24;19;12;6;2;246;25;16;41;261.306;97;0;1;0;1;0;0;67;170;23;8
28;23;12;6;2;225;26;9;28;261.306;97;0;1;1;0;0;2;69;169;24;2
28;23;1;4;2;225;26;9;28;308.593;95;0;1;1;0;0;2;69;169;24;1
34;19;1;2;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;1
34;27;1;3;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;1
14;18;1;3;2;155;12;14;34;308.593;95;0;1;2;1;0;0;95;196;25;8
28;27;1;4;2;225;26;9;28;308.593;95;0;1;1;0;0;2;69;169;24;2
27;23;1;5;2;184;42;7;27;308.593;95;0;1;0;0;0;0;58;167;21;2
28;28;1;5;2;225;26;9;28;308.593;95;0;1;1;0;0;2;69;169;24;2
28;27;1;6;2;225;26;9;28;308.593;95;0;1;1;0;0;2;69;169;24;1
34;27;1;2;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;2
28;27;1;3;2;225;26;9;28;308.593;95;0;1;1;0;0;2;69;169;24;2
34;27;1;3;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;2
34;27;1;4;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;2
34;27;1;5;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;2
34;27;1;6;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;2
34;27;1;2;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;2
34;27;1;3;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;2
22;18;1;3;2;179;26;9;30;308.593;95;0;3;0;0;0;0;56;171;19;8
11;18;1;3;2;289;36;13;33;308.593;95;0;1;2;1;0;1;90;172;30;8
34;27;1;4;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;2
27;23;1;5;2;184;42;7;27;308.593;95;0;1;0;0;0;0;58;167;21;2
34;27;1;5;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;2
34;27;1;2;2;118;10;10;37;308.593;95;0;1;0;0;0;0;83;172;28;0
28;23;1;3;2;225;26;9;28;308.593;95;0;1;1;0;0;2;69;169;24;1
11;22;1;5;2;289;36;13;33;308.593;95;0;1;2;1;0;1;90;172;30;3
27;23;2;6;2;184;42;7;27;302.585;99;0;1;0;0;0;0;58;167;21;1
24;1;2;4;2;246;25;16;41;302.585;99;0;1;0;1;0;0;67;170;23;8
3;11;2;4;2;179;51;18;38;302.585;99;0;1;0;1;0;0;89;170;31;8
14;28;2;5;2;155;12;14;34;302.585;99;0;1;2;1;0;0;95;196;25;2
6;23;2;5;2;189;29;13;33;302.585;99;0;1;2;0;0;2;69;167;25;8
20;28;2;6;2;260;50;11;36;302.585;99;0;1;4;1;0;0;65;168;23;2
11;22;2;6;2;289;36;13;33;302.585;99;0;1;2;1;0;1;90;172;30;8
31;11;2;2;2;388;15;9;50;302.585;99;0;1;0;0;0;0;76;178;24;8
31;1;2;3;2;388;15;9;50;302.585;99;0;1;0;0;0;0;76;178;24;8
28;28;2;2;2;225;26;9;28;302.585;99;0;1;1;0;0;2;69;169;24;2
28;23;2;3;2;225;26;9;28;302.585;99;0;1;1;0;0;2;69;169;24;2
22;23;2;3;2;179;26;9;30;302.585;99;0;3;0;0;0;0;56;171;19;1
27;23;2;3;2;184;42;7;27;302.585;99;0;1;0;0;0;0;58;167;21;8
28;25;2;5;2;225;26;9;28;302.585;99;0;1;1;0;0;2;69;169;24;3
18;18;2;2;2;330;16;4;28;302.585;99;0;2;0;0;0;0;84;182;25;8
18;23;2;3;2;330;16;4;28;302.585;99;0;2;0;0;0;0;84;182;25;1
28;23;2;4;2;225;26;9;28;302.585;99;0;1;1;0;0;2;69;169;24;1
6;19;2;5;2;189;29;13;33;302.585;99;0;1;2;0;0;2;69;167;25;8
19;28;3;3;2;291;50;12;32;343.253;95;0;1;0;1;0;0;65;169;23;2
20;19;3;3;2;260;50;11;36;343.253;95;0;1;4;1;0;0;65;168;23;8
30;19;3;3;2;157;27;6;29;343.253;95;0;1;0;1;1;0;75;185;22;3
17;17;3;3;2;179;22;17;40;343.253;95;0;2;2;0;1;0;63;170;22;8
15;22;3;4;2;291;31;12;40;343.253;95;0;1;1;1;0;1;73;171;25;8
20;13;3;4;2;260;50;11;36;343.253;95;0;1;4;1;0;0;65;168;23;8
22;13;3;5;2;179;26;9;30;343.253;95;0;3;0;0;0;0;56;171;19;8
33;14;3;6;2;248;25;14;47;343.253;95;0;1;2;0;0;1;86;165;32;3
20;13;3;6;2;260;50;11;36;343.253;95;0;1;4;1;0;0;65;168;23;40
17;11;3;2;2;179;22;17;40;343.253;95;0;2;2;0;1;0;63;170;22;40
14;1;3;2;2;155;12;14;34;343.253;95;0;1;2;1;0;0;95;196;25;16
20;26;3;2;2;260;50;11;36;343.253;95;0;1;4;1;0;0;65;168;23;16
14;13;3;3;2;155;12;14;34;343.253;95;0;1;2;1;0;0;95;196;25;8
11;6;3;5;2;289;36;13;33;343.253;95;0;1;2;1;0;1;90;172;30;8
17;8;3;5;2;179;22;17;40;343.253;95;0;2;2;0;1;0;63;170;22;8
20;28;3;6;2;260;50;11;36;343.253;95;0;1;4;1;0;0;65;168;23;4
28;23;3;6;2;225;26;9;28;343.253;95;0;1;1;0;0;2;69;169;24;1
7;14;3;2;2;279;5;14;39;343.253;95;0;1;2;1;1;0;68;168;24;8
3;13;3;3;2;179;51;18;38;343.253;95;0;1;0;1;0;0;89;170;31;24
28;23;3;4;2;225;26;9;28;343.253;95;0;1;1;0;0;2;69;169;24;2
28;11;3;2;3;225;26;9;28;343.253;95;0;1;1;0;0;2;69;169;24;8
22;13;3;2;3;179;26;9;30;343.253;95;0;3;0;0;0;0;56;171;19;1
28;11;3;3;3;225;26;9;28;343.253;95;0;1;1;0;0;2;69;169;24;8
28;11;3;4;3;225;26;9;28;343.253;95;0;1;1;0;0;2;69;169;24;16
3;13;3;4;3;179;51;18;38;343.253;95;0;1;0;1;0;0;89;170;31;3
7;14;3;5;3;279;5;14;39;343.253;95;0;1;2;1;1;0;68;168;24;16
28;28;3;6;3;225;26;9;28;343.253;95;0;1;1;0;0;2;69;169;24;2
33;14;3;6;3;248;25;14;47;343.253;95;0;1;2;0;0;1;86;165;32;3
28;28;3;2;3;225;26;9;28;343.253;95;0;1;1;0;0;2;69;169;24;1
15;28;4;4;3;291;31;12;40;326.452;96;0;1;1;1;0;1;73;171;25;1
28;23;4;4;3;225;26;9;28;326.452;96;0;1;1;0;0;2;69;169;24;1
14;28;4;3;3;155;12;14;34;326.452;96;0;1;2;1;0;0;95;196;25;1
24;13;4;4;3;246;25;16;41;326.452;96;0;1;0;1;0;0;67;170;23;24
14;23;4;5;3;155;12;14;34;326.452;96;0;1;2;1;0;0;95;196;25;1
28;28;4;6;3;225;26;9;28;326.452;96;0;1;1;0;0;2;69;169;24;2
20;28;4;6;3;260;50;11;36;326.452;96;0;1;4;1;0;0;65;168;23;4
3;13;4;4;3;179;51;18;38;326.452;96;0;1;0;1;0;0;89;170;31;24
36;23;4;5;3;118;13;18;50;326.452;96;0;1;1;1;0;0;98;178;31;1
15;23;4;6;3;291;31;12;40;326.452;96;0;1;1;1;0;1;73;171;25;3
24;14;4;6;3;246;25;16;41;326.452;96;0;1;0;1;0;0;67;170;23;8
15;28;4;6;3;291;31;12;40;326.452;96;0;1;1;1;0;1;73;171;25;1
33;28;4;6;3;248;25;14;47;326.452;96;0;1;2;0;0;1;86;165;32;8
20;19;4;6;3;260;50;11;36;326.452;96;0;1;4;1;0;0;65;168;23;56
11;19;4;3;3;289;36;13;33;326.452;96;0;1;2;1;0;1;90;172;30;8
14;12;4;4;3;155;12;14;34;326.452;96;0;1;2;1;0;0;95;196;25;24
23;19;4;4;3;378;49;11;36;326.452;96;0;1;2;0;1;4;65;174;21;8
11;13;4;5;3;289;36;13;33;326.452;96;0;1;2;1;0;1;90;172;30;16
1;7;4;6;3;235;11;14;37;326.452;96;0;3;1;0;0;1;88;172;29;3
2;0;4;2;3;235;29;12;48;326.452;96;1;1;1;0;1;5;88;163;33;0
11;13;5;4;3;289;36;13;33;378.884;92;0;1;2;1;0;1;90;172;30;8
14;28;5;5;3;155;12;14;34;378.884;92;0;1;2;1;0;0;95;196;25;2
14;28;5;2;3;155;12;14;34;378.884;92;0;1;2;1;0;0;95;196;25;1
3;18;5;3;3;179;51;18;38;378.884;92;0;1;0;1;0;0;89;170;31;8
28;19;5;3;3;225;26;9;28;378.884;92;0;1;1;0;0;2;69;169;24;8
27;7;5;4;3;184;42;7;27;378.884;92;0;1;0;0;0;0;58;167;21;4
14;28;5;2;3;155;12;14;34;378.884;92;0;1;2;1;0;0;95;196;25;2
3;12;5;3;3;179;51;18;38;378.884;92;0;1;0;1;0;0;89;170;31;1
11;13;5;4;3;289;36;13;33;378.884;92;0;1;2;1;0;1;90;172;30;24
7;0;5;4;3;279;5;14;39;378.884;92;1;1;2;1;1;0;68;168;24;0
18;0;5;4;3;330;16;4;28;378.884;92;1;2;0;0;0;0;84;182;25;0
23;0;5;4;3;378;49;11;36;378.884;92;1;1;2;0;1;4;65;174;21;0
31;0;5;4;3;388;15;9;50;378.884;92;1;1;0;0;0;0;76;178;24;0
3;11;5;3;3;179;51;18;38;378.884;92;0;1;0;1;0;0;89;170;31;1
36;13;5;4;3;118;13;18;50;378.884;92;0;1;1;1;0;0;98;178;31;24
10;22;5;6;3;361;52;3;28;378.884;92;0;1;1;1;0;4;80;172;27;8
24;19;6;2;3;246;25;16;41;377.550;94;0;1;0;1;0;0;67;170;23;8
10;22;6;2;3;361;52;3;28;377.550;94;0;1;1;1;0;4;80;172;27;8
24;10;6;3;3;246;25;16;41;377.550;94;0;1;0;1;0;0;67;170;23;24
15;23;6;5;3;291;31;12;40;377.550;94;0;1;1;1;0;1;73;171;25;4
24;10;6;6;3;246;25;16;41;377.550;94;0;1;0;1;0;0;67;170;23;8
3;11;6;2;3;179;51;18;38;377.550;94;0;1;0;1;0;0;89;170;31;8
14;23;6;2;3;155;12;14;34;377.550;94;0;1;2;1;0;0;95;196;25;4
24;10;6;2;3;246;25;16;41;377.550;94;0;1;0;1;0;0;67;170;23;8
36;13;6;4;3;118;13;18;50;377.550;94;0;1;1;1;0;0;98;178;31;8
1;13;6;6;3;235;11;14;37;377.550;94;0;3;1;0;0;1;88;172;29;16
36;23;6;3;3;118;13;18;50;377.550;94;0;1;1;1;0;0;98;178;31;1
36;13;6;4;3;118;13;18;50;377.550;94;0;1;1;1;0;0;98;178;31;80
23;22;6;5;3;378;49;11;36;377.550;94;0;1;2;0;1;4;65;174;21;8
3;11;6;6;3;179;51;18;38;377.550;94;0;1;0;1;0;0;89;170;31;2
32;28;6;2;1;289;48;29;49;377.550;94;0;1;0;0;0;2;108;172;36;2
28;28;6;5;1;225;26;9;28;377.550;94;0;1;1;0;0;2;69;169;24;2
14;19;7;3;1;155;12;14;34;275.312;98;0;1;2;1;0;0;95;196;25;16
36;1;7;4;1;118;13;18;50;275.312;98;0;1;1;1;0;0;98;178;31;8
34;5;7;6;1;118;10;10;37;275.312;98;0;1;0;0;0;0;83;172;28;8
34;26;7;6;1;118;10;10;37;275.312;98;0;1;0;0;0;0;83;172;28;4
18;26;7;3;1;330;16;4;28;275.312;98;0;2;0;0;0;0;84;182;25;8
22;18;7;5;1;179;26;9;30;275.312;98;0;3;0;0;0;0;56;171;19;8
14;25;7;6;1;155;12;14;34;275.312;98;0;1;2;1;0;0;95;196;25;2
18;1;7;2;1;330;16;4;28;275.312;98;0;2;0;0;0;0;84;182;25;8
18;1;7;3;1;330;16;4;28;275.312;98;0;2;0;0;0;0;84;182;25;8
30;25;7;2;1;157;27;6;29;275.312;98;0;1;0;1;1;0;75;185;22;3
10;22;7;3;1;361;52;3;28;275.312;98;0;1;1;1;0;4;80;172;27;8
11;26;7;4;1;289;36;13;33;275.312;98;0;1;2;1;0;1;90;172;30;8
3;26;7;5;1;179;51;18;38;275.312;98;0;1;0;1;0;0;89;170;31;8
11;19;7;2;1;289;36;13;33;275.312;98;0;1;2;1;0;1;90;172;30;32
11;19;7;5;1;289;36;13;33;275.312;98;0;1;2;1;0;1;90;172;30;8
20;0;7;5;1;260;50;11;36;275.312;98;1;1;4;1;0;0;65;168;23;0
11;19;8;6;1;289;36;13;33;265.615;94;0;1;2;1;0;1;90;172;30;8
30;19;8;6;1;157;27;6;29;265.615;94;0;1;0;1;1;0;75;185;22;3
11;23;8;2;1;289;36;13;33;265.615;94;0;1;2;1;0;1;90;172;30;1
9;18;8;3;1;228;14;16;58;265.615;94;0;1;2;0;0;1;65;172;22;8
26;13;8;5;1;300;26;13;43;265.615;94;0;1;2;1;1;1;77;175;25;1
26;14;8;5;1;300;26;13;43;265.615;94;0;1;2;1;1;1;77;175;25;2
20;28;8;6;1;260;50;11;36;265.615;94;0;1;4;1;0;0;65;168;23;4
11;23;8;3;1;289;36;13;33;265.615;94;0;1;2;1;0;1;90;172;30;4
33;23;8;4;1;248;25;14;47;265.615;94;0;1;2;0;0;1;86;165;32;1
21;11;8;5;1;268;11;8;33;265.615;94;0;2;0;0;0;0;79;178;25;8
22;23;8;5;1;179;26;9;30;265.615;94;0;3;0;0;0;0;56;171;19;1
36;13;8;5;1;118;13;18;50;265.615;94;0;1;1;1;0;0;98;178;31;3
33;25;8;2;1;248;25;14;47;265.615;94;0;1;2;0;0;1;86;165;32;2
1;23;8;3;1;235;11;14;37;265.615;94;0;3;1;0;0;1;88;172;29;1
36;23;8;5;1;118;13;18;50;265.615;94;0;1;1;1;0;0;98;178;31;1
1;19;8;5;1;235;11;14;37;265.615;94;0;3;1;0;0;1;88;172;29;8
10;8;8;3;1;361;52;3;28;265.615;94;0;1;1;1;0;4;80;172;27;8
27;6;8;4;1;184;42;7;27;265.615;94;0;1;0;0;0;0;58;167;21;8
3;11;9;2;1;179;51;18;38;294.217;81;0;1;0;1;0;0;89;170;31;8
3;23;9;6;1;179;51;18;38;294.217;81;0;1;0;1;0;0;89;170;31;3
11;19;9;4;1;289;36;13;33;294.217;81;0;1;2;1;0;1;90;172;30;24
5;0;9;5;1;235;20;13;43;294.217;81;1;1;1;1;0;0;106;167;38;0
24;9;9;2;1;246;25;16;41;294.217;81;0;1;0;1;0;0;67;170;23;16
15;28;9;3;1;291;31;12;40;294.217;81;0;1;1;1;0;1;73;171;25;3
8;0;9;3;1;231;35;14;39;294.217;81;1;1;2;1;0;2;100;170;35;0
19;0;9;3;1;291;50;12;32;294.217;81;1;1;0;1;0;0;65;169;23;0
3;13;9;4;1;179;51;18;38;294.217;81;0;1;0;1;0;0;89;170;31;8
24;9;9;4;1;246;25;16;41;294.217;81;0;1;0;1;0;0;67;170;23;32
3;23;9;5;1;179;51;18;38;294.217;81;0;1;0;1;0;0;89;170;31;1
15;28;9;6;1;291;31;12;40;294.217;81;0;1;1;1;0;1;73;171;25;4
20;28;9;6;1;260;50;11;36;294.217;81;0;1;4;1;0;0;65;168;23;4
5;26;9;4;4;235;20;13;43;294.217;81;0;1;1;1;0;0;106;167;38;8
36;28;9;5;4;118;13;18;50;294.217;81;0;1;1;1;0;0;98;178;31;1
5;0;9;5;4;235;20;13;43;294.217;81;1;1;1;1;0;0;106;167;38;0
15;28;9;6;4;291;31;12;40;294.217;81;0;1;1;1;0;1;73;171;25;3
15;7;9;2;4;291;31;12;40;294.217;81;0;1;1;1;0;1;73;171;25;40
3;13;9;2;4;179;51;18;38;294.217;81;0;1;0;1;0;0;89;170;31;8
11;24;10;2;4;289;36;13;33;265.017;88;0;1;2;1;0;1;90;172;30;8
1;26;10;2;4;235;11;14;37;265.017;88;0;3;1;0;0;1;88;172;29;4
11;26;10;2;4;289;36;13;33;265.017;88;0;1;2;1;0;1;90;172;30;8
11;22;10;6;4;289;36;13;33;265.017;88;0;1;2;1;0;1;90;172;30;8
36;0;10;6;4;118;13;18;50;265.017;88;1;1;1;1;0;0;98;178;31;0
33;0;10;6;4;248;25;14;47;265.017;88;1;1;2;0;0;1;86;165;32;0
22;1;10;2;4;179;26;9;30;265.017;88;0;3;0;0;0;0;56;171;19;8
34;7;10;2;4;118;10;10;37;265.017;88;0;1;0;0;0;0;83;172;28;3
13;22;10;2;4;369;17;12;31;265.017;88;0;1;3;1;0;0;70;169;25;8
3;28;10;4;4;179;51;18;38;265.017;88;0;1;0;1;0;0;89;170;31;1
22;1;10;4;4;179;26;9;30;265.017;88;0;3;0;0;0;0;56;171;19;64
5;0;10;4;4;235;20;13;43;265.017;88;1;1;1;1;0;0;106;167;38;0
11;19;10;5;4;289;36;13;33;265.017;88;0;1;2;1;0;1;90;172;30;16
20;28;10;6;4;260;50;11;36;265.017;88;0;1;4;1;0;0;65;168;23;3
5;0;10;6;4;235;20;13;43;265.017;88;1;1;1;1;0;0;106;167;38;0
5;23;10;2;4;235;20;13;43;265.017;88;0;1;1;1;0;0;106;167;38;2
5;23;10;2;4;235;20;13;43;265.017;88;0;1;1;1;0;0;106;167;38;2
36;28;10;3;4;118;13;18;50;265.017;88;0;1;1;1;0;0;98;178;31;1
15;28;10;3;4;291;31;12;40;265.017;88;0;1;1;1;0;1;73;171;25;4
22;23;10;5;4;179;26;9;30;265.017;88;0;3;0;0;0;0;56;171;19;16
36;28;10;5;4;118;13;18;50;265.017;88;0;1;1;1;0;0;98;178;31;1
10;10;10;2;4;361;52;3;28;265.017;88;0;1;1;1;0;4;80;172;27;8
20;0;10;3;4;260;50;11;36;265.017;88;1;1;4;1;0;0;65;168;23;0
15;0;10;3;4;291;31;12;40;265.017;88;1;1;1;1;0;1;73;171;25;0
30;0;10;3;4;157;27;6;29;265.017;88;1;1;0;1;1;0;75;185;22;0
22;1;10;4;4;179;26;9;30;265.017;88;0;3;0;0;0;0;56;171;19;5
22;7;10;4;4;179;26;9;30;265.017;88;0;3;0;0;0;0;56;171;19;5
36;23;10;5;4;118;13;18;50;265.017;88;0;1;1;1;0;0;98;178;31;1
34;11;11;2;4;118;10;10;37;284.031;97;0;1;0;0;0;0;83;172;28;8
33;23;11;2;4;248;25;14;47;284.031;97;0;1;2;0;0;1;86;165;32;2
3;6;11;3;4;179;51;18;38;284.031;97;0;1;0;1;0;0;89;170;31;8
20;28;11;6;4;260;50;11;36;284.031;97;0;1;4;1;0;0;65;168;23;3
15;23;11;2;4;291;31;12;40;284.031;97;0;1;1;1;0;1;73;171;25;1
23;1;11;2;4;378;49;11;36;284.031;97;0;1;2;0;1;4;65;174;21;8
14;11;11;2;4;155;12;14;34;284.031;97;0;1;2;1;0;0;95;196;25;120
5;26;11;2;4;235;20;13;43;284.031;97;0;1;1;1;0;0;106;167;38;8
18;0;11;3;4;330;16;4;28;284.031;97;1;2;0;0;0;0;84;182;25;0
1;18;11;4;4;235;11;14;37;284.031;97;0;3;1;0;0;1;88;172;29;1
34;11;11;4;4;118;10;10;37;284.031;97;0;1;0;0;0;0;83;172;28;3
1;25;11;5;4;235;11;14;37;284.031;97;0;3;1;0;0;1;88;172;29;2
3;28;11;5;4;179;51;18;38;284.031;97;0;1;0;1;0;0;89;170;31;3
24;13;11;6;4;246;25;16;41;284.031;97;0;1;0;1;0;0;67;170;23;8
15;12;11;6;4;291;31;12;40;284.031;97;0;1;1;1;0;1;73;171;25;4
24;13;11;2;4;246;25;16;41;284.031;97;0;1;0;1;0;0;67;170;23;8
3;28;11;3;4;179;51;18;38;284.031;97;0;1;0;1;0;0;89;170;31;1
20;10;11;4;4;260;50;11;36;284.031;97;0;1;4;1;0;0;65;168;23;8
20;15;11;6;4;260;50;11;36;284.031;97;0;1;4;1;0;0;65;168;23;8
23;0;11;6;4;378;49;11;36;284.031;97;1;1;2;0;1;4;65;174;21;0
7;0;11;3;4;279;5;14;39;284.031;97;1;1;2;1;1;0;68;168;24;0
3;23;11;5;4;179;51;18;38;284.031;97;0;1;0;1;0;0;89;170;31;1
28;12;12;2;4;225;26;9;28;236.629;93;0;1;1;0;0;2;69;169;24;3
3;28;12;2;4;179;51;18;38;236.629;93;0;1;0;1;0;0;89;170;31;2
3;28;12;2;4;179;51;18;38;236.629;93;0;1;0;1;0;0;89;170;31;1
1;23;12;2;4;235;11;14;37;236.629;93;0;3;1;0;0;1;88;172;29;3
36;28;12;3;4;118;13;18;50;236.629;93;0;1;1;1;0;0;98;178;31;1
20;28;12;6;4;260;50;11;36;236.629;93;0;1;4;1;0;0;65;168;23;4
24;4;12;5;4;246;25;16;41;236.629;93;0;1;0;1;0;0;67;170;23;8
3;28;12;5;4;179;51;18;38;236.629;93;0;1;0;1;0;0;89;170;31;1
3;28;12;6;4;179;51;18;38;236.629;93;0;1;0;1;0;0;89;170;31;1
22;23;12;3;4;179;26;9;30;236.629;93;0;3;0;0;0;0;56;171;19;1
34;25;12;3;4;118;10;10;37;236.629;93;0;1;0;0;0;0;83;172;28;8
1;25;12;5;4;235;11;14;37;236.629;93;0;3;1;0;0;1;88;172;29;2
3;28;12;6;4;179;51;18;38;236.629;93;0;1;0;1;0;0;89;170;31;1
5;13;12;3;2;235;20;13;43;236.629;93;0;1;1;1;0;0;106;167;38;8
1;14;12;3;2;235;11;14;37;236.629;93;0;3;1;0;0;1;88;172;29;4
20;26;12;4;2;260;50;11;36;236.629;93;0;1;4;1;0;0;65;168;23;8
30;28;12;2;2;157;27;6;29;236.629;93;0;1;0;1;1;0;75;185;22;2
3;28;12;2;2;179;51;18;38;236.629;93;0;1;0;1;0;0;89;170;31;3
11;19;12;2;2;289;36;13;33;236.629;93;0;1;2;1;0;1;90;172;30;8
28;23;1;4;2;225;26;9;28;330.061;100;0;1;1;0;0;2;69;169;24;5
34;19;1;2;2;118;10;10;37;330.061;100;0;1;0;0;0;0;83;172;28;32
14;23;1;2;2;155;12;14;34;330.061;100;0;1;2;1;0;0;95;196;25;2
1;13;1;3;2;235;11;14;37;330.061;100;0;3;1;0;0;1;88;172;29;1
14;23;1;3;2;155;12;14;34;330.061;100;0;1;2;1;0;0;95;196;25;4
11;26;1;2;2;289;36;13;33;330.061;100;0;1;2;1;0;1;90;172;30;8
15;3;1;4;2;291;31;12;40;330.061;100;0;1;1;1;0;1;73;171;25;8
5;26;1;2;2;235;20;13;43;330.061;100;0;1;1;1;0;0;106;167;38;8
36;26;1;2;2;118;13;18;50;330.061;100;0;1;1;1;0;0;98;178;31;4
3;28;1;4;2;179;51;18;38;330.061;100;0;1;0;1;0;0;89;170;31;1
3;28;1;6;2;179;51;18;38;330.061;100;0;1;0;1;0;0;89;170;31;1
34;28;2;3;2;118;10;10;37;251.818;96;0;1;0;0;0;0;83;172;28;2
3;27;2;4;2;179;51;18;38;251.818;96;0;1;0;1;0;0;89;170;31;3
28;7;2;4;2;225;26;9;28;251.818;96;0;1;1;0;0;2;69;169;24;1
11;22;2;6;2;289;36;13;33;251.818;96;0;1;2;1;0;1;90;172;30;3
20;28;2;6;2;260;50;11;36;251.818;96;0;1;4;1;0;0;65;168;23;3
3;23;2;6;2;179;51;18;38;251.818;96;0;1;0;1;0;0;89;170;31;3
3;27;2;2;2;179;51;18;38;251.818;96;0;1;0;1;0;0;89;170;31;2
3;27;2;4;2;179;51;18;38;251.818;96;0;1;0;1;0;0;89;170;31;3
3;10;2;5;2;179;51;18;38;251.818;96;0;1;0;1;0;0;89;170;31;8
24;26;2;5;2;246;25;16;41;251.818;96;0;1;0;1;0;0;67;170;23;8
3;27;2;6;2;179;51;18;38;251.818;96;0;1;0;1;0;0;89;170;31;3
6;22;2;2;2;189;29;13;33;251.818;96;0;1;2;0;0;2;69;167;25;8
3;27;2;2;2;179;51;18;38;251.818;96;0;1;0;1;0;0;89;170;31;3
24;23;2;3;2;246;25;16;41;251.818;96;0;1;0;1;0;0;67;170;23;2
15;23;2;3;2;291;31;12;40;251.818;96;0;1;1;1;0;1;73;171;25;2
30;11;2;4;2;157;27;6;29;251.818;96;0;1;0;1;1;0;75;185;22;16
3;27;2;4;2;179;51;18;38;251.818;96;0;1;0;1;0;0;89;170;31;3
3;27;2;6;2;179;51;18;38;251.818;96;0;1;0;1;0;0;89;170;31;3
24;10;2;6;2;246;25;16;41;251.818;96;0;1;0;1;0;0;67;170;23;24
3;27;2;4;2;179;51;18;38;251.818;96;0;1;0;1;0;0;89;170;31;3
3;27;2;6;2;179;51;18;38;251.818;96;0;1;0;1;0;0;89;170;31;3
34;18;3;3;2;118;10;10;37;244.387;98;0;1;0;0;0;0;83;172;28;8
24;19;3;4;2;246;25;16;41;244.387;98;0;1;0;1;0;0;67;170;23;16
24;28;3;6;2;246;25;16;41;244.387;98;0;1;0;1;0;0;67;170;23;2
20;28;3;6;2;260;50;11;36;244.387;98;0;1;4;1;0;0;65;168;23;4
3;28;3;2;2;179;51;18;38;244.387;98;0;1;0;1;0;0;89;170;31;2
1;22;3;2;2;235;11;14;37;244.387;98;0;3;1;0;0;1;88;172;29;8
17;22;3;3;2;179;22;17;40;244.387;98;0;2;2;0;1;0;63;170;22;8
23;22;3;3;2;378;49;11;36;244.387;98;0;1;2;0;1;4;65;174;21;8
3;28;3;2;2;179;51;18;38;244.387;98;0;1;0;1;0;0;89;170;31;16
10;22;3;4;2;361;52;3;28;244.387;98;0;1;1;1;0;4;80;172;27;8
13;0;3;4;2;369;17;12;31;244.387;98;1;1;3;1;0;0;70;169;25;0
1;21;3;5;2;235;11;14;37;244.387;98;0;3;1;0;0;1;88;172;29;8
36;23;3;6;3;118;13;18;50;244.387;98;0;1;1;1;0;0;98;178;31;2
36;14;3;3;3;118;13;18;50;244.387;98;0;1;1;1;0;0;98;178;31;3
36;13;3;4;3;118;13;18;50;244.387;98;0;1;1;1;0;0;98;178;31;8
1;0;3;5;3;235;11;14;37;244.387;98;1;3;1;0;0;1;88;172;29;0
24;0;3;5;3;246;25;16;41;244.387;98;1;1;0;1;0;0;67;170;23;0
36;0;3;5;3;118;13;18;50;244.387;98;1;1;1;1;0;0;98;178;31;0
3;28;3;6;3;179;51;18;38;244.387;98;0;1;0;1;0;0;89;170;31;8
11;22;3;6;3;289;36;13;33;244.387;98;0;1;2;1;0;1;90;172;30;8
20;19;3;2;3;260;50;11;36;244.387;98;0;1;4;1;0;0;65;168;23;8
24;28;3;3;3;246;25;16;41;244.387;98;0;1;0;1;0;0;67;170;23;2
3;28;4;4;3;179;51;18;38;239.409;98;0;1;0;1;0;0;89;170;31;4
20;28;4;6;3;260;50;11;36;239.409;98;0;1;4;1;0;0;65;168;23;3
18;26;4;6;3;330;16;4;28;239.409;98;0;2;0;0;0;0;84;182;25;4
13;22;4;2;3;369;17;12;31;239.409;98;0;1;3;1;0;0;70;169;25;4
33;26;4;2;3;248;25;14;47;239.409;98;0;1;2;0;0;1;86;165;32;4
18;23;4;4;3;330;16;4;28;239.409;98;0;2;0;0;0;0;84;182;25;8
3;28;4;4;3;179;51;18;38;239.409;98;0;1;0;1;0;0;89;170;31;8
36;23;4;2;3;118;13;18;50;239.409;98;0;1;1;1;0;0;98;178;31;1
36;13;4;4;3;118;13;18;50;239.409;98;0;1;1;1;0;0;98;178;31;120
26;28;4;6;3;300;26;13;43;239.409;98;0;1;2;1;1;1;77;175;25;8
20;28;4;6;3;260;50;11;36;239.409;98;0;1;4;1;0;0;65;168;23;4
3;28;4;2;3;179;51;18;38;239.409;98;0;1;0;1;0;0;89;170;31;4
34;11;4;4;3;118;10;10;37;239.409;98;0;1;0;0;0;0;83;172;28;2
5;13;5;2;3;235;20;13;43;246.074;99;0;1;1;1;0;0;106;167;38;16
33;23;5;4;3;248;25;14;47;246.074;99;0;1;2;0;0;1;86;165;32;2
13;10;5;2;3;369;17;12;31;246.074;99;0;1;3;1;0;0;70;169;25;8
22;23;5;4;3;179;26;9;30;246.074;99;0;3;0;0;0;0;56;171;19;3
3;28;5;4;3;179;51;18;38;246.074;99;0;1;0;1;0;0;89;170;31;4
10;23;5;5;3;361;52;3;28;246.074;99;0;1;1;1;0;4;80;172;27;1
20;28;5;6;3;260;50;11;36;246.074;99;0;1;4;1;0;0;65;168;23;3
17;11;5;2;3;179;22;17;40;246.074;99;0;2;2;0;1;0;63;170;22;2
17;8;5;2;3;179;22;17;40;246.074;99;0;2;2;0;1;0;63;170;22;3
9;18;5;4;3;228;14;16;58;246.074;99;0;1;2;0;0;1;65;172;22;8
28;25;5;4;3;225;26;9;28;246.074;99;0;1;1;0;0;2;69;169;24;3
18;13;5;6;3;330;16;4;28;246.074;99;0;2;0;0;0;0;84;182;25;8
22;25;5;2;3;179;26;9;30;246.074;99;0;3;0;0;0;0;56;171;19;2
34;28;5;2;3;118;10;10;37;246.074;99;0;1;0;0;0;0;83;172;28;1
1;1;5;2;3;235;11;14;37;246.074;99;0;3;1;0;0;1;88;172;29;8
22;23;5;4;3;179;26;9;30;246.074;99;0;3;0;0;0;0;56;171;19;3
34;23;6;2;3;118;10;10;37;253.957;95;0;1;0;0;0;0;83;172;28;3
3;28;6;2;3;179;51;18;38;253.957;95;0;1;0;1;0;0;89;170;31;3
34;28;6;3;3;118;10;10;37;253.957;95;0;1;0;0;0;0;83;172;28;2
28;23;6;5;3;225;26;9;28;253.957;95;0;1;1;0;0;2;69;169;24;4
20;28;6;6;3;260;50;11;36;253.957;95;0;1;4;1;0;0;65;168;23;4
3;0;6;6;3;179;51;18;38;253.957;95;1;1;0;1;0;0;89;170;31;0
15;13;6;2;3;291;31;12;40;253.957;95;0;1;1;1;0;1;73;171;25;40
3;28;6;2;3;179;51;18;38;253.957;95;0;1;0;1;0;0;89;170;31;24
24;28;6;3;3;246;25;16;41;253.957;95;0;1;0;1;0;0;67;170;23;3
3;28;6;2;3;179;51;18;38;253.957;95;0;1;0;1;0;0;89;170;31;4
5;26;6;3;3;235;20;13;43;253.957;95;0;1;1;1;0;0;106;167;38;8
3;28;6;2;1;179;51;18;38;253.957;95;0;1;0;1;0;0;89;170;31;2
28;23;6;4;1;225;26;9;28;253.957;95;0;1;1;0;0;2;69;169;24;2
36;23;6;4;1;118;13;18;50;253.957;95;0;1;1;1;0;0;98;178;31;2
3;5;6;4;1;179;51;18;38;253.957;95;0;1;0;1;0;0;89;170;31;8
22;21;6;4;1;179;26;9;30;253.957;95;0;3;0;0;0;0;56;171;19;2
24;28;6;6;1;246;25;16;41;253.957;95;0;1;0;1;0;0;67;170;23;2
18;11;6;3;1;330;16;4;28;253.957;95;0;2;0;0;0;0;84;182;25;1
1;13;6;3;1;235;11;14;37;253.957;95;0;3;1;0;0;1;88;172;29;8
22;23;7;5;1;179;26;9;30;230.290;92;0;3;0;0;0;0;56;171;19;2
28;25;7;5;1;225;26;9;28;230.290;92;0;1;1;0;0;2;69;169;24;4
20;13;7;6;1;260;50;11;36;230.290;92;0;1;4;1;0;0;65;168;23;8
21;7;7;2;1;268;11;8;33;230.290;92;0;2;0;0;0;0;79;178;25;8
18;25;7;6;1;330;16;4;28;230.290;92;0;2;0;0;0;0;84;182;25;8
34;26;7;6;1;118;10;10;37;230.290;92;0;1;0;0;0;0;83;172;28;8
20;26;7;2;1;260;50;11;36;230.290;92;0;1;4;1;0;0;65;168;23;4
34;28;7;3;1;118;10;10;37;230.290;92;0;1;0;0;0;0;83;172;28;8
26;15;7;2;1;300;26;13;43;230.290;92;0;1;2;1;1;1;77;175;25;8
2;23;7;2;1;235;29;12;48;230.290;92;0;1;1;0;1;5;88;163;33;1
24;28;7;3;1;246;25;16;41;230.290;92;0;1;0;1;0;0;67;170;23;2
28;9;7;3;1;225;26;9;28;230.290;92;0;1;1;0;0;2;69;169;24;112
3;28;7;3;1;179;51;18;38;230.290;92;0;1;0;1;0;0;89;170;31;1
36;23;7;6;1;118;13;18;50;230.290;92;0;1;1;1;0;0;98;178;31;1
10;22;7;6;1;361;52;3;28;230.290;92;0;1;1;1;0;4;80;172;27;8
11;22;7;2;1;289;36;13;33;230.290;92;0;1;2;1;0;1;90;172;30;8
5;26;7;2;1;235;20;13;43;230.290;92;0;1;1;1;0;0;106;167;38;8
24;28;7;3;1;246;25;16;41;230.290;92;0;1;0;1;0;0;67;170;23;2
15;28;7;5;1;291;31;12;40;230.290;92;0;1;1;1;0;1;73;171;25;1
7;23;7;5;1;279;5;14;39;230.290;92;0;1;2;1;1;0;68;168;24;2
3;25;8;5;1;179;51;18;38;249.797;93;0;1;0;1;0;0;89;170;31;4
17;25;8;2;1;179;22;17;40;249.797;93;0;2;2;0;1;0;63;170;22;1
24;28;8;3;1;246;25;16;41;249.797;93;0;1;0;1;0;0;67;170;23;4
34;28;8;3;1;118;10;10;37;249.797;93;0;1;0;0;0;0;83;172;28;4
11;26;8;3;1;289;36;13;33;249.797;93;0;1;2;1;0;1;90;172;30;8
5;26;8;3;1;235;20;13;43;249.797;93;0;1;1;1;0;0;106;167;38;8
15;28;8;5;1;291;31;12;40;249.797;93;0;1;1;1;0;1;73;171;25;4
3;25;8;2;1;179;51;18;38;249.797;93;0;1;0;1;0;0;89;170;31;4
17;25;8;3;1;179;22;17;40;249.797;93;0;2;2;0;1;0;63;170;22;8
18;23;8;5;1;330;16;4;28;249.797;93;0;2;0;0;0;0;84;182;25;16
1;23;8;3;1;235;11;14;37;249.797;93;0;3;1;0;0;1;88;172;29;4
24;28;8;3;1;246;25;16;41;249.797;93;0;1;0;1;0;0;67;170;23;1
34;28;8;3;1;118;10;10;37;249.797;93;0;1;0;0;0;0;83;172;28;5
15;28;8;5;1;291;31;12;40;249.797;93;0;1;1;1;0;1;73;171;25;2
20;28;8;2;1;260;50;11;36;249.797;93;0;1;4;1;0;0;65;168;23;3
24;28;9;3;1;246;25;16;41;261.756;87;0;1;0;1;0;0;67;170;23;1
24;28;9;3;1;246;25;16;41;261.756;87;0;1;0;1;0;0;67;170;23;1
34;28;9;3;1;118;10;10;37;261.756;87;0;1;0;0;0;0;83;172;28;3
14;23;9;3;1;155;12;14;34;261.756;87;0;1;2;1;0;0;95;196;25;2
15;28;9;5;1;291;31;12;40;261.756;87;0;1;1;1;0;1;73;171;25;2
22;23;9;6;1;179;26;9;30;261.756;87;0;3;0;0;0;0;56;171;19;8
33;23;9;6;1;248;25;14;47;261.756;87;0;1;2;0;0;1;86;165;32;1
3;23;9;2;1;179;51;18;38;261.756;87;0;1;0;1;0;0;89;170;31;4
28;23;9;4;1;225;26;9;28;261.756;87;0;1;1;0;0;2;69;169;24;1
22;23;9;2;1;179;26;9;30;261.756;87;0;3;0;0;0;0;56;171;19;2
13;23;9;3;4;369;17;12;31;261.756;87;0;1;3;1;0;0;70;169;25;8
10;22;9;3;4;361;52;3;28;261.756;87;0;1;1;1;0;4;80;172;27;8
32;4;10;5;4;289;48;29;49;284.853;91;0;1;0;0;0;2;108;172;36;1
25;11;10;5;4;235;16;8;32;284.853;91;0;3;0;0;0;0;75;178;25;3
24;26;10;6;4;246;25;16;41;284.853;91;0;1;0;1;0;0;67;170;23;8
32;14;10;4;4;289;48;29;49;284.853;91;0;1;0;0;0;2;108;172;36;3
15;28;10;4;4;291;31;12;40;284.853;91;0;1;1;1;0;1;73;171;25;2
34;23;10;3;4;118;10;10;37;284.853;91;0;1;0;0;0;0;83;172;28;2
32;23;10;5;4;289;48;29;49;284.853;91;0;1;0;0;0;2;108;172;36;2
15;23;10;6;4;291;31;12;40;284.853;91;0;1;1;1;0;1;73;171;25;1
28;23;10;3;4;225;26;9;28;284.853;91;0;1;1;0;0;2;69;169;24;2
13;23;10;3;4;369;17;12;31;284.853;91;0;1;3;1;0;0;70;169;25;8
13;23;10;3;4;369;17;12;31;284.853;91;0;1;3;1;0;0;70;169;25;3
28;23;10;3;4;225;26;9;28;284.853;91;0;1;1;0;0;2;69;169;24;4
13;26;10;3;4;369;17;12;31;284.853;91;0;1;3;1;0;0;70;169;25;8
3;28;10;4;4;179;51;18;38;284.853;91;0;1;0;1;0;0;89;170;31;3
9;1;10;4;4;228;14;16;58;284.853;91;0;1;2;0;0;1;65;172;22;1
15;23;10;4;4;291;31;12;40;284.853;91;0;1;1;1;0;1;73;171;25;1
13;10;10;5;4;369;17;12;31;284.853;91;0;1;3;1;0;0;70;169;25;8
28;13;10;5;4;225;26;9;28;284.853;91;0;1;1;0;0;2;69;169;24;1
13;10;10;6;4;369;17;12;31;284.853;91;0;1;3;1;0;0;70;169;25;8
28;10;10;6;4;225;26;9;28;284.853;91;0;1;1;0;0;2;69;169;24;3
6;23;10;2;4;189;29;13;33;284.853;91;0;1;2;0;0;2;69;167;25;8
25;6;10;2;4;235;16;8;32;284.853;91;0;3;0;0;0;0;75;178;25;8
33;10;10;2;4;248;25;14;47;284.853;91;0;1;2;0;0;1;86;165;32;8
28;0;10;2;4;225;26;9;28;284.853;91;1;1;1;0;0;2;69;169;24;0
28;13;10;3;4;225;26;9;28;284.853;91;0;1;1;0;0;2;69;169;24;3
3;21;11;3;4;179;51;18;38;268.519;93;0;1;0;1;0;0;89;170;31;1
34;28;11;4;4;118;10;10;37;268.519;93;0;1;0;0;0;0;83;172;28;3
18;2;11;4;4;330;16;4;28;268.519;93;0;2;0;0;0;0;84;182;25;24
3;28;11;6;4;179;51;18;38;268.519;93;0;1;0;1;0;0;89;170;31;1
34;9;11;3;4;118;10;10;37;268.519;93;0;1;0;0;0;0;83;172;28;8
11;24;11;4;4;289;36;13;33;268.519;93;0;1;2;1;0;1;90;172;30;8
25;1;11;6;4;235;16;8;32;268.519;93;0;3;0;0;0;0;75;178;25;8
28;23;11;6;4;225;26;9;28;268.519;93;0;1;1;0;0;2;69;169;24;4
10;22;11;3;4;361;52;3;28;268.519;93;0;1;1;1;0;4;80;172;27;8
15;28;11;4;4;291;31;12;40;268.519;93;0;1;1;1;0;1;73;171;25;2
34;13;11;5;4;118;10;10;37;268.519;93;0;1;0;0;0;0;83;172;28;2
28;14;11;5;4;225;26;9;28;268.519;93;0;1;1;0;0;2;69;169;24;3
3;28;11;2;4;179;51;18;38;268.519;93;0;1;0;1;0;0;89;170;31;1
34;23;11;2;4;118;10;10;37;268.519;93;0;1;0;0;0;0;83;172;28;8
34;8;11;3;4;118;10;10;37;268.519;93;0;1;0;0;0;0;83;172;28;8
28;23;11;3;4;225;26;9;28;268.519;93;0;1;1;0;0;2;69;169;24;2
15;0;11;3;4;291;31;12;40;268.519;93;1;1;1;1;0;1;73;171;25;0
11;0;11;4;4;289;36;13;33;268.519;93;1;1;2;1;0;1;90;172;30;0
33;14;11;5;4;248;25;14;47;268.519;93;0;1;2;0;0;1;86;165;32;4
5;0;11;5;4;235;20;13;43;268.519;93;1;1;1;1;0;0;106;167;38;0
28;23;11;6;4;225;26;9;28;268.519;93;0;1;1;0;0;2;69;169;24;2
13;26;11;6;4;369;17;12;31;268.519;93;0;1;3;1;0;0;70;169;25;8
10;28;11;2;4;361;52;3;28;268.519;93;0;1;1;1;0;4;80;172;27;2
3;13;12;3;4;179;51;18;38;280.549;98;0;1;0;1;0;0;89;170;31;32
15;28;12;4;4;291;31;12;40;280.549;98;0;1;1;1;0;1;73;171;25;1
28;23;12;4;4;225;26;9;28;280.549;98;0;1;1;0;0;2;69;169;24;3
22;13;12;6;4;179;26;9;30;280.549;98;0;3;0;0;0;0;56;171;19;1
28;23;12;6;4;225;26;9;28;280.549;98;0;1;1;0;0;2;69;169;24;3
28;23;12;4;4;225;26;9;28;280.549;98;0;1;1;0;0;2;69;169;24;3
10;14;12;5;4;361;52;3;28;280.549;98;0;1;1;1;0;4;80;172;27;4
17;18;12;6;4;179;22;17;40;280.549;98;0;2;2;0;1;0;63;170;22;2
5;26;12;6;4;235;20;13;43;280.549;98;0;1;1;1;0;0;106;167;38;8
12;18;12;2;4;233;51;1;31;280.549;98;0;2;1;1;0;8;68;178;21;8
22;13;12;3;4;179;26;9;30;280.549;98;0;3;0;0;0;0;56;171;19;16
28;23;12;3;4;225;26;9;28;280.549;98;0;1;1;0;0;2;69;169;24;2
28;23;12;5;4;225;26;9;28;280.549;98;0;1;1;0;0;2;69;169;24;3
28;23;12;2;4;225;26;9;28;280.549;98;0;1;1;0;0;2;69;169;24;2
14;18;12;3;2;155;12;14;34;280.549;98;0;1;2;1;0;0;95;196;25;80
22;12;1;2;2;179;26;9;30;313.532;96;0;3;0;0;0;0;56;171;19;24
22;12;1;5;2;179;26;9;30;313.532;96;0;3;0;0;0;0;56;171;19;16
17;25;1;5;2;179;22;17;40;313.532;96;0;2;2;0;1;0;63;170;22;2
17;25;1;6;2;179;22;17;40;313.532;96;0;2;2;0;1;0;63;170;22;2
22;13;1;2;2;179;26;9;30;313.532;96;0;3;0;0;0;0;56;171;19;3
17;25;1;4;2;179;22;17;40;313.532;96;0;2;2;0;1;0;63;170;22;2
32;10;1;5;2;289;48;29;49;313.532;96;0;1;0;0;0;2;108;172;36;8
17;18;1;6;2;179;22;17;40;313.532;96;0;2;2;0;1;0;63;170;22;3
22;27;1;2;2;179;26;9;30;313.532;96;0;3;0;0;0;0;56;171;19;2
14;18;1;3;2;155;12;14;34;313.532;96;0;1;2;1;0;0;95;196;25;8
22;27;1;4;2;179;26;9;30;313.532;96;0;3;0;0;0;0;56;171;19;2
3;27;1;4;2;179;51;18;38;313.532;96;0;1;0;1;0;0;89;170;31;3
11;13;1;4;2;289;36;13;33;313.532;96;0;1;2;1;0;1;90;172;30;8
3;27;1;5;2;179;51;18;38;313.532;96;0;1;0;1;0;0;89;170;31;3
3;27;1;6;2;179;51;18;38;313.532;96;0;1;0;1;0;0;89;170;31;2
3;13;2;3;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;8
28;23;2;3;2;225;26;9;28;264.249;97;0;1;1;0;0;2;69;169;24;3
33;1;2;4;2;248;25;14;47;264.249;97;0;1;2;0;0;1;86;165;32;8
3;27;2;4;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;2
28;28;2;5;2;225;26;9;28;264.249;97;0;1;1;0;0;2;69;169;24;3
3;27;2;5;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;2
22;27;2;5;2;179;26;9;30;264.249;97;0;3;0;0;0;0;56;171;19;2
29;28;2;6;2;225;15;15;41;264.249;97;0;4;2;1;0;2;94;182;28;2
3;27;2;6;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;2
12;19;2;2;2;233;51;1;31;264.249;97;0;2;1;1;0;8;68;178;21;2
3;27;2;2;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;2
28;7;2;3;2;225;26;9;28;264.249;97;0;1;1;0;0;2;69;169;24;8
3;27;2;4;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;3
3;27;2;5;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;3
28;25;2;5;2;225;26;9;28;264.249;97;0;1;1;0;0;2;69;169;24;3
22;13;2;5;2;179;26;9;30;264.249;97;0;3;0;0;0;0;56;171;19;2
17;23;2;6;2;179;22;17;40;264.249;97;0;2;2;0;1;0;63;170;22;2
3;27;2;6;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;3
12;12;2;4;2;233;51;1;31;264.249;97;0;2;1;1;0;8;68;178;21;3
22;27;2;4;2;179;26;9;30;264.249;97;0;3;0;0;0;0;56;171;19;2
3;27;2;4;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;2
3;13;2;5;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;8
3;27;2;6;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;2
14;25;2;2;2;155;12;14;34;264.249;97;0;1;2;1;0;0;95;196;25;5
25;25;2;2;2;235;16;8;32;264.249;97;0;3;0;0;0;0;75;178;25;3
3;27;2;2;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;2
28;7;2;2;2;225;26;9;28;264.249;97;0;1;1;0;0;2;69;169;24;2
3;27;2;3;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;2
33;23;2;3;2;248;25;14;47;264.249;97;0;1;2;0;0;1;86;165;32;2
28;25;2;3;2;225;26;9;28;264.249;97;0;1;1;0;0;2;69;169;24;2
3;27;2;4;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;2
3;27;2;5;2;179;51;18;38;264.249;97;0;1;0;1;0;0;89;170;31;2
25;25;2;6;2;235;16;8;32;264.249;97;0;3;0;0;0;0;75;178;25;2
3;27;3;2;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;2
33;23;3;2;2;248;25;14;47;222.196;99;0;1;2;0;0;1;86;165;32;2
9;25;3;3;2;228;14;16;58;222.196;99;0;1;2;0;0;1;65;172;22;3
33;25;3;3;2;248;25;14;47;222.196;99;0;1;2;0;0;1;86;165;32;3
9;12;3;3;2;228;14;16;58;222.196;99;0;1;2;0;0;1;65;172;22;112
3;27;3;4;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;2
28;27;3;5;2;225;26;9;28;222.196;99;0;1;1;0;0;2;69;169;24;2
3;27;3;5;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;3
28;25;3;5;2;225;26;9;28;222.196;99;0;1;1;0;0;2;69;169;24;2
22;27;3;6;2;179;26;9;30;222.196;99;0;3;0;0;0;0;56;171;19;3
25;25;3;2;2;235;16;8;32;222.196;99;0;3;0;0;0;0;75;178;25;3
10;19;3;2;2;361;52;3;28;222.196;99;0;1;1;1;0;4;80;172;27;8
3;13;3;3;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;8
3;27;3;4;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;2
3;27;3;5;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;3
22;27;3;6;2;179;26;9;30;222.196;99;0;3;0;0;0;0;56;171;19;2
3;10;3;2;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;4
33;13;3;2;2;248;25;14;47;222.196;99;0;1;2;0;0;1;86;165;32;2
3;27;3;2;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;3
28;7;3;2;2;225;26;9;28;222.196;99;0;1;1;0;0;2;69;169;24;8
3;27;3;3;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;2
11;23;3;4;2;289;36;13;33;222.196;99;0;1;2;1;0;1;90;172;30;8
9;25;3;4;2;228;14;16;58;222.196;99;0;1;2;0;0;1;65;172;22;2
3;27;3;4;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;2
33;23;3;5;2;248;25;14;47;222.196;99;0;1;2;0;0;1;86;165;32;3
3;27;3;5;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;3
22;23;3;6;2;179;26;9;30;222.196;99;0;3;0;0;0;0;56;171;19;2
3;27;3;6;2;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;3
3;27;3;3;3;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;3
16;23;3;4;3;118;15;24;46;222.196;99;0;1;2;1;1;0;75;175;25;8
14;13;3;4;3;155;12;14;34;222.196;99;0;1;2;1;0;0;95;196;25;24
3;27;3;4;3;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;3
3;27;3;5;3;179;51;18;38;222.196;99;0;1;0;1;0;0;89;170;31;3
22;13;3;2;3;179;26;9;30;222.196;99;0;3;0;0;0;0;56;171;19;2
11;19;3;2;3;289;36;13;33;222.196;99;0;1;2;1;0;1;90;172;30;104
13;22;3;4;3;369;17;12;31;222.196;99;0;1;3;1;0;0;70;169;25;8
28;13;4;2;3;225;26;9;28;246.288;91;0;1;1;0;0;2;69;169;24;8
34;10;4;2;3;118;10;10;37;246.288;91;0;1;0;0;0;0;83;172;28;8
10;19;4;3;3;361;52;3;28;246.288;91;0;1;1;1;0;4;80;172;27;8
33;19;4;4;3;248;25;14;47;246.288;91;0;1;2;0;0;1;86;165;32;8
6;13;4;5;3;189;29;13;33;246.288;91;0;1;2;0;0;2;69;167;25;8
22;27;4;6;3;179;26;9;30;246.288;91;0;3;0;0;0;0;56;171;19;2
13;7;4;2;3;369;17;12;31;246.288;91;0;1;3;1;0;0;70;169;25;24
17;16;4;3;3;179;22;17;40;246.288;91;0;2;2;0;1;0;63;170;22;2
36;23;4;3;3;118;13;18;50;246.288;91;0;1;1;1;0;0;98;178;31;3
10;23;4;3;3;361;52;3;28;246.288;91;0;1;1;1;0;4;80;172;27;2
34;10;4;4;3;118;10;10;37;246.288;91;0;1;0;0;0;0;83;172;28;2
1;22;4;6;3;235;11;14;37;246.288;91;0;3;1;0;0;1;88;172;29;8
22;27;4;6;3;179;26;9;30;246.288;91;0;3;0;0;0;0;56;171;19;2
28;19;4;2;3;225;26;9;28;246.288;91;0;1;1;0;0;2;69;169;24;8
25;16;4;3;3;235;16;8;32;246.288;91;0;3;0;0;0;0;75;178;25;3
22;27;4;6;3;179;26;9;30;246.288;91;0;3;0;0;0;0;56;171;19;2
14;28;4;3;3;155;12;14;34;246.288;91;0;1;2;1;0;0;95;196;25;4
28;19;4;5;3;225;26;9;28;246.288;91;0;1;1;0;0;2;69;169;24;8
36;14;4;5;3;118;13;18;50;246.288;91;0;1;1;1;0;0;98;178;31;2
22;27;4;6;3;179;26;9;30;246.288;91;0;3;0;0;0;0;56;171;19;2
1;22;5;2;3;235;11;14;37;237.656;99;0;3;1;0;0;1;88;172;29;8
29;19;5;4;3;225;15;15;41;237.656;99;0;4;2;1;0;2;94;182;28;3
25;28;5;4;3;235;16;8;32;237.656;99;0;3;0;0;0;0;75;178;25;2
34;8;5;4;3;118;10;10;37;237.656;99;0;1;0;0;0;0;83;172;28;3
5;26;5;4;3;235;20;13;43;237.656;99;0;1;1;1;0;0;106;167;38;8
22;13;5;5;3;179;26;9;30;237.656;99;0;3;0;0;0;0;56;171;19;1
15;28;5;5;3;291;31;12;40;237.656;99;0;1;1;1;0;1;73;171;25;2
29;14;5;5;3;225;15;15;41;237.656;99;0;4;2;1;0;2;94;182;28;8
26;19;5;6;3;300;26;13;43;237.656;99;0;1;2;1;1;1;77;175;25;64
29;22;5;6;3;225;15;15;41;237.656;99;0;4;2;1;0;2;94;182;28;8
22;27;5;6;3;179;26;9;30;237.656;99;0;3;0;0;0;0;56;171;19;2
36;23;5;2;3;118;13;18;50;237.656;99;0;1;1;1;0;0;98;178;31;2
36;5;5;3;3;118;13;18;50;237.656;99;0;1;1;1;0;0;98;178;31;3
34;28;5;3;3;118;10;10;37;237.656;99;0;1;0;0;0;0;83;172;28;1
36;0;5;3;3;118;13;18;50;237.656;99;1;1;1;1;0;0;98;178;31;0
22;27;5;4;3;179;26;9;30;237.656;99;0;3;0;0;0;0;56;171;19;2
23;0;5;4;3;378;49;11;36;237.656;99;1;1;2;0;1;4;65;174;21;0
17;16;5;6;3;179;22;17;40;237.656;99;0;2;2;0;1;0;63;170;22;1
14;10;5;2;3;155;12;14;34;237.656;99;0;1;2;1;0;0;95;196;25;48
25;10;5;2;3;235;16;8;32;237.656;99;0;3;0;0;0;0;75;178;25;8
15;22;5;4;3;291;31;12;40;237.656;99;0;1;1;1;0;1;73;171;25;8
17;10;5;4;3;179;22;17;40;237.656;99;0;2;2;0;1;0;63;170;22;8
28;6;5;4;3;225;26;9;28;237.656;99;0;1;1;0;0;2;69;169;24;3
18;10;5;5;3;330;16;4;28;237.656;99;0;2;0;0;0;0;84;182;25;8
25;23;5;5;3;235;16;8;32;237.656;99;0;3;0;0;0;0;75;178;25;2
15;28;5;5;3;291;31;12;40;237.656;99;0;1;1;1;0;1;73;171;25;2
22;27;5;6;3;179;26;9;30;237.656;99;0;3;0;0;0;0;56;171;19;2
10;7;5;2;3;361;52;3;28;237.656;99;0;1;1;1;0;4;80;172;27;8
14;23;5;4;3;155;12;14;34;237.656;99;0;1;2;1;0;0;95;196;25;2
17;25;5;6;3;179;22;17;40;237.656;99;0;2;2;0;1;0;63;170;22;8
14;10;5;6;3;155;12;14;34;237.656;99;0;1;2;1;0;0;95;196;25;8
28;11;5;2;3;225;26;9;28;237.656;99;0;1;1;0;0;2;69;169;24;1
16;7;6;4;3;118;15;24;46;275.089;96;0;1;2;1;1;0;75;175;25;8
22;27;6;4;3;179;26;9;30;275.089;96;0;3;0;0;0;0;56;171;19;3
34;26;6;6;3;118;10;10;37;275.089;96;0;1;0;0;0;0;83;172;28;8
34;10;6;4;3;118;10;10;37;275.089;96;0;1;0;0;0;0;83;172;28;8
23;22;6;5;3;378;49;11;36;275.089;96;0;1;2;0;1;4;65;174;21;8
36;19;6;5;3;118;13;18;50;275.089;96;0;1;1;1;0;0;98;178;31;24
12;19;6;6;3;233;51;1;31;275.089;96;0;2;1;1;0;8;68;178;21;8
22;27;6;6;3;179;26;9;30;275.089;96;0;3;0;0;0;0;56;171;19;2
2;0;6;2;3;235;29;12;48;275.089;96;1;1;1;0;1;5;88;163;33;0
21;0;6;2;3;268;11;8;33;275.089;96;1;2;0;0;0;0;79;178;25;0
36;19;6;5;3;118;13;18;50;275.089;96;0;1;1;1;0;0;98;178;31;3
22;13;6;5;3;179;26;9;30;275.089;96;0;3;0;0;0;0;56;171;19;2
15;28;6;5;3;291;31;12;40;275.089;96;0;1;1;1;0;1;73;171;25;2
22;13;6;2;1;179;26;9;30;275.089;96;0;3;0;0;0;0;56;171;19;3
34;25;6;2;1;118;10;10;37;275.089;96;0;1;0;0;0;0;83;172;28;3
12;22;6;5;1;233;51;1;31;275.089;96;0;2;1;1;0;8;68;178;21;8
34;8;6;6;1;118;10;10;37;275.089;96;0;1;0;0;0;0;83;172;28;2
34;10;6;4;1;118;10;10;37;275.089;96;0;1;0;0;0;0;83;172;28;3
12;22;6;4;1;233;51;1;31;275.089;96;0;2;1;1;0;8;68;178;21;3
5;26;7;4;1;235;20;13;43;264.604;93;0;1;1;1;0;0;106;167;38;4
12;19;7;6;1;233;51;1;31;264.604;93;0;2;1;1;0;8;68;178;21;2
9;6;7;2;1;228;14;16;58;264.604;93;0;1;2;0;0;1;65;172;22;8
34;28;7;2;1;118;10;10;37;264.604;93;0;1;0;0;0;0;83;172;28;4
9;6;7;3;1;228;14;16;58;264.604;93;0;1;2;0;0;1;65;172;22;120
6;22;7;3;1;189;29;13;33;264.604;93;0;1;2;0;0;2;69;167;25;16
34;23;7;4;1;118;10;10;37;264.604;93;0;1;0;0;0;0;83;172;28;2
10;22;7;4;1;361;52;3;28;264.604;93;0;1;1;1;0;4;80;172;27;8
28;22;7;4;1;225;26;9;28;264.604;93;0;1;1;0;0;2;69;169;24;8
13;13;7;2;1;369;17;12;31;264.604;93;0;1;3;1;0;0;70;169;25;80
11;14;7;3;1;289;36;13;33;264.604;93;0;1;2;1;0;1;90;172;30;8
1;11;7;3;1;235;11;14;37;264.604;93;0;3;1;0;0;1;88;172;29;4
4;0;0;3;1;118;14;13;40;271.219;95;0;1;1;1;0;8;98;170;34;0
8;0;0;4;2;231;35;14;39;271.219;95;0;1;2;1;0;2;100;170;35;0
35;0;0;6;3;179;45;14;53;271.219;95;0;1;1;0;0;1;77;175;25;0
1 ID Reason for absence Month of absence Day of the week Seasons Transportation expense Distance from Residence to Work Service time Age Work load Average/day Hit target Disciplinary failure Education Son Social drinker Social smoker Pet Weight Height Body mass index Absenteeism time in hours
2 11 26 7 3 1 289 36 13 33 239.554 97 0 1 2 1 0 1 90 172 30 4
3 36 0 7 3 1 118 13 18 50 239.554 97 1 1 1 1 0 0 98 178 31 0
4 3 23 7 4 1 179 51 18 38 239.554 97 0 1 0 1 0 0 89 170 31 2
5 7 7 7 5 1 279 5 14 39 239.554 97 0 1 2 1 1 0 68 168 24 4
6 11 23 7 5 1 289 36 13 33 239.554 97 0 1 2 1 0 1 90 172 30 2
7 3 23 7 6 1 179 51 18 38 239.554 97 0 1 0 1 0 0 89 170 31 2
8 10 22 7 6 1 361 52 3 28 239.554 97 0 1 1 1 0 4 80 172 27 8
9 20 23 7 6 1 260 50 11 36 239.554 97 0 1 4 1 0 0 65 168 23 4
10 14 19 7 2 1 155 12 14 34 239.554 97 0 1 2 1 0 0 95 196 25 40
11 1 22 7 2 1 235 11 14 37 239.554 97 0 3 1 0 0 1 88 172 29 8
12 20 1 7 2 1 260 50 11 36 239.554 97 0 1 4 1 0 0 65 168 23 8
13 20 1 7 3 1 260 50 11 36 239.554 97 0 1 4 1 0 0 65 168 23 8
14 20 11 7 4 1 260 50 11 36 239.554 97 0 1 4 1 0 0 65 168 23 8
15 3 11 7 4 1 179 51 18 38 239.554 97 0 1 0 1 0 0 89 170 31 1
16 3 23 7 4 1 179 51 18 38 239.554 97 0 1 0 1 0 0 89 170 31 4
17 24 14 7 6 1 246 25 16 41 239.554 97 0 1 0 1 0 0 67 170 23 8
18 3 23 7 6 1 179 51 18 38 239.554 97 0 1 0 1 0 0 89 170 31 2
19 3 21 7 2 1 179 51 18 38 239.554 97 0 1 0 1 0 0 89 170 31 8
20 6 11 7 5 1 189 29 13 33 239.554 97 0 1 2 0 0 2 69 167 25 8
21 33 23 8 4 1 248 25 14 47 205.917 92 0 1 2 0 0 1 86 165 32 2
22 18 10 8 4 1 330 16 4 28 205.917 92 0 2 0 0 0 0 84 182 25 8
23 3 11 8 2 1 179 51 18 38 205.917 92 0 1 0 1 0 0 89 170 31 1
24 10 13 8 2 1 361 52 3 28 205.917 92 0 1 1 1 0 4 80 172 27 40
25 20 28 8 6 1 260 50 11 36 205.917 92 0 1 4 1 0 0 65 168 23 4
26 11 18 8 2 1 289 36 13 33 205.917 92 0 1 2 1 0 1 90 172 30 8
27 10 25 8 2 1 361 52 3 28 205.917 92 0 1 1 1 0 4 80 172 27 7
28 11 23 8 3 1 289 36 13 33 205.917 92 0 1 2 1 0 1 90 172 30 1
29 30 28 8 4 1 157 27 6 29 205.917 92 0 1 0 1 1 0 75 185 22 4
30 11 18 8 4 1 289 36 13 33 205.917 92 0 1 2 1 0 1 90 172 30 8
31 3 23 8 6 1 179 51 18 38 205.917 92 0 1 0 1 0 0 89 170 31 2
32 3 18 8 2 1 179 51 18 38 205.917 92 0 1 0 1 0 0 89 170 31 8
33 2 18 8 5 1 235 29 12 48 205.917 92 0 1 1 0 1 5 88 163 33 8
34 1 23 8 5 1 235 11 14 37 205.917 92 0 3 1 0 0 1 88 172 29 4
35 2 18 8 2 1 235 29 12 48 205.917 92 0 1 1 0 1 5 88 163 33 8
36 3 23 8 2 1 179 51 18 38 205.917 92 0 1 0 1 0 0 89 170 31 2
37 10 23 8 2 1 361 52 3 28 205.917 92 0 1 1 1 0 4 80 172 27 1
38 11 24 8 3 1 289 36 13 33 205.917 92 0 1 2 1 0 1 90 172 30 8
39 19 11 8 5 1 291 50 12 32 205.917 92 0 1 0 1 0 0 65 169 23 4
40 2 28 8 6 1 235 29 12 48 205.917 92 0 1 1 0 1 5 88 163 33 8
41 20 23 8 6 1 260 50 11 36 205.917 92 0 1 4 1 0 0 65 168 23 4
42 27 23 9 3 1 184 42 7 27 241.476 92 0 1 0 0 0 0 58 167 21 2
43 34 23 9 2 1 118 10 10 37 241.476 92 0 1 0 0 0 0 83 172 28 4
44 3 23 9 3 1 179 51 18 38 241.476 92 0 1 0 1 0 0 89 170 31 4
45 5 19 9 3 1 235 20 13 43 241.476 92 0 1 1 1 0 0 106 167 38 8
46 14 23 9 4 1 155 12 14 34 241.476 92 0 1 2 1 0 0 95 196 25 2
47 34 23 9 2 1 118 10 10 37 241.476 92 0 1 0 0 0 0 83 172 28 3
48 3 23 9 3 1 179 51 18 38 241.476 92 0 1 0 1 0 0 89 170 31 3
49 15 23 9 5 1 291 31 12 40 241.476 92 0 1 1 1 0 1 73 171 25 4
50 20 22 9 6 1 260 50 11 36 241.476 92 0 1 4 1 0 0 65 168 23 8
51 15 14 9 2 4 291 31 12 40 241.476 92 0 1 1 1 0 1 73 171 25 32
52 20 0 9 2 4 260 50 11 36 241.476 92 1 1 4 1 0 0 65 168 23 0
53 29 0 9 2 4 225 26 9 28 241.476 92 1 1 1 0 0 2 69 169 24 0
54 28 23 9 3 4 225 26 9 28 241.476 92 0 1 1 0 0 2 69 169 24 2
55 34 23 9 3 4 118 10 10 37 241.476 92 0 1 0 0 0 0 83 172 28 2
56 11 0 9 3 4 289 36 13 33 241.476 92 1 1 2 1 0 1 90 172 30 0
57 36 0 9 3 4 118 13 18 50 241.476 92 1 1 1 1 0 0 98 178 31 0
58 28 18 9 4 4 225 26 9 28 241.476 92 0 1 1 0 0 2 69 169 24 3
59 3 23 9 4 4 179 51 18 38 241.476 92 0 1 0 1 0 0 89 170 31 3
60 13 0 9 4 4 369 17 12 31 241.476 92 1 1 3 1 0 0 70 169 25 0
61 33 23 9 6 4 248 25 14 47 241.476 92 0 1 2 0 0 1 86 165 32 1
62 3 23 9 6 4 179 51 18 38 241.476 92 0 1 0 1 0 0 89 170 31 3
63 20 23 9 6 4 260 50 11 36 241.476 92 0 1 4 1 0 0 65 168 23 4
64 3 23 10 3 4 179 51 18 38 253.465 93 0 1 0 1 0 0 89 170 31 3
65 34 23 10 3 4 118 10 10 37 253.465 93 0 1 0 0 0 0 83 172 28 3
66 36 0 10 4 4 118 13 18 50 253.465 93 1 1 1 1 0 0 98 178 31 0
67 22 23 10 5 4 179 26 9 30 253.465 93 0 3 0 0 0 0 56 171 19 1
68 3 23 10 6 4 179 51 18 38 253.465 93 0 1 0 1 0 0 89 170 31 3
69 28 23 10 6 4 225 26 9 28 253.465 93 0 1 1 0 0 2 69 169 24 3
70 34 23 10 3 4 118 10 10 37 253.465 93 0 1 0 0 0 0 83 172 28 3
71 28 23 10 4 4 225 26 9 28 253.465 93 0 1 1 0 0 2 69 169 24 2
72 33 23 10 4 4 248 25 14 47 253.465 93 0 1 2 0 0 1 86 165 32 2
73 15 23 10 5 4 291 31 12 40 253.465 93 0 1 1 1 0 1 73 171 25 5
74 3 23 10 4 4 179 51 18 38 253.465 93 0 1 0 1 0 0 89 170 31 8
75 28 23 10 4 4 225 26 9 28 253.465 93 0 1 1 0 0 2 69 169 24 3
76 20 19 10 5 4 260 50 11 36 253.465 93 0 1 4 1 0 0 65 168 23 16
77 15 14 10 3 4 291 31 12 40 253.465 93 0 1 1 1 0 1 73 171 25 8
78 28 28 10 3 4 225 26 9 28 253.465 93 0 1 1 0 0 2 69 169 24 2
79 11 26 10 4 4 289 36 13 33 253.465 93 0 1 2 1 0 1 90 172 30 8
80 10 23 10 6 4 361 52 3 28 253.465 93 0 1 1 1 0 4 80 172 27 1
81 20 28 10 6 4 260 50 11 36 253.465 93 0 1 4 1 0 0 65 168 23 3
82 3 23 11 5 4 179 51 18 38 306.345 93 0 1 0 1 0 0 89 170 31 1
83 28 23 11 4 4 225 26 9 28 306.345 93 0 1 1 0 0 2 69 169 24 1
84 3 13 11 5 4 179 51 18 38 306.345 93 0 1 0 1 0 0 89 170 31 8
85 17 21 11 5 4 179 22 17 40 306.345 93 0 2 2 0 1 0 63 170 22 8
86 15 23 11 5 4 291 31 12 40 306.345 93 0 1 1 1 0 1 73 171 25 5
87 14 10 11 2 4 155 12 14 34 306.345 93 0 1 2 1 0 0 95 196 25 32
88 6 22 11 2 4 189 29 13 33 306.345 93 0 1 2 0 0 2 69 167 25 8
89 15 14 11 2 4 291 31 12 40 306.345 93 0 1 1 1 0 1 73 171 25 40
90 28 23 11 4 4 225 26 9 28 306.345 93 0 1 1 0 0 2 69 169 24 1
91 14 6 11 6 4 155 12 14 34 306.345 93 0 1 2 1 0 0 95 196 25 8
92 28 23 11 4 4 225 26 9 28 306.345 93 0 1 1 0 0 2 69 169 24 3
93 17 21 11 4 4 179 22 17 40 306.345 93 0 2 2 0 1 0 63 170 22 8
94 28 13 11 6 4 225 26 9 28 306.345 93 0 1 1 0 0 2 69 169 24 3
95 20 28 11 6 4 260 50 11 36 306.345 93 0 1 4 1 0 0 65 168 23 4
96 33 28 11 2 4 248 25 14 47 306.345 93 0 1 2 0 0 1 86 165 32 1
97 28 28 11 3 4 225 26 9 28 306.345 93 0 1 1 0 0 2 69 169 24 3
98 11 7 11 4 4 289 36 13 33 306.345 93 0 1 2 1 0 1 90 172 30 24
99 15 23 11 5 4 291 31 12 40 306.345 93 0 1 1 1 0 1 73 171 25 3
100 33 23 12 3 4 248 25 14 47 261.306 97 0 1 2 0 0 1 86 165 32 1
101 34 19 12 3 4 118 10 10 37 261.306 97 0 1 0 0 0 0 83 172 28 64
102 36 23 12 4 4 118 13 18 50 261.306 97 0 1 1 1 0 0 98 178 31 2
103 1 26 12 4 4 235 11 14 37 261.306 97 0 3 1 0 0 1 88 172 29 8
104 28 23 12 5 4 225 26 9 28 261.306 97 0 1 1 0 0 2 69 169 24 2
105 20 26 12 6 4 260 50 11 36 261.306 97 0 1 4 1 0 0 65 168 23 8
106 34 19 12 3 4 118 10 10 37 261.306 97 0 1 0 0 0 0 83 172 28 56
107 10 22 12 4 4 361 52 3 28 261.306 97 0 1 1 1 0 4 80 172 27 8
108 28 28 12 5 4 225 26 9 28 261.306 97 0 1 1 0 0 2 69 169 24 3
109 20 28 12 6 4 260 50 11 36 261.306 97 0 1 4 1 0 0 65 168 23 3
110 28 23 12 3 4 225 26 9 28 261.306 97 0 1 1 0 0 2 69 169 24 2
111 10 22 12 4 4 361 52 3 28 261.306 97 0 1 1 1 0 4 80 172 27 8
112 34 27 12 6 4 118 10 10 37 261.306 97 0 1 0 0 0 0 83 172 28 2
113 24 19 12 6 2 246 25 16 41 261.306 97 0 1 0 1 0 0 67 170 23 8
114 28 23 12 6 2 225 26 9 28 261.306 97 0 1 1 0 0 2 69 169 24 2
115 28 23 1 4 2 225 26 9 28 308.593 95 0 1 1 0 0 2 69 169 24 1
116 34 19 1 2 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 1
117 34 27 1 3 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 1
118 14 18 1 3 2 155 12 14 34 308.593 95 0 1 2 1 0 0 95 196 25 8
119 28 27 1 4 2 225 26 9 28 308.593 95 0 1 1 0 0 2 69 169 24 2
120 27 23 1 5 2 184 42 7 27 308.593 95 0 1 0 0 0 0 58 167 21 2
121 28 28 1 5 2 225 26 9 28 308.593 95 0 1 1 0 0 2 69 169 24 2
122 28 27 1 6 2 225 26 9 28 308.593 95 0 1 1 0 0 2 69 169 24 1
123 34 27 1 2 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 2
124 28 27 1 3 2 225 26 9 28 308.593 95 0 1 1 0 0 2 69 169 24 2
125 34 27 1 3 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 2
126 34 27 1 4 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 2
127 34 27 1 5 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 2
128 34 27 1 6 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 2
129 34 27 1 2 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 2
130 34 27 1 3 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 2
131 22 18 1 3 2 179 26 9 30 308.593 95 0 3 0 0 0 0 56 171 19 8
132 11 18 1 3 2 289 36 13 33 308.593 95 0 1 2 1 0 1 90 172 30 8
133 34 27 1 4 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 2
134 27 23 1 5 2 184 42 7 27 308.593 95 0 1 0 0 0 0 58 167 21 2
135 34 27 1 5 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 2
136 34 27 1 2 2 118 10 10 37 308.593 95 0 1 0 0 0 0 83 172 28 0
137 28 23 1 3 2 225 26 9 28 308.593 95 0 1 1 0 0 2 69 169 24 1
138 11 22 1 5 2 289 36 13 33 308.593 95 0 1 2 1 0 1 90 172 30 3
139 27 23 2 6 2 184 42 7 27 302.585 99 0 1 0 0 0 0 58 167 21 1
140 24 1 2 4 2 246 25 16 41 302.585 99 0 1 0 1 0 0 67 170 23 8
141 3 11 2 4 2 179 51 18 38 302.585 99 0 1 0 1 0 0 89 170 31 8
142 14 28 2 5 2 155 12 14 34 302.585 99 0 1 2 1 0 0 95 196 25 2
143 6 23 2 5 2 189 29 13 33 302.585 99 0 1 2 0 0 2 69 167 25 8
144 20 28 2 6 2 260 50 11 36 302.585 99 0 1 4 1 0 0 65 168 23 2
145 11 22 2 6 2 289 36 13 33 302.585 99 0 1 2 1 0 1 90 172 30 8
146 31 11 2 2 2 388 15 9 50 302.585 99 0 1 0 0 0 0 76 178 24 8
147 31 1 2 3 2 388 15 9 50 302.585 99 0 1 0 0 0 0 76 178 24 8
148 28 28 2 2 2 225 26 9 28 302.585 99 0 1 1 0 0 2 69 169 24 2
149 28 23 2 3 2 225 26 9 28 302.585 99 0 1 1 0 0 2 69 169 24 2
150 22 23 2 3 2 179 26 9 30 302.585 99 0 3 0 0 0 0 56 171 19 1
151 27 23 2 3 2 184 42 7 27 302.585 99 0 1 0 0 0 0 58 167 21 8
152 28 25 2 5 2 225 26 9 28 302.585 99 0 1 1 0 0 2 69 169 24 3
153 18 18 2 2 2 330 16 4 28 302.585 99 0 2 0 0 0 0 84 182 25 8
154 18 23 2 3 2 330 16 4 28 302.585 99 0 2 0 0 0 0 84 182 25 1
155 28 23 2 4 2 225 26 9 28 302.585 99 0 1 1 0 0 2 69 169 24 1
156 6 19 2 5 2 189 29 13 33 302.585 99 0 1 2 0 0 2 69 167 25 8
157 19 28 3 3 2 291 50 12 32 343.253 95 0 1 0 1 0 0 65 169 23 2
158 20 19 3 3 2 260 50 11 36 343.253 95 0 1 4 1 0 0 65 168 23 8
159 30 19 3 3 2 157 27 6 29 343.253 95 0 1 0 1 1 0 75 185 22 3
160 17 17 3 3 2 179 22 17 40 343.253 95 0 2 2 0 1 0 63 170 22 8
161 15 22 3 4 2 291 31 12 40 343.253 95 0 1 1 1 0 1 73 171 25 8
162 20 13 3 4 2 260 50 11 36 343.253 95 0 1 4 1 0 0 65 168 23 8
163 22 13 3 5 2 179 26 9 30 343.253 95 0 3 0 0 0 0 56 171 19 8
164 33 14 3 6 2 248 25 14 47 343.253 95 0 1 2 0 0 1 86 165 32 3
165 20 13 3 6 2 260 50 11 36 343.253 95 0 1 4 1 0 0 65 168 23 40
166 17 11 3 2 2 179 22 17 40 343.253 95 0 2 2 0 1 0 63 170 22 40
167 14 1 3 2 2 155 12 14 34 343.253 95 0 1 2 1 0 0 95 196 25 16
168 20 26 3 2 2 260 50 11 36 343.253 95 0 1 4 1 0 0 65 168 23 16
169 14 13 3 3 2 155 12 14 34 343.253 95 0 1 2 1 0 0 95 196 25 8
170 11 6 3 5 2 289 36 13 33 343.253 95 0 1 2 1 0 1 90 172 30 8
171 17 8 3 5 2 179 22 17 40 343.253 95 0 2 2 0 1 0 63 170 22 8
172 20 28 3 6 2 260 50 11 36 343.253 95 0 1 4 1 0 0 65 168 23 4
173 28 23 3 6 2 225 26 9 28 343.253 95 0 1 1 0 0 2 69 169 24 1
174 7 14 3 2 2 279 5 14 39 343.253 95 0 1 2 1 1 0 68 168 24 8
175 3 13 3 3 2 179 51 18 38 343.253 95 0 1 0 1 0 0 89 170 31 24
176 28 23 3 4 2 225 26 9 28 343.253 95 0 1 1 0 0 2 69 169 24 2
177 28 11 3 2 3 225 26 9 28 343.253 95 0 1 1 0 0 2 69 169 24 8
178 22 13 3 2 3 179 26 9 30 343.253 95 0 3 0 0 0 0 56 171 19 1
179 28 11 3 3 3 225 26 9 28 343.253 95 0 1 1 0 0 2 69 169 24 8
180 28 11 3 4 3 225 26 9 28 343.253 95 0 1 1 0 0 2 69 169 24 16
181 3 13 3 4 3 179 51 18 38 343.253 95 0 1 0 1 0 0 89 170 31 3
182 7 14 3 5 3 279 5 14 39 343.253 95 0 1 2 1 1 0 68 168 24 16
183 28 28 3 6 3 225 26 9 28 343.253 95 0 1 1 0 0 2 69 169 24 2
184 33 14 3 6 3 248 25 14 47 343.253 95 0 1 2 0 0 1 86 165 32 3
185 28 28 3 2 3 225 26 9 28 343.253 95 0 1 1 0 0 2 69 169 24 1
186 15 28 4 4 3 291 31 12 40 326.452 96 0 1 1 1 0 1 73 171 25 1
187 28 23 4 4 3 225 26 9 28 326.452 96 0 1 1 0 0 2 69 169 24 1
188 14 28 4 3 3 155 12 14 34 326.452 96 0 1 2 1 0 0 95 196 25 1
189 24 13 4 4 3 246 25 16 41 326.452 96 0 1 0 1 0 0 67 170 23 24
190 14 23 4 5 3 155 12 14 34 326.452 96 0 1 2 1 0 0 95 196 25 1
191 28 28 4 6 3 225 26 9 28 326.452 96 0 1 1 0 0 2 69 169 24 2
192 20 28 4 6 3 260 50 11 36 326.452 96 0 1 4 1 0 0 65 168 23 4
193 3 13 4 4 3 179 51 18 38 326.452 96 0 1 0 1 0 0 89 170 31 24
194 36 23 4 5 3 118 13 18 50 326.452 96 0 1 1 1 0 0 98 178 31 1
195 15 23 4 6 3 291 31 12 40 326.452 96 0 1 1 1 0 1 73 171 25 3
196 24 14 4 6 3 246 25 16 41 326.452 96 0 1 0 1 0 0 67 170 23 8
197 15 28 4 6 3 291 31 12 40 326.452 96 0 1 1 1 0 1 73 171 25 1
198 33 28 4 6 3 248 25 14 47 326.452 96 0 1 2 0 0 1 86 165 32 8
199 20 19 4 6 3 260 50 11 36 326.452 96 0 1 4 1 0 0 65 168 23 56
200 11 19 4 3 3 289 36 13 33 326.452 96 0 1 2 1 0 1 90 172 30 8
201 14 12 4 4 3 155 12 14 34 326.452 96 0 1 2 1 0 0 95 196 25 24
202 23 19 4 4 3 378 49 11 36 326.452 96 0 1 2 0 1 4 65 174 21 8
203 11 13 4 5 3 289 36 13 33 326.452 96 0 1 2 1 0 1 90 172 30 16
204 1 7 4 6 3 235 11 14 37 326.452 96 0 3 1 0 0 1 88 172 29 3
205 2 0 4 2 3 235 29 12 48 326.452 96 1 1 1 0 1 5 88 163 33 0
206 11 13 5 4 3 289 36 13 33 378.884 92 0 1 2 1 0 1 90 172 30 8
207 14 28 5 5 3 155 12 14 34 378.884 92 0 1 2 1 0 0 95 196 25 2
208 14 28 5 2 3 155 12 14 34 378.884 92 0 1 2 1 0 0 95 196 25 1
209 3 18 5 3 3 179 51 18 38 378.884 92 0 1 0 1 0 0 89 170 31 8
210 28 19 5 3 3 225 26 9 28 378.884 92 0 1 1 0 0 2 69 169 24 8
211 27 7 5 4 3 184 42 7 27 378.884 92 0 1 0 0 0 0 58 167 21 4
212 14 28 5 2 3 155 12 14 34 378.884 92 0 1 2 1 0 0 95 196 25 2
213 3 12 5 3 3 179 51 18 38 378.884 92 0 1 0 1 0 0 89 170 31 1
214 11 13 5 4 3 289 36 13 33 378.884 92 0 1 2 1 0 1 90 172 30 24
215 7 0 5 4 3 279 5 14 39 378.884 92 1 1 2 1 1 0 68 168 24 0
216 18 0 5 4 3 330 16 4 28 378.884 92 1 2 0 0 0 0 84 182 25 0
217 23 0 5 4 3 378 49 11 36 378.884 92 1 1 2 0 1 4 65 174 21 0
218 31 0 5 4 3 388 15 9 50 378.884 92 1 1 0 0 0 0 76 178 24 0
219 3 11 5 3 3 179 51 18 38 378.884 92 0 1 0 1 0 0 89 170 31 1
220 36 13 5 4 3 118 13 18 50 378.884 92 0 1 1 1 0 0 98 178 31 24
221 10 22 5 6 3 361 52 3 28 378.884 92 0 1 1 1 0 4 80 172 27 8
222 24 19 6 2 3 246 25 16 41 377.550 94 0 1 0 1 0 0 67 170 23 8
223 10 22 6 2 3 361 52 3 28 377.550 94 0 1 1 1 0 4 80 172 27 8
224 24 10 6 3 3 246 25 16 41 377.550 94 0 1 0 1 0 0 67 170 23 24
225 15 23 6 5 3 291 31 12 40 377.550 94 0 1 1 1 0 1 73 171 25 4
226 24 10 6 6 3 246 25 16 41 377.550 94 0 1 0 1 0 0 67 170 23 8
227 3 11 6 2 3 179 51 18 38 377.550 94 0 1 0 1 0 0 89 170 31 8
228 14 23 6 2 3 155 12 14 34 377.550 94 0 1 2 1 0 0 95 196 25 4
229 24 10 6 2 3 246 25 16 41 377.550 94 0 1 0 1 0 0 67 170 23 8
230 36 13 6 4 3 118 13 18 50 377.550 94 0 1 1 1 0 0 98 178 31 8
231 1 13 6 6 3 235 11 14 37 377.550 94 0 3 1 0 0 1 88 172 29 16
232 36 23 6 3 3 118 13 18 50 377.550 94 0 1 1 1 0 0 98 178 31 1
233 36 13 6 4 3 118 13 18 50 377.550 94 0 1 1 1 0 0 98 178 31 80
234 23 22 6 5 3 378 49 11 36 377.550 94 0 1 2 0 1 4 65 174 21 8
235 3 11 6 6 3 179 51 18 38 377.550 94 0 1 0 1 0 0 89 170 31 2
236 32 28 6 2 1 289 48 29 49 377.550 94 0 1 0 0 0 2 108 172 36 2
237 28 28 6 5 1 225 26 9 28 377.550 94 0 1 1 0 0 2 69 169 24 2
238 14 19 7 3 1 155 12 14 34 275.312 98 0 1 2 1 0 0 95 196 25 16
239 36 1 7 4 1 118 13 18 50 275.312 98 0 1 1 1 0 0 98 178 31 8
240 34 5 7 6 1 118 10 10 37 275.312 98 0 1 0 0 0 0 83 172 28 8
241 34 26 7 6 1 118 10 10 37 275.312 98 0 1 0 0 0 0 83 172 28 4
242 18 26 7 3 1 330 16 4 28 275.312 98 0 2 0 0 0 0 84 182 25 8
243 22 18 7 5 1 179 26 9 30 275.312 98 0 3 0 0 0 0 56 171 19 8
244 14 25 7 6 1 155 12 14 34 275.312 98 0 1 2 1 0 0 95 196 25 2
245 18 1 7 2 1 330 16 4 28 275.312 98 0 2 0 0 0 0 84 182 25 8
246 18 1 7 3 1 330 16 4 28 275.312 98 0 2 0 0 0 0 84 182 25 8
247 30 25 7 2 1 157 27 6 29 275.312 98 0 1 0 1 1 0 75 185 22 3
248 10 22 7 3 1 361 52 3 28 275.312 98 0 1 1 1 0 4 80 172 27 8
249 11 26 7 4 1 289 36 13 33 275.312 98 0 1 2 1 0 1 90 172 30 8
250 3 26 7 5 1 179 51 18 38 275.312 98 0 1 0 1 0 0 89 170 31 8
251 11 19 7 2 1 289 36 13 33 275.312 98 0 1 2 1 0 1 90 172 30 32
252 11 19 7 5 1 289 36 13 33 275.312 98 0 1 2 1 0 1 90 172 30 8
253 20 0 7 5 1 260 50 11 36 275.312 98 1 1 4 1 0 0 65 168 23 0
254 11 19 8 6 1 289 36 13 33 265.615 94 0 1 2 1 0 1 90 172 30 8
255 30 19 8 6 1 157 27 6 29 265.615 94 0 1 0 1 1 0 75 185 22 3
256 11 23 8 2 1 289 36 13 33 265.615 94 0 1 2 1 0 1 90 172 30 1
257 9 18 8 3 1 228 14 16 58 265.615 94 0 1 2 0 0 1 65 172 22 8
258 26 13 8 5 1 300 26 13 43 265.615 94 0 1 2 1 1 1 77 175 25 1
259 26 14 8 5 1 300 26 13 43 265.615 94 0 1 2 1 1 1 77 175 25 2
260 20 28 8 6 1 260 50 11 36 265.615 94 0 1 4 1 0 0 65 168 23 4
261 11 23 8 3 1 289 36 13 33 265.615 94 0 1 2 1 0 1 90 172 30 4
262 33 23 8 4 1 248 25 14 47 265.615 94 0 1 2 0 0 1 86 165 32 1
263 21 11 8 5 1 268 11 8 33 265.615 94 0 2 0 0 0 0 79 178 25 8
264 22 23 8 5 1 179 26 9 30 265.615 94 0 3 0 0 0 0 56 171 19 1
265 36 13 8 5 1 118 13 18 50 265.615 94 0 1 1 1 0 0 98 178 31 3
266 33 25 8 2 1 248 25 14 47 265.615 94 0 1 2 0 0 1 86 165 32 2
267 1 23 8 3 1 235 11 14 37 265.615 94 0 3 1 0 0 1 88 172 29 1
268 36 23 8 5 1 118 13 18 50 265.615 94 0 1 1 1 0 0 98 178 31 1
269 1 19 8 5 1 235 11 14 37 265.615 94 0 3 1 0 0 1 88 172 29 8
270 10 8 8 3 1 361 52 3 28 265.615 94 0 1 1 1 0 4 80 172 27 8
271 27 6 8 4 1 184 42 7 27 265.615 94 0 1 0 0 0 0 58 167 21 8
272 3 11 9 2 1 179 51 18 38 294.217 81 0 1 0 1 0 0 89 170 31 8
273 3 23 9 6 1 179 51 18 38 294.217 81 0 1 0 1 0 0 89 170 31 3
274 11 19 9 4 1 289 36 13 33 294.217 81 0 1 2 1 0 1 90 172 30 24
275 5 0 9 5 1 235 20 13 43 294.217 81 1 1 1 1 0 0 106 167 38 0
276 24 9 9 2 1 246 25 16 41 294.217 81 0 1 0 1 0 0 67 170 23 16
277 15 28 9 3 1 291 31 12 40 294.217 81 0 1 1 1 0 1 73 171 25 3
278 8 0 9 3 1 231 35 14 39 294.217 81 1 1 2 1 0 2 100 170 35 0
279 19 0 9 3 1 291 50 12 32 294.217 81 1 1 0 1 0 0 65 169 23 0
280 3 13 9 4 1 179 51 18 38 294.217 81 0 1 0 1 0 0 89 170 31 8
281 24 9 9 4 1 246 25 16 41 294.217 81 0 1 0 1 0 0 67 170 23 32
282 3 23 9 5 1 179 51 18 38 294.217 81 0 1 0 1 0 0 89 170 31 1
283 15 28 9 6 1 291 31 12 40 294.217 81 0 1 1 1 0 1 73 171 25 4
284 20 28 9 6 1 260 50 11 36 294.217 81 0 1 4 1 0 0 65 168 23 4
285 5 26 9 4 4 235 20 13 43 294.217 81 0 1 1 1 0 0 106 167 38 8
286 36 28 9 5 4 118 13 18 50 294.217 81 0 1 1 1 0 0 98 178 31 1
287 5 0 9 5 4 235 20 13 43 294.217 81 1 1 1 1 0 0 106 167 38 0
288 15 28 9 6 4 291 31 12 40 294.217 81 0 1 1 1 0 1 73 171 25 3
289 15 7 9 2 4 291 31 12 40 294.217 81 0 1 1 1 0 1 73 171 25 40
290 3 13 9 2 4 179 51 18 38 294.217 81 0 1 0 1 0 0 89 170 31 8
291 11 24 10 2 4 289 36 13 33 265.017 88 0 1 2 1 0 1 90 172 30 8
292 1 26 10 2 4 235 11 14 37 265.017 88 0 3 1 0 0 1 88 172 29 4
293 11 26 10 2 4 289 36 13 33 265.017 88 0 1 2 1 0 1 90 172 30 8
294 11 22 10 6 4 289 36 13 33 265.017 88 0 1 2 1 0 1 90 172 30 8
295 36 0 10 6 4 118 13 18 50 265.017 88 1 1 1 1 0 0 98 178 31 0
296 33 0 10 6 4 248 25 14 47 265.017 88 1 1 2 0 0 1 86 165 32 0
297 22 1 10 2 4 179 26 9 30 265.017 88 0 3 0 0 0 0 56 171 19 8
298 34 7 10 2 4 118 10 10 37 265.017 88 0 1 0 0 0 0 83 172 28 3
299 13 22 10 2 4 369 17 12 31 265.017 88 0 1 3 1 0 0 70 169 25 8
300 3 28 10 4 4 179 51 18 38 265.017 88 0 1 0 1 0 0 89 170 31 1
301 22 1 10 4 4 179 26 9 30 265.017 88 0 3 0 0 0 0 56 171 19 64
302 5 0 10 4 4 235 20 13 43 265.017 88 1 1 1 1 0 0 106 167 38 0
303 11 19 10 5 4 289 36 13 33 265.017 88 0 1 2 1 0 1 90 172 30 16
304 20 28 10 6 4 260 50 11 36 265.017 88 0 1 4 1 0 0 65 168 23 3
305 5 0 10 6 4 235 20 13 43 265.017 88 1 1 1 1 0 0 106 167 38 0
306 5 23 10 2 4 235 20 13 43 265.017 88 0 1 1 1 0 0 106 167 38 2
307 5 23 10 2 4 235 20 13 43 265.017 88 0 1 1 1 0 0 106 167 38 2
308 36 28 10 3 4 118 13 18 50 265.017 88 0 1 1 1 0 0 98 178 31 1
309 15 28 10 3 4 291 31 12 40 265.017 88 0 1 1 1 0 1 73 171 25 4
310 22 23 10 5 4 179 26 9 30 265.017 88 0 3 0 0 0 0 56 171 19 16
311 36 28 10 5 4 118 13 18 50 265.017 88 0 1 1 1 0 0 98 178 31 1
312 10 10 10 2 4 361 52 3 28 265.017 88 0 1 1 1 0 4 80 172 27 8
313 20 0 10 3 4 260 50 11 36 265.017 88 1 1 4 1 0 0 65 168 23 0
314 15 0 10 3 4 291 31 12 40 265.017 88 1 1 1 1 0 1 73 171 25 0
315 30 0 10 3 4 157 27 6 29 265.017 88 1 1 0 1 1 0 75 185 22 0
316 22 1 10 4 4 179 26 9 30 265.017 88 0 3 0 0 0 0 56 171 19 5
317 22 7 10 4 4 179 26 9 30 265.017 88 0 3 0 0 0 0 56 171 19 5
318 36 23 10 5 4 118 13 18 50 265.017 88 0 1 1 1 0 0 98 178 31 1
319 34 11 11 2 4 118 10 10 37 284.031 97 0 1 0 0 0 0 83 172 28 8
320 33 23 11 2 4 248 25 14 47 284.031 97 0 1 2 0 0 1 86 165 32 2
321 3 6 11 3 4 179 51 18 38 284.031 97 0 1 0 1 0 0 89 170 31 8
322 20 28 11 6 4 260 50 11 36 284.031 97 0 1 4 1 0 0 65 168 23 3
323 15 23 11 2 4 291 31 12 40 284.031 97 0 1 1 1 0 1 73 171 25 1
324 23 1 11 2 4 378 49 11 36 284.031 97 0 1 2 0 1 4 65 174 21 8
325 14 11 11 2 4 155 12 14 34 284.031 97 0 1 2 1 0 0 95 196 25 120
326 5 26 11 2 4 235 20 13 43 284.031 97 0 1 1 1 0 0 106 167 38 8
327 18 0 11 3 4 330 16 4 28 284.031 97 1 2 0 0 0 0 84 182 25 0
328 1 18 11 4 4 235 11 14 37 284.031 97 0 3 1 0 0 1 88 172 29 1
329 34 11 11 4 4 118 10 10 37 284.031 97 0 1 0 0 0 0 83 172 28 3
330 1 25 11 5 4 235 11 14 37 284.031 97 0 3 1 0 0 1 88 172 29 2
331 3 28 11 5 4 179 51 18 38 284.031 97 0 1 0 1 0 0 89 170 31 3
332 24 13 11 6 4 246 25 16 41 284.031 97 0 1 0 1 0 0 67 170 23 8
333 15 12 11 6 4 291 31 12 40 284.031 97 0 1 1 1 0 1 73 171 25 4
334 24 13 11 2 4 246 25 16 41 284.031 97 0 1 0 1 0 0 67 170 23 8
335 3 28 11 3 4 179 51 18 38 284.031 97 0 1 0 1 0 0 89 170 31 1
336 20 10 11 4 4 260 50 11 36 284.031 97 0 1 4 1 0 0 65 168 23 8
337 20 15 11 6 4 260 50 11 36 284.031 97 0 1 4 1 0 0 65 168 23 8
338 23 0 11 6 4 378 49 11 36 284.031 97 1 1 2 0 1 4 65 174 21 0
339 7 0 11 3 4 279 5 14 39 284.031 97 1 1 2 1 1 0 68 168 24 0
340 3 23 11 5 4 179 51 18 38 284.031 97 0 1 0 1 0 0 89 170 31 1
341 28 12 12 2 4 225 26 9 28 236.629 93 0 1 1 0 0 2 69 169 24 3
342 3 28 12 2 4 179 51 18 38 236.629 93 0 1 0 1 0 0 89 170 31 2
343 3 28 12 2 4 179 51 18 38 236.629 93 0 1 0 1 0 0 89 170 31 1
344 1 23 12 2 4 235 11 14 37 236.629 93 0 3 1 0 0 1 88 172 29 3
345 36 28 12 3 4 118 13 18 50 236.629 93 0 1 1 1 0 0 98 178 31 1
346 20 28 12 6 4 260 50 11 36 236.629 93 0 1 4 1 0 0 65 168 23 4
347 24 4 12 5 4 246 25 16 41 236.629 93 0 1 0 1 0 0 67 170 23 8
348 3 28 12 5 4 179 51 18 38 236.629 93 0 1 0 1 0 0 89 170 31 1
349 3 28 12 6 4 179 51 18 38 236.629 93 0 1 0 1 0 0 89 170 31 1
350 22 23 12 3 4 179 26 9 30 236.629 93 0 3 0 0 0 0 56 171 19 1
351 34 25 12 3 4 118 10 10 37 236.629 93 0 1 0 0 0 0 83 172 28 8
352 1 25 12 5 4 235 11 14 37 236.629 93 0 3 1 0 0 1 88 172 29 2
353 3 28 12 6 4 179 51 18 38 236.629 93 0 1 0 1 0 0 89 170 31 1
354 5 13 12 3 2 235 20 13 43 236.629 93 0 1 1 1 0 0 106 167 38 8
355 1 14 12 3 2 235 11 14 37 236.629 93 0 3 1 0 0 1 88 172 29 4
356 20 26 12 4 2 260 50 11 36 236.629 93 0 1 4 1 0 0 65 168 23 8
357 30 28 12 2 2 157 27 6 29 236.629 93 0 1 0 1 1 0 75 185 22 2
358 3 28 12 2 2 179 51 18 38 236.629 93 0 1 0 1 0 0 89 170 31 3
359 11 19 12 2 2 289 36 13 33 236.629 93 0 1 2 1 0 1 90 172 30 8
360 28 23 1 4 2 225 26 9 28 330.061 100 0 1 1 0 0 2 69 169 24 5
361 34 19 1 2 2 118 10 10 37 330.061 100 0 1 0 0 0 0 83 172 28 32
362 14 23 1 2 2 155 12 14 34 330.061 100 0 1 2 1 0 0 95 196 25 2
363 1 13 1 3 2 235 11 14 37 330.061 100 0 3 1 0 0 1 88 172 29 1
364 14 23 1 3 2 155 12 14 34 330.061 100 0 1 2 1 0 0 95 196 25 4
365 11 26 1 2 2 289 36 13 33 330.061 100 0 1 2 1 0 1 90 172 30 8
366 15 3 1 4 2 291 31 12 40 330.061 100 0 1 1 1 0 1 73 171 25 8
367 5 26 1 2 2 235 20 13 43 330.061 100 0 1 1 1 0 0 106 167 38 8
368 36 26 1 2 2 118 13 18 50 330.061 100 0 1 1 1 0 0 98 178 31 4
369 3 28 1 4 2 179 51 18 38 330.061 100 0 1 0 1 0 0 89 170 31 1
370 3 28 1 6 2 179 51 18 38 330.061 100 0 1 0 1 0 0 89 170 31 1
371 34 28 2 3 2 118 10 10 37 251.818 96 0 1 0 0 0 0 83 172 28 2
372 3 27 2 4 2 179 51 18 38 251.818 96 0 1 0 1 0 0 89 170 31 3
373 28 7 2 4 2 225 26 9 28 251.818 96 0 1 1 0 0 2 69 169 24 1
374 11 22 2 6 2 289 36 13 33 251.818 96 0 1 2 1 0 1 90 172 30 3
375 20 28 2 6 2 260 50 11 36 251.818 96 0 1 4 1 0 0 65 168 23 3
376 3 23 2 6 2 179 51 18 38 251.818 96 0 1 0 1 0 0 89 170 31 3
377 3 27 2 2 2 179 51 18 38 251.818 96 0 1 0 1 0 0 89 170 31 2
378 3 27 2 4 2 179 51 18 38 251.818 96 0 1 0 1 0 0 89 170 31 3
379 3 10 2 5 2 179 51 18 38 251.818 96 0 1 0 1 0 0 89 170 31 8
380 24 26 2 5 2 246 25 16 41 251.818 96 0 1 0 1 0 0 67 170 23 8
381 3 27 2 6 2 179 51 18 38 251.818 96 0 1 0 1 0 0 89 170 31 3
382 6 22 2 2 2 189 29 13 33 251.818 96 0 1 2 0 0 2 69 167 25 8
383 3 27 2 2 2 179 51 18 38 251.818 96 0 1 0 1 0 0 89 170 31 3
384 24 23 2 3 2 246 25 16 41 251.818 96 0 1 0 1 0 0 67 170 23 2
385 15 23 2 3 2 291 31 12 40 251.818 96 0 1 1 1 0 1 73 171 25 2
386 30 11 2 4 2 157 27 6 29 251.818 96 0 1 0 1 1 0 75 185 22 16
387 3 27 2 4 2 179 51 18 38 251.818 96 0 1 0 1 0 0 89 170 31 3
388 3 27 2 6 2 179 51 18 38 251.818 96 0 1 0 1 0 0 89 170 31 3
389 24 10 2 6 2 246 25 16 41 251.818 96 0 1 0 1 0 0 67 170 23 24
390 3 27 2 4 2 179 51 18 38 251.818 96 0 1 0 1 0 0 89 170 31 3
391 3 27 2 6 2 179 51 18 38 251.818 96 0 1 0 1 0 0 89 170 31 3
392 34 18 3 3 2 118 10 10 37 244.387 98 0 1 0 0 0 0 83 172 28 8
393 24 19 3 4 2 246 25 16 41 244.387 98 0 1 0 1 0 0 67 170 23 16
394 24 28 3 6 2 246 25 16 41 244.387 98 0 1 0 1 0 0 67 170 23 2
395 20 28 3 6 2 260 50 11 36 244.387 98 0 1 4 1 0 0 65 168 23 4
396 3 28 3 2 2 179 51 18 38 244.387 98 0 1 0 1 0 0 89 170 31 2
397 1 22 3 2 2 235 11 14 37 244.387 98 0 3 1 0 0 1 88 172 29 8
398 17 22 3 3 2 179 22 17 40 244.387 98 0 2 2 0 1 0 63 170 22 8
399 23 22 3 3 2 378 49 11 36 244.387 98 0 1 2 0 1 4 65 174 21 8
400 3 28 3 2 2 179 51 18 38 244.387 98 0 1 0 1 0 0 89 170 31 16
401 10 22 3 4 2 361 52 3 28 244.387 98 0 1 1 1 0 4 80 172 27 8
402 13 0 3 4 2 369 17 12 31 244.387 98 1 1 3 1 0 0 70 169 25 0
403 1 21 3 5 2 235 11 14 37 244.387 98 0 3 1 0 0 1 88 172 29 8
404 36 23 3 6 3 118 13 18 50 244.387 98 0 1 1 1 0 0 98 178 31 2
405 36 14 3 3 3 118 13 18 50 244.387 98 0 1 1 1 0 0 98 178 31 3
406 36 13 3 4 3 118 13 18 50 244.387 98 0 1 1 1 0 0 98 178 31 8
407 1 0 3 5 3 235 11 14 37 244.387 98 1 3 1 0 0 1 88 172 29 0
408 24 0 3 5 3 246 25 16 41 244.387 98 1 1 0 1 0 0 67 170 23 0
409 36 0 3 5 3 118 13 18 50 244.387 98 1 1 1 1 0 0 98 178 31 0
410 3 28 3 6 3 179 51 18 38 244.387 98 0 1 0 1 0 0 89 170 31 8
411 11 22 3 6 3 289 36 13 33 244.387 98 0 1 2 1 0 1 90 172 30 8
412 20 19 3 2 3 260 50 11 36 244.387 98 0 1 4 1 0 0 65 168 23 8
413 24 28 3 3 3 246 25 16 41 244.387 98 0 1 0 1 0 0 67 170 23 2
414 3 28 4 4 3 179 51 18 38 239.409 98 0 1 0 1 0 0 89 170 31 4
415 20 28 4 6 3 260 50 11 36 239.409 98 0 1 4 1 0 0 65 168 23 3
416 18 26 4 6 3 330 16 4 28 239.409 98 0 2 0 0 0 0 84 182 25 4
417 13 22 4 2 3 369 17 12 31 239.409 98 0 1 3 1 0 0 70 169 25 4
418 33 26 4 2 3 248 25 14 47 239.409 98 0 1 2 0 0 1 86 165 32 4
419 18 23 4 4 3 330 16 4 28 239.409 98 0 2 0 0 0 0 84 182 25 8
420 3 28 4 4 3 179 51 18 38 239.409 98 0 1 0 1 0 0 89 170 31 8
421 36 23 4 2 3 118 13 18 50 239.409 98 0 1 1 1 0 0 98 178 31 1
422 36 13 4 4 3 118 13 18 50 239.409 98 0 1 1 1 0 0 98 178 31 120
423 26 28 4 6 3 300 26 13 43 239.409 98 0 1 2 1 1 1 77 175 25 8
424 20 28 4 6 3 260 50 11 36 239.409 98 0 1 4 1 0 0 65 168 23 4
425 3 28 4 2 3 179 51 18 38 239.409 98 0 1 0 1 0 0 89 170 31 4
426 34 11 4 4 3 118 10 10 37 239.409 98 0 1 0 0 0 0 83 172 28 2
427 5 13 5 2 3 235 20 13 43 246.074 99 0 1 1 1 0 0 106 167 38 16
428 33 23 5 4 3 248 25 14 47 246.074 99 0 1 2 0 0 1 86 165 32 2
429 13 10 5 2 3 369 17 12 31 246.074 99 0 1 3 1 0 0 70 169 25 8
430 22 23 5 4 3 179 26 9 30 246.074 99 0 3 0 0 0 0 56 171 19 3
431 3 28 5 4 3 179 51 18 38 246.074 99 0 1 0 1 0 0 89 170 31 4
432 10 23 5 5 3 361 52 3 28 246.074 99 0 1 1 1 0 4 80 172 27 1
433 20 28 5 6 3 260 50 11 36 246.074 99 0 1 4 1 0 0 65 168 23 3
434 17 11 5 2 3 179 22 17 40 246.074 99 0 2 2 0 1 0 63 170 22 2
435 17 8 5 2 3 179 22 17 40 246.074 99 0 2 2 0 1 0 63 170 22 3
436 9 18 5 4 3 228 14 16 58 246.074 99 0 1 2 0 0 1 65 172 22 8
437 28 25 5 4 3 225 26 9 28 246.074 99 0 1 1 0 0 2 69 169 24 3
438 18 13 5 6 3 330 16 4 28 246.074 99 0 2 0 0 0 0 84 182 25 8
439 22 25 5 2 3 179 26 9 30 246.074 99 0 3 0 0 0 0 56 171 19 2
440 34 28 5 2 3 118 10 10 37 246.074 99 0 1 0 0 0 0 83 172 28 1
441 1 1 5 2 3 235 11 14 37 246.074 99 0 3 1 0 0 1 88 172 29 8
442 22 23 5 4 3 179 26 9 30 246.074 99 0 3 0 0 0 0 56 171 19 3
443 34 23 6 2 3 118 10 10 37 253.957 95 0 1 0 0 0 0 83 172 28 3
444 3 28 6 2 3 179 51 18 38 253.957 95 0 1 0 1 0 0 89 170 31 3
445 34 28 6 3 3 118 10 10 37 253.957 95 0 1 0 0 0 0 83 172 28 2
446 28 23 6 5 3 225 26 9 28 253.957 95 0 1 1 0 0 2 69 169 24 4
447 20 28 6 6 3 260 50 11 36 253.957 95 0 1 4 1 0 0 65 168 23 4
448 3 0 6 6 3 179 51 18 38 253.957 95 1 1 0 1 0 0 89 170 31 0
449 15 13 6 2 3 291 31 12 40 253.957 95 0 1 1 1 0 1 73 171 25 40
450 3 28 6 2 3 179 51 18 38 253.957 95 0 1 0 1 0 0 89 170 31 24
451 24 28 6 3 3 246 25 16 41 253.957 95 0 1 0 1 0 0 67 170 23 3
452 3 28 6 2 3 179 51 18 38 253.957 95 0 1 0 1 0 0 89 170 31 4
453 5 26 6 3 3 235 20 13 43 253.957 95 0 1 1 1 0 0 106 167 38 8
454 3 28 6 2 1 179 51 18 38 253.957 95 0 1 0 1 0 0 89 170 31 2
455 28 23 6 4 1 225 26 9 28 253.957 95 0 1 1 0 0 2 69 169 24 2
456 36 23 6 4 1 118 13 18 50 253.957 95 0 1 1 1 0 0 98 178 31 2
457 3 5 6 4 1 179 51 18 38 253.957 95 0 1 0 1 0 0 89 170 31 8
458 22 21 6 4 1 179 26 9 30 253.957 95 0 3 0 0 0 0 56 171 19 2
459 24 28 6 6 1 246 25 16 41 253.957 95 0 1 0 1 0 0 67 170 23 2
460 18 11 6 3 1 330 16 4 28 253.957 95 0 2 0 0 0 0 84 182 25 1
461 1 13 6 3 1 235 11 14 37 253.957 95 0 3 1 0 0 1 88 172 29 8
462 22 23 7 5 1 179 26 9 30 230.290 92 0 3 0 0 0 0 56 171 19 2
463 28 25 7 5 1 225 26 9 28 230.290 92 0 1 1 0 0 2 69 169 24 4
464 20 13 7 6 1 260 50 11 36 230.290 92 0 1 4 1 0 0 65 168 23 8
465 21 7 7 2 1 268 11 8 33 230.290 92 0 2 0 0 0 0 79 178 25 8
466 18 25 7 6 1 330 16 4 28 230.290 92 0 2 0 0 0 0 84 182 25 8
467 34 26 7 6 1 118 10 10 37 230.290 92 0 1 0 0 0 0 83 172 28 8
468 20 26 7 2 1 260 50 11 36 230.290 92 0 1 4 1 0 0 65 168 23 4
469 34 28 7 3 1 118 10 10 37 230.290 92 0 1 0 0 0 0 83 172 28 8
470 26 15 7 2 1 300 26 13 43 230.290 92 0 1 2 1 1 1 77 175 25 8
471 2 23 7 2 1 235 29 12 48 230.290 92 0 1 1 0 1 5 88 163 33 1
472 24 28 7 3 1 246 25 16 41 230.290 92 0 1 0 1 0 0 67 170 23 2
473 28 9 7 3 1 225 26 9 28 230.290 92 0 1 1 0 0 2 69 169 24 112
474 3 28 7 3 1 179 51 18 38 230.290 92 0 1 0 1 0 0 89 170 31 1
475 36 23 7 6 1 118 13 18 50 230.290 92 0 1 1 1 0 0 98 178 31 1
476 10 22 7 6 1 361 52 3 28 230.290 92 0 1 1 1 0 4 80 172 27 8
477 11 22 7 2 1 289 36 13 33 230.290 92 0 1 2 1 0 1 90 172 30 8
478 5 26 7 2 1 235 20 13 43 230.290 92 0 1 1 1 0 0 106 167 38 8
479 24 28 7 3 1 246 25 16 41 230.290 92 0 1 0 1 0 0 67 170 23 2
480 15 28 7 5 1 291 31 12 40 230.290 92 0 1 1 1 0 1 73 171 25 1
481 7 23 7 5 1 279 5 14 39 230.290 92 0 1 2 1 1 0 68 168 24 2
482 3 25 8 5 1 179 51 18 38 249.797 93 0 1 0 1 0 0 89 170 31 4
483 17 25 8 2 1 179 22 17 40 249.797 93 0 2 2 0 1 0 63 170 22 1
484 24 28 8 3 1 246 25 16 41 249.797 93 0 1 0 1 0 0 67 170 23 4
485 34 28 8 3 1 118 10 10 37 249.797 93 0 1 0 0 0 0 83 172 28 4
486 11 26 8 3 1 289 36 13 33 249.797 93 0 1 2 1 0 1 90 172 30 8
487 5 26 8 3 1 235 20 13 43 249.797 93 0 1 1 1 0 0 106 167 38 8
488 15 28 8 5 1 291 31 12 40 249.797 93 0 1 1 1 0 1 73 171 25 4
489 3 25 8 2 1 179 51 18 38 249.797 93 0 1 0 1 0 0 89 170 31 4
490 17 25 8 3 1 179 22 17 40 249.797 93 0 2 2 0 1 0 63 170 22 8
491 18 23 8 5 1 330 16 4 28 249.797 93 0 2 0 0 0 0 84 182 25 16
492 1 23 8 3 1 235 11 14 37 249.797 93 0 3 1 0 0 1 88 172 29 4
493 24 28 8 3 1 246 25 16 41 249.797 93 0 1 0 1 0 0 67 170 23 1
494 34 28 8 3 1 118 10 10 37 249.797 93 0 1 0 0 0 0 83 172 28 5
495 15 28 8 5 1 291 31 12 40 249.797 93 0 1 1 1 0 1 73 171 25 2
496 20 28 8 2 1 260 50 11 36 249.797 93 0 1 4 1 0 0 65 168 23 3
497 24 28 9 3 1 246 25 16 41 261.756 87 0 1 0 1 0 0 67 170 23 1
498 24 28 9 3 1 246 25 16 41 261.756 87 0 1 0 1 0 0 67 170 23 1
499 34 28 9 3 1 118 10 10 37 261.756 87 0 1 0 0 0 0 83 172 28 3
500 14 23 9 3 1 155 12 14 34 261.756 87 0 1 2 1 0 0 95 196 25 2
501 15 28 9 5 1 291 31 12 40 261.756 87 0 1 1 1 0 1 73 171 25 2
502 22 23 9 6 1 179 26 9 30 261.756 87 0 3 0 0 0 0 56 171 19 8
503 33 23 9 6 1 248 25 14 47 261.756 87 0 1 2 0 0 1 86 165 32 1
504 3 23 9 2 1 179 51 18 38 261.756 87 0 1 0 1 0 0 89 170 31 4
505 28 23 9 4 1 225 26 9 28 261.756 87 0 1 1 0 0 2 69 169 24 1
506 22 23 9 2 1 179 26 9 30 261.756 87 0 3 0 0 0 0 56 171 19 2
507 13 23 9 3 4 369 17 12 31 261.756 87 0 1 3 1 0 0 70 169 25 8
508 10 22 9 3 4 361 52 3 28 261.756 87 0 1 1 1 0 4 80 172 27 8
509 32 4 10 5 4 289 48 29 49 284.853 91 0 1 0 0 0 2 108 172 36 1
510 25 11 10 5 4 235 16 8 32 284.853 91 0 3 0 0 0 0 75 178 25 3
511 24 26 10 6 4 246 25 16 41 284.853 91 0 1 0 1 0 0 67 170 23 8
512 32 14 10 4 4 289 48 29 49 284.853 91 0 1 0 0 0 2 108 172 36 3
513 15 28 10 4 4 291 31 12 40 284.853 91 0 1 1 1 0 1 73 171 25 2
514 34 23 10 3 4 118 10 10 37 284.853 91 0 1 0 0 0 0 83 172 28 2
515 32 23 10 5 4 289 48 29 49 284.853 91 0 1 0 0 0 2 108 172 36 2
516 15 23 10 6 4 291 31 12 40 284.853 91 0 1 1 1 0 1 73 171 25 1
517 28 23 10 3 4 225 26 9 28 284.853 91 0 1 1 0 0 2 69 169 24 2
518 13 23 10 3 4 369 17 12 31 284.853 91 0 1 3 1 0 0 70 169 25 8
519 13 23 10 3 4 369 17 12 31 284.853 91 0 1 3 1 0 0 70 169 25 3
520 28 23 10 3 4 225 26 9 28 284.853 91 0 1 1 0 0 2 69 169 24 4
521 13 26 10 3 4 369 17 12 31 284.853 91 0 1 3 1 0 0 70 169 25 8
522 3 28 10 4 4 179 51 18 38 284.853 91 0 1 0 1 0 0 89 170 31 3
523 9 1 10 4 4 228 14 16 58 284.853 91 0 1 2 0 0 1 65 172 22 1
524 15 23 10 4 4 291 31 12 40 284.853 91 0 1 1 1 0 1 73 171 25 1
525 13 10 10 5 4 369 17 12 31 284.853 91 0 1 3 1 0 0 70 169 25 8
526 28 13 10 5 4 225 26 9 28 284.853 91 0 1 1 0 0 2 69 169 24 1
527 13 10 10 6 4 369 17 12 31 284.853 91 0 1 3 1 0 0 70 169 25 8
528 28 10 10 6 4 225 26 9 28 284.853 91 0 1 1 0 0 2 69 169 24 3
529 6 23 10 2 4 189 29 13 33 284.853 91 0 1 2 0 0 2 69 167 25 8
530 25 6 10 2 4 235 16 8 32 284.853 91 0 3 0 0 0 0 75 178 25 8
531 33 10 10 2 4 248 25 14 47 284.853 91 0 1 2 0 0 1 86 165 32 8
532 28 0 10 2 4 225 26 9 28 284.853 91 1 1 1 0 0 2 69 169 24 0
533 28 13 10 3 4 225 26 9 28 284.853 91 0 1 1 0 0 2 69 169 24 3
534 3 21 11 3 4 179 51 18 38 268.519 93 0 1 0 1 0 0 89 170 31 1
535 34 28 11 4 4 118 10 10 37 268.519 93 0 1 0 0 0 0 83 172 28 3
536 18 2 11 4 4 330 16 4 28 268.519 93 0 2 0 0 0 0 84 182 25 24
537 3 28 11 6 4 179 51 18 38 268.519 93 0 1 0 1 0 0 89 170 31 1
538 34 9 11 3 4 118 10 10 37 268.519 93 0 1 0 0 0 0 83 172 28 8
539 11 24 11 4 4 289 36 13 33 268.519 93 0 1 2 1 0 1 90 172 30 8
540 25 1 11 6 4 235 16 8 32 268.519 93 0 3 0 0 0 0 75 178 25 8
541 28 23 11 6 4 225 26 9 28 268.519 93 0 1 1 0 0 2 69 169 24 4
542 10 22 11 3 4 361 52 3 28 268.519 93 0 1 1 1 0 4 80 172 27 8
543 15 28 11 4 4 291 31 12 40 268.519 93 0 1 1 1 0 1 73 171 25 2
544 34 13 11 5 4 118 10 10 37 268.519 93 0 1 0 0 0 0 83 172 28 2
545 28 14 11 5 4 225 26 9 28 268.519 93 0 1 1 0 0 2 69 169 24 3
546 3 28 11 2 4 179 51 18 38 268.519 93 0 1 0 1 0 0 89 170 31 1
547 34 23 11 2 4 118 10 10 37 268.519 93 0 1 0 0 0 0 83 172 28 8
548 34 8 11 3 4 118 10 10 37 268.519 93 0 1 0 0 0 0 83 172 28 8
549 28 23 11 3 4 225 26 9 28 268.519 93 0 1 1 0 0 2 69 169 24 2
550 15 0 11 3 4 291 31 12 40 268.519 93 1 1 1 1 0 1 73 171 25 0
551 11 0 11 4 4 289 36 13 33 268.519 93 1 1 2 1 0 1 90 172 30 0
552 33 14 11 5 4 248 25 14 47 268.519 93 0 1 2 0 0 1 86 165 32 4
553 5 0 11 5 4 235 20 13 43 268.519 93 1 1 1 1 0 0 106 167 38 0
554 28 23 11 6 4 225 26 9 28 268.519 93 0 1 1 0 0 2 69 169 24 2
555 13 26 11 6 4 369 17 12 31 268.519 93 0 1 3 1 0 0 70 169 25 8
556 10 28 11 2 4 361 52 3 28 268.519 93 0 1 1 1 0 4 80 172 27 2
557 3 13 12 3 4 179 51 18 38 280.549 98 0 1 0 1 0 0 89 170 31 32
558 15 28 12 4 4 291 31 12 40 280.549 98 0 1 1 1 0 1 73 171 25 1
559 28 23 12 4 4 225 26 9 28 280.549 98 0 1 1 0 0 2 69 169 24 3
560 22 13 12 6 4 179 26 9 30 280.549 98 0 3 0 0 0 0 56 171 19 1
561 28 23 12 6 4 225 26 9 28 280.549 98 0 1 1 0 0 2 69 169 24 3
562 28 23 12 4 4 225 26 9 28 280.549 98 0 1 1 0 0 2 69 169 24 3
563 10 14 12 5 4 361 52 3 28 280.549 98 0 1 1 1 0 4 80 172 27 4
564 17 18 12 6 4 179 22 17 40 280.549 98 0 2 2 0 1 0 63 170 22 2
565 5 26 12 6 4 235 20 13 43 280.549 98 0 1 1 1 0 0 106 167 38 8
566 12 18 12 2 4 233 51 1 31 280.549 98 0 2 1 1 0 8 68 178 21 8
567 22 13 12 3 4 179 26 9 30 280.549 98 0 3 0 0 0 0 56 171 19 16
568 28 23 12 3 4 225 26 9 28 280.549 98 0 1 1 0 0 2 69 169 24 2
569 28 23 12 5 4 225 26 9 28 280.549 98 0 1 1 0 0 2 69 169 24 3
570 28 23 12 2 4 225 26 9 28 280.549 98 0 1 1 0 0 2 69 169 24 2
571 14 18 12 3 2 155 12 14 34 280.549 98 0 1 2 1 0 0 95 196 25 80
572 22 12 1 2 2 179 26 9 30 313.532 96 0 3 0 0 0 0 56 171 19 24
573 22 12 1 5 2 179 26 9 30 313.532 96 0 3 0 0 0 0 56 171 19 16
574 17 25 1 5 2 179 22 17 40 313.532 96 0 2 2 0 1 0 63 170 22 2
575 17 25 1 6 2 179 22 17 40 313.532 96 0 2 2 0 1 0 63 170 22 2
576 22 13 1 2 2 179 26 9 30 313.532 96 0 3 0 0 0 0 56 171 19 3
577 17 25 1 4 2 179 22 17 40 313.532 96 0 2 2 0 1 0 63 170 22 2
578 32 10 1 5 2 289 48 29 49 313.532 96 0 1 0 0 0 2 108 172 36 8
579 17 18 1 6 2 179 22 17 40 313.532 96 0 2 2 0 1 0 63 170 22 3
580 22 27 1 2 2 179 26 9 30 313.532 96 0 3 0 0 0 0 56 171 19 2
581 14 18 1 3 2 155 12 14 34 313.532 96 0 1 2 1 0 0 95 196 25 8
582 22 27 1 4 2 179 26 9 30 313.532 96 0 3 0 0 0 0 56 171 19 2
583 3 27 1 4 2 179 51 18 38 313.532 96 0 1 0 1 0 0 89 170 31 3
584 11 13 1 4 2 289 36 13 33 313.532 96 0 1 2 1 0 1 90 172 30 8
585 3 27 1 5 2 179 51 18 38 313.532 96 0 1 0 1 0 0 89 170 31 3
586 3 27 1 6 2 179 51 18 38 313.532 96 0 1 0 1 0 0 89 170 31 2
587 3 13 2 3 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 8
588 28 23 2 3 2 225 26 9 28 264.249 97 0 1 1 0 0 2 69 169 24 3
589 33 1 2 4 2 248 25 14 47 264.249 97 0 1 2 0 0 1 86 165 32 8
590 3 27 2 4 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 2
591 28 28 2 5 2 225 26 9 28 264.249 97 0 1 1 0 0 2 69 169 24 3
592 3 27 2 5 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 2
593 22 27 2 5 2 179 26 9 30 264.249 97 0 3 0 0 0 0 56 171 19 2
594 29 28 2 6 2 225 15 15 41 264.249 97 0 4 2 1 0 2 94 182 28 2
595 3 27 2 6 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 2
596 12 19 2 2 2 233 51 1 31 264.249 97 0 2 1 1 0 8 68 178 21 2
597 3 27 2 2 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 2
598 28 7 2 3 2 225 26 9 28 264.249 97 0 1 1 0 0 2 69 169 24 8
599 3 27 2 4 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 3
600 3 27 2 5 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 3
601 28 25 2 5 2 225 26 9 28 264.249 97 0 1 1 0 0 2 69 169 24 3
602 22 13 2 5 2 179 26 9 30 264.249 97 0 3 0 0 0 0 56 171 19 2
603 17 23 2 6 2 179 22 17 40 264.249 97 0 2 2 0 1 0 63 170 22 2
604 3 27 2 6 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 3
605 12 12 2 4 2 233 51 1 31 264.249 97 0 2 1 1 0 8 68 178 21 3
606 22 27 2 4 2 179 26 9 30 264.249 97 0 3 0 0 0 0 56 171 19 2
607 3 27 2 4 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 2
608 3 13 2 5 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 8
609 3 27 2 6 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 2
610 14 25 2 2 2 155 12 14 34 264.249 97 0 1 2 1 0 0 95 196 25 5
611 25 25 2 2 2 235 16 8 32 264.249 97 0 3 0 0 0 0 75 178 25 3
612 3 27 2 2 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 2
613 28 7 2 2 2 225 26 9 28 264.249 97 0 1 1 0 0 2 69 169 24 2
614 3 27 2 3 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 2
615 33 23 2 3 2 248 25 14 47 264.249 97 0 1 2 0 0 1 86 165 32 2
616 28 25 2 3 2 225 26 9 28 264.249 97 0 1 1 0 0 2 69 169 24 2
617 3 27 2 4 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 2
618 3 27 2 5 2 179 51 18 38 264.249 97 0 1 0 1 0 0 89 170 31 2
619 25 25 2 6 2 235 16 8 32 264.249 97 0 3 0 0 0 0 75 178 25 2
620 3 27 3 2 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 2
621 33 23 3 2 2 248 25 14 47 222.196 99 0 1 2 0 0 1 86 165 32 2
622 9 25 3 3 2 228 14 16 58 222.196 99 0 1 2 0 0 1 65 172 22 3
623 33 25 3 3 2 248 25 14 47 222.196 99 0 1 2 0 0 1 86 165 32 3
624 9 12 3 3 2 228 14 16 58 222.196 99 0 1 2 0 0 1 65 172 22 112
625 3 27 3 4 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 2
626 28 27 3 5 2 225 26 9 28 222.196 99 0 1 1 0 0 2 69 169 24 2
627 3 27 3 5 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 3
628 28 25 3 5 2 225 26 9 28 222.196 99 0 1 1 0 0 2 69 169 24 2
629 22 27 3 6 2 179 26 9 30 222.196 99 0 3 0 0 0 0 56 171 19 3
630 25 25 3 2 2 235 16 8 32 222.196 99 0 3 0 0 0 0 75 178 25 3
631 10 19 3 2 2 361 52 3 28 222.196 99 0 1 1 1 0 4 80 172 27 8
632 3 13 3 3 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 8
633 3 27 3 4 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 2
634 3 27 3 5 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 3
635 22 27 3 6 2 179 26 9 30 222.196 99 0 3 0 0 0 0 56 171 19 2
636 3 10 3 2 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 4
637 33 13 3 2 2 248 25 14 47 222.196 99 0 1 2 0 0 1 86 165 32 2
638 3 27 3 2 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 3
639 28 7 3 2 2 225 26 9 28 222.196 99 0 1 1 0 0 2 69 169 24 8
640 3 27 3 3 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 2
641 11 23 3 4 2 289 36 13 33 222.196 99 0 1 2 1 0 1 90 172 30 8
642 9 25 3 4 2 228 14 16 58 222.196 99 0 1 2 0 0 1 65 172 22 2
643 3 27 3 4 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 2
644 33 23 3 5 2 248 25 14 47 222.196 99 0 1 2 0 0 1 86 165 32 3
645 3 27 3 5 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 3
646 22 23 3 6 2 179 26 9 30 222.196 99 0 3 0 0 0 0 56 171 19 2
647 3 27 3 6 2 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 3
648 3 27 3 3 3 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 3
649 16 23 3 4 3 118 15 24 46 222.196 99 0 1 2 1 1 0 75 175 25 8
650 14 13 3 4 3 155 12 14 34 222.196 99 0 1 2 1 0 0 95 196 25 24
651 3 27 3 4 3 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 3
652 3 27 3 5 3 179 51 18 38 222.196 99 0 1 0 1 0 0 89 170 31 3
653 22 13 3 2 3 179 26 9 30 222.196 99 0 3 0 0 0 0 56 171 19 2
654 11 19 3 2 3 289 36 13 33 222.196 99 0 1 2 1 0 1 90 172 30 104
655 13 22 3 4 3 369 17 12 31 222.196 99 0 1 3 1 0 0 70 169 25 8
656 28 13 4 2 3 225 26 9 28 246.288 91 0 1 1 0 0 2 69 169 24 8
657 34 10 4 2 3 118 10 10 37 246.288 91 0 1 0 0 0 0 83 172 28 8
658 10 19 4 3 3 361 52 3 28 246.288 91 0 1 1 1 0 4 80 172 27 8
659 33 19 4 4 3 248 25 14 47 246.288 91 0 1 2 0 0 1 86 165 32 8
660 6 13 4 5 3 189 29 13 33 246.288 91 0 1 2 0 0 2 69 167 25 8
661 22 27 4 6 3 179 26 9 30 246.288 91 0 3 0 0 0 0 56 171 19 2
662 13 7 4 2 3 369 17 12 31 246.288 91 0 1 3 1 0 0 70 169 25 24
663 17 16 4 3 3 179 22 17 40 246.288 91 0 2 2 0 1 0 63 170 22 2
664 36 23 4 3 3 118 13 18 50 246.288 91 0 1 1 1 0 0 98 178 31 3
665 10 23 4 3 3 361 52 3 28 246.288 91 0 1 1 1 0 4 80 172 27 2
666 34 10 4 4 3 118 10 10 37 246.288 91 0 1 0 0 0 0 83 172 28 2
667 1 22 4 6 3 235 11 14 37 246.288 91 0 3 1 0 0 1 88 172 29 8
668 22 27 4 6 3 179 26 9 30 246.288 91 0 3 0 0 0 0 56 171 19 2
669 28 19 4 2 3 225 26 9 28 246.288 91 0 1 1 0 0 2 69 169 24 8
670 25 16 4 3 3 235 16 8 32 246.288 91 0 3 0 0 0 0 75 178 25 3
671 22 27 4 6 3 179 26 9 30 246.288 91 0 3 0 0 0 0 56 171 19 2
672 14 28 4 3 3 155 12 14 34 246.288 91 0 1 2 1 0 0 95 196 25 4
673 28 19 4 5 3 225 26 9 28 246.288 91 0 1 1 0 0 2 69 169 24 8
674 36 14 4 5 3 118 13 18 50 246.288 91 0 1 1 1 0 0 98 178 31 2
675 22 27 4 6 3 179 26 9 30 246.288 91 0 3 0 0 0 0 56 171 19 2
676 1 22 5 2 3 235 11 14 37 237.656 99 0 3 1 0 0 1 88 172 29 8
677 29 19 5 4 3 225 15 15 41 237.656 99 0 4 2 1 0 2 94 182 28 3
678 25 28 5 4 3 235 16 8 32 237.656 99 0 3 0 0 0 0 75 178 25 2
679 34 8 5 4 3 118 10 10 37 237.656 99 0 1 0 0 0 0 83 172 28 3
680 5 26 5 4 3 235 20 13 43 237.656 99 0 1 1 1 0 0 106 167 38 8
681 22 13 5 5 3 179 26 9 30 237.656 99 0 3 0 0 0 0 56 171 19 1
682 15 28 5 5 3 291 31 12 40 237.656 99 0 1 1 1 0 1 73 171 25 2
683 29 14 5 5 3 225 15 15 41 237.656 99 0 4 2 1 0 2 94 182 28 8
684 26 19 5 6 3 300 26 13 43 237.656 99 0 1 2 1 1 1 77 175 25 64
685 29 22 5 6 3 225 15 15 41 237.656 99 0 4 2 1 0 2 94 182 28 8
686 22 27 5 6 3 179 26 9 30 237.656 99 0 3 0 0 0 0 56 171 19 2
687 36 23 5 2 3 118 13 18 50 237.656 99 0 1 1 1 0 0 98 178 31 2
688 36 5 5 3 3 118 13 18 50 237.656 99 0 1 1 1 0 0 98 178 31 3
689 34 28 5 3 3 118 10 10 37 237.656 99 0 1 0 0 0 0 83 172 28 1
690 36 0 5 3 3 118 13 18 50 237.656 99 1 1 1 1 0 0 98 178 31 0
691 22 27 5 4 3 179 26 9 30 237.656 99 0 3 0 0 0 0 56 171 19 2
692 23 0 5 4 3 378 49 11 36 237.656 99 1 1 2 0 1 4 65 174 21 0
693 17 16 5 6 3 179 22 17 40 237.656 99 0 2 2 0 1 0 63 170 22 1
694 14 10 5 2 3 155 12 14 34 237.656 99 0 1 2 1 0 0 95 196 25 48
695 25 10 5 2 3 235 16 8 32 237.656 99 0 3 0 0 0 0 75 178 25 8
696 15 22 5 4 3 291 31 12 40 237.656 99 0 1 1 1 0 1 73 171 25 8
697 17 10 5 4 3 179 22 17 40 237.656 99 0 2 2 0 1 0 63 170 22 8
698 28 6 5 4 3 225 26 9 28 237.656 99 0 1 1 0 0 2 69 169 24 3
699 18 10 5 5 3 330 16 4 28 237.656 99 0 2 0 0 0 0 84 182 25 8
700 25 23 5 5 3 235 16 8 32 237.656 99 0 3 0 0 0 0 75 178 25 2
701 15 28 5 5 3 291 31 12 40 237.656 99 0 1 1 1 0 1 73 171 25 2
702 22 27 5 6 3 179 26 9 30 237.656 99 0 3 0 0 0 0 56 171 19 2
703 10 7 5 2 3 361 52 3 28 237.656 99 0 1 1 1 0 4 80 172 27 8
704 14 23 5 4 3 155 12 14 34 237.656 99 0 1 2 1 0 0 95 196 25 2
705 17 25 5 6 3 179 22 17 40 237.656 99 0 2 2 0 1 0 63 170 22 8
706 14 10 5 6 3 155 12 14 34 237.656 99 0 1 2 1 0 0 95 196 25 8
707 28 11 5 2 3 225 26 9 28 237.656 99 0 1 1 0 0 2 69 169 24 1
708 16 7 6 4 3 118 15 24 46 275.089 96 0 1 2 1 1 0 75 175 25 8
709 22 27 6 4 3 179 26 9 30 275.089 96 0 3 0 0 0 0 56 171 19 3
710 34 26 6 6 3 118 10 10 37 275.089 96 0 1 0 0 0 0 83 172 28 8
711 34 10 6 4 3 118 10 10 37 275.089 96 0 1 0 0 0 0 83 172 28 8
712 23 22 6 5 3 378 49 11 36 275.089 96 0 1 2 0 1 4 65 174 21 8
713 36 19 6 5 3 118 13 18 50 275.089 96 0 1 1 1 0 0 98 178 31 24
714 12 19 6 6 3 233 51 1 31 275.089 96 0 2 1 1 0 8 68 178 21 8
715 22 27 6 6 3 179 26 9 30 275.089 96 0 3 0 0 0 0 56 171 19 2
716 2 0 6 2 3 235 29 12 48 275.089 96 1 1 1 0 1 5 88 163 33 0
717 21 0 6 2 3 268 11 8 33 275.089 96 1 2 0 0 0 0 79 178 25 0
718 36 19 6 5 3 118 13 18 50 275.089 96 0 1 1 1 0 0 98 178 31 3
719 22 13 6 5 3 179 26 9 30 275.089 96 0 3 0 0 0 0 56 171 19 2
720 15 28 6 5 3 291 31 12 40 275.089 96 0 1 1 1 0 1 73 171 25 2
721 22 13 6 2 1 179 26 9 30 275.089 96 0 3 0 0 0 0 56 171 19 3
722 34 25 6 2 1 118 10 10 37 275.089 96 0 1 0 0 0 0 83 172 28 3
723 12 22 6 5 1 233 51 1 31 275.089 96 0 2 1 1 0 8 68 178 21 8
724 34 8 6 6 1 118 10 10 37 275.089 96 0 1 0 0 0 0 83 172 28 2
725 34 10 6 4 1 118 10 10 37 275.089 96 0 1 0 0 0 0 83 172 28 3
726 12 22 6 4 1 233 51 1 31 275.089 96 0 2 1 1 0 8 68 178 21 3
727 5 26 7 4 1 235 20 13 43 264.604 93 0 1 1 1 0 0 106 167 38 4
728 12 19 7 6 1 233 51 1 31 264.604 93 0 2 1 1 0 8 68 178 21 2
729 9 6 7 2 1 228 14 16 58 264.604 93 0 1 2 0 0 1 65 172 22 8
730 34 28 7 2 1 118 10 10 37 264.604 93 0 1 0 0 0 0 83 172 28 4
731 9 6 7 3 1 228 14 16 58 264.604 93 0 1 2 0 0 1 65 172 22 120
732 6 22 7 3 1 189 29 13 33 264.604 93 0 1 2 0 0 2 69 167 25 16
733 34 23 7 4 1 118 10 10 37 264.604 93 0 1 0 0 0 0 83 172 28 2
734 10 22 7 4 1 361 52 3 28 264.604 93 0 1 1 1 0 4 80 172 27 8
735 28 22 7 4 1 225 26 9 28 264.604 93 0 1 1 0 0 2 69 169 24 8
736 13 13 7 2 1 369 17 12 31 264.604 93 0 1 3 1 0 0 70 169 25 80
737 11 14 7 3 1 289 36 13 33 264.604 93 0 1 2 1 0 1 90 172 30 8
738 1 11 7 3 1 235 11 14 37 264.604 93 0 3 1 0 0 1 88 172 29 4
739 4 0 0 3 1 118 14 13 40 271.219 95 0 1 1 1 0 8 98 170 34 0
740 8 0 0 4 2 231 35 14 39 271.219 95 0 1 2 1 0 2 100 170 35 0
741 35 0 0 6 3 179 45 14 53 271.219 95 0 1 1 0 0 1 77 175 25 0

File diff suppressed because it is too large Load Diff

View File

@@ -21,7 +21,11 @@ MODEL_INFO = {
'gradient_boosting': {'name': 'gradient_boosting', 'name_cn': 'GBDT', 'description': '梯度提升决策树'}, 'gradient_boosting': {'name': 'gradient_boosting', 'name_cn': 'GBDT', 'description': '梯度提升决策树'},
'extra_trees': {'name': 'extra_trees', 'name_cn': '极端随机树', 'description': '高随机性的树模型'}, 'extra_trees': {'name': 'extra_trees', 'name_cn': '极端随机树', 'description': '高随机性的树模型'},
'stacking': {'name': 'stacking', 'name_cn': 'Stacking集成', 'description': '多模型融合'}, 'stacking': {'name': 'stacking', 'name_cn': 'Stacking集成', 'description': '多模型融合'},
'lstm_mlp': {'name': 'lstm_mlp', 'name_cn': 'LSTM+MLP', 'description': '时序与静态特征融合的深度学习模型'}, 'lstm_mlp': {
'name': 'lstm_mlp',
'name_cn': '时序注意力融合网络',
'description': 'Transformer时序编码 + 静态特征门控融合的深度学习模型',
},
} }