diff --git a/src/backend/distributed/planner/multi_planner.c b/src/backend/distributed/planner/multi_planner.c index d81776541..a9c75bdea 100644 --- a/src/backend/distributed/planner/multi_planner.c +++ b/src/backend/distributed/planner/multi_planner.c @@ -26,11 +26,13 @@ #include "executor/executor.h" #include "nodes/makefuncs.h" #include "nodes/nodeFuncs.h" +#include "parser/parsetree.h" +#include "optimizer/pathnode.h" #include "optimizer/planner.h" #include "utils/memutils.h" -static List *relationRestrictionContextList = NIL; +static List *plannerRestrictionContextList = NIL; /* create custom scan methods for separate executors */ static CustomScanMethods RealTimeCustomScanMethods = { @@ -57,7 +59,10 @@ static CustomScanMethods DelayedErrorCustomScanMethods = { /* local function forward declarations */ static PlannedStmt * CreateDistributedPlan(PlannedStmt *localPlan, Query *originalQuery, Query *query, ParamListInfo boundParams, - RelationRestrictionContext *restrictionContext); + PlannerRestrictionContext * + plannerRestrictionContext); +static void AssignRTEIdentities(Query *queryTree); +static void AssignRTEIdentity(RangeTblEntry *rangeTableEntry, int rteIdentifier); static Node * SerializeMultiPlan(struct MultiPlan *multiPlan); static MultiPlan * DeserializeMultiPlan(Node *node); static PlannedStmt * FinalizePlan(PlannedStmt *localPlan, MultiPlan *multiPlan); @@ -65,9 +70,11 @@ static PlannedStmt * FinalizeNonRouterPlan(PlannedStmt *localPlan, MultiPlan *mu CustomScan *customScan); static PlannedStmt * FinalizeRouterPlan(PlannedStmt *localPlan, CustomScan *customScan); static void CheckNodeIsDumpable(Node *node); -static RelationRestrictionContext * CreateAndPushRestrictionContext(void); -static RelationRestrictionContext * CurrentRestrictionContext(void); -static void PopRestrictionContext(void); +static List * CopyPlanParamList(List *originalPlanParamList); +static PlannerRestrictionContext * CreateAndPushPlannerRestrictionContext(void); +static RelationRestrictionContext * CurrentRelationRestrictionContext(void); +static JoinRestrictionContext * CurrentJoinRestrictionContext(void); +static void PopPlannerRestrictionContext(void); static bool HasUnresolvedExternParamsWalker(Node *expression, ParamListInfo boundParams); @@ -78,7 +85,7 @@ multi_planner(Query *parse, int cursorOptions, ParamListInfo boundParams) PlannedStmt *result = NULL; bool needsDistributedPlanning = NeedsDistributedPlanning(parse); Query *originalQuery = NULL; - RelationRestrictionContext *restrictionContext = NULL; + PlannerRestrictionContext *plannerRestrictionContext = NULL; /* * standard_planner scribbles on it's input, but for deparsing we need the @@ -88,30 +95,11 @@ multi_planner(Query *parse, int cursorOptions, ParamListInfo boundParams) { originalQuery = copyObject(parse); - /* - * We implement INSERT INTO .. SELECT by pushing down the SELECT to - * each shard. To compute that we use the router planner, by adding - * an "uninstantiated" constraint that the partition column be equal to a - * certain value. standard_planner() distributes that constraint to - * the baserestrictinfos to all the tables where it knows how to push - * the restriction safely. An example is that the tables that are - * connected via equi joins. - * - * The router planner then iterates over the target table's shards, - * for each we replace the "uninstantiated" restriction, with one that - * PruneShardList() handles, and then generate a query for that - * individual shard. If any of the involved tables don't prune down - * to a single shard, or if the pruned shards aren't colocated, - * we error out. - */ - if (InsertSelectQuery(parse)) - { - AddUninstantiatedPartitionRestriction(parse); - } + AssignRTEIdentities(parse); } /* create a restriction context and put it at the end if context list */ - restrictionContext = CreateAndPushRestrictionContext(); + plannerRestrictionContext = CreateAndPushPlannerRestrictionContext(); PG_TRY(); { @@ -125,23 +113,92 @@ multi_planner(Query *parse, int cursorOptions, ParamListInfo boundParams) if (needsDistributedPlanning) { result = CreateDistributedPlan(result, originalQuery, parse, - boundParams, restrictionContext); + boundParams, plannerRestrictionContext); } } PG_CATCH(); { - PopRestrictionContext(); + PopPlannerRestrictionContext(); PG_RE_THROW(); } PG_END_TRY(); /* remove the context from the context list */ - PopRestrictionContext(); + PopPlannerRestrictionContext(); return result; } +/* + * AssignRTEIdentities assigns unique identities to the + * RTE_RELATIONs in the given query. + * + * To be able to track individual RTEs through postgres' query + * planning, we need to be able to figure out whether an RTE is + * actually a copy of another, rather than a different one. We + * simply number the RTEs starting from 1. + * + * Note that we're only interested in RTE_RELATIONs and thus assigning + * identifiers to those RTEs only. + */ +static void +AssignRTEIdentities(Query *queryTree) +{ + List *rangeTableList = NIL; + ListCell *rangeTableCell = NULL; + int rteIdentifier = 1; + + /* extract range table entries for simple relations only */ + ExtractRangeTableEntryWalker((Node *) queryTree, &rangeTableList); + + foreach(rangeTableCell, rangeTableList) + { + RangeTblEntry *rangeTableEntry = (RangeTblEntry *) lfirst(rangeTableCell); + + if (rangeTableEntry->rtekind != RTE_RELATION) + { + continue; + } + + AssignRTEIdentity(rangeTableEntry, rteIdentifier++); + } +} + + +/* + * AssignRTEIdentity assigns the given rteIdentifier to the given range table + * entry. + * + * To be able to track RTEs through postgres' query planning, which copies and + * duplicate, and modifies them, we sometimes need to figure out whether two + * RTEs are copies of the same original RTE. For that we, hackishly, use a + * field normally unused in RTE_RELATION RTEs. + * + * The assigned identifier better be unique within a plantree. + */ +static void +AssignRTEIdentity(RangeTblEntry *rangeTableEntry, int rteIdentifier) +{ + Assert(rangeTableEntry->rtekind == RTE_RELATION); + Assert(rangeTableEntry->values_lists == NIL); + + rangeTableEntry->values_lists = list_make1_int(rteIdentifier); +} + + +/* GetRTEIdentity returns the identity assigned with AssignRTEIdentity. */ +int +GetRTEIdentity(RangeTblEntry *rte) +{ + Assert(rte->rtekind == RTE_RELATION); + Assert(IsA(rte->values_lists, IntList)); + Assert(list_length(rte->values_lists) == 1); + + return linitial_int(rte->values_lists); +} + + /* * IsModifyCommand returns true if the query performs modifications, false * otherwise. @@ -187,7 +244,7 @@ IsModifyMultiPlan(MultiPlan *multiPlan) static PlannedStmt * CreateDistributedPlan(PlannedStmt *localPlan, Query *originalQuery, Query *query, ParamListInfo boundParams, - RelationRestrictionContext *restrictionContext) + PlannerRestrictionContext *plannerRestrictionContext) { MultiPlan *distributedPlan = NULL; PlannedStmt *resultPlan = NULL; @@ -201,7 +258,9 @@ CreateDistributedPlan(PlannedStmt *localPlan, Query *originalQuery, Query *query if (IsModifyCommand(query)) { /* modifications are always routed through the same planner/executor */ - distributedPlan = CreateModifyPlan(originalQuery, query, restrictionContext); + distributedPlan = + CreateModifyPlan(originalQuery, query, plannerRestrictionContext); + Assert(distributedPlan); } else @@ -214,7 +273,11 @@ CreateDistributedPlan(PlannedStmt *localPlan, Query *originalQuery, Query *query */ if (EnableRouterExecution) { - distributedPlan = CreateRouterPlan(originalQuery, query, restrictionContext); + RelationRestrictionContext *relationRestrictionContext = + plannerRestrictionContext->relationRestrictionContext; + + distributedPlan = CreateRouterPlan(originalQuery, query, + relationRestrictionContext); /* for debugging it's useful to display why query was not router plannable */ if (distributedPlan && distributedPlan->planningError) @@ -566,6 +629,36 @@ CheckNodeIsDumpable(Node *node) } +/* + * multi_join_restriction_hook is a hook called by postgresql standard planner + * to notify us about various planning information regarding joins. We use + * it to learn about the joining column. + */ +void +multi_join_restriction_hook(PlannerInfo *root, + RelOptInfo *joinrel, + RelOptInfo *outerrel, + RelOptInfo *innerrel, + JoinType jointype, + JoinPathExtraData *extra) +{ + JoinRestrictionContext *joinContext = NULL; + JoinRestriction *joinRestriction = palloc0(sizeof(JoinRestriction)); + List *restrictInfoList = NIL; + + restrictInfoList = extra->restrictlist; + joinContext = CurrentJoinRestrictionContext(); + Assert(joinContext != NULL); + + joinRestriction->joinType = jointype; + joinRestriction->joinRestrictInfoList = restrictInfoList; + joinRestriction->plannerInfo = root; + + joinContext->joinRestrictionList = + lappend(joinContext->joinRestrictionList, joinRestriction); +} + + /* * multi_relation_restriction_hook is a hook called by postgresql standard planner * to notify us about various planning information regarding a relation. We use @@ -589,7 +682,7 @@ multi_relation_restriction_hook(PlannerInfo *root, RelOptInfo *relOptInfo, Index distributedTable = IsDistributedTable(rte->relid); localTable = !distributedTable; - restrictionContext = CurrentRestrictionContext(); + restrictionContext = CurrentRelationRestrictionContext(); Assert(restrictionContext != NULL); relationRestriction = palloc0(sizeof(RelationRestriction)); @@ -599,8 +692,16 @@ multi_relation_restriction_hook(PlannerInfo *root, RelOptInfo *relOptInfo, Index relationRestriction->relOptInfo = relOptInfo; relationRestriction->distributedRelation = distributedTable; relationRestriction->plannerInfo = root; + relationRestriction->parentPlannerInfo = root->parent_root; relationRestriction->prunedShardIntervalList = NIL; + /* see comments on GetVarFromAssignedParam() */ + if (relationRestriction->parentPlannerInfo) + { + relationRestriction->parentPlannerParamList = + CopyPlanParamList(root->parent_root->plan_params); + } + restrictionContext->hasDistributedRelation |= distributedTable; restrictionContext->hasLocalRelation |= localTable; @@ -622,51 +723,111 @@ multi_relation_restriction_hook(PlannerInfo *root, RelOptInfo *relOptInfo, Index /* - * CreateAndPushRestrictionContext creates a new restriction context, inserts it to the - * beginning of the context list, and returns the newly created context. + * CopyPlanParamList deep copies the input PlannerParamItem list and returns the newly + * allocated list. + * Note that we cannot use copyObject() function directly since there is no support for + * copying PlannerParamItem structs. */ -static RelationRestrictionContext * -CreateAndPushRestrictionContext(void) +static List * +CopyPlanParamList(List *originalPlanParamList) { - RelationRestrictionContext *restrictionContext = + ListCell *planParamCell = NULL; + List *copiedPlanParamList = NIL; + + foreach(planParamCell, originalPlanParamList) + { + PlannerParamItem *originalParamItem = lfirst(planParamCell); + PlannerParamItem *copiedParamItem = makeNode(PlannerParamItem); + + copiedParamItem->paramId = originalParamItem->paramId; + copiedParamItem->item = copyObject(originalParamItem->item); + + copiedPlanParamList = lappend(copiedPlanParamList, copiedParamItem); + } + + return copiedPlanParamList; +} + + +/* + * CreateAndPushPlannerRestrictionContext creates a new planner restriction context. + * Later, it creates a relation restriction context and a join restriction + * context, and sets those contexts in the planner restriction context. Finally, + * the planner restriction context is inserted to the beginning of the + * plannerRestrictionContextList and it is returned. + */ +static PlannerRestrictionContext * +CreateAndPushPlannerRestrictionContext(void) +{ + PlannerRestrictionContext *plannerRestrictionContext = + palloc0(sizeof(PlannerRestrictionContext)); + + plannerRestrictionContext->relationRestrictionContext = palloc0(sizeof(RelationRestrictionContext)); + plannerRestrictionContext->joinRestrictionContext = + palloc0(sizeof(JoinRestrictionContext)); + /* we'll apply logical AND as we add tables */ - restrictionContext->allReferenceTables = true; + plannerRestrictionContext->relationRestrictionContext->allReferenceTables = true; - relationRestrictionContextList = lcons(restrictionContext, - relationRestrictionContextList); + plannerRestrictionContextList = lcons(plannerRestrictionContext, + plannerRestrictionContextList); - return restrictionContext; + return plannerRestrictionContext; } /* - * CurrentRestrictionContext returns the the last restriction context from the - * list. + * CurrentRelationRestrictionContext returns the the last restriction context from the + * relationRestrictionContext list. */ static RelationRestrictionContext * -CurrentRestrictionContext(void) +CurrentRelationRestrictionContext(void) { - RelationRestrictionContext *restrictionContext = NULL; + PlannerRestrictionContext *plannerRestrictionContext = NULL; + RelationRestrictionContext *relationRestrictionContext = NULL; - Assert(relationRestrictionContextList != NIL); + Assert(plannerRestrictionContextList != NIL); - restrictionContext = - (RelationRestrictionContext *) linitial(relationRestrictionContextList); + plannerRestrictionContext = + (PlannerRestrictionContext *) linitial(plannerRestrictionContextList); - return restrictionContext; + relationRestrictionContext = plannerRestrictionContext->relationRestrictionContext; + + return relationRestrictionContext; } /* - * PopRestrictionContext removes the most recently added restriction context from - * context list. The function assumes the list is not empty. + * CurrentJoinRestrictionContext returns the the last restriction context from the + * list. + */ +static JoinRestrictionContext * +CurrentJoinRestrictionContext(void) +{ + PlannerRestrictionContext *plannerRestrictionContext = NULL; + JoinRestrictionContext *joinRestrictionContext = NULL; + + Assert(plannerRestrictionContextList != NIL); + + plannerRestrictionContext = + (PlannerRestrictionContext *) linitial(plannerRestrictionContextList); + + joinRestrictionContext = plannerRestrictionContext->joinRestrictionContext; + + return joinRestrictionContext; +} + + +/* + * PopPlannerRestrictionContext removes the most recently added restriction contexts from + * the planner restriction context list. The function assumes the list is not empty. */ static void -PopRestrictionContext(void) +PopPlannerRestrictionContext(void) { - relationRestrictionContextList = list_delete_first(relationRestrictionContextList); + plannerRestrictionContextList = list_delete_first(plannerRestrictionContextList); } @@ -694,12 +855,6 @@ HasUnresolvedExternParamsWalker(Node *expression, ParamListInfo boundParams) return false; } - /* don't care about our special parameter, it'll be removed during planning */ - if (paramId == UNINSTANTIATED_PARAMETER_ID) - { - return false; - } - /* check whether parameter is available (and valid) */ if (boundParams && paramId > 0 && paramId <= boundParams->numParams) { diff --git a/src/backend/distributed/planner/multi_router_planner.c b/src/backend/distributed/planner/multi_router_planner.c index 50f3e2e07..bea3c517c 100644 --- a/src/backend/distributed/planner/multi_router_planner.c +++ b/src/backend/distributed/planner/multi_router_planner.c @@ -36,6 +36,7 @@ #include "distributed/multi_router_planner.h" #include "distributed/listutils.h" #include "distributed/citus_ruleutils.h" +#include "distributed/relation_restriction_equivalence.h" #include "distributed/relay_utility.h" #include "distributed/resource_lock.h" #include "distributed/shardinterval_utils.h" @@ -48,6 +49,8 @@ #include "nodes/pg_list.h" #include "nodes/primnodes.h" #include "optimizer/clauses.h" +#include "optimizer/joininfo.h" +#include "optimizer/pathnode.h" #include "optimizer/paths.h" #include "optimizer/predtest.h" #include "optimizer/restrictinfo.h" @@ -75,21 +78,22 @@ typedef struct WalkerState bool EnableRouterExecution = true; + /* planner functions forward declarations */ static MultiPlan * CreateSingleTaskRouterPlan(Query *originalQuery, Query *query, RelationRestrictionContext * restrictionContext); static MultiPlan * CreateInsertSelectRouterPlan(Query *originalQuery, - RelationRestrictionContext * - restrictionContext); + PlannerRestrictionContext * + plannerRestrictionContext); static Task * RouterModifyTaskForShardInterval(Query *originalQuery, ShardInterval *shardInterval, RelationRestrictionContext * restrictionContext, - uint32 taskIdIndex); -static List * HashedShardIntervalOpExpressions(ShardInterval *shardInterval); -static Param * UninstantiatedParameterForColumn(Var *relationPartitionKey); + uint32 taskIdIndex, + bool allRelationsJoinedOnPartitionKey); +static List * ShardIntervalOpExpressions(ShardInterval *shardInterval, Index rteIndex); static bool MasterIrreducibleExpression(Node *expression, bool *varArgument, bool *badCoalesce); static bool MasterIrreducibleExpressionWalker(Node *expression, WalkerState *state); @@ -129,7 +133,6 @@ static DeferredErrorMessage * InsertPartitionColumnMatchesSelect(Query *query, subqueryRte, Oid * selectPartitionColumnTableId); -static void AddUninstantiatedEqualityQual(Query *query, Var *targetPartitionColumnVar); static DeferredErrorMessage * ErrorIfQueryHasModifyingCTE(Query *queryTree); @@ -165,16 +168,19 @@ CreateRouterPlan(Query *originalQuery, Query *query, */ MultiPlan * CreateModifyPlan(Query *originalQuery, Query *query, - RelationRestrictionContext *restrictionContext) + PlannerRestrictionContext *plannerRestrictionContext) { if (InsertSelectQuery(originalQuery)) { - return CreateInsertSelectRouterPlan(originalQuery, restrictionContext); + return CreateInsertSelectRouterPlan(originalQuery, plannerRestrictionContext); } else { + RelationRestrictionContext *relationRestrictionContext = + plannerRestrictionContext->relationRestrictionContext; + return CreateSingleTaskRouterPlan(originalQuery, query, - restrictionContext); + relationRestrictionContext); } } @@ -258,7 +264,7 @@ CreateSingleTaskRouterPlan(Query *originalQuery, Query *query, */ static MultiPlan * CreateInsertSelectRouterPlan(Query *originalQuery, - RelationRestrictionContext *restrictionContext) + PlannerRestrictionContext *plannerRestrictionContext) { int shardOffset = 0; List *sqlTaskList = NIL; @@ -271,7 +277,10 @@ CreateInsertSelectRouterPlan(Query *originalQuery, Oid targetRelationId = insertRte->relid; DistTableCacheEntry *targetCacheEntry = DistributedTableCacheEntry(targetRelationId); int shardCount = targetCacheEntry->shardIntervalArrayLength; - bool allReferenceTables = restrictionContext->allReferenceTables; + RelationRestrictionContext *relationRestrictionContext = + plannerRestrictionContext->relationRestrictionContext; + bool allReferenceTables = relationRestrictionContext->allReferenceTables; + bool restrictionEquivalenceForPartitionKeys = false; multiPlan->operation = originalQuery->commandType; @@ -287,6 +296,9 @@ CreateInsertSelectRouterPlan(Query *originalQuery, return multiPlan; } + restrictionEquivalenceForPartitionKeys = + RestrictionEquivalenceForPartitionKeys(plannerRestrictionContext); + /* * Plan select query for each shard in the target table. Do so by replacing the * partitioning qual parameter added in multi_planner() using the current shard's @@ -303,7 +315,9 @@ CreateInsertSelectRouterPlan(Query *originalQuery, Task *modifyTask = NULL; modifyTask = RouterModifyTaskForShardInterval(originalQuery, targetShardInterval, - restrictionContext, taskIdIndex); + relationRestrictionContext, + taskIdIndex, + restrictionEquivalenceForPartitionKeys); /* add the task if it could be created */ if (modifyTask != NULL) @@ -354,7 +368,8 @@ CreateInsertSelectRouterPlan(Query *originalQuery, static Task * RouterModifyTaskForShardInterval(Query *originalQuery, ShardInterval *shardInterval, RelationRestrictionContext *restrictionContext, - uint32 taskIdIndex) + uint32 taskIdIndex, + bool allRelationsJoinedOnPartitionKey) { Query *copiedQuery = copyObject(originalQuery); RangeTblEntry *copiedInsertRte = ExtractInsertRangeTableEntry(copiedQuery); @@ -382,6 +397,7 @@ RouterModifyTaskForShardInterval(Query *originalQuery, ShardInterval *shardInter bool replacePrunedQueryWithDummy = false; bool allReferenceTables = restrictionContext->allReferenceTables; List *hashedOpExpressions = NIL; + RestrictInfo *hashedRestrictInfo = NULL; /* grab shared metadata lock to stop concurrent placement additions */ LockShardDistributionMetadata(shardId, ShareLock); @@ -394,43 +410,19 @@ RouterModifyTaskForShardInterval(Query *originalQuery, ShardInterval *shardInter { RelationRestriction *restriction = lfirst(restrictionCell); List *originalBaserestrictInfo = restriction->relOptInfo->baserestrictinfo; - Var *relationPartitionKey = PartitionColumn(restriction->relationId, - restriction->index); - Param *uninstantiatedParameter = NULL; + Index rteIndex = restriction->index; - /* - * We don't need to add restriction to reference tables given that they are - * already single sharded and always prune to that single shard. - */ - if (PartitionMethod(restriction->relationId) == DISTRIBUTE_BY_NONE) + if (!allRelationsJoinedOnPartitionKey || allReferenceTables) { continue; } - hashedOpExpressions = HashedShardIntervalOpExpressions(shardInterval); - Assert(list_length(hashedOpExpressions) == 2); + hashedOpExpressions = ShardIntervalOpExpressions(shardInterval, rteIndex); - /* - * Here we check whether the planner knows an equality between the partition column - * and the uninstantiated parameter. If such an equality exists, we simply add the - * shard restrictions. - */ - uninstantiatedParameter = UninstantiatedParameterForColumn(relationPartitionKey); - if (exprs_known_equal(restriction->plannerInfo, (Node *) relationPartitionKey, - (Node *) uninstantiatedParameter)) - { - RestrictInfo *geRestrictInfo = NULL; - RestrictInfo *leRestrictInfo = NULL; + hashedRestrictInfo = make_simple_restrictinfo((Expr *) hashedOpExpressions); + originalBaserestrictInfo = lappend(originalBaserestrictInfo, hashedRestrictInfo); - OpExpr *hashedGEOpExpr = (OpExpr *) linitial(hashedOpExpressions); - OpExpr *hashedLEOpExpr = (OpExpr *) lsecond(hashedOpExpressions); - - geRestrictInfo = make_simple_restrictinfo((Expr *) hashedGEOpExpr); - originalBaserestrictInfo = lappend(originalBaserestrictInfo, geRestrictInfo); - - leRestrictInfo = make_simple_restrictinfo((Expr *) hashedLEOpExpr); - originalBaserestrictInfo = lappend(originalBaserestrictInfo, leRestrictInfo); - } + restriction->relOptInfo->baserestrictinfo = originalBaserestrictInfo; } /* @@ -530,92 +522,53 @@ RouterModifyTaskForShardInterval(Query *originalQuery, ShardInterval *shardInter /* - * HashedShardIntervalOpExpressions returns a list of OpExprs with exactly two - * items in it. The list consists of shard interval ranges with hashed columns - * such as (hashColumn >= shardMinValue) and (hashedColumn <= shardMaxValue). + * ShardIntervalOpExpressions returns a list of OpExprs with exactly two + * items in it. The list consists of shard interval ranges with partition columns + * such as (partitionColumn >= shardMinValue) and (partitionColumn <= shardMaxValue). * - * The function errors out if the given shard interval does not belong to a hash - * distributed table. + * The function returns hashed columns generated by MakeInt4Column() for the hash + * partitioned tables in place of partition columns. + * + * The function errors out if the given shard interval does not belong to a hash, + * range and append distributed tables. */ static List * -HashedShardIntervalOpExpressions(ShardInterval *shardInterval) +ShardIntervalOpExpressions(ShardInterval *shardInterval, Index rteIndex) { - List *operatorExpressions = NIL; - Var *hashedGEColumn = NULL; - Var *hashedLEColumn = NULL; - OpExpr *hashedGEOpExpr = NULL; - OpExpr *hashedLEOpExpr = NULL; - Oid integer4GEoperatorId = InvalidOid; - Oid integer4LEoperatorId = InvalidOid; - - Datum shardMinValue = shardInterval->minValue; - Datum shardMaxValue = shardInterval->maxValue; + Oid relationId = shardInterval->relationId; char partitionMethod = PartitionMethod(shardInterval->relationId); + Var *partitionColumn = NULL; + Node *baseConstraint = NULL; - if (partitionMethod != DISTRIBUTE_BY_HASH) + if (partitionMethod == DISTRIBUTE_BY_HASH) + { + partitionColumn = MakeInt4Column(); + } + else if (partitionMethod == DISTRIBUTE_BY_RANGE || partitionMethod == + DISTRIBUTE_BY_APPEND) + { + Assert(rteIndex > 0); + + partitionColumn = PartitionColumn(relationId, rteIndex); + } + else { ereport(ERROR, (errcode(ERRCODE_INVALID_PARAMETER_VALUE), errmsg("cannot create shard interval operator expression for " - "distributed relations other than hash distributed " + "distributed relations other than hash, range and append distributed " "relations"))); } - /* get the integer >=, <= operators from the catalog */ - integer4GEoperatorId = get_opfamily_member(INTEGER_BTREE_FAM_OID, INT4OID, - INT4OID, - BTGreaterEqualStrategyNumber); - integer4LEoperatorId = get_opfamily_member(INTEGER_BTREE_FAM_OID, INT4OID, - INT4OID, - BTLessEqualStrategyNumber); + /* build the base expression for constraint */ + baseConstraint = BuildBaseConstraint(partitionColumn); - /* generate hashed columns */ - hashedGEColumn = MakeInt4Column(); - hashedLEColumn = MakeInt4Column(); + /* walk over shard list and check if shards can be pruned */ + if (shardInterval->minValueExists && shardInterval->maxValueExists) + { + UpdateConstraint(baseConstraint, shardInterval); + } - /* generate the necessary operators */ - hashedGEOpExpr = (OpExpr *) make_opclause(integer4GEoperatorId, InvalidOid, false, - (Expr *) hashedGEColumn, - (Expr *) MakeInt4Constant(shardMinValue), - InvalidOid, InvalidOid); - - hashedLEOpExpr = (OpExpr *) make_opclause(integer4LEoperatorId, InvalidOid, false, - (Expr *) hashedLEColumn, - (Expr *) MakeInt4Constant(shardMaxValue), - InvalidOid, InvalidOid); - - /* update the operators with correct operator numbers and function ids */ - hashedGEOpExpr->opfuncid = get_opcode(hashedGEOpExpr->opno); - hashedGEOpExpr->opresulttype = get_func_rettype(hashedGEOpExpr->opfuncid); - operatorExpressions = lappend(operatorExpressions, hashedGEOpExpr); - - hashedLEOpExpr->opfuncid = get_opcode(hashedLEOpExpr->opno); - hashedLEOpExpr->opresulttype = get_func_rettype(hashedLEOpExpr->opfuncid); - operatorExpressions = lappend(operatorExpressions, hashedLEOpExpr); - - return operatorExpressions; -} - - -/* - * UninstantiatedParameterForColumn returns a Param that can be used as an uninstantiated - * parameter for the given column in the sense that paramtype, paramtypmod and collid - * is set to the input Var's corresponding values. - * - * Note that we're using hard coded UNINSTANTIATED_PARAMETER_ID which is the required parameter - * for our purposes. See multi_planner.c@multi_planner for the details. - */ -static Param * -UninstantiatedParameterForColumn(Var *relationPartitionKey) -{ - Param *uninstantiatedParameter = makeNode(Param); - - uninstantiatedParameter->paramkind = PARAM_EXTERN; - uninstantiatedParameter->paramid = UNINSTANTIATED_PARAMETER_ID; - uninstantiatedParameter->paramtype = relationPartitionKey->vartype; - uninstantiatedParameter->paramtypmod = relationPartitionKey->vartypmod; - uninstantiatedParameter->paramcollid = relationPartitionKey->varcollid; - - return uninstantiatedParameter; + return list_make1(baseConstraint); } @@ -924,11 +877,10 @@ MultiTaskRouterSelectQuerySupported(Query *query) NULL, NULL); } - /* see comment on AddUninstantiatedPartitionRestriction() */ if (subquery->setOperations != NULL) { return DeferredError(ERRCODE_FEATURE_NOT_SUPPORTED, - "set operations are not allowed in INSERT ... SELECT " + "Set operations are not allowed in INSERT ... SELECT " "queries", NULL, NULL); } @@ -1190,126 +1142,6 @@ InsertPartitionColumnMatchesSelect(Query *query, RangeTblEntry *insertRte, } -/* - * AddUninstantiatedPartitionRestriction() can only be used with - * INSERT ... SELECT queries. - * - * AddUninstantiatedPartitionRestriction adds an equality qual - * to the SELECT query of the given originalQuery. The function currently - * does NOT add the quals if - * (i) Set operations are present on the top level query - * (ii) Target list does not include a bare partition column. - * - * Note that if the input query is not an INSERT ... SELECT the assertion fails. Lastly, - * if all the participating tables in the query are reference tables, we implicitly - * skip adding the quals to the query since IsPartitionColumnRecursive() always returns - * false for reference tables. - */ -void -AddUninstantiatedPartitionRestriction(Query *originalQuery) -{ - Query *subquery = NULL; - RangeTblEntry *subqueryEntry = NULL; - ListCell *targetEntryCell = NULL; - Var *targetPartitionColumnVar = NULL; - List *targetList = NULL; - - Assert(InsertSelectQuery(originalQuery)); - - subqueryEntry = ExtractSelectRangeTableEntry(originalQuery); - subquery = subqueryEntry->subquery; - - /* - * We currently not support the subquery with set operations. The main reason is that - * there is an "Assert(parse->jointree->quals == NULL);" on standard planner's execution - * path (i.e., plan_set_operations). - * If we are to add uninstantiated equality qual to the query, we may end up hitting that - * assertion, so it's better not to support for now. - */ - if (subquery->setOperations != NULL) - { - return; - } - - /* iterate through the target list and find the partition column on the target list */ - targetList = subquery->targetList; - foreach(targetEntryCell, targetList) - { - TargetEntry *targetEntry = lfirst(targetEntryCell); - - if (IsPartitionColumn(targetEntry->expr, subquery) && - IsA(targetEntry->expr, Var)) - { - targetPartitionColumnVar = (Var *) targetEntry->expr; - break; - } - } - - /* - * If we cannot find the bare partition column, no need to add the qual since - * we're already going to error out on the multi planner. - */ - if (!targetPartitionColumnVar) - { - return; - } - - /* finally add the equality qual of target column to subquery */ - AddUninstantiatedEqualityQual(subquery, targetPartitionColumnVar); -} - - -/* - * AddUninstantiatedEqualityQual adds a qual in the following form - * ($1 = partitionColumn) on the input query and partitionColumn. - */ -static void -AddUninstantiatedEqualityQual(Query *query, Var *partitionColumn) -{ - Param *equalityParameter = UninstantiatedParameterForColumn(partitionColumn); - OpExpr *uninstantiatedEqualityQual = NULL; - Oid partitionColumnCollid = InvalidOid; - Oid lessThanOperator = InvalidOid; - Oid equalsOperator = InvalidOid; - Oid greaterOperator = InvalidOid; - bool hashable = false; - - AssertArg(query->commandType == CMD_SELECT); - - /* get the necessary equality operator */ - get_sort_group_operators(partitionColumn->vartype, false, true, false, - &lessThanOperator, &equalsOperator, &greaterOperator, - &hashable); - - - partitionColumnCollid = partitionColumn->varcollid; - - /* create an equality on the on the target partition column */ - uninstantiatedEqualityQual = (OpExpr *) make_opclause(equalsOperator, InvalidOid, - false, - (Expr *) partitionColumn, - (Expr *) equalityParameter, - partitionColumnCollid, - partitionColumnCollid); - - /* update the operators with correct operator numbers and function ids */ - uninstantiatedEqualityQual->opfuncid = get_opcode(uninstantiatedEqualityQual->opno); - uninstantiatedEqualityQual->opresulttype = - get_func_rettype(uninstantiatedEqualityQual->opfuncid); - - /* add restriction on partition column */ - if (query->jointree->quals == NULL) - { - query->jointree->quals = (Node *) uninstantiatedEqualityQual; - } - else - { - query->jointree->quals = make_and_qual(query->jointree->quals, - (Node *) uninstantiatedEqualityQual); - } -} - - /* * ModifyQuerySupported returns NULL if the query only contains supported * features, otherwise it returns an error description. diff --git a/src/backend/distributed/planner/relation_restriction_equivalence.c b/src/backend/distributed/planner/relation_restriction_equivalence.c new file mode 100644 index 000000000..d7dbc75ae --- /dev/null +++ b/src/backend/distributed/planner/relation_restriction_equivalence.c @@ -0,0 +1,864 @@ +/* + * relation_restriction_equivalence.c + * + * This file contains functions helper functions for planning + * queries with colocated tables and subqueries. + * + * Copyright (c) 2017-2017, Citus Data, Inc. + * + *------------------------------------------------------------------------- + */ +#include "postgres.h" + +#include "distributed/multi_planner.h" +#include "distributed/multi_logical_planner.h" +#include "distributed/pg_dist_partition.h" +#include "distributed/relation_restriction_equivalence.h" +#include "nodes/nodeFuncs.h" +#include "nodes/pg_list.h" +#include "nodes/primnodes.h" +#include "nodes/relation.h" +#include "parser/parsetree.h" +#include "optimizer/pathnode.h" + +static uint32 attributeEquivalenceId = 1; + + +/* + * AttributeEquivalenceClass + * + * Whenever we find an equality clause A = B, where both A and B originates from + * relation attributes (i.e., not random expressions), we create an + * AttributeEquivalenceClass to record this knowledge. If we later find another + * equivalence B = C, we create another AttributeEquivalenceClass. Finally, we can + * apply transitivity rules and generate a new AttributeEquivalenceClass which includes + * A, B and C. + * + * Note that equality among the members are identified by the varattno and rteIdentity. + */ +typedef struct AttributeEquivalenceClass +{ + uint32 equivalenceId; + List *equivalentAttributes; +} AttributeEquivalenceClass; + +/* + * AttributeEquivalenceClassMember - one member expression of an + * AttributeEquivalenceClass. The important thing to consider is that + * the class member contains "rteIndentity" field. Note that each RTE_RELATION + * is assigned a unique rteIdentity in AssignRTEIdentities() function. + * + * "varno" and "varattno" is directly used from a Var clause that is being added + * to the attribute equivalence. Since we only use this class for relations, the member + * also includes the relation id field. + */ +typedef struct AttributeEquivalenceClassMember +{ + Oid relationId; + int rteIdentity; + Index varno; + AttrNumber varattno; +} AttributeEquivalenceClassMember; + + +static uint32 ReferenceRelationCount(RelationRestrictionContext *restrictionContext); +static List * GenerateAttributeEquivalencesForRelationRestrictions( + RelationRestrictionContext *restrictionContext); +static AttributeEquivalenceClass * AttributeEquivalenceClassForEquivalenceClass( + EquivalenceClass *plannerEqClass, RelationRestriction *relationRestriction); +static void AddToAttributeEquivalenceClass(AttributeEquivalenceClass ** + attributeEquivalanceClass, + PlannerInfo *root, Var *varToBeAdded); +static Var * GetVarFromAssignedParam(List *parentPlannerParamList, + Param *plannerParam); +static List * GenerateAttributeEquivalencesForJoinRestrictions(JoinRestrictionContext + *joinRestrictionContext); +static bool AttributeClassContainsAttributeClassMember(AttributeEquivalenceClassMember * + inputMember, + AttributeEquivalenceClass * + attributeEquivalenceClass); +static List * AddAttributeClassToAttributeClassList(List *attributeEquivalenceList, + AttributeEquivalenceClass * + attributeEquivalance); +static bool AttributeEquivalancesAreEqual(AttributeEquivalenceClass * + firstAttributeEquivalance, + AttributeEquivalenceClass * + secondAttributeEquivalance); +static AttributeEquivalenceClass * GenerateCommonEquivalence(List * + attributeEquivalenceList); +static void ListConcatUniqueAttributeClassMemberLists(AttributeEquivalenceClass ** + firstClass, + AttributeEquivalenceClass * + secondClass); + +/* + * RestrictionEquivalenceForPartitionKeys aims to deduce whether each of the RTE_RELATION + * is joined with at least one another RTE_RELATION on their partition keys. If each + * RTE_RELATION follows the above rule, we can conclude that all RTE_RELATIONs are + * joined on their partition keys. + * + * The function returns true if all relations are joined on their partition keys. + * Otherwise, the function returns false. Since reference tables do not have partition + * keys, we skip processing them. Also, if the query includes only a single non-reference + * distributed relation, the function returns true since it doesn't make sense to check + * for partition key equality in that case. + * + * In order to do that, we invented a new equivalence class namely: + * AttributeEquivalenceClass. In very simple words, a AttributeEquivalenceClass is + * identified by an unique id and consists of a list of AttributeEquivalenceMembers. + * + * Each AttributeEquivalenceMember is designed to identify attributes uniquely within the + * whole query. The necessity of this arise since varno attributes are defined within + * a single level of a query. Instead, here we want to identify each RTE_RELATION uniquely + * and try to find equality among each RTE_RELATION's partition key. + * + * Each equality among RTE_RELATION is saved using an AttributeEquivalenceClass where + * each member attribute is identified by a AttributeEquivalenceMember. In the final + * step, we try generate a common attribute equivalence class that holds as much as + * AttributeEquivalenceMembers whose attributes are a partition keys. + * + * AllRelationsJoinedOnPartitionKey uses both relation restrictions and join restrictions + * to find as much as information that Postgres planner provides to extensions. For the + * details of the usage, please see GenerateAttributeEquivalencesForRelationRestrictions() + * and GenerateAttributeEquivalencesForJoinRestrictions() + */ +bool +RestrictionEquivalenceForPartitionKeys( + PlannerRestrictionContext *plannerRestrictionContext) +{ + RelationRestrictionContext *restrictionContext = + plannerRestrictionContext->relationRestrictionContext; + JoinRestrictionContext *joinRestrictionContext = + plannerRestrictionContext->joinRestrictionContext; + + List *relationRestrictionAttributeEquivalenceList = NIL; + List *joinRestrictionAttributeEquivalenceList = NIL; + List *allAttributeEquivalenceList = NIL; + AttributeEquivalenceClass *commonEquivalenceClass = NULL; + uint32 referenceRelationCount = ReferenceRelationCount(restrictionContext); + uint32 totalRelationCount = list_length(restrictionContext->relationRestrictionList); + uint32 nonReferenceRelationCount = totalRelationCount - referenceRelationCount; + ListCell *commonEqClassCell = NULL; + ListCell *relationRestrictionCell = NULL; + Relids commonRteIdentities = NULL; + + /* + * If the query includes a single relation which is not a reference table, + * we should not check the partition column equality. + * Consider two example cases: + * (i) The query includes only a single colocated relation + * (ii) A colocated relation is joined with a (or multiple) reference + * table(s) where colocated relation is not joined on the partition key + * + * For the above two cases, we don't need to execute the partition column equality + * algorithm. The reason is that the essence of this function is to ensure that the + * tasks that are going to be created should not need data from other tasks. In both + * cases mentioned above, the necessary data per task would be on available. + */ + if (nonReferenceRelationCount <= 1) + { + return true; + } + + /* reset the equivalence id counter per call to prevent overflows */ + attributeEquivalenceId = 1; + + relationRestrictionAttributeEquivalenceList = + GenerateAttributeEquivalencesForRelationRestrictions(restrictionContext); + joinRestrictionAttributeEquivalenceList = + GenerateAttributeEquivalencesForJoinRestrictions(joinRestrictionContext); + + allAttributeEquivalenceList = + list_concat(relationRestrictionAttributeEquivalenceList, + joinRestrictionAttributeEquivalenceList); + + /* + * In general we're trying to expand existing the equivalence classes to find a + * common equivalence class. The main goal is to test whether this main class + * contains all partition keys of the existing relations. + */ + commonEquivalenceClass = GenerateCommonEquivalence(allAttributeEquivalenceList); + + /* add the rte indexes of relations to a bitmap */ + foreach(commonEqClassCell, commonEquivalenceClass->equivalentAttributes) + { + AttributeEquivalenceClassMember *classMember = + (AttributeEquivalenceClassMember *) lfirst(commonEqClassCell); + int rteIdentity = classMember->rteIdentity; + + commonRteIdentities = bms_add_member(commonRteIdentities, rteIdentity); + } + + /* check whether all relations exists in the main restriction list */ + foreach(relationRestrictionCell, restrictionContext->relationRestrictionList) + { + RelationRestriction *relationRestriction = + (RelationRestriction *) lfirst(relationRestrictionCell); + int rteIdentity = GetRTEIdentity(relationRestriction->rte); + + if (PartitionKey(relationRestriction->relationId) && + !bms_is_member(rteIdentity, commonRteIdentities)) + { + return false; + } + } + + return true; +} + + +/* + * ReferenceRelationCount iterates over the relations and returns the reference table + * relation count. + */ +static uint32 +ReferenceRelationCount(RelationRestrictionContext *restrictionContext) +{ + ListCell *relationRestrictionCell = NULL; + uint32 referenceRelationCount = 0; + + foreach(relationRestrictionCell, restrictionContext->relationRestrictionList) + { + RelationRestriction *relationRestriction = + (RelationRestriction *) lfirst(relationRestrictionCell); + + if (PartitionMethod(relationRestriction->relationId) == DISTRIBUTE_BY_NONE) + { + referenceRelationCount++; + } + } + + return referenceRelationCount; +} + + +/* + * GenerateAttributeEquivalencesForRelationRestrictions gets a relation restriction + * context and returns a list of AttributeEquivalenceClass. + * + * The algorithm followed can be summarized as below: + * + * - Per relation restriction + * - Per plannerInfo's eq_class + * - Create an AttributeEquivalenceClass + * - Add all Vars that appear in the plannerInfo's + * eq_class to the AttributeEquivalenceClass + * - While doing that, consider LATERAL vars as well. + * See GetVarFromAssignedParam() for the details. Note + * that we're using parentPlannerInfo while adding the + * LATERAL vars given that we rely on that plannerInfo. + * + */ +static List * +GenerateAttributeEquivalencesForRelationRestrictions(RelationRestrictionContext + *restrictionContext) +{ + List *attributeEquivalenceList = NIL; + ListCell *relationRestrictionCell = NULL; + + foreach(relationRestrictionCell, restrictionContext->relationRestrictionList) + { + RelationRestriction *relationRestriction = + (RelationRestriction *) lfirst(relationRestrictionCell); + List *equivalenceClasses = relationRestriction->plannerInfo->eq_classes; + ListCell *equivalenceClassCell = NULL; + + foreach(equivalenceClassCell, equivalenceClasses) + { + EquivalenceClass *plannerEqClass = + (EquivalenceClass *) lfirst(equivalenceClassCell); + + AttributeEquivalenceClass *attributeEquivalance = + AttributeEquivalenceClassForEquivalenceClass(plannerEqClass, + relationRestriction); + + attributeEquivalenceList = + AddAttributeClassToAttributeClassList(attributeEquivalenceList, + attributeEquivalance); + } + } + + return attributeEquivalenceList; +} + + +/* + * AttributeEquivalenceClassForEquivalenceClass is a helper function for + * GenerateAttributeEquivalencesForRelationRestrictions. The function takes an + * EquivalenceClass and the relation restriction that the equivalence class + * belongs to. The function returns an AttributeEquivalenceClass that is composed + * of ec_members that are simple Var references. + * + * The function also takes case of LATERAL joins by simply replacing the PARAM_EXEC + * with the corresponding expression. + */ +static AttributeEquivalenceClass * +AttributeEquivalenceClassForEquivalenceClass(EquivalenceClass *plannerEqClass, + RelationRestriction *relationRestriction) +{ + AttributeEquivalenceClass *attributeEquivalance = + palloc0(sizeof(AttributeEquivalenceClass)); + ListCell *equivilanceMemberCell = NULL; + PlannerInfo *plannerInfo = relationRestriction->plannerInfo; + + attributeEquivalance->equivalenceId = attributeEquivalenceId++; + + foreach(equivilanceMemberCell, plannerEqClass->ec_members) + { + EquivalenceMember *equivalenceMember = + (EquivalenceMember *) lfirst(equivilanceMemberCell); + Node *equivalenceNode = strip_implicit_coercions( + (Node *) equivalenceMember->em_expr); + Expr *strippedEquivalenceExpr = (Expr *) equivalenceNode; + + Var *expressionVar = NULL; + + if (IsA(strippedEquivalenceExpr, Param)) + { + List *parentParamList = relationRestriction->parentPlannerParamList; + Param *equivalenceParam = (Param *) strippedEquivalenceExpr; + + expressionVar = GetVarFromAssignedParam(parentParamList, + equivalenceParam); + if (expressionVar) + { + AddToAttributeEquivalenceClass(&attributeEquivalance, + relationRestriction->parentPlannerInfo, + expressionVar); + } + } + else if (IsA(strippedEquivalenceExpr, Var)) + { + expressionVar = (Var *) strippedEquivalenceExpr; + AddToAttributeEquivalenceClass(&attributeEquivalance, plannerInfo, + expressionVar); + } + } + + return attributeEquivalance; +} + + +/* + * GetVarFromAssignedParam returns the Var that is assigned to the given + * plannerParam if its kind is PARAM_EXEC. + * + * If the paramkind is not equal to PARAM_EXEC the function returns NULL. Similarly, + * if there is no var that the given param is assigned to, the function returns NULL. + * + * Rationale behind this function: + * + * While iterating through the equivalence classes of RTE_RELATIONs, we + * observe that there are PARAM type of equivalence member expressions for + * the RTE_RELATIONs which actually belong to lateral vars from the other query + * levels. + * + * We're also keeping track of the RTE_RELATION's parent_root's + * plan_param list which is expected to hold the parameters that are required + * for its lower level queries as it is documented: + * + * plan_params contains the expressions that this query level needs to + * make available to a lower query level that is currently being planned. + * + * This function is a helper function to iterate through the parent query's + * plan_params and looks for the param that the equivalence member has. The + * comparison is done via the "paramid" field. Finally, if the found parameter's + * item is a Var, we conclude that Postgres standard_planner replaced the Var + * with the Param on assign_param_for_var() function + * @src/backend/optimizer//plan/subselect.c. + * + */ +static Var * +GetVarFromAssignedParam(List *parentPlannerParamList, Param *plannerParam) +{ + Var *assignedVar = NULL; + ListCell *plannerParameterCell = NULL; + + Assert(plannerParam != NULL); + + /* we're only interested in parameters that Postgres added for execution */ + if (plannerParam->paramkind != PARAM_EXEC) + { + return NULL; + } + + foreach(plannerParameterCell, parentPlannerParamList) + { + PlannerParamItem *plannerParamItem = + (PlannerParamItem *) lfirst(plannerParameterCell); + + if (plannerParamItem->paramId != plannerParam->paramid) + { + continue; + } + + /* TODO: Should we consider PlaceHolderVar?? */ + if (!IsA(plannerParamItem->item, Var)) + { + continue; + } + + assignedVar = (Var *) plannerParamItem->item; + + break; + } + + return assignedVar; +} + + +/* + * GenerateCommonEquivalence gets a list of unrelated AttributeEquiavalanceClass + * whose all members are partition keys. + * + * With the equivalence classes, the function follows the algorithm + * outlined below: + * + * - Add the first equivalence class to the common equivalence class + * - Then, iterate on the remaining equivalence classes + * - If any of the members equal to the common equivalence class + * add all the members of the equivalence class to the common + * class + * - Start the iteration from the beginning. The reason is that + * in case any of the classes we've passed is equivalent to the + * newly added one. To optimize the algorithm, we utilze the + * equivalence class ids and skip the ones that are already added. + * - Finally, return the common equivalence class. + */ +static AttributeEquivalenceClass * +GenerateCommonEquivalence(List *attributeEquivalenceList) +{ + AttributeEquivalenceClass *commonEquivalenceClass = NULL; + AttributeEquivalenceClass *firstEquivalenceClass = NULL; + Bitmapset *addedEquivalenceIds = NULL; + uint32 equivalenceListSize = list_length(attributeEquivalenceList); + uint32 equivalenceClassIndex = 0; + + commonEquivalenceClass = palloc0(sizeof(AttributeEquivalenceClass)); + commonEquivalenceClass->equivalenceId = 0; + + /* think more on this. */ + if (equivalenceListSize < 1) + { + return commonEquivalenceClass; + } + + /* setup the initial state of the main equivalence class */ + firstEquivalenceClass = linitial(attributeEquivalenceList); + commonEquivalenceClass->equivalentAttributes = + firstEquivalenceClass->equivalentAttributes; + addedEquivalenceIds = bms_add_member(addedEquivalenceIds, + firstEquivalenceClass->equivalenceId); + + for (; equivalenceClassIndex < equivalenceListSize; ++equivalenceClassIndex) + { + AttributeEquivalenceClass *currentEquivalenceClass = + list_nth(attributeEquivalenceList, equivalenceClassIndex); + ListCell *equivalenceMemberCell = NULL; + + /* + * This is an optimization. If we already added the same equivalence class, + * we could skip it since we've already added all the relevant equivalence + * members. + */ + if (bms_is_member(currentEquivalenceClass->equivalenceId, addedEquivalenceIds)) + { + continue; + } + + foreach(equivalenceMemberCell, currentEquivalenceClass->equivalentAttributes) + { + AttributeEquivalenceClassMember *attributeEquialanceMember = + (AttributeEquivalenceClassMember *) lfirst(equivalenceMemberCell); + + if (AttributeClassContainsAttributeClassMember(attributeEquialanceMember, + commonEquivalenceClass)) + { + ListConcatUniqueAttributeClassMemberLists(&commonEquivalenceClass, + currentEquivalenceClass); + + addedEquivalenceIds = bms_add_member(addedEquivalenceIds, + currentEquivalenceClass-> + equivalenceId); + + /* + * It seems inefficient to start from the beginning. + * But, we should somehow restart from the beginning to test that + * whether the already skipped ones are equal or not. + */ + equivalenceClassIndex = 0; + + break; + } + } + } + + return commonEquivalenceClass; +} + + +/* + * ListConcatUniqueAttributeClassMemberLists gets two attribute equivalence classes. It + * basically concatenates attribute equivalence member lists uniquely and updates the + * firstClass' member list with the list. + * + * Basically, the function iterates over the secondClass' member list and checks whether + * it already exists in the firstClass' member list. If not, the member is added to the + * firstClass. + */ +static void +ListConcatUniqueAttributeClassMemberLists(AttributeEquivalenceClass **firstClass, + AttributeEquivalenceClass *secondClass) +{ + ListCell *equivalenceClassMemberCell = NULL; + List *equivalenceMemberList = secondClass->equivalentAttributes; + + foreach(equivalenceClassMemberCell, equivalenceMemberList) + { + AttributeEquivalenceClassMember *newEqMember = + (AttributeEquivalenceClassMember *) lfirst(equivalenceClassMemberCell); + + if (AttributeClassContainsAttributeClassMember(newEqMember, *firstClass)) + { + continue; + } + + (*firstClass)->equivalentAttributes = lappend((*firstClass)->equivalentAttributes, + newEqMember); + } +} + + +/* + * GenerateAttributeEquivalencesForJoinRestrictions gets a join restriction + * context and returns a list of AttrributeEquivalenceClass. + * + * The algorithm followed can be summarized as below: + * + * - Per join restriction + * - Per RestrictInfo of the join restriction + * - Check whether the join restriction is in the form of (Var1 = Var2) + * - Create an AttributeEquivalenceClass + * - Add both Var1 and Var2 to the AttributeEquivalenceClass + */ +static List * +GenerateAttributeEquivalencesForJoinRestrictions(JoinRestrictionContext * + joinRestrictionContext) +{ + List *attributeEquivalenceList = NIL; + ListCell *joinRestrictionCell = NULL; + + foreach(joinRestrictionCell, joinRestrictionContext->joinRestrictionList) + { + JoinRestriction *joinRestriction = + (JoinRestriction *) lfirst(joinRestrictionCell); + ListCell *restrictionInfoList = NULL; + + foreach(restrictionInfoList, joinRestriction->joinRestrictInfoList) + { + RestrictInfo *rinfo = (RestrictInfo *) lfirst(restrictionInfoList); + OpExpr *restrictionOpExpr = NULL; + Node *leftNode = NULL; + Node *rightNode = NULL; + Expr *strippedLeftExpr = NULL; + Expr *strippedRightExpr = NULL; + Var *leftVar = NULL; + Var *rightVar = NULL; + Expr *restrictionClause = rinfo->clause; + AttributeEquivalenceClass *attributeEquivalance = NULL; + + if (!IsA(restrictionClause, OpExpr)) + { + continue; + } + + restrictionOpExpr = (OpExpr *) restrictionClause; + if (list_length(restrictionOpExpr->args) != 2) + { + continue; + } + if (!OperatorImplementsEquality(restrictionOpExpr->opno)) + { + continue; + } + + leftNode = linitial(restrictionOpExpr->args); + rightNode = lsecond(restrictionOpExpr->args); + + /* we also don't want implicit coercions */ + strippedLeftExpr = (Expr *) strip_implicit_coercions((Node *) leftNode); + strippedRightExpr = (Expr *) strip_implicit_coercions((Node *) rightNode); + + if (!(IsA(strippedLeftExpr, Var) && IsA(strippedRightExpr, Var))) + { + continue; + } + + leftVar = (Var *) strippedLeftExpr; + rightVar = (Var *) strippedRightExpr; + + attributeEquivalance = palloc0(sizeof(AttributeEquivalenceClass)); + attributeEquivalance->equivalenceId = attributeEquivalenceId++; + + AddToAttributeEquivalenceClass(&attributeEquivalance, + joinRestriction->plannerInfo, leftVar); + + AddToAttributeEquivalenceClass(&attributeEquivalance, + joinRestriction->plannerInfo, rightVar); + + attributeEquivalenceList = + AddAttributeClassToAttributeClassList(attributeEquivalenceList, + attributeEquivalance); + } + } + + return attributeEquivalenceList; +} + + +/* + * AddToAttributeEquivalenceClass is a key function for building the attribute + * equivalences. The function gets a plannerInfo, var and attribute equivalence + * class. It searches for the RTE_RELATION(s) that the input var belongs to and + * adds the found Var(s) to the input attribute equivalence class. + * + * Note that the input var could come from a subquery (i.e., not directly from an + * RTE_RELATION). That's the reason we recursively call the function until the + * RTE_RELATION found. + * + * The algorithm could be summarized as follows: + * + * - If the RTE that corresponds to a relation + * - Generate an AttributeEquivalenceMember and add to the input + * AttributeEquivalenceClass + * - If the RTE that corresponds to a subquery + * - Find the corresponding target entry via varno + * - if subquery entry is a set operation (i.e., only UNION/UNION ALL allowed) + * - recursively add both left and right sides of the set operation's + * corresponding target entries + * - if subquery is not a set operation + * - recursively try to add the corresponding target entry to the + * equivalence class + * + * Note that this function only adds partition keys to the attributeEquivalanceClass. + * This implies that there wouldn't be any columns for reference tables. + */ +static void +AddToAttributeEquivalenceClass(AttributeEquivalenceClass **attributeEquivalanceClass, + PlannerInfo *root, Var *varToBeAdded) +{ + RangeTblEntry *rangeTableEntry = root->simple_rte_array[varToBeAdded->varno]; + + if (rangeTableEntry->rtekind == RTE_RELATION) + { + AttributeEquivalenceClassMember *attributeEqMember = NULL; + Oid relationId = rangeTableEntry->relid; + Var *relationPartitionKey = NULL; + + if (PartitionMethod(relationId) == DISTRIBUTE_BY_NONE) + { + return; + } + + relationPartitionKey = PartitionKey(relationId); + if (relationPartitionKey->varattno != varToBeAdded->varattno) + { + return; + } + + attributeEqMember = palloc0(sizeof(AttributeEquivalenceClassMember)); + + attributeEqMember->varattno = varToBeAdded->varattno; + attributeEqMember->varno = varToBeAdded->varno; + attributeEqMember->rteIdentity = GetRTEIdentity(rangeTableEntry); + attributeEqMember->relationId = rangeTableEntry->relid; + + (*attributeEquivalanceClass)->equivalentAttributes = + lappend((*attributeEquivalanceClass)->equivalentAttributes, + attributeEqMember); + } + else if (rangeTableEntry->rtekind == RTE_SUBQUERY && !rangeTableEntry->inh) + { + Query *subquery = rangeTableEntry->subquery; + RelOptInfo *baseRelOptInfo = NULL; + TargetEntry *subqueryTargetEntry = NULL; + + /* punt if it's a whole-row var rather than a plain column reference */ + if (varToBeAdded->varattno == InvalidAttrNumber) + { + return; + } + + /* we also don't want to process ctid, tableoid etc */ + if (varToBeAdded->varattno < InvalidAttrNumber) + { + return; + } + + baseRelOptInfo = find_base_rel(root, varToBeAdded->varno); + + /* If the subquery hasn't been planned yet, we have to punt */ + if (baseRelOptInfo->subroot == NULL) + { + return; + } + + Assert(IsA(baseRelOptInfo->subroot, PlannerInfo)); + + subquery = baseRelOptInfo->subroot->parse; + Assert(IsA(subquery, Query)); + + /* Get the subquery output expression referenced by the upper Var */ + subqueryTargetEntry = get_tle_by_resno(subquery->targetList, + varToBeAdded->varattno); + if (subqueryTargetEntry == NULL || subqueryTargetEntry->resjunk) + { + ereport(ERROR, (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), + errmsg("subquery %s does not have attribute %d", + rangeTableEntry->eref->aliasname, + varToBeAdded->varattno))); + } + + if (!IsA(subqueryTargetEntry->expr, Var)) + { + return; + } + + varToBeAdded = (Var *) subqueryTargetEntry->expr; + + if (varToBeAdded && IsA(varToBeAdded, Var) && varToBeAdded->varlevelsup == 0) + { + AddToAttributeEquivalenceClass(attributeEquivalanceClass, + baseRelOptInfo->subroot, varToBeAdded); + } + } +} + + +/* + * AttributeClassContainsAttributeClassMember returns true if it the input class member + * is already exists in the attributeEquivalenceClass. An equality is identified by the + * varattno and rteIdentity. + */ +static bool +AttributeClassContainsAttributeClassMember(AttributeEquivalenceClassMember *inputMember, + AttributeEquivalenceClass * + attributeEquivalenceClass) +{ + ListCell *classCell = NULL; + foreach(classCell, attributeEquivalenceClass->equivalentAttributes) + { + AttributeEquivalenceClassMember *memberOfClass = + (AttributeEquivalenceClassMember *) lfirst(classCell); + if (memberOfClass->rteIdentity == inputMember->rteIdentity && + memberOfClass->varattno == inputMember->varattno) + { + return true; + } + } + + return false; +} + + +/* + * AddAttributeClassToAttributeClassList checks for certain properties of the + * input attributeEquivalance before adding it to the attributeEquivalenceList. + * + * Firstly, the function skips adding NULL attributeEquivalance to the list. + * Secondly, since an attribute equivalence class with a single member does + * not contribute to our purposes, we skip such classed adding to the list. + * Finally, we don't want to add an equivalence class whose exact equivalent + * already exists in the list. + */ +static List * +AddAttributeClassToAttributeClassList(List *attributeEquivalenceList, + AttributeEquivalenceClass *attributeEquivalance) +{ + List *equivalentAttributes = NULL; + ListCell *attributeEquivalanceCell = NULL; + + if (attributeEquivalance == NULL) + { + return attributeEquivalenceList; + } + + /* + * Note that in some cases we allow having equivalentAttributes with zero or + * one elements. For the details, see AddToAttributeEquivalenceClass(). + */ + equivalentAttributes = attributeEquivalance->equivalentAttributes; + if (list_length(equivalentAttributes) < 2) + { + return attributeEquivalenceList; + } + + /* we don't want to add an attributeEquivalance which already exists */ + foreach(attributeEquivalanceCell, attributeEquivalenceList) + { + AttributeEquivalenceClass *currentAttributeEquivalance = + (AttributeEquivalenceClass *) lfirst(attributeEquivalanceCell); + + if (AttributeEquivalancesAreEqual(currentAttributeEquivalance, + attributeEquivalance)) + { + return attributeEquivalenceList; + } + } + + attributeEquivalenceList = lappend(attributeEquivalenceList, + attributeEquivalance); + + return attributeEquivalenceList; +} + + +/* + * AttributeEquivalancesAreEqual returns true if both input attribute equivalence + * classes contains exactly the same members. + */ +static bool +AttributeEquivalancesAreEqual(AttributeEquivalenceClass *firstAttributeEquivalance, + AttributeEquivalenceClass *secondAttributeEquivalance) +{ + List *firstEquivalenceMemberList = firstAttributeEquivalance->equivalentAttributes; + List *secondEquivalenceMemberList = secondAttributeEquivalance->equivalentAttributes; + ListCell *firstAttributeEquivalanceCell = NULL; + ListCell *secondAttributeEquivalanceCell = NULL; + + if (list_length(firstEquivalenceMemberList) != list_length( + secondEquivalenceMemberList)) + { + return false; + } + + + foreach(firstAttributeEquivalanceCell, firstEquivalenceMemberList) + { + AttributeEquivalenceClassMember *firstEqMember = + (AttributeEquivalenceClassMember *) lfirst(firstAttributeEquivalanceCell); + bool foundAnEquivalentMember = false; + + foreach(secondAttributeEquivalanceCell, secondEquivalenceMemberList) + { + AttributeEquivalenceClassMember *secondEqMember = + (AttributeEquivalenceClassMember *) lfirst( + secondAttributeEquivalanceCell); + + if (firstEqMember->rteIdentity == secondEqMember->rteIdentity && + firstEqMember->varattno == secondEqMember->varattno) + { + foundAnEquivalentMember = true; + break; + } + } + + /* we couldn't find an equivalent member */ + if (!foundAnEquivalentMember) + { + return false; + } + } + + return true; +} diff --git a/src/backend/distributed/shared_library_init.c b/src/backend/distributed/shared_library_init.c index c3dcf4e88..115f39dcc 100644 --- a/src/backend/distributed/shared_library_init.c +++ b/src/backend/distributed/shared_library_init.c @@ -148,6 +148,7 @@ _PG_init(void) /* register for planner hook */ set_rel_pathlist_hook = multi_relation_restriction_hook; + set_join_pathlist_hook = multi_join_restriction_hook; /* organize that task tracker is started once server is up */ TaskTrackerRegister(); diff --git a/src/include/distributed/multi_planner.h b/src/include/distributed/multi_planner.h index 8a24b2efa..bf65daa63 100644 --- a/src/include/distributed/multi_planner.h +++ b/src/include/distributed/multi_planner.h @@ -37,9 +37,29 @@ typedef struct RelationRestriction RangeTblEntry *rte; RelOptInfo *relOptInfo; PlannerInfo *plannerInfo; + PlannerInfo *parentPlannerInfo; + List *parentPlannerParamList; List *prunedShardIntervalList; } RelationRestriction; +typedef struct JoinRestrictionContext +{ + List *joinRestrictionList; +} JoinRestrictionContext; + +typedef struct JoinRestriction +{ + JoinType joinType; + List *joinRestrictInfoList; + PlannerInfo *plannerInfo; +} JoinRestriction; + +typedef struct PlannerRestrictionContext +{ + RelationRestrictionContext *relationRestrictionContext; + JoinRestrictionContext *joinRestrictionContext; +} PlannerRestrictionContext; + typedef struct RelationShard { CitusNode type; @@ -55,9 +75,17 @@ struct MultiPlan; extern struct MultiPlan * GetMultiPlan(CustomScan *node); extern void multi_relation_restriction_hook(PlannerInfo *root, RelOptInfo *relOptInfo, Index index, RangeTblEntry *rte); +extern void multi_join_restriction_hook(PlannerInfo *root, + RelOptInfo *joinrel, + RelOptInfo *outerrel, + RelOptInfo *innerrel, + JoinType jointype, + JoinPathExtraData *extra); extern bool IsModifyCommand(Query *query); extern bool IsModifyMultiPlan(struct MultiPlan *multiPlan); extern RangeTblEntry * RemoteScanRangeTableEntry(List *columnNameList); +extern int GetRTEIdentity(RangeTblEntry *rte); + #endif /* MULTI_PLANNER_H */ diff --git a/src/include/distributed/multi_router_planner.h b/src/include/distributed/multi_router_planner.h index 86d69a258..91c4c963f 100644 --- a/src/include/distributed/multi_router_planner.h +++ b/src/include/distributed/multi_router_planner.h @@ -21,9 +21,6 @@ #include "nodes/parsenodes.h" -/* reserved parameted id, we chose a negative number since it is not assigned by postgres */ -#define UNINSTANTIATED_PARAMETER_ID INT_MIN - /* reserved alias name for UPSERTs */ #define CITUS_TABLE_ALIAS "citus_table_alias" @@ -32,9 +29,9 @@ extern bool EnableRouterExecution; extern MultiPlan * CreateRouterPlan(Query *originalQuery, Query *query, RelationRestrictionContext *restrictionContext); extern MultiPlan * CreateModifyPlan(Query *originalQuery, Query *query, - RelationRestrictionContext *restrictionContext); + PlannerRestrictionContext * + plannerRestrictionContext); -extern void AddUninstantiatedPartitionRestriction(Query *originalQuery); extern DeferredErrorMessage * ModifyQuerySupported(Query *queryTree); extern Query * ReorderInsertSelectTargetLists(Query *originalQuery, RangeTblEntry *insertRte, diff --git a/src/include/distributed/relation_restriction_equivalence.h b/src/include/distributed/relation_restriction_equivalence.h new file mode 100644 index 000000000..be7c25674 --- /dev/null +++ b/src/include/distributed/relation_restriction_equivalence.h @@ -0,0 +1,22 @@ +/* + * relation_restriction_equivalence.h + * + * This file contains functions helper functions for planning + * queries with colocated tables and subqueries. + * + * Copyright (c) 2017-2017, Citus Data, Inc. + * + *------------------------------------------------------------------------- + */ + +#ifndef RELATION_RESTRICTION_EQUIVALENCE_H +#define RELATION_RESTRICTION_EQUIVALENCE_H + +#include "distributed/multi_planner.h" + + +extern bool RestrictionEquivalenceForPartitionKeys(PlannerRestrictionContext * + plannerRestrictionContext); + + +#endif /* RELATION_RESTRICTION_EQUIVALENCE_H */ diff --git a/src/test/regress/data/events_table.data b/src/test/regress/data/events_table.data new file mode 100644 index 000000000..61428ed73 --- /dev/null +++ b/src/test/regress/data/events_table.data @@ -0,0 +1,10001 @@ +60,2014-01-11 20:50:24.644039,141,967,903, +60,2014-01-19 02:07:05.295581,690,372,980, +20,2014-01-15 10:47:23.48223,843,510,21, +8,2014-01-18 06:11:47.966397,83,125,890, +8,2014-01-20 06:41:58.110297,415,726,435, +20,2014-01-11 05:46:47.906411,871,799,97, +8,2014-01-19 20:35:40.736028,605,502,859, +8,2014-01-19 09:07:03.159393,425,505,916, +60,2014-01-13 08:22:58.422199,789,865,151, +60,2014-01-17 11:41:13.789586,594,875,963, +20,2014-01-15 16:43:42.811215,442,859,834, +8,2014-01-17 13:34:43.250656,181,340,773, +20,2014-01-14 14:24:37.32708,780,339,411, +60,2014-01-16 14:56:45.688085,61,84,587, +20,2014-01-18 22:50:14.579619,915,194,653, +8,2014-01-21 04:50:18.970073,434,574,908, +20,2014-01-12 23:24:33.67177,455,766,229, +60,2014-01-16 00:15:17.583533,956,389,951, +8,2014-01-11 13:55:09.972465,445,648,799, +60,2014-01-20 07:44:39.013253,880,965,928, +60,2014-01-11 09:38:56.626627,745,674,935, +8,2014-01-20 14:48:21.53554,786,642,890, +20,2014-01-20 06:39:22.310415,715,937,448, +8,2014-01-16 23:20:26.577106,859,170,798, +8,2014-01-13 11:35:36.042404,238,454,738, +60,2014-01-13 05:48:36.617007,740,662,675, +8,2014-01-13 13:42:29.323378,148,111,802, +20,2014-01-17 20:09:36.980268,645,126,725, +8,2014-01-21 03:35:27.726329,564,441,407, +60,2014-01-18 08:29:55.800727,701,727,63, +60,2014-01-21 02:17:12.856401,685,216,602, +60,2014-01-11 18:25:52.370367,450,395,627, +8,2014-01-16 04:37:01.096307,215,762,768, +20,2014-01-15 07:04:36.33863,304,533,348, +60,2014-01-19 04:37:40.336765,68,987,970, +20,2014-01-15 05:18:59.206605,943,702,655, +60,2014-01-15 16:51:24.245461,360,886,916, +60,2014-01-17 19:13:21.072793,120,94,342, +8,2014-01-13 08:26:02.365998,455,404,699, +20,2014-01-18 05:14:22.66766,421,609,194, +20,2014-01-14 00:54:34.862378,241,107,238, +20,2014-01-18 05:09:45.177212,385,740,496, +8,2014-01-14 12:49:05.918317,633,4,226, +20,2014-01-17 19:19:12.189878,383,5,33, +20,2014-01-13 14:06:30.865298,565,623,587, +8,2014-01-12 05:39:20.497935,66,439,919, +20,2014-01-17 18:09:31.159951,622,589,636, +60,2014-01-15 17:31:04.537486,838,103,740, +20,2014-01-17 09:54:38.081888,467,670,636, +8,2014-01-18 12:04:41.132416,508,932,393, +20,2014-01-14 19:15:43.55074,973,193,250, +20,2014-01-17 23:33:34.708515,555,698,960, +20,2014-01-17 20:53:02.668374,658,971,38, +60,2014-01-13 19:55:05.861154,739,112,780, +8,2014-01-13 16:54:01.285621,436,64,996, +60,2014-01-20 12:28:38.710777,223,45,164, +8,2014-01-16 05:43:42.478161,645,830,149, +20,2014-01-16 10:36:30.608999,97,963,528, +20,2014-01-17 02:38:15.691045,718,542,979, +8,2014-01-16 03:19:10.204491,483,734,16, +60,2014-01-13 13:06:26.409726,886,177,968, +60,2014-01-16 22:55:28.547446,79,955,453, +20,2014-01-17 01:45:02.574857,613,521,17, +20,2014-01-18 21:43:27.506033,649,50,710, +60,2014-01-11 00:00:04.886076,96,17,57, +20,2014-01-15 00:22:42.911621,571,195,580, +20,2014-01-12 21:02:26.713058,187,520,36, +60,2014-01-15 20:51:29.131538,753,356,649, +8,2014-01-11 13:36:03.984832,851,529,392, +60,2014-01-15 09:28:29.079055,714,695,665, +20,2014-01-12 20:05:51.799198,426,23,695, +8,2014-01-14 18:30:38.847211,935,916,391, +20,2014-01-12 08:38:14.256686,179,229,31, +20,2014-01-16 12:54:57.717515,934,510,167, +8,2014-01-11 07:49:51.037089,440,323,596, +8,2014-01-15 02:44:45.121984,8,379,30, +60,2014-01-17 22:34:18.21587,685,238,838, +20,2014-01-18 05:59:22.19704,459,251,924, +8,2014-01-20 00:15:49.659471,500,428,273, +8,2014-01-14 02:28:56.297757,33,631,116, +20,2014-01-15 12:04:03.329874,75,617,939, +8,2014-01-13 13:31:33.210629,104,115,122, +20,2014-01-10 20:02:31.006272,30,934,489, +20,2014-01-12 02:57:05.998248,459,932,965, +60,2014-01-16 13:26:39.071783,56,360,778, +20,2014-01-13 16:56:32.291893,498,856,828, +8,2014-01-11 09:25:44.709026,729,163,959, +60,2014-01-11 13:10:21.550364,668,317,766, +20,2014-01-19 07:33:02.900893,701,9,511, +60,2014-01-17 16:04:00.400071,747,393,311, +60,2014-01-16 20:29:31.754854,835,355,192, +8,2014-01-11 14:39:29.311037,289,109,621, +20,2014-01-13 08:59:28.947517,446,73,280, +20,2014-01-12 16:14:34.33013,903,213,823, +20,2014-01-19 16:22:56.817071,10,844,835, +20,2014-01-13 12:59:33.833593,817,336,636, +60,2014-01-16 20:37:17.241751,644,603,344, +20,2014-01-11 07:25:23.530129,392,961,746, +20,2014-01-18 13:51:02.96555,722,675,514, +20,2014-01-17 14:13:21.226583,174,952,370, +8,2014-01-15 20:53:52.609603,674,493,725, +8,2014-01-20 13:56:54.764748,747,799,301, +8,2014-01-11 02:44:00.074214,157,666,623, +20,2014-01-17 09:32:06.866291,162,601,542, +20,2014-01-15 20:51:52.482682,245,591,116, +8,2014-01-11 14:33:51.111302,849,957,861, +8,2014-01-11 06:16:51.988275,556,142,689, +60,2014-01-12 13:26:10.698551,671,223,361, +60,2014-01-19 00:33:13.308761,714,457,675, +60,2014-01-20 10:32:41.648165,243,991,947, +20,2014-01-15 19:55:06.996308,467,392,780, +20,2014-01-13 06:37:16.638636,627,587,793, +8,2014-01-12 18:04:14.858794,41,206,974, +60,2014-01-15 19:57:38.00258,730,568,785, +8,2014-01-14 13:34:22.636884,658,928,790, +8,2014-01-18 11:30:53.930576,215,222,183, +20,2014-01-18 16:54:10.294474,321,990,282, +20,2014-01-15 03:00:07.34591,41,358,702, +60,2014-01-19 04:41:15.480941,20,19,801, +20,2014-01-16 18:27:13.195366,103,822,138, +20,2014-01-11 13:04:07.74598,650,602,161, +60,2014-01-14 19:10:47.236214,995,9,943, +20,2014-01-17 13:06:42.506403,797,531,482, +20,2014-01-14 02:03:36.693497,993,584,366, +20,2014-01-16 15:25:21.566343,523,5,398, +8,2014-01-15 23:29:39.323894,123,572,960, +20,2014-01-16 19:03:10.52709,7,889,321, +60,2014-01-12 06:02:38.808094,939,981,568, +60,2014-01-16 10:55:02.854022,39,437,144, +20,2014-01-14 02:54:13.49264,708,14,827, +60,2014-01-19 00:16:00.035097,173,63,428, +8,2014-01-11 01:48:55.463626,151,485,200, +60,2014-01-13 10:51:08.257806,746,730,713, +60,2014-01-19 07:00:00.10931,825,287,265, +20,2014-01-17 15:21:02.329917,993,874,321, +20,2014-01-18 11:43:00.740488,187,411,364, +60,2014-01-20 01:33:51.220613,4,477,253, +8,2014-01-18 01:37:54.31861,216,674,750, +20,2014-01-20 05:09:11.43904,292,19,582, +20,2014-01-17 20:07:04.529374,430,844,999, +8,2014-01-17 06:10:35.966774,18,293,554, +8,2014-01-14 19:04:18.435348,992,293,292, +20,2014-01-20 06:44:21.16801,265,43,831, +60,2014-01-19 04:14:50.825568,228,757,431, +60,2014-01-19 19:01:56.437929,572,134,21, +8,2014-01-13 14:18:43.804895,566,680,658, +20,2014-01-16 09:45:44.756145,136,481,435, +20,2014-01-17 05:56:06.732402,170,719,424, +60,2014-01-17 21:18:51.150805,822,816,739, +60,2014-01-14 08:27:00.237503,437,76,202, +60,2014-01-12 18:23:19.927769,39,654,384, +20,2014-01-18 14:22:58.896785,458,565,632, +20,2014-01-18 07:37:47.473717,304,369,156, +60,2014-01-19 11:30:02.434591,66,521,342, +8,2014-01-11 10:26:35.590282,242,107,648, +20,2014-01-13 17:03:09.040059,216,526,518, +20,2014-01-14 04:59:41.758484,756,18,959, +60,2014-01-17 09:29:46.117792,332,659,964, +20,2014-01-15 03:05:47.848153,141,529,381, +20,2014-01-19 19:54:44.612506,519,448,847, +20,2014-01-20 16:23:59.61043,853,495,120, +60,2014-01-12 21:21:47.88325,869,659,19, +8,2014-01-20 01:43:40.076552,748,630,481, +60,2014-01-12 21:15:07.868236,16,429,382, +60,2014-01-10 22:21:47.99256,746,982,377, +8,2014-01-16 11:04:42.406468,364,661,684, +8,2014-01-20 12:58:08.608725,95,850,849, +60,2014-01-20 03:55:39.213592,938,913,46, +20,2014-01-13 06:42:36.725078,576,962,742, +8,2014-01-19 12:07:20.047764,923,278,285, +20,2014-01-16 18:02:43.742967,519,698,629, +60,2014-01-19 16:53:12.691852,99,985,998, +60,2014-01-13 01:11:38.483112,705,32,387, +60,2014-01-15 18:47:04.911396,526,262,614, +60,2014-01-17 15:08:03.51742,382,940,948, +60,2014-01-11 14:13:34.921041,561,439,32, +8,2014-01-18 13:05:48.716291,671,190,93, +8,2014-01-12 18:53:48.273983,692,697,28, +20,2014-01-18 00:09:41.653444,704,646,525, +20,2014-01-15 04:24:39.867515,41,166,700, +60,2014-01-16 07:20:48.511487,234,532,108, +8,2014-01-19 22:33:01.581631,470,706,34, +60,2014-01-12 12:47:38.7643,710,264,376, +20,2014-01-13 08:58:35.985204,538,374,592, +20,2014-01-18 04:03:04.016222,569,872,74, +20,2014-01-13 03:14:14.355002,32,801,80, +20,2014-01-16 06:01:45.025264,368,263,117, +8,2014-01-11 03:02:45.774706,365,860,460, +60,2014-01-19 16:44:00.472793,814,509,922, +8,2014-01-20 13:07:32.873417,434,649,719, +8,2014-01-20 02:57:30.387213,492,15,820, +8,2014-01-19 03:08:00.083224,82,232,605, +60,2014-01-12 04:29:20.757086,139,45,472, +60,2014-01-18 22:41:10.463765,296,34,543, +8,2014-01-21 04:23:07.951879,462,728,453, +60,2014-01-12 06:51:08.749646,267,350,450, +8,2014-01-14 03:45:52.870651,562,336,896, +20,2014-01-20 11:21:16.560604,364,835,726, +20,2014-01-11 04:46:47.963238,466,330,431, +60,2014-01-16 14:28:29.595729,715,192,168, +8,2014-01-18 17:28:36.608787,772,534,214, +60,2014-01-17 02:49:31.706623,533,917,854, +60,2014-01-15 01:21:42.288001,51,127,971, +60,2014-01-20 22:40:15.091899,84,106,336, +20,2014-01-11 15:36:36.618019,148,213,373, +60,2014-01-11 10:29:45.805421,527,430,688, +60,2014-01-11 06:53:50.013359,934,525,115, +8,2014-01-19 08:42:25.334309,454,865,783, +20,2014-01-13 09:23:34.079405,392,995,940, +8,2014-01-18 11:03:31.666803,873,160,409, +8,2014-01-13 07:07:05.201824,629,875,999, +8,2014-01-18 20:44:22.590893,826,795,441, +20,2014-01-17 03:36:33.248433,635,742,32, +20,2014-01-14 23:54:43.966544,858,293,445, +60,2014-01-10 23:42:58.576096,281,457,845, +8,2014-01-14 01:39:37.264655,255,523,799, +60,2014-01-17 07:08:58.321546,654,928,587, +8,2014-01-16 09:44:43.601359,738,822,221, +60,2014-01-14 08:42:23.039361,504,297,764, +60,2014-01-15 17:52:58.794339,24,797,957, +60,2014-01-15 16:52:16.475196,473,248,72, +8,2014-01-13 05:39:53.426993,589,42,39, +60,2014-01-13 15:00:58.877562,512,212,668, +60,2014-01-17 01:21:37.232282,990,359,821, +8,2014-01-10 22:21:03.890757,156,163,513, +60,2014-01-13 13:24:06.829442,286,333,682, +60,2014-01-18 12:12:45.981928,227,280,360, +60,2014-01-14 06:06:56.761408,337,140,852, +20,2014-01-12 18:45:23.390466,466,646,620, +20,2014-01-18 20:59:33.945584,87,992,219, +8,2014-01-20 00:35:26.357557,935,746,728, +20,2014-01-20 16:13:59.999252,230,528,190, +60,2014-01-14 17:49:05.652208,112,242,463, +20,2014-01-13 19:57:08.645558,212,632,104, +20,2014-01-20 08:54:15.091152,406,746,441, +60,2014-01-15 13:25:42.270227,984,338,769, +8,2014-01-14 10:26:54.450979,644,917,121, +20,2014-01-20 19:48:05.104511,980,250,36, +20,2014-01-13 16:08:07.604536,206,643,210, +20,2014-01-16 23:50:28.530804,785,753,974, +20,2014-01-18 00:51:36.771733,265,500,154, +60,2014-01-16 03:15:12.80678,672,17,408, +20,2014-01-14 14:34:51.121696,366,656,7, +60,2014-01-13 22:28:10.020167,685,942,676, +20,2014-01-20 07:09:56.773324,450,537,965, +20,2014-01-14 18:17:49.698211,426,434,619, +60,2014-01-17 04:07:47.285242,529,245,332, +8,2014-01-16 08:18:55.094869,527,239,265, +8,2014-01-20 08:02:33.299571,819,268,808, +8,2014-01-20 16:50:10.324602,709,562,571, +60,2014-01-10 20:11:53.889207,574,364,328, +8,2014-01-14 18:54:49.774767,704,718,627, +8,2014-01-12 16:30:03.751596,523,375,182, +20,2014-01-13 15:12:52.76677,795,627,654, +60,2014-01-21 00:16:27.007048,415,595,798, +60,2014-01-12 18:51:07.642772,72,469,640, +60,2014-01-16 08:36:59.596631,147,200,729, +20,2014-01-18 06:29:12.989396,378,454,820, +60,2014-01-16 04:58:04.404181,835,742,86, +20,2014-01-18 07:22:22.987096,988,784,878, +20,2014-01-15 21:28:46.93498,490,604,700, +20,2014-01-14 23:33:30.761739,381,681,566, +8,2014-01-17 17:36:22.986349,893,947,851, +8,2014-01-19 19:17:52.587189,621,339,132, +8,2014-01-17 23:30:39.407297,12,630,672, +20,2014-01-16 20:30:38.077501,327,622,711, +8,2014-01-14 02:43:34.857416,123,521,346, +60,2014-01-11 03:57:33.858695,680,861,73, +60,2014-01-16 10:18:43.182431,744,445,283, +8,2014-01-16 22:51:42.461952,866,690,803, +20,2014-01-17 07:48:02.389499,722,915,518, +20,2014-01-13 05:10:19.954165,101,690,746, +20,2014-01-11 20:06:55.268732,989,952,597, +8,2014-01-21 02:22:53.511195,66,509,349, +60,2014-01-16 07:38:29.974331,416,383,262, +8,2014-01-10 21:16:52.042056,496,964,832, +20,2014-01-14 14:40:43.209406,175,293,832, +60,2014-01-12 05:46:17.259572,290,118,795, +60,2014-01-16 09:35:47.136926,546,190,780, +8,2014-01-13 16:43:16.509396,655,75,249, +8,2014-01-11 16:36:27.584594,959,388,491, +8,2014-01-16 09:47:41.026133,451,931,382, +20,2014-01-17 15:38:06.284162,47,699,480, +60,2014-01-13 13:06:31.33619,655,389,489, +60,2014-01-19 05:00:33.793322,8,618,667, +60,2014-01-17 09:54:33.29163,283,633,74, +8,2014-01-15 11:57:38.978961,297,287,722, +20,2014-01-14 07:37:33.389953,48,664,920, +60,2014-01-14 10:23:46.281025,902,16,152, +20,2014-01-20 20:55:43.383561,481,816,693, +8,2014-01-11 08:59:56.37705,661,829,911, +60,2014-01-19 11:52:33.216005,353,342,233, +60,2014-01-14 14:29:14.1453,20,233,283, +60,2014-01-18 06:36:19.363399,56,435,896, +60,2014-01-18 01:10:25.803194,989,397,648, +60,2014-01-11 07:59:53.553016,331,800,728, +60,2014-01-13 21:06:57.440899,459,234,541, +20,2014-01-10 21:54:00.660609,793,754,95, +20,2014-01-11 15:57:27.41171,151,945,888, +20,2014-01-19 11:25:40.62333,934,139,146, +8,2014-01-17 00:45:43.122561,547,450,913, +20,2014-01-18 03:45:29.801209,282,996,329, +20,2014-01-11 10:36:00.577495,152,698,146, +20,2014-01-18 00:52:38.391714,95,138,821, +63,2014-01-18 00:08:23.312404,550,790,789, +1,2014-01-16 22:14:30.552245,527,196,64, +25,2014-01-18 02:09:30.43377,645,144,200, +63,2014-01-11 08:49:06.522229,729,799,501, +15,2014-01-18 08:00:47.811818,856,257,1000, +1,2014-01-13 05:45:17.571115,430,87,158, +82,2014-01-14 05:32:23.031625,847,722,113, +25,2014-01-19 04:37:15.396411,471,602,653, +25,2014-01-18 19:32:58.597248,385,486,206, +25,2014-01-21 01:10:29.315788,436,954,288, +63,2014-01-11 11:43:46.73302,111,359,799, +15,2014-01-16 18:33:32.39057,434,193,695, +15,2014-01-17 05:05:02.607418,225,551,896, +15,2014-01-16 03:41:25.711981,441,771,432, +63,2014-01-20 06:11:05.780523,622,278,326, +63,2014-01-20 19:28:48.888443,605,838,261, +82,2014-01-15 18:37:09.095544,412,352,73, +82,2014-01-20 19:11:02.157573,153,984,750, +15,2014-01-19 01:21:22.104449,398,797,824, +25,2014-01-19 13:06:23.241263,666,107,936, +15,2014-01-17 19:47:21.520972,118,680,456, +82,2014-01-15 20:31:47.907643,891,488,475, +1,2014-01-20 01:06:16.794278,956,354,713, +1,2014-01-20 20:54:18.962291,663,408,857, +63,2014-01-15 22:25:48.568252,998,461,643, +1,2014-01-20 21:03:44.205989,74,902,865, +1,2014-01-19 02:19:59.585621,799,467,435, +1,2014-01-11 17:11:31.691232,578,462,655, +1,2014-01-17 18:49:14.007199,654,78,447, +82,2014-01-19 16:56:00.163535,996,190,26, +1,2014-01-18 22:04:10.082946,698,100,851, +63,2014-01-14 12:57:37.319603,123,558,911, +15,2014-01-15 09:10:30.71578,568,14,997, +15,2014-01-15 18:13:40.516716,628,608,623, +82,2014-01-15 01:46:43.841832,563,43,617, +15,2014-01-12 11:11:18.527598,562,888,18, +82,2014-01-18 03:58:58.08783,639,696,674, +25,2014-01-18 11:19:06.873458,656,394,26, +25,2014-01-20 19:48:33.924428,215,555,704, +1,2014-01-15 17:31:56.685497,134,246,256, +25,2014-01-18 06:29:36.189666,309,28,933, +25,2014-01-11 01:32:20.657448,757,416,631, +25,2014-01-11 06:05:29.076067,252,506,256, +63,2014-01-14 05:34:38.797083,779,616,136, +82,2014-01-16 09:13:46.36943,138,273,171, +15,2014-01-20 16:16:34.857009,773,471,32, +25,2014-01-13 19:03:27.685945,665,937,572, +25,2014-01-10 21:50:55.465393,77,233,486, +63,2014-01-20 05:27:37.014582,102,910,524, +25,2014-01-11 14:24:49.790394,910,267,195, +25,2014-01-19 14:57:18.706655,262,99,494, +25,2014-01-16 19:14:58.535973,806,133,669, +25,2014-01-16 14:56:37.698455,300,76,188, +63,2014-01-18 10:03:35.500933,679,21,867, +15,2014-01-16 10:09:17.498264,891,446,934, +82,2014-01-11 07:22:26.266707,402,706,438, +1,2014-01-18 01:07:19.706922,828,683,139, +15,2014-01-14 06:29:17.083884,841,768,173, +15,2014-01-12 04:33:57.95794,881,943,236, +82,2014-01-14 13:56:33.714121,325,596,970, +1,2014-01-12 17:25:17.24742,362,851,574, +25,2014-01-20 06:38:08.040885,472,717,21, +63,2014-01-18 06:54:11.033724,678,60,527, +82,2014-01-17 06:35:47.9632,434,537,208, +82,2014-01-14 18:51:48.55802,815,497,928, +82,2014-01-12 02:40:54.875976,646,742,276, +1,2014-01-18 21:47:06.491217,919,99,452, +1,2014-01-11 16:50:46.64585,131,253,525, +25,2014-01-19 18:00:01.749434,960,24,373, +15,2014-01-18 11:35:40.415645,851,473,925, +82,2014-01-16 14:22:43.331347,987,594,724, +15,2014-01-16 18:29:37.939099,6,273,704, +15,2014-01-18 17:08:01.073093,471,213,72, +25,2014-01-17 00:28:12.407832,267,973,622, +1,2014-01-20 04:04:16.736601,283,354,282, +25,2014-01-13 20:21:47.442523,475,122,99, +63,2014-01-16 10:44:47.264842,294,650,461, +1,2014-01-12 17:07:44.422546,236,531,452, +1,2014-01-13 22:12:42.907916,560,381,926, +63,2014-01-15 10:12:24.279424,310,991,544, +15,2014-01-13 11:32:34.212941,895,250,936, +25,2014-01-12 07:10:01.61457,246,331,389, +63,2014-01-10 23:27:22.815397,704,96,371, +1,2014-01-19 06:29:11.911396,813,852,355, +82,2014-01-19 21:13:37.115503,79,967,839, +1,2014-01-16 13:36:40.31366,569,560,521, +15,2014-01-19 17:51:38.178522,452,923,534, +82,2014-01-16 16:20:56.822426,838,726,708, +1,2014-01-20 00:05:57.397965,810,439,462, +15,2014-01-21 02:25:36.136461,350,936,166, +82,2014-01-20 10:17:30.536547,967,930,949, +63,2014-01-11 11:31:14.645384,339,238,531, +82,2014-01-20 03:03:44.177766,938,352,687, +82,2014-01-17 11:11:41.57069,496,831,967, +82,2014-01-17 22:07:02.609003,845,396,492, +63,2014-01-13 15:55:32.735785,484,873,987, +63,2014-01-18 17:52:36.446666,597,263,834, +25,2014-01-15 13:54:09.10022,674,9,711, +63,2014-01-14 12:46:19.381635,313,117,236, +15,2014-01-17 05:52:38.1961,220,976,601, +82,2014-01-12 19:29:49.515866,500,814,40, +82,2014-01-20 07:09:02.713401,553,959,708, +63,2014-01-12 18:22:16.135618,120,329,912, +82,2014-01-20 16:37:50.588958,192,768,657, +1,2014-01-16 01:37:15.121233,483,26,529, +82,2014-01-11 16:26:32.872219,504,208,678, +82,2014-01-13 06:59:38.031481,8,55,439, +25,2014-01-11 06:22:02.386075,645,861,380, +15,2014-01-13 13:34:17.294766,86,562,59, +25,2014-01-16 09:12:20.939816,364,245,81, +15,2014-01-15 20:34:26.665499,473,267,806, +1,2014-01-16 05:06:51.507705,455,28,552, +82,2014-01-17 20:22:22.554385,283,678,801, +15,2014-01-16 00:01:49.481315,990,944,87, +25,2014-01-14 05:36:03.41952,632,941,466, +1,2014-01-16 11:35:59.670308,100,759,396, +25,2014-01-11 07:38:29.794975,129,311,898, +15,2014-01-12 17:27:41.598042,162,264,987, +1,2014-01-11 21:56:56.492734,632,366,10, +1,2014-01-20 11:44:27.19294,825,407,142, +25,2014-01-12 13:53:17.734503,464,39,539, +25,2014-01-11 02:14:27.0297,609,861,893, +63,2014-01-21 03:15:41.838743,353,171,240, +1,2014-01-11 10:57:01.912268,638,87,312, +82,2014-01-17 17:26:08.600391,172,586,289, +1,2014-01-17 19:22:44.447746,974,411,670, +25,2014-01-14 06:52:34.648054,810,396,418, +25,2014-01-15 05:18:45.047056,804,403,306, +1,2014-01-12 03:16:53.547966,854,743,862, +82,2014-01-17 23:38:54.030108,684,86,181, +15,2014-01-11 05:11:23.243156,267,372,148, +25,2014-01-14 02:46:43.063831,300,763,396, +15,2014-01-17 00:47:56.743509,815,178,884, +82,2014-01-13 03:33:39.378774,417,755,236, +1,2014-01-13 13:24:33.65279,291,251,343, +63,2014-01-11 20:25:11.864743,319,407,457, +63,2014-01-14 00:00:12.250993,637,159,470, +15,2014-01-16 00:24:11.684271,19,938,703, +25,2014-01-12 06:47:14.250818,202,843,140, +1,2014-01-16 17:34:29.545758,503,57,695, +15,2014-01-11 03:36:32.624085,88,585,986, +25,2014-01-17 07:21:40.916316,851,336,473, +15,2014-01-11 16:41:21.053883,274,502,388, +82,2014-01-18 03:58:55.178891,481,759,889, +63,2014-01-12 01:23:30.39763,667,904,752, +82,2014-01-15 02:17:24.473403,211,147,525, +82,2014-01-13 09:34:54.849199,340,74,371, +82,2014-01-12 13:02:00.193025,161,211,842, +82,2014-01-16 23:45:06.071445,72,444,997, +82,2014-01-14 11:31:51.341932,546,920,163, +82,2014-01-11 18:46:27.385964,657,197,777, +25,2014-01-18 17:38:23.805948,21,741,136, +82,2014-01-14 17:46:18.371633,926,787,301, +25,2014-01-11 16:02:09.224706,438,502,662, +25,2014-01-19 08:35:25.718635,927,292,653, +15,2014-01-11 05:12:26.972023,996,165,405, +25,2014-01-18 15:24:53.672452,932,894,666, +1,2014-01-12 09:28:00.366689,471,245,174, +25,2014-01-15 14:31:12.019079,890,823,737, +1,2014-01-19 22:41:47.220418,347,379,21, +82,2014-01-19 13:06:54.396797,624,194,64, +82,2014-01-15 23:42:35.262654,464,74,220, +1,2014-01-12 19:28:30.284249,924,938,250, +82,2014-01-15 07:54:51.140306,597,233,603, +63,2014-01-18 07:16:14.641428,589,713,987, +1,2014-01-15 12:53:03.937039,624,825,842, +1,2014-01-16 08:20:03.005049,906,596,105, +82,2014-01-11 01:16:26.89284,975,887,83, +25,2014-01-20 17:17:15.621728,807,413,221, +1,2014-01-17 19:07:17.255866,820,340,571, +1,2014-01-16 22:50:56.438598,104,769,185, +15,2014-01-21 00:53:48.245814,14,562,153, +82,2014-01-13 20:28:58.172601,893,341,279, +82,2014-01-17 19:32:17.492481,943,634,174, +1,2014-01-17 22:52:43.424704,719,843,915, +1,2014-01-15 01:52:28.570231,868,10,811, +1,2014-01-11 15:49:41.965885,219,603,243, +15,2014-01-20 12:27:38.273903,629,356,431, +82,2014-01-16 18:54:28.763256,854,275,574, +25,2014-01-17 19:34:48.03733,237,743,453, +82,2014-01-13 17:59:29.616255,874,900,974, +15,2014-01-17 17:40:56.14964,780,452,970, +63,2014-01-15 07:13:11.843697,274,793,285, +63,2014-01-17 15:45:47.987888,737,649,14, +82,2014-01-18 13:43:05.374346,292,797,21, +25,2014-01-13 09:48:37.562331,246,521,163, +82,2014-01-18 00:58:14.960329,638,648,568, +1,2014-01-15 23:07:59.047218,594,779,885, +1,2014-01-14 23:16:37.92902,645,371,186, +63,2014-01-12 09:29:26.979408,129,607,618, +15,2014-01-14 15:49:46.267635,888,824,6, +15,2014-01-13 06:23:32.326236,355,324,776, +25,2014-01-17 13:12:02.242063,523,913,550, +15,2014-01-16 15:18:16.552303,439,805,490, +82,2014-01-17 18:18:23.466542,122,189,637, +15,2014-01-14 14:28:16.883909,648,66,703, +1,2014-01-10 22:11:20.489342,919,918,467, +1,2014-01-12 20:38:26.472009,524,997,625, +25,2014-01-14 19:44:43.776749,178,43,232, +63,2014-01-20 19:28:36.11107,567,120,81, +1,2014-01-19 19:45:43.727876,518,933,603, +15,2014-01-20 22:35:40.215348,754,97,892, +82,2014-01-20 14:22:24.357303,243,679,701, +15,2014-01-12 10:14:41.900477,128,61,75, +25,2014-01-17 12:07:57.708248,740,804,664, +63,2014-01-17 07:15:07.782007,257,402,164, +15,2014-01-16 16:07:10.471128,414,50,498, +1,2014-01-18 07:57:39.674133,304,755,155, +63,2014-01-16 13:42:46.056329,64,956,825, +25,2014-01-12 05:01:39.234384,57,910,766, +63,2014-01-14 21:32:27.711882,604,549,913, +15,2014-01-19 11:42:15.672583,481,732,649, +25,2014-01-19 02:42:35.384024,298,231,929, +15,2014-01-19 08:45:39.555579,278,946,397, +1,2014-01-15 21:28:03.660472,326,739,806, +63,2014-01-16 10:25:40.758789,200,404,768, +15,2014-01-11 12:34:17.11791,539,868,179, +63,2014-01-12 16:26:18.620801,378,45,118, +82,2014-01-11 03:33:39.806006,659,42,942, +1,2014-01-15 15:50:55.046931,443,623,389, +63,2014-01-14 05:55:45.600629,47,465,678, +25,2014-01-14 23:23:26.073642,200,860,1, +82,2014-01-18 02:14:27.373167,903,513,301, +25,2014-01-20 23:07:47.842692,147,830,805, +63,2014-01-20 18:41:42.625945,448,96,903, +82,2014-01-14 14:32:50.840128,33,347,238, +1,2014-01-14 07:36:04.726601,834,71,845, +1,2014-01-20 20:53:03.115706,928,191,850, +82,2014-01-16 15:11:17.312138,168,656,941, +25,2014-01-18 07:20:48.50335,209,769,196, +82,2014-01-20 10:21:39.226776,960,227,141, +1,2014-01-15 04:57:01.040014,900,729,3, +25,2014-01-17 23:56:28.719117,114,579,984, +63,2014-01-19 18:44:03.584078,655,973,945, +1,2014-01-16 19:11:42.94091,868,16,624, +1,2014-01-14 06:04:26.427366,969,908,605, +63,2014-01-15 19:59:11.366504,892,210,344, +25,2014-01-12 05:18:53.412038,624,695,430, +82,2014-01-11 08:02:06.101499,935,494,611, +63,2014-01-11 03:41:57.422833,184,185,331, +82,2014-01-13 14:20:32.646422,659,442,359, +1,2014-01-15 09:34:33.813381,885,155,37, +1,2014-01-19 19:24:13.095418,695,170,206, +15,2014-01-11 11:03:08.030865,779,36,208, +15,2014-01-13 12:20:13.36896,353,521,194, +63,2014-01-14 10:52:16.755889,779,171,427, +82,2014-01-17 01:28:48.789654,400,42,612, +1,2014-01-14 04:54:30.486871,870,192,583, +25,2014-01-16 07:18:35.377109,422,655,274, +1,2014-01-17 09:02:28.59566,14,231,253, +25,2014-01-19 00:45:25.534221,332,613,992, +82,2014-01-19 17:14:20.977738,245,350,113, +82,2014-01-11 02:25:54.669302,871,330,268, +63,2014-01-15 20:59:52.907388,713,177,745, +1,2014-01-19 10:22:08.820429,22,411,822, +25,2014-01-21 01:07:37.295666,972,867,274, +82,2014-01-19 15:32:43.747516,982,251,444, +63,2014-01-12 11:58:13.547449,443,303,297, +1,2014-01-20 16:00:40.411372,400,756,924, +25,2014-01-15 00:44:01.059654,356,33,207, +1,2014-01-19 23:19:02.050799,698,767,677, +1,2014-01-19 20:22:19.638147,149,864,321, +63,2014-01-19 09:41:02.100086,255,227,659, +82,2014-01-16 17:15:30.769917,807,250,360, +63,2014-01-18 09:06:23.222645,287,226,439, +82,2014-01-14 22:52:45.040997,192,8,19, +82,2014-01-20 03:19:57.197281,532,381,786, +15,2014-01-12 23:05:34.589149,865,583,356, +82,2014-01-16 08:11:38.453034,368,128,588, +63,2014-01-20 15:22:03.299199,409,555,893, +1,2014-01-13 06:47:32.011983,998,617,184, +63,2014-01-19 02:32:11.099456,774,998,166, +1,2014-01-14 18:56:37.11258,419,566,529, +25,2014-01-11 20:11:45.107401,629,755,83, +1,2014-01-19 17:35:19.130322,783,984,538, +1,2014-01-17 11:16:50.481959,273,133,513, +25,2014-01-15 11:04:01.86329,788,614,758, +25,2014-01-15 13:04:07.919976,676,831,770, +15,2014-01-20 20:11:20.96883,989,74,443, +1,2014-01-20 22:22:37.240399,438,717,447, +63,2014-01-11 16:06:36.515635,145,92,645, +63,2014-01-18 14:56:46.503051,217,459,857, +63,2014-01-19 09:36:58.218136,517,515,57, +1,2014-01-11 22:32:31.185356,581,882,696, +82,2014-01-13 05:56:39.410858,379,778,850, +82,2014-01-17 13:59:07.038985,685,5,528, +63,2014-01-11 17:40:08.481022,776,517,453, +15,2014-01-11 15:29:23.158374,44,307,70, +1,2014-01-19 05:57:20.586434,910,444,821, +82,2014-01-11 03:40:48.892394,116,741,466, +63,2014-01-15 20:13:24.218447,385,100,1, +15,2014-01-17 23:16:22.637233,377,728,160, +82,2014-01-20 04:03:08.530541,487,791,611, +1,2014-01-13 23:54:26.318533,583,978,899, +15,2014-01-13 10:31:53.407569,75,793,603, +63,2014-01-17 07:09:31.753185,672,47,2, +25,2014-01-18 02:47:11.35953,515,778,844, +25,2014-01-12 07:51:50.604851,811,622,244, +63,2014-01-19 10:15:06.342334,643,305,913, +82,2014-01-13 04:58:49.812565,688,990,875, +25,2014-01-11 17:13:53.90405,890,216,718, +1,2014-01-11 11:02:38.354318,240,853,887, +1,2014-01-11 01:31:00.912021,978,360,749, +15,2014-01-15 16:10:31.017049,778,543,134, +63,2014-01-12 11:14:23.461719,845,14,555, +25,2014-01-19 23:06:20.042761,350,68,608, +63,2014-01-11 21:27:21.499009,851,803,805, +15,2014-01-17 02:18:25.325427,923,277,398, +25,2014-01-14 06:10:27.962738,48,376,628, +15,2014-01-11 11:38:42.46784,475,831,854, +1,2014-01-16 18:41:02.565825,604,62,930, +1,2014-01-15 02:17:04.478793,103,317,402, +63,2014-01-19 06:35:28.971309,360,146,327, +82,2014-01-14 22:18:00.784381,521,609,887, +82,2014-01-16 04:49:35.664149,27,400,652, +15,2014-01-11 06:32:08.382168,37,772,18, +15,2014-01-11 06:17:07.823367,416,164,982, +1,2014-01-17 02:29:44.145171,813,383,986, +63,2014-01-12 02:01:31.540542,987,53,682, +1,2014-01-19 16:14:28.409801,415,783,124, +63,2014-01-17 10:10:33.037565,726,822,25, +82,2014-01-17 02:14:55.758989,20,711,40, +25,2014-01-16 09:30:51.047034,899,167,594, +1,2014-01-16 08:13:41.568104,592,837,745, +15,2014-01-20 06:09:22.077522,450,917,396, +15,2014-01-19 00:02:44.454603,164,207,917, +15,2014-01-12 09:23:13.321709,479,391,294, +82,2014-01-17 02:56:33.437052,271,750,132, +63,2014-01-20 11:54:35.059873,483,843,515, +25,2014-01-20 23:38:19.664044,145,503,101, +82,2014-01-19 11:55:23.249617,307,856,2, +25,2014-01-10 23:08:28.963923,918,819,572, +15,2014-01-11 04:40:58.01878,432,174,18, +25,2014-01-19 17:26:24.162057,721,39,624, +82,2014-01-15 19:18:59.980972,442,398,846, +1,2014-01-12 19:55:21.480499,73,304,467, +15,2014-01-18 10:32:44.204819,967,754,233, +25,2014-01-16 20:46:21.479981,390,627,562, +25,2014-01-19 02:13:46.805926,802,140,925, +15,2014-01-11 10:43:12.167556,759,521,860, +25,2014-01-17 12:25:03.94824,938,759,169, +25,2014-01-14 14:54:49.372171,631,510,213, +15,2014-01-15 17:00:16.646349,726,632,493, +25,2014-01-15 13:00:32.919549,752,330,973, +82,2014-01-18 17:12:50.156551,48,172,250, +82,2014-01-21 01:49:52.310498,48,911,300, +15,2014-01-15 23:32:41.301717,163,147,906, +1,2014-01-19 03:29:57.979918,869,858,877, +15,2014-01-16 22:19:36.455669,775,494,305, +15,2014-01-17 05:34:12.842258,891,818,758, +15,2014-01-17 13:44:26.389719,905,673,754, +63,2014-01-13 02:30:09.493233,381,375,758, +25,2014-01-13 01:49:08.601666,247,571,269, +25,2014-01-12 17:15:17.436752,89,232,983, +82,2014-01-18 14:43:51.061756,627,8,154, +82,2014-01-12 01:58:30.679188,580,996,93, +63,2014-01-20 21:18:01.891775,894,42,911, +82,2014-01-20 04:07:04.383466,707,97,899, +15,2014-01-18 08:55:04.116659,157,696,508, +1,2014-01-20 03:12:36.951648,664,39,134, +1,2014-01-19 21:45:24.047509,226,860,581, +63,2014-01-16 14:50:27.366276,983,432,740, +82,2014-01-20 06:21:05.915571,888,864,891, +25,2014-01-20 06:26:22.06629,756,698,566, +25,2014-01-15 02:16:51.528333,580,819,622, +25,2014-01-14 19:40:05.896961,782,478,730, +63,2014-01-11 20:21:43.547207,810,539,593, +25,2014-01-12 06:49:35.733152,279,59,327, +15,2014-01-20 20:26:27.376943,370,132,619, +15,2014-01-20 02:35:30.353133,419,533,667, +15,2014-01-12 21:32:47.901128,608,77,661, +25,2014-01-17 02:51:31.325182,813,855,381, +15,2014-01-13 11:30:19.725304,975,739,417, +1,2014-01-17 18:33:04.547477,523,71,164, +15,2014-01-11 09:52:04.244731,711,219,387, +25,2014-01-10 22:43:09.881855,517,5,175, +1,2014-01-17 14:22:56.858394,488,82,429, +25,2014-01-16 13:24:45.546449,938,502,835, +82,2014-01-19 06:13:07.861773,887,625,941, +1,2014-01-13 06:42:33.314063,224,503,653, +82,2014-01-12 12:58:58.389126,551,369,636, +63,2014-01-15 13:57:34.251492,682,801,193, +82,2014-01-15 13:12:42.807715,674,127,337, +82,2014-01-14 18:48:06.990792,842,564,304, +15,2014-01-17 11:12:51.688663,671,543,734, +25,2014-01-12 21:56:33.869471,68,710,243, +15,2014-01-16 00:46:37.669979,176,880,17, +15,2014-01-17 02:30:53.580438,504,508,269, +63,2014-01-11 20:03:38.252936,50,61,689, +1,2014-01-13 03:41:41.786639,892,226,927, +1,2014-01-15 23:43:30.532085,95,788,933, +25,2014-01-20 21:49:02.300446,654,157,985, +63,2014-01-18 22:32:09.153333,849,243,641, +15,2014-01-15 00:04:36.447655,180,3,34, +82,2014-01-19 22:15:24.367155,946,35,178, +25,2014-01-12 18:49:00.681666,280,910,686, +25,2014-01-18 23:44:42.344618,411,865,937, +25,2014-01-20 22:37:07.914362,870,789,396, +25,2014-01-14 05:38:36.415236,125,813,561, +82,2014-01-18 14:11:09.721979,81,252,24, +15,2014-01-19 19:12:38.267496,677,531,318, +25,2014-01-16 07:11:24.316365,897,53,893, +25,2014-01-14 11:02:41.047161,624,882,698, +25,2014-01-12 00:42:57.993219,244,932,829, +25,2014-01-12 19:44:28.863842,663,288,205, +1,2014-01-15 00:54:45.292313,237,78,843, +82,2014-01-12 03:26:07.875074,389,598,527, +82,2014-01-19 14:07:25.722235,32,122,899, +25,2014-01-20 18:19:30.838761,934,612,978, +63,2014-01-20 13:39:15.737266,512,76,738, +25,2014-01-11 14:49:59.036717,181,467,805, +25,2014-01-12 01:18:29.227886,864,623,981, +25,2014-01-14 21:36:49.988757,640,494,169, +25,2014-01-16 08:02:41.844431,819,739,917, +63,2014-01-16 00:06:36.218678,354,259,52, +1,2014-01-11 02:49:41.67742,136,342,117, +15,2014-01-18 09:59:15.713903,968,111,158, +82,2014-01-21 04:53:13.889077,750,996,945, +82,2014-01-17 09:20:35.257857,987,973,299, +15,2014-01-19 10:02:53.96684,419,824,554, +82,2014-01-13 02:34:55.675715,373,836,663, +82,2014-01-12 03:04:05.789943,859,474,553, +25,2014-01-19 01:51:56.267285,157,649,553, +82,2014-01-21 05:07:04.829048,964,270,142, +25,2014-01-16 07:08:42.238018,686,969,284, +25,2014-01-17 18:07:20.634441,965,459,369, +63,2014-01-12 17:56:05.511132,131,453,310, +25,2014-01-14 00:53:24.582635,889,944,879, +82,2014-01-17 10:44:28.548803,826,642,197, +1,2014-01-16 03:34:41.92637,677,315,400, +25,2014-01-11 09:04:34.304615,624,961,363, +15,2014-01-15 23:57:06.816718,103,664,705, +1,2014-01-11 04:46:06.242734,258,155,413, +1,2014-01-15 00:07:15.352195,771,899,8, +63,2014-01-17 04:40:04.809936,289,904,642, +63,2014-01-13 04:30:35.106575,223,432,689, +1,2014-01-19 05:02:00.644507,810,914,686, +82,2014-01-18 12:06:12.68501,178,31,26, +63,2014-01-11 12:38:00.82923,266,318,731, +25,2014-01-18 17:21:31.483269,155,877,543, +25,2014-01-17 19:45:28.422276,595,866,928, +1,2014-01-12 07:27:59.865947,636,153,891, +82,2014-01-19 22:40:00.711574,496,754,842, +25,2014-01-11 11:22:18.411452,908,746,513, +82,2014-01-17 19:30:41.710378,931,163,552, +63,2014-01-14 16:46:36.930253,885,428,249, +1,2014-01-11 18:12:00.088872,1,518,447, +82,2014-01-14 23:29:57.424281,44,264,589, +15,2014-01-14 15:39:50.819329,26,250,470, +82,2014-01-18 07:32:35.347149,694,12,63, +82,2014-01-13 03:32:51.391121,432,63,202, +25,2014-01-16 22:14:46.495464,97,599,176, +63,2014-01-19 14:36:41.137092,357,31,295, +1,2014-01-10 23:24:47.658406,777,936,924, +1,2014-01-16 21:21:51.32451,794,52,985, +82,2014-01-14 15:45:23.375109,25,214,251, +15,2014-01-17 21:32:08.293266,598,258,535, +82,2014-01-18 19:17:56.835643,556,358,380, +82,2014-01-17 20:38:47.958164,928,514,964, +1,2014-01-14 02:16:36.842069,696,188,49, +15,2014-01-13 16:52:38.762012,408,613,616, +82,2014-01-18 09:43:22.262778,94,533,921, +15,2014-01-19 06:13:43.658786,592,130,365, +25,2014-01-14 01:38:45.004747,376,28,298, +15,2014-01-12 03:50:37.614973,849,293,679, +15,2014-01-15 04:53:48.468722,5,319,167, +63,2014-01-16 10:09:20.111741,874,274,821, +15,2014-01-20 12:52:38.25948,516,382,191, +63,2014-01-12 11:00:01.154151,793,717,553, +15,2014-01-17 02:47:20.940971,899,252,741, +82,2014-01-18 00:14:09.743168,243,770,629, +1,2014-01-19 10:45:29.576427,80,361,37, +25,2014-01-18 14:15:20.806918,773,458,979, +63,2014-01-16 16:54:10.454743,359,944,278, +82,2014-01-20 02:07:47.987879,687,98,363, +25,2014-01-15 03:46:02.517297,411,548,445, +82,2014-01-20 13:40:47.384995,190,812,720, +25,2014-01-21 00:19:48.077171,922,404,544, +25,2014-01-19 07:15:59.941578,931,961,861, +1,2014-01-13 23:20:38.204744,642,728,801, +15,2014-01-18 01:52:23.42432,10,627,157, +1,2014-01-11 04:48:51.332699,518,628,661, +15,2014-01-20 01:35:24.700207,916,1,820, +25,2014-01-16 10:29:04.561411,291,752,197, +1,2014-01-11 08:13:38.991105,758,75,556, +63,2014-01-15 16:57:16.024718,985,248,677, +15,2014-01-20 06:14:27.936941,216,75,272, +63,2014-01-18 09:45:47.284371,410,780,113, +63,2014-01-13 06:15:12.86078,891,177,567, +15,2014-01-16 20:53:15.895104,992,900,675, +25,2014-01-11 06:02:24.126858,9,732,525, +63,2014-01-16 03:07:51.622793,830,59,748, +82,2014-01-14 00:36:38.157882,114,32,124, +63,2014-01-19 16:16:07.785645,180,704,368, +15,2014-01-19 08:46:36.627957,676,71,550, +63,2014-01-15 08:27:15.773274,557,288,775, +15,2014-01-13 15:09:56.254785,448,94,465, +63,2014-01-14 12:55:56.739699,714,953,27, +63,2014-01-14 15:19:54.032754,669,664,310, +82,2014-01-15 06:09:57.408936,325,643,83, +15,2014-01-20 19:43:17.68067,563,232,824, +82,2014-01-11 09:34:03.775923,520,127,744, +63,2014-01-13 10:55:26.985364,799,616,722, +63,2014-01-18 03:58:38.487588,935,683,704, +63,2014-01-17 06:28:14.230665,93,881,29, +63,2014-01-12 07:03:14.973662,56,366,260, +25,2014-01-12 01:44:41.004884,902,604,719, +15,2014-01-16 14:09:01.616079,218,61,359, +25,2014-01-12 01:23:03.050833,756,650,205, +25,2014-01-20 13:00:40.946462,179,760,16, +25,2014-01-19 17:29:39.820823,787,649,233, +1,2014-01-19 07:15:26.475153,887,374,601, +15,2014-01-20 21:49:32.27916,235,350,9, +63,2014-01-18 13:05:04.52103,106,142,217, +15,2014-01-14 11:44:31.036565,923,734,175, +15,2014-01-11 00:03:11.270266,591,505,901, +1,2014-01-13 00:02:20.545748,796,661,94, +25,2014-01-13 11:58:58.973505,592,476,889, +15,2014-01-18 13:48:58.555056,644,901,249, +82,2014-01-15 10:17:33.406527,114,832,804, +15,2014-01-19 12:52:14.868609,807,1,970, +63,2014-01-18 23:51:22.681915,376,363,737, +25,2014-01-20 17:25:25.029739,14,23,924, +1,2014-01-12 07:28:53.02691,591,159,259, +63,2014-01-17 10:07:30.467559,154,66,643, +15,2014-01-18 20:12:01.657697,412,56,505, +25,2014-01-16 19:56:08.800184,795,648,245, +25,2014-01-20 05:17:26.722345,794,651,494, +1,2014-01-12 03:07:58.397395,616,5,961, +15,2014-01-20 15:16:02.832939,929,661,192, +15,2014-01-14 05:27:24.131282,494,761,536, +1,2014-01-11 16:51:16.078065,837,127,915, +63,2014-01-21 04:50:06.60928,496,715,170, +82,2014-01-16 20:22:51.117065,288,950,877, +1,2014-01-19 00:49:54.565652,178,310,191, +15,2014-01-17 05:18:20.839945,342,964,194, +82,2014-01-18 07:26:06.090727,229,302,649, +1,2014-01-20 06:34:35.570536,989,669,559, +25,2014-01-12 13:27:22.456025,277,114,425, +15,2014-01-19 12:49:09.14156,67,797,931, +1,2014-01-19 13:35:16.516998,701,771,571, +63,2014-01-11 00:57:02.276848,905,520,687, +15,2014-01-17 14:04:35.616714,727,578,455, +1,2014-01-19 05:24:48.796159,188,149,737, +1,2014-01-18 18:02:06.797877,274,994,518, +82,2014-01-21 05:49:06.653279,120,289,226, +25,2014-01-19 09:28:00.066425,817,579,608, +1,2014-01-20 22:04:27.344044,315,626,781, +1,2014-01-13 11:48:05.627203,285,729,33, +63,2014-01-16 17:16:58.621481,715,688,978, +63,2014-01-15 02:22:00.750571,782,788,147, +63,2014-01-11 18:40:20.495813,918,40,794, +1,2014-01-14 11:08:21.303397,178,615,421, +82,2014-01-14 13:47:25.780309,179,912,990, +25,2014-01-13 06:09:13.522724,69,739,973, +88,2014-01-21 01:15:51.771375,136,912,16, +88,2014-01-12 03:59:27.438006,374,744,129, +88,2014-01-19 06:05:22.322908,879,599,134, +88,2014-01-20 00:33:18.49372,711,242,55, +31,2014-01-13 11:07:25.835401,64,650,605, +88,2014-01-18 15:21:25.156266,281,434,86, +31,2014-01-13 00:00:42.625421,586,939,863, +31,2014-01-14 07:58:41.913466,941,161,362, +31,2014-01-18 14:11:31.765547,103,74,87, +31,2014-01-19 00:23:33.742486,856,780,835, +88,2014-01-12 02:48:36.479118,617,784,801, +88,2014-01-14 13:29:52.605492,939,847,235, +31,2014-01-16 01:49:39.833214,96,121,207, +31,2014-01-11 03:23:12.049654,370,112,670, +88,2014-01-16 06:57:15.061935,748,994,62, +31,2014-01-14 08:38:48.974775,321,362,961, +31,2014-01-19 20:58:28.566653,608,453,139, +31,2014-01-16 11:54:17.338782,250,139,896, +31,2014-01-21 02:43:24.591489,272,501,908, +88,2014-01-17 20:23:17.362812,923,776,189, +31,2014-01-13 23:56:24.137079,579,443,534, +31,2014-01-21 02:32:31.244768,874,892,962, +88,2014-01-15 23:51:17.429656,466,678,936, +88,2014-01-13 16:00:51.481123,925,374,837, +88,2014-01-13 08:20:36.871971,93,345,434, +88,2014-01-11 11:08:16.051139,889,535,170, +88,2014-01-17 22:22:52.231694,600,886,430, +31,2014-01-14 07:00:57.368203,60,732,998, +88,2014-01-15 02:16:37.354954,742,19,949, +88,2014-01-11 06:10:18.012423,74,480,72, +88,2014-01-16 17:10:10.890926,412,926,1, +31,2014-01-14 21:32:29.126328,367,798,504, +31,2014-01-12 14:09:45.450429,529,378,467, +31,2014-01-14 17:15:33.214253,625,476,491, +88,2014-01-13 16:05:47.620048,430,443,934, +31,2014-01-15 05:17:11.286249,699,871,251, +31,2014-01-12 02:36:58.37052,679,63,886, +88,2014-01-15 20:06:30.24547,509,425,920, +88,2014-01-18 17:15:53.199715,421,309,720, +88,2014-01-19 20:48:30.136066,765,486,492, +88,2014-01-13 14:30:03.987955,675,843,615, +31,2014-01-20 00:04:29.679252,603,657,156, +88,2014-01-13 04:18:22.741557,640,126,551, +88,2014-01-18 20:19:43.821169,743,445,295, +31,2014-01-20 07:27:41.728906,52,931,530, +88,2014-01-18 15:15:37.803493,766,397,960, +31,2014-01-11 22:58:32.795944,331,146,521, +88,2014-01-18 22:26:10.295979,328,57,634, +31,2014-01-13 21:09:55.142695,549,812,950, +88,2014-01-11 19:41:57.387432,651,686,12, +88,2014-01-15 12:49:27.658791,730,927,337, +31,2014-01-17 01:06:19.279774,320,503,254, +88,2014-01-11 16:14:28.632619,327,680,47, +31,2014-01-20 16:40:45.088448,917,440,54, +88,2014-01-19 21:07:10.760897,420,461,77, +88,2014-01-14 04:35:05.50459,301,745,376, +31,2014-01-10 21:49:01.140005,352,670,50, +31,2014-01-16 13:30:02.992591,37,361,785, +88,2014-01-17 15:36:02.872792,982,452,536, +31,2014-01-15 04:05:38.494958,729,906,627, +31,2014-01-16 23:40:21.005014,506,26,599, +31,2014-01-13 02:46:13.764138,945,163,247, +31,2014-01-19 05:38:07.621287,295,285,134, +88,2014-01-18 17:50:06.455861,130,157,551, +88,2014-01-17 00:01:46.978391,53,666,813, +31,2014-01-11 15:43:55.241335,496,820,681, +88,2014-01-12 17:07:17.74211,586,332,564, +31,2014-01-18 06:38:45.34891,893,497,505, +88,2014-01-16 15:50:25.487224,723,44,154, +88,2014-01-20 14:23:10.941825,674,319,467, +31,2014-01-16 21:27:15.484977,453,97,383, +88,2014-01-19 10:20:29.475179,281,819,875, +88,2014-01-19 08:27:40.621077,935,92,743, +88,2014-01-19 05:45:38.226534,249,344,489, +31,2014-01-17 00:40:13.296768,631,981,491, +31,2014-01-18 09:55:22.350403,509,529,220, +88,2014-01-16 15:01:16.030447,116,517,875, +88,2014-01-18 03:38:46.09271,246,685,794, +31,2014-01-16 02:21:32.646381,303,295,752, +88,2014-01-19 16:11:11.173142,174,635,842, +31,2014-01-19 03:20:43.480561,855,201,698, +88,2014-01-20 19:11:00.305173,100,299,166, +31,2014-01-15 11:17:30.452916,455,883,409, +31,2014-01-19 23:35:12.11318,459,826,121, +31,2014-01-20 05:51:45.39404,569,802,508, +88,2014-01-14 02:24:41.213813,9,210,231, +31,2014-01-12 22:10:17.617769,545,790,779, +88,2014-01-20 07:40:46.534045,165,389,876, +88,2014-01-19 19:54:44.206403,975,423,106, +31,2014-01-19 17:46:20.49098,699,374,873, +31,2014-01-14 05:46:25.029003,57,278,269, +88,2014-01-15 13:35:05.211836,547,57,336, +88,2014-01-11 14:32:34.255118,17,873,928, +31,2014-01-12 05:24:32.650291,78,579,648, +31,2014-01-13 01:25:11.667698,986,611,519, +88,2014-01-17 18:34:21.233509,650,524,995, +88,2014-01-13 01:08:27.891626,10,397,949, +88,2014-01-14 22:32:29.409808,996,118,332, +88,2014-01-14 19:13:06.58242,839,826,761, +88,2014-01-18 20:58:53.37885,493,855,512, +31,2014-01-14 06:55:40.351633,309,535,670, +88,2014-01-20 20:40:22.067396,804,336,834, +31,2014-01-17 01:19:22.854448,216,547,979, +31,2014-01-12 09:23:20.973129,730,345,174, +88,2014-01-18 20:26:00.293931,209,426,137, +31,2014-01-12 19:59:36.151216,272,728,971, +88,2014-01-19 23:18:43.323532,669,16,830, +31,2014-01-14 05:27:16.324377,298,65,186, +88,2014-01-20 03:38:22.243926,344,312,633, +31,2014-01-14 19:40:15.969914,464,305,94, +88,2014-01-12 15:38:27.497519,804,726,903, +31,2014-01-18 00:59:05.724489,677,380,127, +31,2014-01-14 08:51:16.275086,482,45,772, +31,2014-01-17 06:55:57.950434,51,981,889, +88,2014-01-16 18:34:17.837668,763,744,154, +31,2014-01-13 08:43:01.669126,733,125,67, +31,2014-01-20 13:20:39.164247,475,444,847, +31,2014-01-18 20:44:35.455856,330,479,528, +88,2014-01-12 10:23:48.20317,842,790,163, +88,2014-01-19 03:15:23.37107,812,579,963, +31,2014-01-17 08:30:55.946836,673,188,73, +88,2014-01-15 20:10:13.232173,169,567,183, +31,2014-01-13 10:50:28.582905,784,892,437, +88,2014-01-18 03:03:30.201954,567,758,673, +31,2014-01-17 05:34:45.882464,831,654,454, +88,2014-01-15 16:15:40.250603,517,246,443, +88,2014-01-14 15:37:51.435464,103,342,135, +31,2014-01-19 10:43:13.774508,138,272,725, +88,2014-01-19 18:48:09.660411,988,690,479, +88,2014-01-18 14:50:58.017883,344,441,703, +88,2014-01-17 01:42:07.153358,13,717,319, +31,2014-01-12 19:43:50.012044,365,572,124, +88,2014-01-18 05:31:20.085279,45,631,908, +88,2014-01-12 21:01:30.007806,347,929,306, +31,2014-01-14 09:07:10.985173,887,215,840, +31,2014-01-15 19:57:20.37921,673,439,381, +31,2014-01-14 21:01:06.159022,406,422,131, +88,2014-01-13 02:25:54.308705,215,617,899, +88,2014-01-19 05:24:36.704006,753,872,322, +31,2014-01-13 18:39:28.403368,707,560,982, +88,2014-01-17 02:06:10.278619,77,942,775, +88,2014-01-21 01:03:04.201526,948,395,183, +31,2014-01-20 23:38:34.127856,555,601,532, +88,2014-01-20 14:57:26.554125,266,457,800, +31,2014-01-17 01:59:02.152379,541,83,296, +31,2014-01-16 12:12:51.965943,911,295,184, +31,2014-01-12 17:40:28.22325,281,174,335, +31,2014-01-16 09:19:41.316626,697,260,638, +88,2014-01-14 02:57:27.421799,783,173,927, +31,2014-01-14 08:04:16.42684,660,876,237, +31,2014-01-14 06:35:04.687696,387,310,579, +88,2014-01-20 15:28:23.368635,858,160,104, +88,2014-01-19 08:14:29.659013,780,641,715, +31,2014-01-16 21:25:33.270601,539,583,135, +88,2014-01-17 12:31:53.570591,74,490,551, +31,2014-01-15 07:49:15.541895,923,749,541, +31,2014-01-11 07:41:13.521204,650,710,238, +31,2014-01-10 22:09:45.006054,230,415,384, +31,2014-01-13 12:32:29.316403,80,110,525, +88,2014-01-20 06:29:23.181616,627,471,368, +31,2014-01-18 17:00:43.023936,410,536,807, +88,2014-01-19 18:14:36.469761,325,691,357, +31,2014-01-11 20:13:13.194078,400,120,907, +88,2014-01-15 16:32:03.109217,753,804,935, +31,2014-01-11 09:16:06.477987,617,307,284, +31,2014-01-15 09:20:24.179251,238,154,553, +88,2014-01-20 16:29:23.488426,325,770,117, +88,2014-01-15 10:17:12.637009,967,41,940, +31,2014-01-17 15:46:18.488376,195,759,727, +31,2014-01-18 15:54:00.192433,724,593,632, +88,2014-01-18 08:56:41.040377,332,599,379, +31,2014-01-13 11:52:28.766995,695,895,401, +31,2014-01-18 10:57:04.394378,871,2,921, +87,2014-01-18 02:35:15.168652,994,428,467, +26,2014-01-12 20:49:55.32112,7,541,890, +94,2014-01-14 06:56:06.546757,194,889,939, +87,2014-01-13 08:48:07.134595,321,631,961, +79,2014-01-14 18:30:23.54479,930,621,208, +24,2014-01-19 20:15:47.863383,32,138,958, +87,2014-01-16 15:45:34.556394,352,603,222, +24,2014-01-18 06:34:39.971629,908,603,348, +33,2014-01-12 20:50:52.551498,261,163,898, +87,2014-01-16 01:13:57.92503,286,684,118, +79,2014-01-16 08:49:09.630642,842,615,415, +87,2014-01-18 22:16:25.822099,678,298,190, +87,2014-01-12 07:45:51.49562,305,284,253, +79,2014-01-20 20:38:25.172536,774,73,586, +26,2014-01-19 09:57:39.343722,627,355,382, +24,2014-01-12 09:55:36.501674,807,441,60, +26,2014-01-13 03:10:54.48894,100,182,814, +79,2014-01-18 10:27:02.525337,711,810,56, +33,2014-01-20 06:56:19.52561,977,403,119, +33,2014-01-11 15:25:30.959121,695,517,687, +87,2014-01-19 10:40:15.719416,142,172,59, +87,2014-01-14 17:28:22.634827,826,277,916, +26,2014-01-12 04:41:37.437107,416,124,436, +26,2014-01-13 14:00:39.899086,844,420,950, +94,2014-01-14 03:57:46.123253,79,935,319, +94,2014-01-16 18:58:50.074117,715,942,82, +79,2014-01-20 09:46:58.387462,777,91,348, +94,2014-01-11 13:51:46.316105,774,634,710, +33,2014-01-13 21:55:31.114914,102,678,746, +26,2014-01-12 15:39:27.154457,103,102,593, +87,2014-01-19 04:48:50.710483,200,149,820, +87,2014-01-21 04:30:46.283565,413,379,520, +26,2014-01-14 16:29:22.475997,999,922,426, +94,2014-01-12 05:44:57.257241,364,133,675, +79,2014-01-13 07:18:53.41816,606,212,87, +87,2014-01-18 14:59:46.020786,255,751,678, +87,2014-01-10 20:00:45.120623,24,916,488, +33,2014-01-19 03:04:27.974554,722,95,195, +24,2014-01-15 15:34:25.992415,438,90,339, +79,2014-01-12 20:51:37.672121,324,336,181, +87,2014-01-13 22:18:25.899584,483,938,984, +33,2014-01-21 04:23:35.623056,98,760,149, +24,2014-01-20 23:08:03.494639,34,320,899, +26,2014-01-15 10:04:17.395204,260,455,788, +87,2014-01-20 19:02:00.796012,766,949,184, +33,2014-01-19 03:05:42.83836,343,949,229, +94,2014-01-16 23:59:53.896878,358,219,483, +24,2014-01-12 16:12:55.284952,229,941,210, +24,2014-01-16 07:32:45.363698,444,697,866, +24,2014-01-16 00:56:13.422489,30,815,326, +24,2014-01-13 11:38:26.244072,423,30,991, +26,2014-01-14 12:13:01.083532,7,869,323, +87,2014-01-19 22:24:36.057316,276,474,193, +94,2014-01-14 20:20:03.68118,389,139,340, +94,2014-01-17 06:13:40.982619,642,618,7, +79,2014-01-12 20:22:22.18057,462,406,771, +94,2014-01-20 19:18:53.755716,695,195,553, +33,2014-01-16 10:00:39.370081,335,501,566, +94,2014-01-13 14:14:08.496675,724,875,667, +24,2014-01-13 11:14:24.870629,137,221,644, +87,2014-01-18 05:40:06.524539,449,594,248, +94,2014-01-11 13:02:59.207158,633,560,125, +33,2014-01-13 09:45:11.154194,46,429,99, +33,2014-01-11 16:09:29.000534,24,14,498, +26,2014-01-12 22:47:56.464399,460,422,672, +79,2014-01-15 21:04:04.572354,699,22,285, +33,2014-01-19 11:09:15.021321,735,687,235, +33,2014-01-12 22:48:41.585441,118,170,328, +94,2014-01-13 18:08:32.546908,915,451,105, +33,2014-01-13 20:43:41.013735,31,364,562, +33,2014-01-14 23:40:19.257561,672,360,389, +26,2014-01-16 20:26:58.446492,903,853,276, +79,2014-01-13 19:07:16.637211,88,32,802, +26,2014-01-14 16:48:22.752199,514,875,353, +33,2014-01-11 00:31:15.841696,10,384,349, +33,2014-01-13 08:09:17.433223,909,281,20, +94,2014-01-12 13:54:05.590559,676,957,742, +94,2014-01-17 04:31:09.738574,891,810,392, +24,2014-01-15 04:22:12.718175,784,349,359, +79,2014-01-18 01:26:50.954677,585,628,273, +33,2014-01-11 23:27:23.161064,681,404,636, +24,2014-01-17 20:00:38.962667,700,889,424, +24,2014-01-11 07:39:52.038209,575,255,90, +94,2014-01-21 01:51:59.218379,358,509,711, +26,2014-01-11 10:20:42.643847,24,505,498, +26,2014-01-17 17:53:33.020828,661,823,704, +94,2014-01-12 16:14:21.398949,956,668,200, +24,2014-01-10 23:39:36.399563,323,794,377, +26,2014-01-12 21:54:12.390908,981,939,187, +87,2014-01-15 10:28:29.896043,655,648,480, +94,2014-01-13 14:54:01.270192,499,518,169, +94,2014-01-20 07:34:18.915447,894,296,443, +33,2014-01-16 03:31:29.103201,122,736,338, +33,2014-01-16 04:39:12.424385,871,340,769, +33,2014-01-21 03:43:47.9164,408,881,382, +33,2014-01-18 06:19:25.568019,743,371,786, +26,2014-01-21 05:43:16.99674,957,691,660, +94,2014-01-19 08:53:02.937721,424,282,130, +33,2014-01-20 09:08:07.153459,793,989,765, +87,2014-01-13 17:51:49.543648,299,802,360, +33,2014-01-11 23:36:43.951876,542,807,786, +87,2014-01-14 02:48:26.411021,425,440,29, +79,2014-01-19 18:18:47.99014,611,121,929, +87,2014-01-14 22:44:00.589087,374,502,326, +79,2014-01-17 23:36:49.16364,728,479,747, +79,2014-01-19 22:50:03.831836,852,264,442, +24,2014-01-17 10:53:18.02231,712,71,121, +94,2014-01-19 17:30:54.754199,198,756,261, +94,2014-01-15 21:21:13.57041,646,534,696, +26,2014-01-11 09:15:30.740485,866,62,419, +26,2014-01-16 12:57:45.708876,50,785,440, +26,2014-01-17 00:48:36.731474,153,79,711, +33,2014-01-18 09:16:09.703152,732,681,156, +33,2014-01-17 00:37:37.747084,159,625,86, +24,2014-01-16 20:40:35.949853,640,122,689, +94,2014-01-18 23:36:52.347418,311,990,131, +87,2014-01-13 12:31:10.767912,357,2,710, +26,2014-01-18 16:54:57.349221,664,829,742, +33,2014-01-19 03:16:28.74698,669,486,305, +33,2014-01-15 14:25:23.158821,821,240,833, +24,2014-01-12 21:23:27.245264,750,624,246, +24,2014-01-11 12:10:30.017592,328,101,644, +33,2014-01-14 15:59:42.074686,735,966,248, +94,2014-01-18 04:54:56.348466,400,349,131, +94,2014-01-16 20:49:42.441977,738,527,244, +33,2014-01-14 13:43:29.991087,686,558,491, +79,2014-01-15 05:14:21.916484,222,44,706, +94,2014-01-16 20:32:59.439136,14,559,676, +33,2014-01-12 16:36:32.928808,922,15,347, +24,2014-01-14 08:22:29.069944,315,323,446, +33,2014-01-19 18:24:48.982784,553,176,89, +94,2014-01-13 20:13:16.880684,924,909,327, +87,2014-01-17 15:10:55.481384,744,440,143, +26,2014-01-18 06:43:36.973343,443,153,279, +79,2014-01-17 22:57:17.469771,874,399,202, +87,2014-01-14 08:47:44.645023,150,489,182, +79,2014-01-16 23:33:40.805179,205,953,965, +94,2014-01-14 03:50:35.492081,911,338,351, +79,2014-01-12 20:18:39.399222,55,292,676, +26,2014-01-11 14:54:54.376009,959,883,437, +79,2014-01-14 17:06:06.232986,107,306,577, +79,2014-01-18 13:16:25.108517,892,447,577, +94,2014-01-17 19:43:31.107482,573,362,230, +33,2014-01-11 20:22:15.936139,946,562,48, +94,2014-01-14 07:54:02.855602,962,814,799, +24,2014-01-13 10:24:07.057755,970,700,649, +94,2014-01-19 23:59:08.283557,467,276,987, +87,2014-01-17 00:25:13.623933,913,267,509, +33,2014-01-10 21:19:04.406976,414,253,485, +94,2014-01-17 21:15:37.030956,788,713,291, +33,2014-01-11 08:50:36.782754,536,180,421, +87,2014-01-12 22:42:31.65224,656,549,197, +24,2014-01-18 13:26:07.048548,452,277,265, +26,2014-01-15 04:50:18.857441,850,406,436, +87,2014-01-20 07:37:28.000705,733,911,427, +79,2014-01-14 04:15:49.490525,221,98,307, +87,2014-01-18 22:33:48.848527,149,586,322, +94,2014-01-14 06:51:49.917608,284,989,487, +87,2014-01-20 04:48:48.92966,849,268,706, +24,2014-01-20 19:10:21.777754,135,973,309, +94,2014-01-17 19:14:18.987552,491,527,99, +87,2014-01-18 17:13:37.912864,552,554,517, +94,2014-01-13 09:23:38.658439,658,32,519, +79,2014-01-14 04:25:14.468936,442,900,550, +87,2014-01-15 17:57:14.886207,425,6,61, +87,2014-01-20 12:20:56.128629,29,338,957, +33,2014-01-17 17:12:59.113959,631,98,151, +24,2014-01-11 11:30:55.691386,168,138,584, +24,2014-01-13 10:11:31.62071,389,790,656, +24,2014-01-19 17:31:38.513601,503,109,226, +24,2014-01-12 06:25:50.067396,718,575,774, +33,2014-01-17 07:17:37.853697,449,339,54, +79,2014-01-17 00:48:03.622118,584,922,368, +87,2014-01-19 06:09:21.175297,618,849,191, +79,2014-01-18 07:39:53.790255,254,805,197, +26,2014-01-20 12:42:06.47772,934,40,730, +87,2014-01-11 10:33:28.233052,828,88,591, +87,2014-01-17 01:39:02.073811,542,930,279, +79,2014-01-16 07:07:20.101653,480,709,189, +87,2014-01-11 11:52:32.640028,752,282,236, +94,2014-01-13 16:54:39.104768,64,941,523, +24,2014-01-16 19:57:56.884826,487,617,360, +26,2014-01-13 14:35:04.292268,820,838,721, +24,2014-01-11 00:20:46.153316,919,308,751, +24,2014-01-21 04:48:15.742267,646,764,452, +79,2014-01-12 16:12:32.292973,453,500,24, +79,2014-01-14 08:36:35.644259,990,259,824, +26,2014-01-18 21:22:04.591213,129,790,145, +26,2014-01-16 03:04:22.21058,80,964,399, +87,2014-01-13 07:25:24.573921,681,93,106, +87,2014-01-18 10:32:26.368968,76,100,912, +87,2014-01-12 16:18:41.198552,376,806,514, +79,2014-01-21 04:39:02.486784,124,669,596, +87,2014-01-20 23:56:05.027406,909,949,880, +26,2014-01-16 00:43:55.667489,338,509,653, +94,2014-01-15 16:36:17.372992,494,202,985, +87,2014-01-20 06:17:01.156035,83,153,516, +24,2014-01-12 11:56:54.781867,91,680,892, +33,2014-01-16 08:07:13.064797,954,490,813, +94,2014-01-12 10:28:32.777165,969,21,614, +24,2014-01-10 23:28:33.295468,812,975,690, +33,2014-01-17 18:33:03.132193,954,553,435, +79,2014-01-18 21:46:10.630861,145,808,161, +24,2014-01-17 04:16:36.917586,193,303,587, +79,2014-01-15 18:42:24.30749,200,596,42, +24,2014-01-15 23:26:04.421117,294,142,54, +33,2014-01-16 10:58:43.395306,607,656,683, +79,2014-01-16 09:15:52.540542,159,888,829, +33,2014-01-11 19:05:06.495347,782,213,56, +87,2014-01-11 12:06:03.497378,379,347,304, +87,2014-01-17 01:08:25.18057,385,64,126, +24,2014-01-14 15:59:45.600115,40,966,211, +24,2014-01-17 12:04:00.382204,755,14,354, +94,2014-01-19 19:43:29.472837,741,882,861, +26,2014-01-14 20:20:31.75385,135,549,273, +79,2014-01-17 10:52:16.12447,830,810,713, +24,2014-01-11 05:56:01.766229,683,334,925, +33,2014-01-18 08:57:07.398109,553,227,393, +94,2014-01-15 02:14:20.715682,922,575,111, +26,2014-01-16 13:00:23.976809,501,970,687, +26,2014-01-20 20:22:31.97203,870,926,275, +87,2014-01-12 06:46:47.08465,930,662,845, +87,2014-01-18 09:19:05.175361,564,581,528, +24,2014-01-20 19:01:34.459234,298,622,300, +33,2014-01-12 00:42:52.112475,909,155,812, +87,2014-01-13 04:03:00.843269,480,955,150, +87,2014-01-15 05:37:51.832226,580,708,146, +94,2014-01-11 00:59:53.26851,367,181,149, +94,2014-01-14 19:59:55.625136,537,420,428, +94,2014-01-20 17:45:04.897023,487,278,281, +33,2014-01-12 15:28:26.045675,972,258,460, +24,2014-01-14 23:28:28.920604,709,52,918, +24,2014-01-17 06:18:08.029634,967,769,902, +26,2014-01-20 17:14:36.676955,121,792,870, +24,2014-01-10 21:45:05.83819,90,835,137, +94,2014-01-11 19:00:32.337124,238,128,358, +79,2014-01-15 10:40:41.098072,306,15,481, +24,2014-01-16 12:43:49.233496,508,92,487, +24,2014-01-17 08:16:24.878085,925,742,923, +24,2014-01-16 09:45:47.593419,65,927,995, +79,2014-01-17 04:49:52.730874,694,354,490, +26,2014-01-13 03:24:50.058655,633,55,40, +24,2014-01-20 05:45:33.193952,823,914,248, +79,2014-01-13 10:53:53.113078,648,813,896, +79,2014-01-11 17:08:19.531911,476,461,157, +87,2014-01-13 20:06:04.947802,773,325,710, +24,2014-01-20 01:46:09.237967,763,4,139, +79,2014-01-12 03:04:21.298141,635,319,519, +94,2014-01-10 23:03:12.345912,947,776,170, +33,2014-01-13 22:00:29.95365,273,390,364, +26,2014-01-17 20:04:45.27495,737,413,38, +26,2014-01-20 23:25:44.317943,503,957,693, +87,2014-01-15 08:47:17.038719,176,303,137, +87,2014-01-14 23:23:50.45073,897,949,582, +94,2014-01-20 12:27:18.777177,55,654,387, +33,2014-01-16 13:30:09.151194,70,194,109, +26,2014-01-17 07:26:51.293999,710,439,107, +26,2014-01-14 12:05:10.609822,873,432,384, +94,2014-01-16 18:30:02.419704,568,902,849, +24,2014-01-10 21:26:46.919135,958,435,445, +33,2014-01-13 23:50:15.506845,732,748,271, +79,2014-01-18 13:58:28.465799,520,718,4, +79,2014-01-15 00:55:15.83974,11,389,485, +24,2014-01-20 10:08:23.536479,435,56,57, +33,2014-01-18 01:13:05.142754,765,460,262, +26,2014-01-15 02:40:21.677929,912,47,592, +33,2014-01-10 23:08:55.874023,765,29,849, +79,2014-01-12 05:53:46.240826,940,443,858, +87,2014-01-20 19:24:10.911425,228,117,684, +24,2014-01-17 11:25:20.752108,499,282,986, +87,2014-01-17 19:39:33.834664,904,23,86, +26,2014-01-16 18:14:03.642719,892,941,707, +79,2014-01-19 18:50:10.810763,977,31,397, +79,2014-01-16 19:25:07.028616,119,904,282, +33,2014-01-19 09:07:56.755796,784,305,734, +26,2014-01-20 15:58:30.342674,602,197,935, +26,2014-01-19 19:31:11.976419,603,854,283, +79,2014-01-18 04:54:05.993763,336,331,556, +26,2014-01-11 13:02:51.640815,349,734,655, +26,2014-01-19 22:34:24.322331,476,433,374, +26,2014-01-10 20:54:35.947831,625,225,904, +87,2014-01-18 13:07:36.916183,447,758,281, +24,2014-01-19 16:00:08.640274,833,50,494, +94,2014-01-15 09:41:52.98655,621,132,242, +33,2014-01-12 06:31:27.366914,73,726,160, +94,2014-01-18 22:27:27.41787,376,786,962, +94,2014-01-21 03:12:02.137745,201,664,578, +26,2014-01-18 17:58:18.660914,755,435,490, +24,2014-01-12 04:32:38.027692,377,72,220, +33,2014-01-16 15:42:04.557449,453,790,274, +24,2014-01-18 19:25:05.580049,309,943,687, +33,2014-01-15 08:22:53.534536,277,353,290, +79,2014-01-13 23:40:33.023248,267,962,19, +87,2014-01-12 14:20:21.419789,555,807,990, +24,2014-01-14 12:31:17.071435,271,6,38, +94,2014-01-21 04:53:38.166002,333,653,244, +26,2014-01-16 21:00:43.097718,678,677,616, +26,2014-01-14 15:40:12.945458,507,285,616, +79,2014-01-12 04:47:24.407247,345,262,746, +87,2014-01-16 10:24:54.009143,461,121,639, +24,2014-01-10 21:05:33.697567,801,775,26, +87,2014-01-19 04:26:58.241909,536,171,790, +26,2014-01-11 22:38:57.651861,680,642,826, +24,2014-01-19 19:55:44.508329,844,256,83, +79,2014-01-14 17:52:05.270526,395,454,819, +26,2014-01-20 11:46:54.408076,587,127,651, +79,2014-01-19 05:54:14.851423,581,126,5, +26,2014-01-13 07:23:17.246944,662,772,516, +94,2014-01-17 10:41:00.40184,193,643,353, +87,2014-01-19 22:57:06.492237,113,492,762, +24,2014-01-11 23:57:41.569275,49,803,68, +79,2014-01-17 11:35:36.349671,477,991,977, +26,2014-01-17 06:04:43.408421,396,760,892, +94,2014-01-20 19:57:50.209549,593,864,253, +87,2014-01-11 15:17:29.336222,828,391,579, +26,2014-01-18 16:36:10.775334,62,645,201, +26,2014-01-18 12:25:17.627419,565,597,65, +26,2014-01-11 12:29:31.473967,445,35,408, +33,2014-01-16 04:34:29.436247,497,241,601, +26,2014-01-19 20:57:55.65511,369,822,872, +24,2014-01-17 08:11:36.031834,244,220,647, +33,2014-01-13 17:59:35.016296,415,918,811, +87,2014-01-13 23:20:49.190066,464,751,206, +94,2014-01-20 11:52:09.055082,805,899,621, +33,2014-01-15 12:19:56.436084,331,760,843, +79,2014-01-17 15:52:06.261501,801,301,890, +26,2014-01-20 10:45:47.221503,932,590,966, +87,2014-01-11 03:20:39.533802,409,39,485, +94,2014-01-11 01:32:19.206959,389,113,791, +26,2014-01-11 09:33:11.62875,675,639,814, +79,2014-01-16 17:45:33.543364,230,706,835, +79,2014-01-11 02:37:52.904526,961,979,217, +26,2014-01-19 18:00:09.87066,204,41,834, +24,2014-01-17 20:24:31.195225,568,10,485, +33,2014-01-20 02:33:37.412855,830,43,432, +87,2014-01-13 05:52:15.141185,147,25,971, +79,2014-01-17 02:11:25.603302,726,109,69, +33,2014-01-18 02:27:52.264278,924,660,234, +87,2014-01-15 17:15:32.38813,30,799,912, +94,2014-01-13 06:52:26.00556,640,210,169, +87,2014-01-16 19:24:58.756934,584,290,357, +94,2014-01-16 21:13:13.957405,640,548,539, +33,2014-01-19 22:28:02.355231,665,817,715, +26,2014-01-12 19:29:42.165355,992,116,817, +94,2014-01-16 11:11:04.166953,962,624,978, +26,2014-01-20 17:45:31.691872,832,662,552, +87,2014-01-20 16:05:52.941108,658,850,789, +87,2014-01-13 17:36:21.794791,98,589,132, +79,2014-01-11 00:15:03.165839,290,70,278, +33,2014-01-15 14:40:22.377356,471,272,754, +94,2014-01-12 08:34:17.449901,989,132,74, +26,2014-01-17 12:26:39.197673,375,648,12, +94,2014-01-18 12:39:57.394071,435,498,144, +26,2014-01-15 11:55:06.639967,83,377,625, +94,2014-01-16 18:18:48.253174,913,958,841, +94,2014-01-12 18:59:53.830155,782,401,763, +87,2014-01-11 21:47:12.901469,357,681,632, +94,2014-01-15 23:04:35.474678,769,529,110, +24,2014-01-13 02:20:33.364376,60,353,394, +87,2014-01-12 03:19:32.108428,682,102,873, +33,2014-01-16 12:37:47.103428,942,805,442, +26,2014-01-19 00:06:06.90774,64,990,739, +87,2014-01-12 09:57:25.012954,697,413,469, +26,2014-01-15 00:37:56.974088,881,730,717, +94,2014-01-15 14:30:38.102965,498,58,1, +79,2014-01-11 06:31:02.426229,614,178,107, +24,2014-01-17 10:30:12.115273,543,656,733, +79,2014-01-11 10:42:03.706686,302,87,672, +79,2014-01-18 12:58:54.690507,742,637,129, +33,2014-01-11 21:45:44.503403,496,948,196, +26,2014-01-13 21:34:29.712247,190,168,184, +94,2014-01-14 02:23:53.447442,343,637,83, +26,2014-01-17 22:58:58.460808,735,74,410, +33,2014-01-12 14:02:32.067478,821,187,588, +87,2014-01-16 01:53:35.613217,75,371,758, +87,2014-01-13 04:10:02.627761,908,480,214, +24,2014-01-12 01:48:03.75935,682,484,544, +24,2014-01-15 11:59:28.554325,461,967,430, +24,2014-01-16 01:46:24.422552,474,413,225, +33,2014-01-12 06:03:06.925607,893,672,569, +26,2014-01-20 06:39:50.93168,874,523,399, +87,2014-01-17 14:20:41.872873,495,547,292, +87,2014-01-18 22:29:46.12328,340,340,737, +79,2014-01-17 13:19:48.325751,369,516,382, +79,2014-01-11 20:15:48.51284,434,128,331, +87,2014-01-14 10:48:34.376454,434,783,601, +79,2014-01-19 12:19:42.156325,266,691,989, +24,2014-01-12 22:03:01.414727,897,387,600, +24,2014-01-19 13:53:09.851131,220,478,890, +33,2014-01-11 08:40:15.520701,695,397,568, +79,2014-01-14 05:22:33.523155,605,465,641, +24,2014-01-14 20:30:56.954559,774,508,29, +87,2014-01-19 12:46:22.428441,58,778,122, +94,2014-01-15 19:19:58.536529,829,323,449, +79,2014-01-19 01:08:53.928647,300,756,335, +33,2014-01-13 21:17:00.531405,731,127,177, +94,2014-01-16 05:51:00.962757,31,574,666, +33,2014-01-15 05:39:06.04392,65,468,387, +79,2014-01-14 11:59:04.238092,903,148,869, +94,2014-01-13 12:49:55.653265,590,610,408, +94,2014-01-16 07:24:50.547323,783,285,335, +87,2014-01-17 13:33:33.950339,97,604,678, +33,2014-01-16 19:13:49.101126,283,352,624, +24,2014-01-13 00:23:49.008131,562,594,492, +79,2014-01-19 07:36:06.018235,408,363,394, +26,2014-01-11 15:07:24.714342,86,286,738, +94,2014-01-15 08:33:51.636311,833,228,642, +24,2014-01-20 13:24:09.777585,907,654,967, +79,2014-01-16 07:06:53.268667,957,758,483, +87,2014-01-20 14:20:16.058864,638,718,448, +79,2014-01-11 13:27:16.703193,445,157,906, +26,2014-01-15 07:46:44.200347,211,137,71, +26,2014-01-16 22:40:57.931736,408,680,583, +87,2014-01-19 15:57:02.826892,879,535,306, +26,2014-01-11 15:06:32.526517,441,81,393, +24,2014-01-17 22:56:46.444995,662,273,492, +79,2014-01-12 20:45:37.203346,244,99,315, +24,2014-01-20 07:26:14.682843,748,746,872, +24,2014-01-20 00:59:47.859722,888,557,810, +94,2014-01-11 04:38:47.054896,924,361,610, +87,2014-01-20 20:06:30.203543,808,293,624, +79,2014-01-13 00:22:21.382877,335,551,673, +87,2014-01-15 05:09:44.009455,773,971,678, +79,2014-01-19 02:52:52.631983,469,212,472, +79,2014-01-17 23:42:19.919406,512,665,108, +94,2014-01-13 00:18:37.938522,330,643,803, +79,2014-01-11 18:09:53.163389,862,961,276, +26,2014-01-12 23:33:20.882164,293,378,44, +79,2014-01-17 09:57:43.982442,94,701,65, +26,2014-01-15 10:08:57.4019,334,872,412, +87,2014-01-15 16:23:16.535847,63,759,314, +26,2014-01-12 11:22:34.530184,723,888,490, +79,2014-01-11 17:42:31.352238,766,724,40, +79,2014-01-11 05:37:05.636973,804,920,584, +26,2014-01-14 15:46:23.538315,450,400,834, +87,2014-01-20 05:18:37.370473,172,876,296, +24,2014-01-12 00:44:30.351315,370,145,43, +94,2014-01-19 04:20:15.174626,135,918,358, +24,2014-01-19 12:42:47.148477,520,478,93, +26,2014-01-17 11:51:23.61998,763,11,492, +87,2014-01-18 12:40:31.233909,863,362,189, +26,2014-01-20 06:10:03.85167,46,341,291, +24,2014-01-11 13:38:07.820327,639,199,291, +33,2014-01-14 05:21:29.165646,424,343,722, +24,2014-01-18 16:07:06.678561,677,24,447, +33,2014-01-12 08:44:40.346845,586,596,984, +87,2014-01-10 22:18:15.610641,640,564,6, +24,2014-01-20 16:52:43.882326,796,406,210, +87,2014-01-11 10:10:55.029686,892,241,411, +33,2014-01-20 03:18:03.470362,219,665,525, +26,2014-01-21 01:31:30.937222,271,348,977, +26,2014-01-11 00:17:25.233229,713,584,463, +33,2014-01-11 21:40:24.853658,538,801,724, +79,2014-01-15 00:41:14.946678,165,280,956, +33,2014-01-19 07:10:17.865213,856,724,42, +94,2014-01-19 01:22:44.773065,961,165,905, +87,2014-01-17 04:59:52.885199,679,163,33, +24,2014-01-20 05:20:11.029021,575,349,78, +26,2014-01-21 04:56:05.655647,209,819,165, +33,2014-01-13 08:57:36.86806,156,836,540, +94,2014-01-14 09:29:08.430921,210,451,332, +33,2014-01-15 15:19:22.191494,852,526,854, +94,2014-01-15 00:20:11.398244,296,67,276, +79,2014-01-15 07:11:39.783158,782,383,376, +33,2014-01-16 00:56:27.828466,240,447,845, +94,2014-01-18 20:06:34.936559,608,26,846, +94,2014-01-14 06:30:17.154051,396,931,404, +24,2014-01-17 05:40:58.17978,283,924,835, +79,2014-01-16 18:26:50.111604,205,936,598, +26,2014-01-12 13:13:04.302528,108,21,907, +24,2014-01-13 11:32:21.79976,900,835,929, +26,2014-01-14 01:07:21.345514,880,952,982, +87,2014-01-11 13:23:08.154199,965,793,270, +33,2014-01-14 05:10:29.620088,668,895,734, +24,2014-01-17 10:28:50.511159,245,895,249, +33,2014-01-19 09:30:14.833179,313,214,11, +79,2014-01-15 17:55:09.967351,636,34,358, +94,2014-01-17 12:47:06.122219,231,940,531, +33,2014-01-18 20:22:58.715505,655,301,568, +87,2014-01-16 08:06:04.997038,587,591,988, +79,2014-01-16 10:05:09.592581,77,551,797, +79,2014-01-18 15:54:29.652727,207,675,268, +87,2014-01-16 12:23:30.230686,241,11,755, +87,2014-01-17 11:45:34.44624,206,891,799, +24,2014-01-12 10:35:44.599405,358,989,69, +33,2014-01-14 13:33:48.0959,477,891,97, +24,2014-01-15 07:08:19.219722,431,198,444, +26,2014-01-18 19:35:37.485023,932,890,752, +87,2014-01-13 12:53:59.124921,568,52,137, +94,2014-01-15 06:04:24.875369,295,258,603, +26,2014-01-10 22:33:14.353083,341,410,682, +24,2014-01-17 02:23:07.555842,835,963,235, +94,2014-01-20 01:23:47.066862,38,900,443, +94,2014-01-15 02:53:25.751327,724,708,407, +26,2014-01-11 03:34:47.339419,989,80,362, +24,2014-01-14 20:20:14.895328,674,312,121, +24,2014-01-12 17:00:00.687886,54,702,980, +87,2014-01-14 14:05:04.49347,993,94,487, +94,2014-01-10 20:01:13.075108,729,395,566, +24,2014-01-18 15:26:50.799491,313,97,796, +33,2014-01-16 07:18:08.795999,154,119,88, +79,2014-01-13 11:33:34.874869,614,305,228, +24,2014-01-11 10:34:12.145004,138,52,471, +94,2014-01-17 00:41:16.950197,657,427,681, +94,2014-01-16 20:44:04.494956,727,785,725, +87,2014-01-18 01:03:02.656583,851,340,812, +26,2014-01-15 04:11:31.783376,582,86,275, +79,2014-01-11 08:39:14.462308,903,518,654, +24,2014-01-14 07:50:08.778802,329,260,191, +79,2014-01-12 18:34:30.498881,397,815,625, +87,2014-01-16 20:45:19.459765,754,595,72, +26,2014-01-19 21:55:18.371382,824,321,425, +79,2014-01-20 14:29:00.151608,788,14,678, +33,2014-01-12 03:08:49.690451,424,867,257, +33,2014-01-16 03:40:52.818041,310,257,713, +94,2014-01-11 19:04:44.751432,532,433,246, +26,2014-01-15 20:42:37.786351,1,277,51, +79,2014-01-20 14:49:12.037764,291,729,117, +33,2014-01-19 18:40:22.236456,525,585,33, +94,2014-01-18 13:36:36.911691,914,511,625, +87,2014-01-14 14:53:36.913132,53,112,14, +26,2014-01-19 21:13:36.58954,435,0,96, +94,2014-01-14 09:59:44.467532,285,57,459, +79,2014-01-13 10:17:23.979994,825,6,419, +33,2014-01-13 18:07:02.340867,828,919,149, +33,2014-01-14 17:34:31.806951,925,274,434, +94,2014-01-17 10:37:38.875322,647,83,850, +24,2014-01-15 15:07:03.028752,72,951,288, +79,2014-01-18 11:39:36.300422,763,355,484, +26,2014-01-17 10:38:51.95043,118,73,953, +79,2014-01-13 00:33:53.828661,568,64,748, +79,2014-01-13 12:57:45.09642,22,764,559, +26,2014-01-20 02:12:26.825299,304,199,319, +26,2014-01-13 15:08:05.973667,378,419,940, +26,2014-01-19 17:39:02.047036,93,63,787, +87,2014-01-15 16:56:31.320256,789,221,533, +26,2014-01-20 20:11:08.63025,5,411,860, +94,2014-01-13 15:50:33.830413,366,815,411, +26,2014-01-16 05:35:45.782983,658,602,404, +94,2014-01-13 22:01:17.409052,231,427,168, +87,2014-01-15 14:25:04.329714,52,947,41, +24,2014-01-11 20:21:05.242748,962,128,188, +79,2014-01-12 13:56:35.780853,659,361,861, +79,2014-01-14 22:54:04.481322,484,324,882, +79,2014-01-13 03:29:54.9332,85,728,389, +87,2014-01-17 21:37:28.598895,665,934,579, +24,2014-01-15 21:58:49.232755,580,711,444, +94,2014-01-18 04:12:32.719551,292,662,740, +87,2014-01-17 06:26:40.636657,863,723,362, +26,2014-01-14 10:39:11.46921,583,251,904, +26,2014-01-15 11:49:09.631242,226,718,941, +24,2014-01-21 01:20:17.54979,518,742,499, +87,2014-01-13 01:52:48.05875,920,41,368, +33,2014-01-19 01:48:54.099193,316,399,199, +24,2014-01-13 05:37:41.529784,440,567,720, +24,2014-01-15 23:59:50.399617,655,928,480, +24,2014-01-12 13:23:25.906144,206,645,513, +24,2014-01-19 20:15:20.405106,654,65,437, +33,2014-01-20 19:06:53.428788,376,242,227, +26,2014-01-20 05:03:02.206984,867,638,495, +24,2014-01-16 00:54:12.355536,787,187,12, +87,2014-01-12 13:40:47.257449,421,177,416, +94,2014-01-12 12:00:47.303404,71,836,460, +87,2014-01-14 21:06:39.180836,226,454,989, +94,2014-01-15 08:48:53.231116,198,216,496, +79,2014-01-10 23:39:49.350441,744,23,953, +33,2014-01-19 18:03:10.501093,251,780,547, +33,2014-01-14 23:00:01.861785,36,664,499, +87,2014-01-13 19:30:23.181273,723,97,314, +24,2014-01-14 17:38:56.284076,990,420,930, +87,2014-01-18 01:01:19.270836,696,828,137, +33,2014-01-18 13:55:27.510986,148,7,283, +79,2014-01-15 18:00:01.526824,848,285,16, +87,2014-01-19 18:57:55.051691,600,915,662, +94,2014-01-12 06:49:31.992308,56,863,21, +94,2014-01-18 01:29:56.460024,895,365,880, +24,2014-01-16 10:35:23.650584,830,864,997, +94,2014-01-17 08:48:21.225482,178,764,750, +26,2014-01-14 23:42:29.179994,101,632,624, +33,2014-01-12 11:02:04.287243,126,493,490, +33,2014-01-20 23:27:32.694694,143,235,462, +94,2014-01-19 15:31:38.811235,138,115,119, +94,2014-01-12 06:22:21.837032,698,658,948, +87,2014-01-12 19:20:20.753863,850,392,58, +33,2014-01-17 11:20:32.910428,431,426,863, +94,2014-01-14 16:00:03.366816,409,726,912, +79,2014-01-17 23:20:11.153479,567,252,560, +87,2014-01-19 04:43:58.816992,692,62,542, +26,2014-01-13 06:15:23.771922,614,855,354, +10,2014-01-17 12:27:04.582267,333,55,984, +92,2014-01-18 03:47:01.023976,781,625,607, +35,2014-01-18 11:09:36.127459,201,787,743, +92,2014-01-19 06:07:51.839716,235,8,497, +35,2014-01-19 19:47:48.327381,574,39,916, +10,2014-01-12 02:16:15.308296,169,356,495, +10,2014-01-13 08:56:45.071251,813,676,720, +92,2014-01-19 23:27:37.678242,731,963,326, +10,2014-01-21 00:19:25.809807,805,220,950, +35,2014-01-17 11:56:46.933036,365,184,374, +92,2014-01-12 12:58:00.859515,902,636,942, +35,2014-01-14 11:58:22.093882,370,562,266, +10,2014-01-14 06:58:06.203873,317,978,869, +35,2014-01-20 06:53:28.370501,355,792,797, +35,2014-01-19 09:58:23.621126,175,412,657, +35,2014-01-12 19:56:01.255982,801,960,210, +10,2014-01-11 07:43:00.362809,244,224,127, +92,2014-01-16 05:28:20.08115,490,903,39, +10,2014-01-18 10:31:24.906567,591,683,790, +35,2014-01-17 20:31:21.588292,693,340,882, +35,2014-01-20 09:10:49.261144,983,7,486, +10,2014-01-20 01:33:29.194228,685,481,459, +35,2014-01-17 13:58:54.283405,543,232,872, +35,2014-01-18 18:42:28.072798,525,234,236, +35,2014-01-11 01:55:51.03126,148,221,420, +92,2014-01-19 13:19:15.037268,886,36,49, +92,2014-01-15 00:03:00.983227,71,793,535, +92,2014-01-14 21:55:54.398496,289,458,466, +35,2014-01-16 06:39:26.190747,318,570,377, +35,2014-01-12 22:46:59.800219,324,428,953, +10,2014-01-17 08:11:18.170418,442,669,123, +35,2014-01-12 13:06:30.773432,204,570,146, +35,2014-01-20 06:34:00.824195,393,763,253, +10,2014-01-14 13:20:54.298296,806,174,976, +35,2014-01-20 23:14:22.613148,254,419,345, +92,2014-01-18 20:21:49.151995,467,679,738, +35,2014-01-15 19:37:09.606592,145,198,509, +35,2014-01-13 02:11:07.684399,612,154,938, +10,2014-01-17 13:49:26.830236,266,583,680, +35,2014-01-15 13:56:35.416398,27,347,665, +92,2014-01-19 18:07:54.617435,290,367,677, +92,2014-01-19 06:47:27.689751,968,682,606, +35,2014-01-19 05:54:57.5107,753,331,603, +92,2014-01-12 19:06:00.821727,465,936,726, +92,2014-01-18 07:40:56.060252,627,965,124, +10,2014-01-17 09:53:21.131826,135,159,150, +35,2014-01-14 19:02:02.077709,788,237,503, +35,2014-01-18 19:23:56.423061,101,883,583, +10,2014-01-12 09:21:41.212975,975,376,764, +35,2014-01-11 23:33:26.984276,708,437,461, +10,2014-01-15 09:55:18.011772,843,367,143, +35,2014-01-11 12:32:30.474538,353,713,755, +10,2014-01-21 05:06:56.178504,202,711,512, +35,2014-01-11 17:54:12.295177,356,641,796, +35,2014-01-19 11:14:58.547335,240,281,921, +92,2014-01-11 01:02:47.210184,457,699,744, +35,2014-01-20 11:13:27.332445,843,347,805, +92,2014-01-13 05:17:59.530562,360,832,945, +35,2014-01-15 02:58:41.60868,244,794,659, +92,2014-01-15 11:52:53.523191,981,695,283, +35,2014-01-15 08:04:59.3312,249,454,633, +10,2014-01-11 05:09:59.779098,51,903,355, +35,2014-01-17 04:59:24.296623,47,621,795, +10,2014-01-14 08:39:00.155395,279,201,445, +10,2014-01-14 22:30:54.077394,851,93,323, +10,2014-01-16 22:13:46.91019,575,513,696, +92,2014-01-11 23:00:49.307391,18,510,238, +92,2014-01-19 22:08:03.684404,214,99,4, +10,2014-01-19 04:24:54.594589,423,227,347, +92,2014-01-18 16:50:16.137627,323,256,878, +10,2014-01-14 06:04:39.100803,220,381,857, +35,2014-01-17 16:32:49.212443,324,141,986, +35,2014-01-16 17:37:43.827377,67,283,459, +92,2014-01-12 05:59:36.611503,381,470,260, +10,2014-01-19 15:38:50.03417,720,414,380, +10,2014-01-13 19:18:39.887629,201,655,299, +92,2014-01-18 19:52:57.743328,197,278,131, +10,2014-01-13 04:40:52.111879,596,652,83, +92,2014-01-11 08:42:36.311109,252,362,254, +10,2014-01-20 09:14:38.956723,226,677,754, +35,2014-01-14 08:14:19.096155,616,101,393, +10,2014-01-15 22:37:54.322881,608,220,918, +92,2014-01-21 01:47:09.43126,364,993,19, +35,2014-01-14 07:21:15.275078,406,797,549, +10,2014-01-16 20:32:06.618058,497,611,848, +10,2014-01-19 07:02:07.978596,792,466,782, +35,2014-01-14 12:24:02.485262,599,525,39, +10,2014-01-16 01:45:33.950503,651,710,648, +10,2014-01-11 06:20:07.509158,908,336,170, +35,2014-01-18 19:22:44.093943,430,514,840, +35,2014-01-20 17:38:27.473694,507,325,527, +92,2014-01-15 18:25:06.840358,796,330,718, +35,2014-01-19 04:32:43.87304,998,800,653, +10,2014-01-16 16:37:51.770736,341,51,638, +10,2014-01-19 07:04:06.996173,61,322,42, +10,2014-01-12 21:03:37.950853,182,533,87, +35,2014-01-12 08:51:38.680926,422,183,568, +92,2014-01-20 10:04:56.303563,706,470,192, +10,2014-01-11 13:11:41.635257,285,585,359, +92,2014-01-20 17:16:33.275515,456,59,27, +35,2014-01-17 20:55:12.441608,670,352,168, +92,2014-01-14 23:16:20.73606,725,452,243, +92,2014-01-17 03:49:22.487958,81,157,6, +92,2014-01-13 08:32:56.268986,624,658,930, +35,2014-01-16 09:15:57.347982,6,887,585, +35,2014-01-15 13:28:12.522128,977,751,418, +10,2014-01-16 07:51:36.157034,720,798,61, +35,2014-01-13 23:08:55.09131,571,175,278, +10,2014-01-17 22:09:04.634007,264,476,699, +92,2014-01-16 20:34:12.468144,918,932,200, +35,2014-01-13 02:23:34.048033,515,334,921, +92,2014-01-11 00:23:23.730581,824,2,212, +35,2014-01-11 13:12:06.791025,352,702,684, +35,2014-01-12 22:10:43.479293,563,886,570, +92,2014-01-14 11:44:39.005659,749,692,921, +35,2014-01-17 13:44:13.409084,411,421,488, +35,2014-01-10 23:12:51.457889,441,374,701, +92,2014-01-18 04:08:41.490922,325,827,960, +35,2014-01-12 09:29:47.359587,312,907,643, +35,2014-01-11 09:32:58.967467,848,11,157, +35,2014-01-15 17:31:25.584864,290,540,585, +10,2014-01-11 21:08:14.833281,515,275,563, +92,2014-01-16 07:58:05.807825,819,386,928, +35,2014-01-13 16:04:09.457904,746,521,607, +35,2014-01-17 17:46:06.604018,177,289,838, +35,2014-01-14 09:02:12.803997,471,546,388, +92,2014-01-15 17:07:47.408757,764,488,712, +92,2014-01-19 06:37:45.284944,376,540,89, +35,2014-01-13 13:07:09.107979,291,51,713, +35,2014-01-16 10:19:29.044015,652,181,57, +10,2014-01-18 17:54:18.560878,325,7,768, +92,2014-01-20 14:02:21.549588,123,477,366, +92,2014-01-20 13:35:49.780494,909,687,830, +10,2014-01-14 15:43:41.048835,153,890,129, +92,2014-01-12 16:35:17.818574,668,945,74, +92,2014-01-15 16:51:47.128476,614,446,867, +10,2014-01-19 09:11:53.571382,479,159,933, +10,2014-01-18 04:26:53.975608,864,579,350, +10,2014-01-18 20:00:42.219787,421,225,92, +35,2014-01-16 01:20:58.20539,415,377,643, +35,2014-01-13 19:01:06.443752,243,555,592, +35,2014-01-21 02:24:16.26824,830,951,284, +10,2014-01-16 05:44:21.935971,144,595,640, +92,2014-01-14 12:13:13.234777,588,870,309, +35,2014-01-12 18:34:59.747532,524,654,808, +92,2014-01-19 21:29:00.94163,237,422,769, +92,2014-01-21 05:57:26.643861,826,815,4, +92,2014-01-12 21:47:51.205841,369,813,527, +92,2014-01-16 19:37:42.432552,771,767,976, +92,2014-01-12 09:27:14.003449,579,663,510, +10,2014-01-13 11:20:50.173307,655,283,493, +10,2014-01-11 07:09:08.017416,518,942,568, +10,2014-01-13 10:35:28.837149,128,77,126, +10,2014-01-18 23:18:55.981131,654,693,542, +10,2014-01-14 03:13:17.475739,414,431,103, +35,2014-01-20 08:21:35.441167,987,694,121, +35,2014-01-12 02:21:08.785548,794,253,570, +35,2014-01-19 00:21:04.884496,0,63,902, +92,2014-01-18 08:59:20.726529,409,809,611, +10,2014-01-14 19:28:17.893526,413,389,753, +10,2014-01-14 04:40:33.928929,132,278,34, +92,2014-01-15 20:53:39.287406,29,360,693, +35,2014-01-14 03:30:39.443114,559,458,243, +35,2014-01-13 12:16:23.709423,989,448,988, +92,2014-01-19 16:37:20.336243,228,554,305, +35,2014-01-16 00:05:57.261688,577,84,285, +92,2014-01-18 09:08:10.8379,279,657,179, +92,2014-01-17 19:49:13.907625,627,188,172, +92,2014-01-12 22:32:51.237716,547,242,430, +92,2014-01-15 23:08:53.057686,47,551,242, +35,2014-01-12 15:10:12.113433,277,731,544, +35,2014-01-15 21:33:57.681468,79,975,305, +35,2014-01-15 19:33:09.325926,329,118,157, +92,2014-01-18 00:54:34.049404,881,507,440, +92,2014-01-19 13:47:10.916664,555,572,417, +92,2014-01-17 18:08:09.073878,748,374,539, +10,2014-01-16 16:23:34.991453,69,745,570, +35,2014-01-19 13:44:37.560525,85,989,210, +10,2014-01-19 19:56:00.279719,996,143,466, +35,2014-01-12 06:01:17.424005,602,956,53, +35,2014-01-21 03:11:51.564393,717,796,599, +92,2014-01-12 01:16:50.453025,996,993,590, +35,2014-01-12 17:10:25.44184,242,314,822, +35,2014-01-13 07:47:20.401542,212,833,192, +92,2014-01-20 04:35:46.434156,163,326,991, +92,2014-01-16 00:23:42.917579,180,269,588, +10,2014-01-12 10:08:55.842708,711,49,370, +10,2014-01-11 00:56:55.219704,768,55,554, +10,2014-01-13 18:44:47.802074,784,128,303, +35,2014-01-19 23:08:16.569237,552,429,893, +92,2014-01-15 00:25:13.11323,215,738,621, +10,2014-01-17 03:25:21.731004,732,264,123, +35,2014-01-14 14:01:55.856644,782,783,892, +35,2014-01-18 07:55:52.556345,362,169,126, +10,2014-01-19 19:41:45.440427,193,847,592, +92,2014-01-13 00:39:16.193305,255,375,963, +92,2014-01-13 02:01:49.818451,962,59,560, +10,2014-01-16 22:49:56.278327,245,600,595, +10,2014-01-20 00:28:30.10093,552,444,40, +35,2014-01-15 04:34:41.056167,676,490,348, +10,2014-01-11 15:58:49.336432,573,137,477, +10,2014-01-11 09:38:42.214364,80,957,282, +35,2014-01-20 06:08:38.737634,272,956,352, +10,2014-01-16 15:31:58.662358,160,871,922, +92,2014-01-18 14:33:16.264187,591,105,815, +92,2014-01-18 13:55:49.654298,343,840,681, +35,2014-01-13 03:40:07.736236,923,227,336, +35,2014-01-14 00:56:51.255641,639,999,960, +92,2014-01-16 21:40:27.215243,586,712,979, +92,2014-01-11 17:36:08.015954,489,484,907, +10,2014-01-15 10:58:08.679646,70,254,867, +10,2014-01-16 18:52:18.779635,300,142,377, +92,2014-01-12 22:52:58.46898,764,50,720, +92,2014-01-17 08:08:34.121485,443,845,430, +92,2014-01-19 06:39:39.181177,205,707,350, +10,2014-01-11 21:28:44.903555,933,277,551, +92,2014-01-12 02:32:17.039065,628,458,20, +35,2014-01-20 20:48:35.023885,363,29,292, +35,2014-01-12 02:25:40.123259,642,370,178, +35,2014-01-15 01:17:04.841558,135,737,356, +10,2014-01-19 13:56:51.593542,250,565,604, +35,2014-01-16 06:50:53.236909,695,640,22, +10,2014-01-10 22:42:26.572561,10,871,202, +10,2014-01-12 21:58:47.450185,945,417,11, +92,2014-01-13 08:46:45.793254,59,50,497, +10,2014-01-19 22:24:12.013407,945,229,188, +92,2014-01-15 02:38:03.643491,394,40,478, +35,2014-01-15 14:48:35.611705,324,469,172, +35,2014-01-15 15:14:08.291734,912,511,92, +35,2014-01-13 21:06:33.74484,523,950,349, +92,2014-01-19 23:23:16.667872,426,65,279, +10,2014-01-16 11:12:57.628167,302,776,97, +10,2014-01-14 10:45:15.959204,355,885,352, +35,2014-01-18 23:31:55.405925,56,350,456, +10,2014-01-11 20:44:56.290944,5,924,126, +35,2014-01-11 19:18:32.223392,887,700,10, +35,2014-01-16 07:27:45.060224,465,94,507, +35,2014-01-14 04:25:04.02718,20,971,587, +10,2014-01-15 00:15:23.479032,100,160,700, +10,2014-01-11 23:08:12.275467,145,594,204, +35,2014-01-15 02:01:12.043554,205,863,41, +92,2014-01-19 15:13:32.159097,87,239,287, +35,2014-01-17 22:00:31.055102,413,3,145, +35,2014-01-17 04:54:10.512534,34,318,644, +92,2014-01-15 17:22:06.280582,351,380,196, +10,2014-01-15 22:40:10.236279,962,645,517, +10,2014-01-18 06:22:55.41609,387,262,958, +10,2014-01-16 23:54:23.320066,636,61,816, +10,2014-01-15 13:28:45.260584,32,907,24, +92,2014-01-19 12:48:35.539769,724,161,572, +35,2014-01-21 05:11:28.161623,347,344,245, +92,2014-01-13 21:25:36.854126,378,428,837, +10,2014-01-14 13:39:28.776677,589,409,783, +92,2014-01-10 21:53:54.734184,314,724,275, +35,2014-01-15 23:24:24.304311,501,311,905, +10,2014-01-17 02:26:14.569931,998,333,46, +35,2014-01-20 00:18:06.747593,923,208,193, +92,2014-01-20 06:02:27.948222,717,647,297, +35,2014-01-11 11:14:50.182055,24,755,869, +35,2014-01-14 09:32:15.039746,287,732,605, +92,2014-01-12 21:09:01.693061,645,509,596, +35,2014-01-20 14:38:06.849927,978,459,122, +10,2014-01-20 00:45:12.667912,883,253,798, +10,2014-01-16 11:54:17.652266,514,212,92, +10,2014-01-18 08:10:02.255853,298,34,412, +35,2014-01-21 01:30:08.958856,471,250,413, +10,2014-01-17 11:12:49.876076,682,11,172, +92,2014-01-13 09:37:47.316496,957,438,71, +92,2014-01-13 23:55:12.986456,13,505,628, +35,2014-01-11 05:28:13.355108,615,218,433, +10,2014-01-14 12:45:59.591962,133,93,727, +35,2014-01-18 05:56:25.03001,199,244,957, +35,2014-01-20 00:41:45.514204,637,874,856, +92,2014-01-11 04:46:30.647483,967,261,566, +92,2014-01-14 04:50:35.542544,37,482,852, +92,2014-01-14 12:03:51.795205,833,547,168, +92,2014-01-16 07:26:40.883763,992,373,490, +10,2014-01-11 05:13:30.959053,794,114,571, +10,2014-01-20 15:58:15.115271,742,723,357, +35,2014-01-21 00:55:26.144347,468,153,160, +92,2014-01-19 22:02:06.498821,998,406,837, +92,2014-01-20 15:09:43.276894,63,265,162, +10,2014-01-13 16:21:02.998474,981,46,695, +10,2014-01-13 05:41:35.275499,360,256,977, +10,2014-01-20 17:03:38.011078,712,155,845, +92,2014-01-18 19:45:27.303204,291,821,195, +92,2014-01-19 12:07:49.84543,596,759,876, +35,2014-01-19 11:21:44.75909,825,91,743, +35,2014-01-17 19:47:55.251426,60,225,907, +92,2014-01-20 03:22:40.027485,619,563,781, +92,2014-01-12 14:53:59.798835,478,303,512, +92,2014-01-19 20:56:56.944489,675,932,839, +10,2014-01-19 12:00:46.877832,539,760,994, +92,2014-01-11 09:39:12.466748,937,392,404, +10,2014-01-15 02:51:14.596754,513,413,849, +92,2014-01-16 14:10:49.133684,864,226,941, +35,2014-01-11 05:09:21.426023,419,791,60, +92,2014-01-11 08:04:04.472831,109,223,367, +10,2014-01-19 03:48:36.45018,489,432,22, +92,2014-01-14 09:04:34.412479,444,832,783, +92,2014-01-11 17:32:17.828358,753,216,340, +10,2014-01-12 10:34:36.042561,915,396,39, +10,2014-01-11 09:00:59.44249,306,761,846, +92,2014-01-20 22:14:03.342562,410,235,954, +92,2014-01-12 19:21:06.690045,833,773,442, +10,2014-01-14 17:51:34.985033,828,824,693, +92,2014-01-14 04:17:55.137768,308,364,0, +35,2014-01-18 06:47:47.573807,252,971,641, +35,2014-01-15 03:05:05.944085,357,571,890, +10,2014-01-13 14:16:10.253039,902,666,172, +35,2014-01-18 01:43:13.718574,876,358,136, +10,2014-01-13 19:07:12.442907,495,201,675, +10,2014-01-12 23:25:53.529932,587,169,352, +10,2014-01-20 22:04:16.717048,433,495,333, +92,2014-01-16 04:48:47.718405,634,128,333, +92,2014-01-12 10:29:31.54143,69,522,311, +10,2014-01-18 11:49:44.020252,932,123,904, +35,2014-01-14 10:56:37.564254,148,431,306, +35,2014-01-21 01:51:16.300521,323,999,700, +35,2014-01-15 01:37:39.271679,583,121,360, +10,2014-01-13 08:19:17.59174,824,664,733, +48,2014-01-12 10:45:16.099356,279,638,539, +48,2014-01-13 16:34:36.216168,692,110,563, +48,2014-01-11 14:20:04.469572,294,909,709, +48,2014-01-13 00:24:28.566104,892,477,242, +48,2014-01-17 23:25:50.813341,465,846,135, +48,2014-01-17 08:30:53.603676,546,669,364, +48,2014-01-13 09:33:49.992127,720,763,939, +48,2014-01-18 11:29:55.286172,80,107,214, +48,2014-01-15 06:19:30.053856,2,621,657, +48,2014-01-16 22:38:24.404606,43,14,554, +48,2014-01-19 09:02:13.11453,904,851,314, +48,2014-01-16 20:54:06.096418,630,202,888, +48,2014-01-17 11:39:23.847096,658,329,692, +48,2014-01-19 01:16:16.457511,448,342,418, +48,2014-01-18 20:15:12.786463,302,291,66, +48,2014-01-10 23:30:58.832548,801,438,607, +48,2014-01-11 23:34:11.595279,243,820,87, +48,2014-01-15 21:03:00.36069,542,186,65, +48,2014-01-15 06:36:04.776634,311,847,819, +48,2014-01-14 17:50:21.848737,666,840,744, +48,2014-01-12 16:46:14.079264,804,50,485, +48,2014-01-18 05:43:17.21996,601,396,412, +48,2014-01-16 21:16:15.37867,478,279,159, +48,2014-01-12 08:50:30.796311,785,659,597, +48,2014-01-13 04:32:04.938366,757,840,380, +48,2014-01-18 11:45:46.9201,67,861,360, +48,2014-01-20 00:40:14.816983,519,62,988, +48,2014-01-16 19:28:42.50262,633,50,72, +48,2014-01-18 07:37:03.220621,141,138,78, +48,2014-01-13 20:17:54.088662,21,87,262, +48,2014-01-19 07:48:00.094778,279,275,627, +48,2014-01-19 22:22:19.319977,412,866,487, +48,2014-01-16 16:52:30.305249,894,151,736, +48,2014-01-20 02:08:04.56435,49,711,839, +48,2014-01-11 16:46:47.8865,952,9,439, +48,2014-01-13 10:18:21.11859,373,63,605, +48,2014-01-16 04:38:58.168026,20,491,927, +48,2014-01-14 06:20:37.878627,558,719,872, +48,2014-01-21 01:48:16.404761,765,522,991, +48,2014-01-20 14:58:28.222301,341,992,17, +48,2014-01-20 08:59:02.283653,95,573,422, +48,2014-01-19 04:50:29.51971,107,564,291, +48,2014-01-16 05:52:34.318719,981,564,638, +48,2014-01-16 14:38:26.130749,75,973,47, +48,2014-01-17 00:06:45.977222,243,580,21, +48,2014-01-13 20:07:47.1056,5,569,20, +48,2014-01-16 18:09:24.963297,620,955,893, +48,2014-01-18 03:40:57.572501,97,263,984, +48,2014-01-18 21:10:47.46629,414,964,981, +48,2014-01-21 04:45:29.74035,937,689,317, +48,2014-01-11 15:31:19.421239,44,81,962, +48,2014-01-20 17:57:01.545553,200,244,630, +48,2014-01-18 04:28:46.96031,1,649,509, +48,2014-01-17 16:47:34.800327,0,592,739, +48,2014-01-11 20:47:32.341865,786,779,622, +48,2014-01-20 13:00:51.898676,535,485,710, +48,2014-01-14 22:33:21.720427,143,235,860, +48,2014-01-21 01:27:47.158848,660,351,699, +48,2014-01-16 02:29:34.401715,128,246,409, +48,2014-01-12 00:10:24.941467,244,7,756, +48,2014-01-13 15:45:41.247929,633,993,555, +48,2014-01-14 04:17:34.496493,964,897,254, +48,2014-01-21 02:32:44.261444,399,755,845, +48,2014-01-19 12:38:11.553178,834,101,671, +48,2014-01-13 00:25:39.060844,779,842,611, +48,2014-01-11 13:19:32.147944,473,713,439, +48,2014-01-11 16:56:32.671768,818,483,915, +48,2014-01-18 09:04:37.229289,385,210,313, +48,2014-01-14 23:40:10.026991,541,471,856, +48,2014-01-11 12:44:49.076529,591,529,394, +48,2014-01-17 18:03:05.45159,541,482,660, +48,2014-01-14 02:39:12.310644,678,521,542, +48,2014-01-19 21:35:18.596241,704,759,467, +48,2014-01-12 17:55:39.770307,86,962,770, +48,2014-01-19 21:17:38.441393,326,282,378, +48,2014-01-15 15:42:04.573462,473,575,750, +48,2014-01-15 18:03:26.875908,890,72,331, +48,2014-01-15 09:27:03.405108,565,601,158, +48,2014-01-12 13:23:02.146382,626,724,96, +48,2014-01-13 09:14:14.342198,392,45,38, +48,2014-01-15 08:12:33.145459,300,284,481, +48,2014-01-13 08:54:21.567621,844,246,847, +48,2014-01-12 21:11:15.887751,636,874,28, +48,2014-01-12 06:41:20.105769,683,765,479, +48,2014-01-20 05:41:56.367948,217,903,879, +48,2014-01-13 21:58:48.230034,51,955,192, +48,2014-01-11 13:42:12.004445,148,627,831, +48,2014-01-13 22:15:18.088794,136,765,483, +48,2014-01-13 17:26:35.388882,152,973,71, +48,2014-01-16 20:11:46.406159,661,93,387, +48,2014-01-15 02:25:43.030261,250,674,791, +48,2014-01-16 13:12:16.636811,873,946,71, +48,2014-01-20 04:29:20.902653,396,990,183, +48,2014-01-14 22:58:27.291705,847,147,988, +48,2014-01-14 19:50:28.189989,664,458,795, +48,2014-01-11 22:54:59.963916,54,414,571, +48,2014-01-15 16:17:59.440068,3,187,270, +48,2014-01-15 16:47:00.861756,41,224,793, +48,2014-01-19 11:59:37.193203,794,100,859, +48,2014-01-19 19:58:09.467058,993,387,239, +48,2014-01-16 09:31:49.938705,223,589,97, +48,2014-01-16 00:02:42.644793,500,571,922, +48,2014-01-12 16:37:21.777702,379,111,57, +48,2014-01-15 01:07:08.534945,139,175,285, +48,2014-01-17 21:58:22.4151,736,378,936, +48,2014-01-11 07:55:00.219094,57,546,745, +5,2014-01-19 20:49:13.108826,737,811,477, +53,2014-01-12 10:01:49.291427,283,644,144, +5,2014-01-15 21:22:03.624203,430,462,691, +53,2014-01-11 04:12:15.255208,242,281,532, +5,2014-01-14 23:16:03.633625,972,834,63, +53,2014-01-20 09:34:36.769661,857,409,676, +5,2014-01-13 17:06:36.822829,467,299,44, +5,2014-01-17 00:27:19.521795,786,764,834, +53,2014-01-11 10:15:56.875431,712,34,806, +5,2014-01-12 16:48:33.191196,52,79,496, +5,2014-01-20 02:26:07.75183,971,558,456, +53,2014-01-12 03:58:08.880295,863,163,645, +5,2014-01-15 19:03:51.27999,225,471,449, +53,2014-01-12 13:52:43.140711,921,843,288, +53,2014-01-18 04:09:55.286454,357,991,927, +5,2014-01-20 01:29:34.310251,570,307,912, +5,2014-01-18 07:04:59.777942,449,886,80, +53,2014-01-17 02:39:16.189527,442,314,207, +5,2014-01-13 18:28:01.601956,67,176,10, +53,2014-01-11 20:55:27.967931,975,404,366, +53,2014-01-18 05:34:16.153442,907,669,503, +5,2014-01-18 14:46:01.042025,284,546,244, +53,2014-01-16 17:42:28.830106,694,939,343, +5,2014-01-16 11:33:53.346646,739,184,842, +53,2014-01-17 04:44:10.509083,846,243,483, +5,2014-01-11 21:14:18.768811,591,534,737, +53,2014-01-11 05:36:35.991439,667,388,430, +5,2014-01-19 01:21:32.286784,642,581,244, +5,2014-01-16 02:21:27.303756,91,674,830, +53,2014-01-18 07:34:58.406539,94,664,969, +5,2014-01-19 13:16:32.506298,434,519,670, +5,2014-01-14 17:10:40.412583,378,218,690, +5,2014-01-19 21:36:47.697967,352,109,401, +53,2014-01-14 04:38:36.1305,965,203,298, +53,2014-01-15 01:22:55.667792,877,206,615, +53,2014-01-13 14:52:51.33201,984,739,774, +5,2014-01-13 08:13:12.900581,902,131,575, +5,2014-01-17 22:29:32.49104,262,447,872, +5,2014-01-19 19:20:10.853806,550,910,250, +5,2014-01-13 22:29:09.776011,687,352,519, +53,2014-01-19 19:18:05.682235,68,394,920, +53,2014-01-18 15:46:18.605635,301,726,512, +5,2014-01-15 06:27:18.656306,923,803,700, +53,2014-01-14 08:21:56.962226,828,539,658, +5,2014-01-20 09:39:01.746348,484,33,837, +5,2014-01-12 04:37:13.94318,281,545,971, +53,2014-01-13 03:51:31.272477,265,951,306, +53,2014-01-17 10:44:01.52429,395,843,87, +5,2014-01-18 11:16:30.132707,847,260,438, +53,2014-01-16 02:19:32.874433,101,554,137, +5,2014-01-18 11:39:29.49264,529,543,256, +5,2014-01-15 10:50:46.286149,73,152,558, +5,2014-01-13 11:05:33.916877,130,823,696, +5,2014-01-13 23:21:58.322746,888,624,391, +53,2014-01-21 02:24:39.632795,178,769,310, +53,2014-01-19 19:49:44.42596,673,624,22, +5,2014-01-15 00:36:17.091557,394,417,359, +5,2014-01-11 02:01:15.624232,732,594,851, +53,2014-01-17 15:11:16.713164,285,617,266, +5,2014-01-20 06:57:44.395315,722,977,830, +5,2014-01-18 13:36:14.030772,523,187,496, +53,2014-01-15 22:27:49.219461,76,445,570, +5,2014-01-13 18:08:24.808316,146,817,772, +5,2014-01-17 05:13:01.729157,344,988,768, +53,2014-01-19 07:06:25.349961,37,517,866, +5,2014-01-17 23:31:20.476107,792,825,860, +53,2014-01-20 00:05:53.061168,254,35,511, +5,2014-01-11 09:19:38.250543,825,724,751, +5,2014-01-14 16:00:52.967147,871,702,794, +53,2014-01-18 13:26:03.914973,912,170,677, +53,2014-01-14 11:48:48.026974,974,781,312, +5,2014-01-13 05:18:58.649383,73,474,93, +53,2014-01-15 23:12:22.520608,211,335,377, +53,2014-01-18 22:16:06.68328,204,193,750, +53,2014-01-16 17:40:55.611608,54,287,130, +5,2014-01-15 02:51:24.266956,255,603,871, +5,2014-01-20 06:53:20.62646,679,180,55, +53,2014-01-19 01:32:26.884085,294,72,916, +5,2014-01-11 07:35:25.791665,510,183,585, +5,2014-01-17 12:09:50.759168,296,720,641, +5,2014-01-13 21:51:59.758939,148,812,687, +53,2014-01-18 23:14:55.284304,317,298,533, +53,2014-01-11 17:00:37.045317,42,61,246, +5,2014-01-16 12:57:33.675816,901,595,156, +53,2014-01-11 16:36:53.60705,441,963,220, +5,2014-01-11 13:25:16.67811,918,687,540, +53,2014-01-15 02:47:18.101776,274,874,460, +5,2014-01-15 21:13:10.698608,407,378,919, +53,2014-01-11 19:26:32.302344,593,151,977, +5,2014-01-11 11:58:34.81494,113,972,416, +53,2014-01-14 22:10:55.093922,883,753,689, +5,2014-01-19 13:02:46.333534,692,877,932, +5,2014-01-16 14:26:24.034401,628,666,312, +53,2014-01-17 20:19:19.902239,795,957,452, +53,2014-01-15 12:15:48.062691,367,80,1000, +53,2014-01-14 15:32:49.384781,654,946,418, +5,2014-01-14 13:50:40.378765,677,834,751, +53,2014-01-14 06:21:41.123858,425,50,110, +53,2014-01-15 04:52:27.635324,968,961,454, +5,2014-01-18 09:51:33.345911,35,250,971, +53,2014-01-11 13:47:45.038832,768,206,226, +5,2014-01-18 20:41:15.662298,195,838,237, +5,2014-01-20 19:10:31.995714,135,356,987, +5,2014-01-16 17:00:07.559441,859,575,955, +5,2014-01-16 12:57:22.345997,180,557,392, +53,2014-01-16 06:51:27.607322,832,209,16, +5,2014-01-20 23:51:31.826397,735,812,252, +5,2014-01-15 13:50:42.972457,228,326,548, +5,2014-01-14 02:23:54.491827,65,873,764, +5,2014-01-11 01:26:57.618061,818,164,137, +53,2014-01-11 20:00:33.732044,783,197,897, +5,2014-01-17 04:15:54.250766,783,195,837, +53,2014-01-19 04:41:52.902366,16,439,390, +5,2014-01-12 17:01:10.77736,939,552,834, +5,2014-01-12 11:13:27.92658,130,72,288, +53,2014-01-20 01:18:46.509417,812,507,648, +5,2014-01-13 10:26:27.455891,919,784,584, +53,2014-01-16 18:00:46.028356,235,368,230, +5,2014-01-14 16:31:57.208025,693,43,519, +53,2014-01-14 09:52:59.758234,559,67,953, +53,2014-01-17 09:59:20.843715,574,111,327, +53,2014-01-18 18:42:52.302366,775,295,526, +53,2014-01-12 16:55:46.091768,837,643,48, +5,2014-01-12 18:25:44.878116,985,14,158, +5,2014-01-15 09:02:12.204604,358,565,296, +5,2014-01-17 09:11:34.154459,56,248,647, +53,2014-01-16 13:58:34.262897,667,453,626, +5,2014-01-19 02:52:52.583369,872,206,596, +5,2014-01-20 19:33:15.278318,356,85,554, +5,2014-01-20 22:51:01.898641,427,829,489, +5,2014-01-16 06:44:25.929699,650,260,510, +53,2014-01-11 03:21:00.31715,771,498,344, +5,2014-01-18 13:32:17.560939,708,344,735, +53,2014-01-15 19:54:57.925414,126,149,587, +5,2014-01-17 00:21:07.876591,186,188,689, +53,2014-01-13 20:29:39.906935,583,206,455, +5,2014-01-10 20:46:25.532735,562,141,184, +5,2014-01-16 18:12:39.703406,843,620,790, +53,2014-01-18 14:20:22.879811,350,218,767, +5,2014-01-14 03:10:20.024562,981,712,838, +53,2014-01-16 23:39:37.321468,664,827,42, +5,2014-01-19 14:20:56.611855,671,76,162, +53,2014-01-20 11:26:14.275327,810,179,132, +53,2014-01-14 22:21:30.224253,970,208,187, +53,2014-01-11 01:22:07.389216,937,362,763, +53,2014-01-11 16:39:42.201908,355,872,167, +5,2014-01-13 17:40:16.73367,404,538,819, +5,2014-01-13 15:48:34.845106,48,214,519, +5,2014-01-17 14:40:28.230683,90,329,41, +53,2014-01-17 14:12:13.942114,471,224,235, +5,2014-01-17 05:41:34.603759,507,503,224, +53,2014-01-13 18:39:49.074398,696,396,94, +5,2014-01-15 02:55:06.244479,294,758,236, +53,2014-01-19 02:37:20.695527,870,47,340, +5,2014-01-15 17:05:33.952514,614,212,53, +5,2014-01-19 15:57:18.449082,898,766,389, +5,2014-01-15 05:48:54.850406,540,614,850, +53,2014-01-11 01:04:08.21583,371,786,43, +53,2014-01-17 12:50:11.03287,446,51,880, +5,2014-01-14 19:22:10.128724,124,924,340, +53,2014-01-21 03:55:10.114471,284,961,900, +5,2014-01-12 13:34:36.96257,665,929,799, +5,2014-01-15 02:43:10.446293,156,736,796, +5,2014-01-18 11:27:27.675408,123,33,163, +5,2014-01-17 13:29:34.887982,179,1,757, +53,2014-01-10 21:04:18.322883,163,550,638, +53,2014-01-11 01:57:07.582764,847,241,256, +5,2014-01-17 14:16:00.420718,936,420,6, +5,2014-01-16 19:16:58.02629,89,830,579, +5,2014-01-18 20:17:30.462575,947,382,498, +53,2014-01-20 21:26:20.445699,675,975,966, +5,2014-01-12 12:56:35.348176,92,934,379, +53,2014-01-17 04:38:27.07443,254,461,834, +53,2014-01-20 02:52:34.721026,706,66,556, +5,2014-01-16 15:18:05.572429,764,160,311, +5,2014-01-17 10:00:34.463647,585,790,449, +53,2014-01-20 23:32:16.923354,944,801,240, +5,2014-01-19 12:58:22.306099,360,239,832, +53,2014-01-20 05:49:09.309172,89,783,782, +53,2014-01-17 08:12:45.154037,892,67,429, +77,2014-01-15 21:10:36.248211,624,608,746, +50,2014-01-16 05:30:43.912931,1,348,428, +50,2014-01-20 06:52:34.228435,945,795,85, +77,2014-01-20 04:05:42.492691,994,439,798, +77,2014-01-14 02:08:04.608459,552,216,211, +77,2014-01-14 17:58:08.180949,458,616,440, +50,2014-01-18 14:03:00.942193,753,966,504, +77,2014-01-18 11:56:59.458865,242,96,103, +77,2014-01-14 23:02:16.396779,933,678,525, +77,2014-01-14 20:53:11.975062,660,410,968, +50,2014-01-12 01:19:09.588008,779,298,756, +50,2014-01-14 20:57:26.51125,167,553,59, +50,2014-01-16 14:27:48.937631,100,584,670, +77,2014-01-16 08:02:20.0343,236,514,337, +77,2014-01-12 02:24:54.187077,398,682,344, +50,2014-01-12 21:57:23.825615,349,920,899, +77,2014-01-16 09:06:38.357183,223,284,339, +77,2014-01-12 08:22:01.769841,76,67,328, +77,2014-01-19 16:13:24.246331,425,580,363, +77,2014-01-11 22:23:36.383892,6,285,753, +77,2014-01-20 08:39:32.232416,332,298,54, +77,2014-01-19 07:39:44.692031,134,44,293, +77,2014-01-13 15:20:11.732069,8,748,567, +50,2014-01-16 07:17:59.306846,807,241,793, +77,2014-01-18 04:32:19.413476,541,195,685, +77,2014-01-19 10:38:17.304498,244,851,176, +77,2014-01-12 11:18:33.770493,207,503,214, +77,2014-01-17 22:04:36.33683,873,235,380, +50,2014-01-17 17:36:39.610597,134,154,884, +77,2014-01-11 11:07:43.079665,381,463,834, +77,2014-01-14 00:17:21.490868,196,751,175, +50,2014-01-12 08:47:15.859227,554,212,405, +50,2014-01-16 20:38:26.992597,508,433,246, +50,2014-01-13 01:09:55.719303,986,989,350, +77,2014-01-11 06:52:58.351919,828,525,181, +50,2014-01-20 02:46:31.601475,354,581,51, +77,2014-01-16 23:08:03.900252,113,96,911, +50,2014-01-19 00:55:59.29411,423,27,863, +77,2014-01-17 08:43:31.06034,38,399,963, +77,2014-01-21 02:10:20.29745,570,564,295, +77,2014-01-12 15:49:11.269173,684,930,322, +77,2014-01-18 14:02:40.648348,866,213,199, +50,2014-01-14 17:07:46.8087,67,740,50, +77,2014-01-18 10:17:00.206804,801,63,613, +77,2014-01-13 16:05:00.682648,866,571,727, +50,2014-01-15 23:32:40.995777,959,168,941, +50,2014-01-20 12:14:24.032419,715,934,872, +77,2014-01-19 05:11:39.04025,942,212,235, +77,2014-01-17 11:54:42.765618,267,412,281, +50,2014-01-18 22:27:48.27917,160,778,718, +50,2014-01-20 07:35:15.424143,527,890,541, +50,2014-01-16 14:34:14.998033,533,396,488, +50,2014-01-17 00:07:32.9712,487,464,615, +77,2014-01-12 16:55:27.15621,803,367,218, +77,2014-01-11 15:52:14.304879,812,265,193, +50,2014-01-13 22:39:52.384677,101,718,491, +50,2014-01-10 21:33:44.460708,489,895,578, +77,2014-01-13 07:10:48.075792,712,514,123, +50,2014-01-21 00:44:28.721506,902,366,776, +50,2014-01-17 19:10:24.071305,645,950,157, +77,2014-01-13 22:18:31.155456,284,645,328, +50,2014-01-13 19:01:50.212374,561,214,616, +50,2014-01-19 07:57:39.930532,487,141,334, +77,2014-01-19 22:56:58.148472,310,220,102, +50,2014-01-16 00:11:45.931677,59,250,947, +50,2014-01-19 18:50:38.28287,755,787,706, +77,2014-01-18 19:43:29.749947,750,941,506, +77,2014-01-11 17:19:49.832348,692,657,177, +50,2014-01-17 13:46:37.57698,373,134,276, +77,2014-01-14 22:27:00.810286,408,160,957, +77,2014-01-11 13:30:10.129798,831,832,126, +77,2014-01-19 09:35:48.846572,349,170,853, +77,2014-01-12 06:29:41.459052,995,172,813, +77,2014-01-15 10:37:56.938498,245,421,786, +77,2014-01-16 13:52:49.053377,798,729,943, +77,2014-01-15 02:34:42.1417,39,920,758, +77,2014-01-20 14:10:37.934695,495,595,767, +77,2014-01-15 20:07:13.086215,91,673,732, +50,2014-01-13 01:46:21.181951,255,553,626, +50,2014-01-16 20:05:20.700312,509,591,369, +50,2014-01-13 12:35:01.365384,277,432,219, +50,2014-01-12 03:21:36.606094,311,681,578, +50,2014-01-12 04:39:35.698765,935,623,338, +77,2014-01-19 16:42:34.336584,689,294,255, +50,2014-01-14 00:17:03.762304,502,975,545, +50,2014-01-13 00:31:50.003645,510,255,99, +50,2014-01-12 09:22:26.72168,114,950,345, +50,2014-01-14 01:50:48.223012,710,417,123, +50,2014-01-15 11:42:38.079436,317,636,41, +50,2014-01-12 04:06:55.443186,846,512,453, +77,2014-01-21 01:01:12.294736,992,823,953, +77,2014-01-18 14:01:09.235311,842,851,239, +50,2014-01-15 03:08:45.65598,894,657,801, +77,2014-01-19 02:58:52.225269,350,995,796, +77,2014-01-17 06:58:07.383783,644,232,415, +77,2014-01-20 07:20:31.587657,471,373,86, +77,2014-01-17 15:49:30.508139,465,358,922, +77,2014-01-14 20:41:37.133729,156,234,677, +77,2014-01-21 04:40:21.420005,23,202,254, +77,2014-01-13 23:36:08.085538,184,631,793, +50,2014-01-18 23:08:37.944016,683,556,955, +77,2014-01-11 12:10:31.549803,18,880,68, +77,2014-01-12 03:11:56.93211,234,16,21, +77,2014-01-20 09:38:19.403068,444,158,177, +50,2014-01-16 02:48:28.48872,84,337,890, +77,2014-01-17 21:04:45.985486,292,128,556, +77,2014-01-14 06:13:01.545188,750,369,870, +77,2014-01-15 10:59:06.423415,972,345,999, +50,2014-01-12 11:11:59.071701,577,606,515, +50,2014-01-16 11:59:22.727139,174,161,282, +50,2014-01-11 01:04:27.123727,222,917,677, +50,2014-01-15 03:47:00.437085,628,101,479, +77,2014-01-17 19:20:59.333651,512,393,296, +50,2014-01-12 09:44:02.822492,115,728,131, +50,2014-01-13 14:29:34.77409,810,581,347, +50,2014-01-20 23:38:03.095955,435,531,109, +77,2014-01-14 14:15:52.826556,213,480,911, +50,2014-01-15 03:52:01.495769,525,378,796, +50,2014-01-13 19:28:51.319386,599,897,446, +77,2014-01-19 05:58:30.905992,870,580,424, +50,2014-01-16 11:58:56.938956,962,264,10, +77,2014-01-13 14:30:03.614123,650,143,148, +50,2014-01-16 13:59:40.141303,320,263,681, +50,2014-01-20 19:07:42.594936,672,89,944, +77,2014-01-11 11:28:55.839391,919,401,140, +50,2014-01-12 14:57:47.525086,584,619,832, +77,2014-01-19 20:28:14.183012,832,30,262, +77,2014-01-18 07:18:26.347949,27,720,289, +77,2014-01-16 15:39:24.658817,929,345,263, +77,2014-01-19 19:08:35.603017,474,990,977, +50,2014-01-11 00:54:34.433486,505,796,31, +50,2014-01-14 08:48:02.603251,815,492,532, +77,2014-01-20 11:19:07.15324,725,585,318, +77,2014-01-12 08:06:31.365597,848,908,125, +50,2014-01-13 12:26:22.006319,807,651,606, +50,2014-01-15 08:07:35.641959,136,856,840, +77,2014-01-19 09:11:17.351083,958,999,210, +50,2014-01-16 22:39:23.551506,54,125,503, +50,2014-01-19 23:06:42.065374,127,63,73, +50,2014-01-21 00:23:16.423204,544,609,690, +77,2014-01-12 04:38:46.279064,639,464,937, +77,2014-01-20 04:11:09.189101,19,435,753, +77,2014-01-14 22:10:16.86029,80,651,882, +77,2014-01-19 03:59:45.612715,884,289,813, +50,2014-01-11 07:55:12.012013,835,473,510, +50,2014-01-17 16:39:51.634379,831,697,26, +77,2014-01-18 21:37:48.70867,28,828,997, +77,2014-01-15 02:11:04.838569,627,909,718, +77,2014-01-11 14:31:53.130148,741,18,45, +77,2014-01-11 11:06:40.028055,456,521,301, +77,2014-01-13 02:09:35.74456,49,455,471, +77,2014-01-17 06:30:50.069523,909,53,459, +50,2014-01-14 05:36:43.642178,941,889,422, +77,2014-01-18 20:09:15.886282,745,498,91, +50,2014-01-16 19:38:32.664459,192,981,966, +50,2014-01-14 21:05:39.481989,894,251,914, +77,2014-01-20 15:07:03.41137,956,9,488, +50,2014-01-15 10:06:46.847472,465,84,39, +77,2014-01-11 22:24:05.829936,562,181,329, +77,2014-01-16 00:46:28.070604,481,527,244, +77,2014-01-13 23:15:22.450907,674,828,954, +77,2014-01-12 03:18:40.263423,569,390,889, +50,2014-01-19 13:34:30.673855,316,801,677, +50,2014-01-13 04:34:29.604147,581,436,869, +50,2014-01-13 15:25:11.62902,139,17,162, +50,2014-01-11 20:00:52.680174,344,337,478, +77,2014-01-17 16:42:05.246106,494,24,365, +50,2014-01-11 18:36:28.980104,887,947,852, +50,2014-01-17 22:40:16.2321,563,98,807, +77,2014-01-16 09:48:47.311481,533,498,461, +77,2014-01-11 12:59:45.403308,61,845,758, +77,2014-01-19 07:19:02.511164,658,580,883, +77,2014-01-15 07:59:56.500582,828,221,422, +77,2014-01-15 15:10:02.264017,233,229,206, +77,2014-01-17 05:18:48.123878,128,354,422, +50,2014-01-15 19:55:08.512595,16,623,864, +50,2014-01-12 01:49:53.898396,430,88,950, +77,2014-01-14 20:56:36.832548,704,278,971, +50,2014-01-20 02:06:13.351164,562,492,706, +77,2014-01-12 20:21:47.028964,574,7,512, +4,2014-01-15 12:03:16.861022,346,529,541, +14,2014-01-11 22:15:49.096143,395,371,629, +61,2014-01-19 06:52:37.098486,668,998,655, +54,2014-01-18 21:40:00.5032,172,368,813, +14,2014-01-19 22:25:04.982426,382,623,463, +93,2014-01-14 20:31:09.762946,745,153,773, +7,2014-01-12 12:45:39.985189,923,659,306, +4,2014-01-19 07:32:08.393795,380,491,276, +4,2014-01-19 10:37:56.610836,892,307,876, +93,2014-01-13 15:09:45.815125,317,525,325, +61,2014-01-14 02:18:36.4644,297,438,665, +7,2014-01-12 03:53:19.061744,355,152,674, +61,2014-01-14 22:28:26.078549,410,25,592, +4,2014-01-12 09:53:07.138255,285,709,918, +4,2014-01-14 12:27:48.665891,735,499,116, +7,2014-01-17 17:53:37.707569,141,508,511, +7,2014-01-13 09:53:59.818848,166,556,139, +4,2014-01-10 23:09:53.911997,154,714,235, +4,2014-01-18 16:30:06.688092,784,79,108, +14,2014-01-20 12:34:16.050948,441,362,165, +7,2014-01-16 12:58:41.223478,993,376,21, +93,2014-01-19 09:29:52.091399,773,862,564, +4,2014-01-18 13:53:18.562111,707,454,434, +93,2014-01-21 00:58:37.724059,847,314,304, +61,2014-01-13 18:39:54.355417,274,502,118, +7,2014-01-14 13:12:06.68599,122,467,545, +7,2014-01-15 14:53:46.237074,858,739,358, +61,2014-01-15 00:29:48.254231,755,48,611, +61,2014-01-18 14:08:43.518538,973,81,405, +4,2014-01-14 10:59:59.588237,152,744,455, +54,2014-01-17 00:51:35.283194,488,207,842, +61,2014-01-12 20:12:00.37956,685,231,392, +14,2014-01-15 13:15:48.68438,120,765,759, +7,2014-01-15 01:44:12.38168,40,252,898, +14,2014-01-20 21:52:00.883179,163,480,824, +4,2014-01-14 05:40:53.666806,239,5,130, +54,2014-01-19 02:15:22.144626,363,267,499, +54,2014-01-12 04:37:40.868368,862,675,497, +14,2014-01-12 07:13:02.06102,621,667,370, +14,2014-01-17 06:53:18.755462,122,827,311, +93,2014-01-14 23:47:26.683912,622,133,527, +54,2014-01-15 13:31:38.52542,726,249,59, +61,2014-01-18 14:46:37.817205,882,321,232, +7,2014-01-19 02:15:52.762461,491,478,60, +61,2014-01-17 03:24:45.664094,630,58,855, +7,2014-01-11 21:14:26.483096,755,721,353, +7,2014-01-15 14:09:30.470449,818,965,518, +14,2014-01-19 17:18:45.482942,120,357,485, +7,2014-01-12 00:24:20.395093,755,936,709, +7,2014-01-13 00:39:37.158541,695,933,292, +7,2014-01-18 23:53:01.53389,969,333,940, +61,2014-01-17 17:23:01.618571,951,947,856, +61,2014-01-11 04:09:29.24994,645,580,467, +61,2014-01-16 07:46:20.096001,73,337,576, +14,2014-01-17 12:21:39.34305,36,316,482, +93,2014-01-14 02:49:23.605775,673,132,71, +7,2014-01-20 00:58:26.781992,850,346,758, +93,2014-01-11 21:15:25.580124,295,456,11, +4,2014-01-18 07:19:11.860006,212,231,746, +4,2014-01-17 09:07:10.300529,672,715,865, +7,2014-01-15 12:15:25.16836,569,636,768, +4,2014-01-14 02:10:47.143201,973,275,786, +93,2014-01-19 09:19:10.680508,829,542,373, +7,2014-01-20 05:31:13.85316,968,135,229, +14,2014-01-18 07:54:59.524881,185,819,433, +54,2014-01-19 01:11:11.563688,982,422,693, +14,2014-01-13 05:12:07.519966,364,947,254, +93,2014-01-16 04:10:21.669507,818,808,491, +54,2014-01-20 09:48:52.432056,581,886,201, +4,2014-01-14 16:25:09.580985,497,54,278, +54,2014-01-12 05:03:40.425389,685,755,243, +14,2014-01-14 03:36:19.115968,326,676,661, +14,2014-01-19 09:56:48.106824,65,723,757, +14,2014-01-19 23:50:18.242594,56,280,420, +61,2014-01-11 23:52:11.878848,643,731,460, +61,2014-01-15 07:21:33.770918,362,494,253, +14,2014-01-21 01:04:44.726109,657,901,868, +93,2014-01-16 18:01:42.349297,237,748,580, +14,2014-01-13 18:40:19.253859,438,622,121, +93,2014-01-11 19:29:05.121202,984,27,453, +61,2014-01-18 22:41:19.507838,5,206,252, +7,2014-01-11 12:33:20.78775,708,100,450, +93,2014-01-18 16:52:06.740192,759,385,956, +4,2014-01-19 06:50:48.757778,462,975,723, +61,2014-01-17 00:19:40.883751,48,498,69, +4,2014-01-14 23:13:46.083242,682,86,655, +4,2014-01-12 03:40:12.363553,521,358,733, +14,2014-01-15 19:18:07.665743,443,501,178, +7,2014-01-16 00:29:11.663365,756,968,790, +7,2014-01-19 14:59:24.223559,673,675,618, +4,2014-01-11 22:25:17.966272,197,869,202, +54,2014-01-20 16:44:36.831726,284,388,906, +7,2014-01-12 11:10:11.36676,103,963,413, +61,2014-01-20 11:44:28.64678,444,396,107, +4,2014-01-19 16:15:50.684885,234,283,756, +7,2014-01-19 23:05:10.891642,366,636,301, +61,2014-01-18 06:55:40.210469,761,999,645, +61,2014-01-11 15:27:58.205271,173,936,677, +54,2014-01-14 21:15:32.561568,571,978,416, +14,2014-01-17 10:44:32.642944,935,3,2, +7,2014-01-15 11:53:07.786256,784,286,399, +93,2014-01-16 06:19:12.986956,10,365,29, +61,2014-01-20 18:20:51.758911,457,63,895, +93,2014-01-13 15:49:55.893081,345,918,751, +54,2014-01-15 00:09:31.229551,767,768,850, +93,2014-01-11 12:13:03.637759,655,351,874, +61,2014-01-18 03:11:29.663999,984,477,539, +4,2014-01-14 19:14:15.95566,427,994,507, +7,2014-01-17 10:14:45.987057,67,901,679, +4,2014-01-21 01:51:48.917858,227,93,678, +7,2014-01-15 18:43:21.077281,527,881,924, +61,2014-01-15 02:56:05.494895,120,744,490, +14,2014-01-11 08:25:09.705608,561,626,837, +61,2014-01-13 05:35:27.817474,756,304,574, +14,2014-01-13 03:46:54.253092,122,415,603, +14,2014-01-17 12:44:50.589359,30,269,197, +4,2014-01-17 08:49:13.900715,396,585,725, +14,2014-01-14 11:27:06.616645,612,895,72, +93,2014-01-12 02:02:58.255102,585,142,563, +14,2014-01-12 03:18:25.56408,83,719,579, +61,2014-01-12 20:26:30.840624,592,164,445, +61,2014-01-13 04:28:16.221793,143,708,58, +14,2014-01-11 14:03:02.395805,493,926,307, +93,2014-01-14 11:36:42.207384,476,827,605, +14,2014-01-12 10:12:44.868573,833,522,452, +93,2014-01-20 10:18:53.08111,704,976,433, +4,2014-01-13 04:41:53.099445,721,998,712, +7,2014-01-19 21:08:25.07946,457,550,540, +14,2014-01-21 05:46:51.286381,430,57,898, +61,2014-01-17 05:57:25.661013,307,403,260, +7,2014-01-16 01:52:57.722404,783,570,322, +14,2014-01-15 11:39:59.072637,762,734,528, +93,2014-01-12 06:16:38.64797,126,424,930, +93,2014-01-15 14:13:49.481316,823,992,355, +4,2014-01-18 07:29:54.966137,337,512,534, +4,2014-01-16 10:26:09.877521,868,982,349, +7,2014-01-16 06:26:53.119494,981,523,22, +61,2014-01-15 04:41:24.630136,620,502,546, +7,2014-01-20 09:40:25.8336,68,426,415, +4,2014-01-12 10:41:39.106551,688,293,622, +14,2014-01-15 00:33:13.548414,362,490,920, +54,2014-01-14 22:23:46.910881,134,960,646, +4,2014-01-16 17:37:44.601866,779,929,207, +54,2014-01-15 12:58:23.254022,680,607,871, +4,2014-01-17 07:59:14.728355,404,270,791, +93,2014-01-19 01:24:38.854957,396,141,321, +93,2014-01-11 19:43:13.8438,591,199,468, +14,2014-01-13 10:48:28.62907,876,4,15, +93,2014-01-12 06:51:45.471602,327,939,215, +61,2014-01-13 01:46:12.098901,124,482,581, +61,2014-01-14 18:06:54.19315,274,513,965, +93,2014-01-14 07:18:16.312226,761,686,775, +61,2014-01-15 10:14:28.320694,355,123,854, +93,2014-01-15 12:09:56.588955,783,449,491, +54,2014-01-17 22:54:58.520028,428,544,978, +61,2014-01-17 00:27:13.189686,808,234,119, +54,2014-01-14 16:28:49.670066,691,930,185, +4,2014-01-20 07:36:51.619473,874,334,137, +4,2014-01-15 15:35:38.269147,562,404,229, +54,2014-01-14 16:15:40.956447,170,547,823, +7,2014-01-16 07:34:17.280486,241,683,768, +7,2014-01-20 21:28:35.991551,600,154,492, +93,2014-01-19 07:55:40.029503,414,734,108, +7,2014-01-17 17:50:55.928455,603,249,490, +7,2014-01-15 05:42:25.472866,570,847,170, +4,2014-01-16 09:25:34.995641,566,967,352, +93,2014-01-12 22:17:05.805976,141,533,218, +4,2014-01-20 16:09:18.59236,332,552,273, +54,2014-01-20 18:06:59.625777,546,451,231, +7,2014-01-12 01:57:31.639576,135,47,380, +14,2014-01-11 20:50:57.69933,231,309,815, +54,2014-01-14 12:40:13.174191,83,343,422, +7,2014-01-16 04:21:18.550458,795,958,307, +14,2014-01-17 18:28:42.301196,605,562,375, +93,2014-01-19 05:38:36.428631,779,696,829, +14,2014-01-12 06:20:33.278814,621,600,643, +93,2014-01-15 13:53:21.156153,20,714,735, +4,2014-01-20 05:21:50.272431,188,896,843, +61,2014-01-14 21:09:01.907883,113,369,200, +7,2014-01-17 00:45:06.627755,890,2,865, +61,2014-01-12 01:08:02.371332,989,266,603, +93,2014-01-18 19:15:56.101033,696,958,799, +61,2014-01-20 12:03:22.9404,426,920,544, +93,2014-01-16 15:22:30.692446,234,247,265, +93,2014-01-13 01:25:52.690408,727,766,749, +4,2014-01-17 04:58:21.460428,536,425,780, +54,2014-01-12 09:49:43.882132,758,448,270, +54,2014-01-16 21:54:42.360474,945,1,531, +93,2014-01-16 06:35:13.079902,72,17,532, +54,2014-01-17 05:25:22.151279,544,423,823, +61,2014-01-20 18:10:23.31734,730,686,345, +14,2014-01-11 08:09:30.360388,303,339,195, +93,2014-01-16 20:53:58.14283,107,564,750, +4,2014-01-18 20:06:03.346843,828,346,632, +7,2014-01-18 06:00:26.288844,523,374,416, +7,2014-01-10 20:36:23.615696,305,229,92, +14,2014-01-13 23:31:38.342482,250,814,57, +4,2014-01-20 08:17:32.09482,54,244,631, +14,2014-01-20 16:45:42.208475,67,558,542, +93,2014-01-13 11:38:37.968259,402,610,63, +93,2014-01-11 04:15:03.734816,335,424,82, +61,2014-01-11 07:36:39.907805,172,20,58, +61,2014-01-17 04:18:51.142869,57,149,94, +4,2014-01-16 12:36:22.285273,872,347,991, +93,2014-01-18 06:05:22.209001,938,602,575, +4,2014-01-15 03:57:27.5715,711,4,427, +93,2014-01-17 22:56:55.564505,666,99,350, +93,2014-01-12 13:58:43.365154,624,702,565, +93,2014-01-14 03:19:17.843931,556,375,91, +7,2014-01-11 14:05:57.472389,531,436,884, +54,2014-01-18 18:43:49.992909,493,506,645, +4,2014-01-15 08:27:20.215264,760,719,944, +93,2014-01-19 13:21:53.573842,127,679,729, +54,2014-01-18 00:47:12.933309,821,755,501, +54,2014-01-21 03:49:50.907709,610,618,22, +4,2014-01-11 08:47:46.264249,539,758,367, +4,2014-01-13 23:45:34.393739,7,131,563, +14,2014-01-12 07:39:34.789842,991,404,44, +54,2014-01-17 10:42:28.624723,114,840,422, +14,2014-01-19 10:20:47.47364,693,600,868, +7,2014-01-18 17:04:56.941121,172,913,261, +54,2014-01-16 22:52:51.942062,746,30,351, +61,2014-01-19 22:30:17.834028,597,116,710, +14,2014-01-14 07:58:55.08395,751,110,151, +61,2014-01-14 12:58:55.288904,729,43,971, +61,2014-01-16 22:30:44.122872,932,17,284, +61,2014-01-14 08:35:18.700065,851,163,42, +61,2014-01-17 16:30:33.631387,196,836,97, +93,2014-01-16 00:48:16.21811,22,420,541, +54,2014-01-13 19:21:00.90854,587,839,655, +54,2014-01-20 08:09:11.600066,935,936,774, +7,2014-01-16 09:03:19.952925,213,651,393, +54,2014-01-14 06:57:40.816346,123,409,350, +61,2014-01-16 06:28:02.742934,630,933,144, +93,2014-01-11 15:39:42.238199,107,67,18, +54,2014-01-11 07:03:03.025347,595,307,726, +61,2014-01-20 14:25:30.314434,815,788,221, +93,2014-01-18 18:36:37.802704,790,382,354, +7,2014-01-13 01:01:46.390501,587,228,80, +4,2014-01-13 11:44:48.158366,325,462,71, +7,2014-01-19 12:42:35.275511,704,762,764, +14,2014-01-20 23:45:36.38341,694,322,307, +54,2014-01-18 00:12:08.373629,502,953,902, +7,2014-01-17 20:04:28.849353,316,950,611, +4,2014-01-17 18:32:49.31714,35,491,844, +54,2014-01-17 22:01:59.281757,213,465,173, +7,2014-01-18 08:52:15.113602,791,453,559, +93,2014-01-20 22:18:23.710878,172,558,444, +4,2014-01-19 09:41:34.071599,323,268,816, +93,2014-01-14 13:34:43.738326,571,295,397, +14,2014-01-19 02:39:11.184937,799,813,907, +14,2014-01-16 20:46:31.013139,521,968,95, +54,2014-01-20 16:27:35.680807,409,734,222, +61,2014-01-17 19:09:29.018965,56,863,621, +7,2014-01-20 08:45:26.097089,784,376,448, +7,2014-01-13 23:26:30.969711,414,618,136, +7,2014-01-13 11:40:13.142255,411,337,693, +14,2014-01-13 11:20:44.797154,268,629,904, +14,2014-01-20 19:57:04.601518,91,983,50, +7,2014-01-18 16:28:29.360366,792,384,835, +54,2014-01-16 10:41:45.705694,885,751,240, +14,2014-01-19 22:06:16.201583,70,552,97, +7,2014-01-13 19:31:49.313291,376,521,62, +4,2014-01-19 21:39:26.52204,601,868,624, +4,2014-01-14 22:34:18.944519,179,227,254, +54,2014-01-14 15:11:31.55149,104,526,296, +93,2014-01-20 08:42:29.547386,30,996,93, +4,2014-01-14 06:59:49.258953,433,263,355, +93,2014-01-12 03:48:09.354612,377,958,191, +54,2014-01-12 03:44:15.937887,876,954,960, +61,2014-01-16 22:44:37.417319,546,103,721, +7,2014-01-20 20:30:44.630124,231,425,904, +93,2014-01-11 21:29:52.321718,914,426,34, +4,2014-01-13 16:56:45.790948,699,343,334, +93,2014-01-17 10:35:13.479477,867,309,142, +14,2014-01-18 20:02:41.638857,183,602,778, +14,2014-01-20 18:58:45.072706,928,190,92, +61,2014-01-14 13:27:28.593079,728,742,990, +54,2014-01-18 12:21:05.349735,921,266,625, +4,2014-01-18 22:40:19.144724,293,954,344, +7,2014-01-18 07:02:12.331405,800,676,446, +93,2014-01-16 09:00:16.534672,224,99,831, +61,2014-01-14 13:26:50.157863,506,631,62, +61,2014-01-17 17:29:48.012212,773,719,302, +61,2014-01-12 22:09:45.554056,681,341,412, +4,2014-01-13 16:12:16.254952,579,192,947, +4,2014-01-20 20:56:18.982343,438,562,525, +54,2014-01-15 13:49:58.696311,117,342,484, +61,2014-01-16 07:33:01.052525,820,920,247, +54,2014-01-20 10:53:23.58386,683,752,15, +54,2014-01-13 00:18:28.056677,731,81,794, +7,2014-01-11 12:14:46.758219,766,337,715, +93,2014-01-19 02:59:39.785445,467,82,576, +54,2014-01-15 23:50:17.369968,374,475,837, +93,2014-01-20 13:54:13.280678,785,750,325, +7,2014-01-12 19:33:58.729964,667,764,498, +7,2014-01-19 19:01:48.921457,604,941,489, +54,2014-01-19 16:36:42.828064,384,347,878, +14,2014-01-16 06:33:47.988917,354,301,480, +61,2014-01-21 02:49:58.27607,659,572,802, +7,2014-01-21 00:20:58.76637,540,564,679, +93,2014-01-11 23:18:25.406235,608,242,282, +54,2014-01-20 17:20:42.906194,116,984,751, +61,2014-01-11 15:50:51.088088,518,83,554, +61,2014-01-14 20:15:11.197183,632,806,98, +61,2014-01-16 21:55:56.385671,648,98,449, +7,2014-01-19 15:53:32.726945,794,899,849, +4,2014-01-14 09:13:56.270308,958,201,897, +7,2014-01-20 15:23:24.97875,549,644,867, +54,2014-01-16 22:14:38.076679,728,806,421, +14,2014-01-12 01:54:15.415032,950,468,368, +93,2014-01-17 16:25:37.310575,91,495,738, +61,2014-01-12 01:14:54.611771,915,823,738, +61,2014-01-15 19:21:05.572895,394,747,165, +4,2014-01-14 03:55:25.322786,639,126,205, +93,2014-01-14 03:24:40.165826,73,264,178, +61,2014-01-18 15:33:21.827847,555,172,347, +61,2014-01-13 18:51:44.305129,762,958,609, +7,2014-01-18 21:14:38.862138,948,130,249, +14,2014-01-13 17:06:22.880372,543,813,54, +7,2014-01-12 23:45:07.888991,951,676,202, +4,2014-01-21 01:33:06.918815,828,336,855, +93,2014-01-14 09:21:09.639009,480,431,499, +54,2014-01-10 20:44:47.674434,33,398,177, +93,2014-01-15 19:23:24.288782,75,313,438, +14,2014-01-13 17:15:22.919687,485,677,402, +7,2014-01-12 20:18:46.404398,463,591,178, +14,2014-01-14 08:25:13.21024,305,950,120, +54,2014-01-12 03:52:05.747751,518,302,539, +14,2014-01-18 06:52:34.393315,591,492,746, +61,2014-01-14 05:15:11.486728,941,451,855, +93,2014-01-11 22:13:04.514121,418,524,244, +61,2014-01-19 10:10:59.799549,115,874,800, +7,2014-01-13 16:35:54.392921,537,334,342, +4,2014-01-12 18:03:55.602209,924,433,936, +93,2014-01-13 00:26:10.997152,472,283,446, +4,2014-01-19 18:31:50.77901,214,864,356, +54,2014-01-11 03:57:28.329154,75,477,580, +93,2014-01-16 13:40:07.267459,300,900,796, +93,2014-01-19 03:55:15.757761,401,226,805, +61,2014-01-17 06:12:06.406252,915,865,903, +61,2014-01-17 19:34:22.682492,265,241,867, +7,2014-01-15 14:20:53.068335,381,792,864, +54,2014-01-18 11:27:01.018023,118,855,775, +4,2014-01-12 08:55:28.255386,108,903,739, +54,2014-01-18 22:16:18.391542,791,255,801, +93,2014-01-11 08:51:41.18385,153,275,234, +4,2014-01-20 04:28:50.083233,47,740,634, +4,2014-01-11 11:08:02.696671,30,332,313, +61,2014-01-19 10:06:20.045987,2,674,774, +7,2014-01-12 15:35:12.964024,593,535,887, +4,2014-01-13 14:53:10.58608,478,622,813, +4,2014-01-19 05:39:26.964802,5,343,85, +4,2014-01-16 04:56:22.603033,56,444,86, +4,2014-01-13 15:37:58.260516,410,359,688, +54,2014-01-13 19:02:51.253584,368,992,601, +61,2014-01-19 02:11:45.522721,534,368,51, +93,2014-01-15 15:56:44.665332,325,487,76, +4,2014-01-17 07:28:04.463823,77,790,5, +4,2014-01-20 10:03:51.270472,415,982,420, +93,2014-01-12 16:49:19.058647,251,683,587, +4,2014-01-20 16:43:15.950551,473,717,378, +4,2014-01-11 02:16:55.785012,544,557,429, +14,2014-01-10 21:00:18.858615,145,668,841, +4,2014-01-13 03:19:10.343892,685,389,871, +61,2014-01-13 00:20:51.387221,804,653,708, +54,2014-01-13 01:26:29.855767,73,386,35, +93,2014-01-11 15:51:01.122902,933,346,483, +61,2014-01-13 08:18:19.716794,991,773,652, +54,2014-01-18 19:06:37.123226,135,310,443, +54,2014-01-19 23:46:16.880664,331,412,914, +7,2014-01-19 18:30:26.123046,294,138,464, +14,2014-01-15 08:40:59.805719,37,313,684, +7,2014-01-14 08:07:09.949418,316,705,981, +61,2014-01-16 23:57:27.141069,25,633,376, +54,2014-01-16 21:36:28.061105,27,671,880, +14,2014-01-12 00:23:28.340959,911,703,850, +7,2014-01-17 12:49:08.324919,993,711,16, +93,2014-01-15 20:05:18.144339,953,71,725, +93,2014-01-12 15:31:31.03763,195,34,504, +61,2014-01-15 16:55:28.370906,350,618,344, +61,2014-01-17 15:40:31.108361,624,876,563, +14,2014-01-15 10:24:41.623711,702,493,414, +7,2014-01-13 16:34:55.335708,532,843,407, +7,2014-01-12 14:36:53.711395,336,652,140, +7,2014-01-18 06:02:39.884646,397,773,350, +61,2014-01-16 15:37:46.589292,512,469,316, +14,2014-01-20 20:48:39.234116,388,787,439, +4,2014-01-12 15:59:24.549978,267,166,67, +54,2014-01-12 17:05:51.053115,226,459,399, +93,2014-01-20 00:52:30.505006,545,91,972, +14,2014-01-14 12:48:43.608624,195,480,683, +14,2014-01-12 03:49:07.004085,5,906,260, +54,2014-01-20 07:09:26.290019,351,225,504, +7,2014-01-14 13:49:02.46724,804,138,293, +14,2014-01-14 11:08:17.347976,757,577,11, +93,2014-01-12 01:30:17.67724,462,857,655, +61,2014-01-16 19:15:32.323006,394,730,660, +54,2014-01-15 06:59:18.470878,61,754,467, +7,2014-01-14 13:48:37.394033,5,379,960, +54,2014-01-14 08:22:09.446232,484,443,388, +93,2014-01-14 00:45:35.351542,812,237,470, +14,2014-01-13 02:19:03.517079,841,868,970, +14,2014-01-18 21:03:09.251951,664,757,688, +7,2014-01-17 12:52:45.300959,522,80,284, +4,2014-01-19 06:16:30.658148,610,547,640, +14,2014-01-14 12:39:37.313056,464,494,956, +4,2014-01-18 17:16:13.64192,891,280,358, +4,2014-01-15 13:05:38.983067,140,197,575, +93,2014-01-19 12:44:55.457814,757,232,662, +54,2014-01-20 12:47:44.679969,760,42,747, +4,2014-01-20 10:01:07.353973,812,130,937, +54,2014-01-15 22:25:26.566175,431,684,267, +14,2014-01-14 17:12:26.30368,714,537,157, +61,2014-01-12 20:36:02.689681,985,701,400, +4,2014-01-17 17:02:20.27799,760,250,835, +7,2014-01-11 17:15:06.188326,559,448,932, +14,2014-01-18 16:13:49.278973,79,827,396, +14,2014-01-17 07:50:59.512105,807,738,346, +7,2014-01-13 13:14:30.738303,934,887,176, +14,2014-01-20 13:19:40.332507,89,694,271, +14,2014-01-16 02:43:30.017111,265,243,844, +61,2014-01-17 06:03:14.347347,974,710,40, +93,2014-01-11 11:08:47.336592,244,677,106, +4,2014-01-15 03:52:56.307129,768,544,165, +61,2014-01-20 23:52:16.814585,234,749,892, +7,2014-01-15 02:17:04.684568,258,717,677, +54,2014-01-16 09:23:13.984788,852,49,842, +7,2014-01-16 13:07:49.13801,343,580,863, +61,2014-01-19 13:16:23.155447,515,353,976, +61,2014-01-20 03:11:51.378821,781,188,676, +4,2014-01-20 01:29:58.584243,23,541,740, +7,2014-01-12 08:01:58.506989,16,173,720, +54,2014-01-11 23:30:54.89632,711,962,579, +93,2014-01-17 16:33:07.836613,267,742,571, +4,2014-01-19 00:54:43.808367,399,12,333, +54,2014-01-20 09:47:25.554468,952,623,858, +54,2014-01-10 23:12:45.149669,915,412,58, +54,2014-01-16 12:10:57.450286,424,636,79, +93,2014-01-14 16:53:04.537954,91,282,690, +4,2014-01-19 15:57:40.607481,955,576,156, +54,2014-01-15 18:58:42.130255,153,714,314, +4,2014-01-13 20:54:11.891927,764,881,246, +14,2014-01-14 08:23:07.174076,234,443,271, +93,2014-01-19 16:11:08.434354,449,835,489, +93,2014-01-15 21:30:14.582027,841,157,735, +61,2014-01-21 05:25:27.452065,392,472,925, +54,2014-01-20 13:26:14.62268,797,349,318, +4,2014-01-13 07:44:03.861,143,712,669, +4,2014-01-17 07:16:26.96417,886,362,883, +4,2014-01-12 20:40:45.361403,618,612,736, +54,2014-01-12 15:03:44.193506,183,113,438, +61,2014-01-12 03:59:56.9817,36,785,92, +93,2014-01-19 06:43:59.708749,892,991,495, +4,2014-01-13 06:12:31.530099,272,800,525, +4,2014-01-16 11:52:53.288829,779,875,871, +93,2014-01-19 00:36:16.523335,504,895,488, +14,2014-01-17 12:29:36.214667,403,755,74, +4,2014-01-11 15:16:07.273618,318,80,950, +7,2014-01-14 07:44:05.661346,791,994,312, +4,2014-01-15 19:45:59.370114,57,666,114, +61,2014-01-20 22:27:58.652857,622,219,979, +4,2014-01-13 03:14:04.246007,613,863,414, +54,2014-01-17 07:47:57.877521,388,667,575, +7,2014-01-11 15:58:53.549177,202,273,409, +4,2014-01-19 23:47:12.08262,546,835,68, +54,2014-01-15 02:42:41.685887,701,15,629, +54,2014-01-21 05:46:19.103645,595,477,996, +7,2014-01-20 02:59:57.232289,886,677,969, +93,2014-01-20 18:53:39.136174,289,622,292, +54,2014-01-14 16:39:23.641599,875,123,835, +54,2014-01-18 12:57:37.84019,950,712,596, +4,2014-01-15 07:52:21.266848,987,771,485, +7,2014-01-17 17:33:35.533945,671,581,439, +93,2014-01-11 15:20:45.014266,771,122,172, +14,2014-01-13 18:03:29.701203,831,852,539, +7,2014-01-12 09:03:50.115972,726,934,448, +54,2014-01-11 14:46:12.46633,343,532,312, +54,2014-01-13 01:29:44.323883,7,669,308, +93,2014-01-14 20:47:53.976972,926,621,714, +14,2014-01-18 02:02:39.4305,530,548,162, +61,2014-01-15 02:10:29.685285,630,478,339, +7,2014-01-16 15:51:38.170897,885,682,672, +4,2014-01-19 10:02:36.412201,886,106,609, +14,2014-01-13 02:54:29.394034,543,991,909, +4,2014-01-19 02:04:09.700996,722,965,205, +61,2014-01-14 15:55:29.701449,254,18,153, +14,2014-01-10 21:30:45.917789,472,430,697, +14,2014-01-15 08:33:45.916081,317,561,285, +61,2014-01-15 11:11:36.975067,593,863,925, +14,2014-01-14 09:14:51.579134,732,605,376, +93,2014-01-20 08:19:45.286195,793,493,276, +93,2014-01-15 03:39:35.627925,567,401,139, +4,2014-01-16 16:28:55.825142,731,79,35, +61,2014-01-16 10:07:43.163716,107,239,558, +54,2014-01-15 23:38:29.177101,625,318,726, +93,2014-01-15 10:16:07.907762,417,645,535, +54,2014-01-20 16:50:24.849602,413,88,826, +7,2014-01-15 23:24:48.281165,670,185,438, +61,2014-01-14 07:16:05.14047,5,147,653, +93,2014-01-20 05:44:03.986196,585,167,461, +54,2014-01-19 20:04:11.922764,645,570,532, +54,2014-01-11 14:13:42.980659,417,600,293, +54,2014-01-14 07:36:25.253044,505,392,80, +14,2014-01-16 07:37:47.456708,300,956,202, +4,2014-01-12 09:34:27.994925,788,362,815, +7,2014-01-17 05:39:54.954246,266,390,667, +61,2014-01-17 20:41:37.57268,72,947,269, +4,2014-01-13 04:20:40.461256,272,968,76, +14,2014-01-19 11:09:39.278129,874,814,664, +93,2014-01-11 11:29:31.550071,384,749,90, +4,2014-01-20 10:23:19.891756,738,26,42, +54,2014-01-13 07:20:08.963834,442,777,589, +14,2014-01-17 07:21:09.720968,452,343,528, +14,2014-01-18 14:25:56.304376,901,684,24, +4,2014-01-15 14:14:38.357869,580,667,149, +4,2014-01-15 03:25:19.421964,945,756,711, +93,2014-01-12 00:21:26.005826,132,253,417, +7,2014-01-15 15:45:24.275658,238,907,586, +93,2014-01-19 15:59:05.338046,920,445,371, +93,2014-01-16 15:33:02.980893,750,544,794, +61,2014-01-19 05:00:15.855211,321,678,112, +4,2014-01-18 18:18:50.624659,781,665,290, +4,2014-01-20 23:12:38.609236,366,881,105, +61,2014-01-14 15:29:11.680353,921,898,824, +93,2014-01-13 22:26:33.788375,321,118,875, +61,2014-01-15 16:51:07.786337,649,882,190, +4,2014-01-19 05:45:19.588534,693,770,9, +54,2014-01-13 09:16:58.638396,859,455,146, +54,2014-01-20 20:15:56.067502,376,688,461, +14,2014-01-12 07:01:24.729004,107,18,200, +7,2014-01-12 09:01:02.624592,831,469,581, +54,2014-01-19 10:20:07.990685,933,863,731, +54,2014-01-13 01:15:07.709665,959,445,201, +54,2014-01-15 20:37:27.877635,966,361,293, +93,2014-01-14 11:57:55.447393,953,613,220, +61,2014-01-14 14:49:35.70459,235,44,245, +7,2014-01-11 20:17:22.831881,718,918,778, +7,2014-01-11 02:39:33.020492,587,689,91, +7,2014-01-16 23:10:16.165846,634,536,822, +93,2014-01-20 11:27:02.11001,999,643,100, +54,2014-01-11 18:09:04.570563,912,639,777, +7,2014-01-16 03:33:36.057602,791,934,234, +7,2014-01-12 12:47:11.073845,264,758,617, +54,2014-01-18 05:30:14.29153,449,750,822, +61,2014-01-13 11:59:32.361978,680,884,149, +93,2014-01-17 07:01:49.432133,216,647,451, +4,2014-01-12 02:55:33.713494,890,211,950, +4,2014-01-14 16:20:58.367804,214,787,516, +54,2014-01-11 16:47:13.707791,309,439,383, +54,2014-01-20 22:54:39.051958,219,261,426, +7,2014-01-20 11:54:01.349116,658,685,342, +61,2014-01-20 01:47:29.563002,561,977,254, +61,2014-01-18 11:13:29.676618,674,193,889, +93,2014-01-20 05:06:39.958352,779,643,844, +54,2014-01-13 11:16:41.243775,701,926,466, +14,2014-01-11 03:40:03.464993,868,623,686, +61,2014-01-14 15:57:47.744689,844,281,528, +93,2014-01-11 11:02:00.832309,260,549,642, +14,2014-01-13 16:57:02.103389,20,308,788, +14,2014-01-14 06:13:43.81261,513,589,611, +7,2014-01-12 22:03:25.561314,554,629,343, +7,2014-01-15 05:58:04.72798,621,63,741, +4,2014-01-12 10:33:51.803296,183,701,802, +4,2014-01-15 03:18:33.270978,689,976,943, +14,2014-01-20 06:35:32.605616,8,977,733, +4,2014-01-16 02:31:47.250689,259,442,787, +54,2014-01-18 22:08:08.975568,54,239,876, +61,2014-01-10 20:52:55.437497,181,183,809, +7,2014-01-16 09:11:20.271181,559,857,956, +4,2014-01-14 15:18:25.141414,872,489,780, +7,2014-01-20 12:19:57.547927,627,866,335, +54,2014-01-17 07:20:24.841744,898,655,828, +7,2014-01-19 22:52:01.199017,602,221,776, +7,2014-01-11 19:07:08.621772,175,220,310, +7,2014-01-14 06:50:39.133274,6,995,473, +61,2014-01-12 04:51:33.561414,812,919,983, +14,2014-01-18 06:08:58.053904,318,887,466, +61,2014-01-15 13:46:12.847188,273,180,590, +54,2014-01-16 01:12:31.929218,138,737,377, +4,2014-01-19 02:56:11.762115,222,833,568, +7,2014-01-15 06:40:51.899146,469,136,490, +54,2014-01-15 07:06:33.278333,359,216,24, +7,2014-01-17 22:43:41.325117,681,52,723, +93,2014-01-12 11:54:21.575765,49,2,901, +54,2014-01-14 06:13:13.236685,591,522,491, +61,2014-01-20 14:00:22.568892,500,658,917, +14,2014-01-12 19:34:25.040757,826,898,450, +14,2014-01-18 02:11:00.981794,430,926,572, +54,2014-01-21 05:02:23.4012,712,348,758, +7,2014-01-15 16:31:27.144566,277,282,509, +54,2014-01-11 02:24:44.794404,923,55,178, +93,2014-01-12 21:05:48.962515,960,983,785, +4,2014-01-20 02:29:31.872546,821,484,197, +54,2014-01-12 16:58:36.5977,342,698,264, +14,2014-01-17 04:24:22.233493,578,308,612, +14,2014-01-19 03:05:04.47858,145,832,447, +61,2014-01-17 23:30:23.848389,910,116,21, +7,2014-01-14 20:32:31.20906,414,750,124, +61,2014-01-19 03:57:59.916077,452,879,466, +14,2014-01-13 02:41:44.119989,260,72,210, +93,2014-01-18 15:50:56.350474,67,157,749, +17,2014-01-18 10:17:57.464004,995,29,433, +17,2014-01-19 14:02:08.961732,359,928,12, +17,2014-01-17 08:42:57.549909,794,751,69, +51,2014-01-19 09:25:06.086195,144,796,502, +51,2014-01-12 14:52:48.095426,429,95,499, +51,2014-01-18 17:34:31.111324,920,547,836, +17,2014-01-16 09:34:04.140099,997,372,580, +17,2014-01-17 08:39:00.942614,357,578,15, +17,2014-01-13 12:47:03.040542,600,494,563, +51,2014-01-14 06:30:15.902214,32,630,851, +51,2014-01-11 09:19:52.841759,104,95,701, +17,2014-01-17 23:53:36.319295,112,622,106, +51,2014-01-10 23:13:57.227749,966,758,364, +51,2014-01-13 01:14:14.417524,442,640,580, +17,2014-01-11 00:06:49.555979,60,376,868, +51,2014-01-20 17:14:19.796641,352,403,79, +17,2014-01-15 00:48:39.458281,256,704,584, +17,2014-01-18 06:17:50.537773,456,416,825, +17,2014-01-20 16:16:43.19826,280,309,63, +17,2014-01-19 21:20:06.602847,881,16,537, +17,2014-01-18 12:42:35.332177,318,863,149, +17,2014-01-12 07:22:32.160774,366,690,595, +17,2014-01-18 17:49:38.475811,317,393,760, +17,2014-01-20 09:41:11.929876,403,254,190, +51,2014-01-18 15:46:54.394685,900,245,842, +17,2014-01-16 14:54:42.954392,368,130,298, +51,2014-01-17 03:11:35.778684,392,12,240, +51,2014-01-12 06:19:25.603746,850,847,142, +51,2014-01-14 12:52:42.87047,743,642,185, +17,2014-01-19 09:53:19.898673,599,424,614, +17,2014-01-20 02:10:21.95464,964,798,358, +51,2014-01-11 17:10:40.334893,875,720,103, +51,2014-01-17 17:55:28.860406,251,968,336, +17,2014-01-16 04:53:19.504549,132,953,272, +51,2014-01-20 06:35:46.421088,529,721,563, +51,2014-01-19 12:48:16.955831,718,408,338, +17,2014-01-13 16:27:50.615873,360,549,978, +17,2014-01-15 10:09:50.561186,974,362,503, +51,2014-01-15 15:27:17.898445,528,58,523, +17,2014-01-16 09:14:53.656415,129,800,220, +17,2014-01-18 20:40:06.46382,173,431,123, +51,2014-01-16 04:47:10.740205,46,201,477, +51,2014-01-13 03:08:29.975709,878,357,390, +17,2014-01-18 23:54:03.691569,481,587,222, +51,2014-01-18 10:01:25.157729,307,318,384, +17,2014-01-13 07:15:19.532107,747,766,915, +51,2014-01-18 11:08:23.488209,270,152,358, +51,2014-01-12 04:50:04.616429,729,592,939, +17,2014-01-20 17:33:10.06988,103,365,381, +51,2014-01-17 21:25:06.68647,418,511,791, +51,2014-01-10 20:10:11.219276,432,164,553, +17,2014-01-18 00:15:45.402476,688,534,809, +17,2014-01-19 08:47:38.847664,377,601,5, +17,2014-01-18 17:59:49.695087,828,740,907, +51,2014-01-17 03:56:57.332353,734,763,116, +17,2014-01-16 18:34:33.242349,54,943,132, +17,2014-01-14 02:54:32.649479,518,272,29, +51,2014-01-13 01:08:33.111037,363,727,501, +51,2014-01-18 04:53:58.846095,194,673,50, +17,2014-01-17 19:47:15.520368,729,370,587, +17,2014-01-11 05:01:53.00971,541,773,298, +17,2014-01-17 01:04:20.800734,802,543,557, +17,2014-01-18 16:57:55.85526,428,70,19, +51,2014-01-18 02:57:21.870535,917,92,909, +51,2014-01-11 23:57:40.305284,336,182,829, +17,2014-01-17 17:33:42.276348,417,39,160, +51,2014-01-16 09:45:38.826367,851,429,518, +51,2014-01-14 20:25:30.921157,825,167,668, +17,2014-01-11 21:43:32.837534,859,698,535, +17,2014-01-21 05:12:56.725231,478,352,990, +51,2014-01-20 09:40:24.577991,17,801,479, +51,2014-01-19 22:23:39.301354,799,569,346, +17,2014-01-16 04:00:07.465435,868,517,374, +51,2014-01-12 06:48:54.5537,755,800,592, +17,2014-01-17 16:17:42.992923,900,43,311, +51,2014-01-13 08:01:32.623584,360,564,8, +17,2014-01-14 18:04:14.085807,526,637,179, +51,2014-01-14 21:26:06.481552,809,451,319, +17,2014-01-14 16:51:37.240014,139,705,934, +51,2014-01-14 05:37:24.156107,661,729,215, +17,2014-01-11 12:51:13.168022,64,134,896, +17,2014-01-14 17:01:48.459289,177,360,536, +17,2014-01-10 23:53:09.558583,710,495,863, +51,2014-01-20 01:38:52.015685,208,154,308, +17,2014-01-12 05:01:38.154795,19,392,527, +17,2014-01-17 07:50:06.890935,129,355,714, +17,2014-01-15 14:13:25.258034,563,445,380, +17,2014-01-15 11:56:10.804274,784,916,711, +17,2014-01-19 12:58:40.002392,177,242,274, +51,2014-01-12 13:07:24.104548,5,170,667, +51,2014-01-12 01:43:26.324642,159,351,710, +51,2014-01-19 22:00:33.012102,708,777,444, +17,2014-01-18 18:11:44.905282,359,940,288, +17,2014-01-19 22:41:22.179901,191,844,795, +51,2014-01-16 18:57:54.882637,592,650,532, +17,2014-01-19 22:09:25.210985,920,279,382, +51,2014-01-16 10:15:04.456249,445,161,513, +51,2014-01-11 22:43:33.709423,685,538,649, +17,2014-01-13 12:34:56.132143,539,99,22, +17,2014-01-17 11:58:37.294202,700,72,624, +17,2014-01-11 21:56:30.434654,590,277,993, +51,2014-01-12 16:15:20.710133,184,814,680, +17,2014-01-16 04:22:16.595556,800,531,474, +17,2014-01-17 05:56:37.900091,996,871,403, +17,2014-01-14 03:04:15.264253,317,522,131, +51,2014-01-12 14:39:59.588899,788,203,460, +51,2014-01-19 17:58:10.523674,388,854,998, +17,2014-01-18 01:08:29.35006,693,126,631, +17,2014-01-16 16:06:06.070451,901,125,176, +17,2014-01-13 04:49:47.763688,220,660,700, +17,2014-01-11 00:45:53.506168,20,765,273, +17,2014-01-17 08:57:19.238473,700,525,651, +17,2014-01-17 01:51:36.223396,228,782,329, +51,2014-01-11 04:39:03.06475,408,304,660, +51,2014-01-16 04:36:11.254578,979,177,190, +17,2014-01-18 10:53:14.378191,515,255,428, +17,2014-01-17 16:29:09.956105,603,321,760, +51,2014-01-20 22:49:36.512612,376,804,122, +51,2014-01-12 16:49:25.182465,593,457,518, +17,2014-01-15 23:27:49.958497,535,416,636, +51,2014-01-12 05:57:00.61716,747,706,272, +17,2014-01-13 22:32:51.507525,942,848,267, +51,2014-01-14 15:28:22.970599,878,217,179, +17,2014-01-20 04:08:45.522862,979,848,662, +17,2014-01-12 15:14:13.687427,35,114,285, +51,2014-01-20 14:26:17.853656,139,89,994, +51,2014-01-18 20:18:10.733848,871,293,279, +51,2014-01-18 05:29:18.144095,914,508,22, +17,2014-01-11 07:09:51.563079,494,410,563, +51,2014-01-11 02:53:06.865991,451,849,173, +51,2014-01-14 11:27:55.438297,475,312,547, +17,2014-01-12 09:06:21.997733,330,43,27, +17,2014-01-12 23:08:27.576544,571,785,479, +51,2014-01-19 19:50:12.033854,282,25,432, +51,2014-01-18 19:02:59.897824,56,782,782, +17,2014-01-16 06:12:42.840796,670,814,762, +51,2014-01-11 04:30:11.622753,500,983,892, +51,2014-01-17 07:01:10.421918,914,888,905, +51,2014-01-13 01:21:12.190856,183,576,858, +17,2014-01-17 00:36:17.693204,248,508,216, +17,2014-01-19 15:50:58.185605,271,690,742, +17,2014-01-13 06:07:05.697443,611,244,46, +17,2014-01-13 03:33:36.932096,670,373,417, +17,2014-01-15 11:42:34.409001,624,270,774, +17,2014-01-13 14:46:08.762194,552,955,136, +17,2014-01-18 12:09:48.186674,342,748,483, +17,2014-01-12 16:35:48.787192,678,766,482, +17,2014-01-20 11:15:18.718299,350,976,23, +51,2014-01-18 04:59:24.699286,39,723,73, +51,2014-01-14 13:25:13.970076,129,915,666, +51,2014-01-15 04:43:08.676796,592,319,297, +51,2014-01-19 14:56:25.316866,858,137,24, +51,2014-01-17 15:58:05.477601,273,253,792, +17,2014-01-19 00:11:31.647815,112,777,785, +17,2014-01-18 13:05:10.839727,921,171,326, +51,2014-01-19 11:12:19.165028,286,170,646, +51,2014-01-18 08:37:49.50147,425,770,351, +17,2014-01-16 03:23:21.573575,629,118,141, +17,2014-01-16 10:41:37.309123,294,265,948, +17,2014-01-18 19:47:41.064549,345,863,720, +51,2014-01-16 10:16:28.439566,53,782,660, +51,2014-01-20 02:09:32.74742,826,169,217, +51,2014-01-20 08:54:03.062282,161,11,184, +17,2014-01-18 13:24:56.016109,682,341,232, +17,2014-01-18 15:59:44.781693,826,487,655, +17,2014-01-17 21:57:02.960106,618,744,472, +51,2014-01-13 13:37:38.856905,358,293,363, +51,2014-01-19 00:29:56.404445,656,184,944, +51,2014-01-13 22:58:13.382024,215,819,67, +17,2014-01-15 18:58:51.048181,923,557,907, +17,2014-01-14 19:06:14.098068,526,579,428, +51,2014-01-12 08:49:11.568048,659,790,500, +17,2014-01-18 05:05:56.745624,883,27,415, +51,2014-01-17 02:39:51.030165,509,934,660, +51,2014-01-17 00:31:45.977049,858,74,459, +17,2014-01-20 23:52:05.507818,141,913,282, +17,2014-01-14 08:49:39.216839,9,116,129, +51,2014-01-18 21:07:34.764659,992,106,410, +17,2014-01-20 05:07:24.226535,702,850,17, +51,2014-01-11 07:49:03.916125,576,79,714, +17,2014-01-12 04:32:48.734734,479,68,487, +51,2014-01-14 03:50:32.903331,337,336,664, +17,2014-01-20 02:45:29.232991,805,245,114, +17,2014-01-19 00:30:54.212335,459,949,49, +51,2014-01-11 22:02:04.551145,61,63,673, +17,2014-01-17 09:50:40.072718,82,348,497, +17,2014-01-17 05:43:13.377364,416,559,287, +17,2014-01-19 10:39:54.052615,657,49,855, +51,2014-01-12 07:14:01.646293,628,285,194, +51,2014-01-12 10:24:50.686905,373,977,395, +17,2014-01-17 00:27:35.117165,827,957,937, +51,2014-01-17 21:30:30.086278,546,888,888, +51,2014-01-11 06:34:23.434325,184,682,976, +17,2014-01-16 03:21:38.179447,860,764,641, +17,2014-01-15 04:55:26.102388,192,15,87, +51,2014-01-19 02:34:08.216018,222,171,814, +51,2014-01-12 19:18:41.139973,402,12,650, +17,2014-01-17 22:33:04.959712,299,789,350, +17,2014-01-16 21:04:04.620882,477,938,790, +51,2014-01-15 22:16:54.521997,258,648,688, +17,2014-01-12 11:31:56.007894,486,924,277, +51,2014-01-20 20:10:18.71895,156,619,351, +17,2014-01-17 11:06:06.090045,704,48,528, +17,2014-01-19 20:37:52.753518,535,185,765, +51,2014-01-16 16:50:09.749115,238,490,519, +51,2014-01-13 05:37:52.067513,936,193,185, +51,2014-01-19 14:29:58.261335,177,17,79, +51,2014-01-20 05:39:48.965953,60,188,342, +17,2014-01-10 20:45:26.832172,110,678,465, +17,2014-01-18 13:37:22.48787,186,125,396, +17,2014-01-20 17:28:52.882078,895,128,271, +51,2014-01-12 05:18:15.566907,813,998,510, +17,2014-01-11 11:27:55.39162,390,975,664, +51,2014-01-19 14:14:22.115487,77,184,367, +17,2014-01-20 09:49:09.779243,490,207,269, +51,2014-01-12 13:29:59.942765,396,529,32, +17,2014-01-15 18:05:02.188205,547,281,885, +16,2014-01-16 09:32:23.156606,906,631,563, +16,2014-01-21 04:09:53.995799,30,51,190, +16,2014-01-17 05:19:03.834918,117,930,210, +96,2014-01-17 23:57:13.843511,797,264,691, +96,2014-01-16 22:37:29.112964,602,355,401, +96,2014-01-13 20:49:33.921196,693,345,910, +96,2014-01-18 10:31:37.278256,425,810,887, +16,2014-01-11 19:59:07.292829,6,814,851, +96,2014-01-18 05:45:00.023583,750,51,45, +96,2014-01-16 07:05:45.494274,226,471,769, +16,2014-01-13 19:17:48.432802,443,484,343, +96,2014-01-14 22:18:04.983296,990,700,782, +96,2014-01-11 22:09:50.115155,809,116,562, +96,2014-01-18 21:34:42.954799,698,358,2, +16,2014-01-16 13:50:00.99119,883,6,676, +96,2014-01-11 12:20:08.834106,974,128,744, +96,2014-01-15 02:40:49.045262,24,18,456, +16,2014-01-15 04:27:53.744707,263,81,935, +16,2014-01-17 09:10:18.58322,347,389,769, +96,2014-01-17 12:18:41.112775,58,10,647, +96,2014-01-13 12:57:52.006461,5,811,534, +16,2014-01-16 08:50:07.549173,316,26,771, +96,2014-01-17 13:04:07.944947,606,237,684, +16,2014-01-10 20:35:14.494331,447,305,647, +96,2014-01-15 20:19:00.431671,505,401,23, +16,2014-01-18 22:22:23.511854,63,403,194, +16,2014-01-11 12:03:09.885951,353,608,671, +16,2014-01-14 04:33:22.547158,260,278,993, +16,2014-01-18 02:11:33.291097,273,516,110, +96,2014-01-13 05:33:09.829135,426,552,444, +96,2014-01-19 02:38:24.735364,219,102,937, +96,2014-01-13 05:43:56.447703,966,639,615, +16,2014-01-13 03:43:03.824934,642,528,920, +96,2014-01-15 01:57:28.570281,860,911,940, +96,2014-01-20 09:41:10.291633,892,705,130, +16,2014-01-19 06:20:32.937898,359,497,232, +16,2014-01-18 02:47:02.491477,971,788,42, +96,2014-01-17 14:12:47.56989,60,79,130, +16,2014-01-20 06:19:40.230727,644,966,46, +16,2014-01-15 02:32:02.515479,767,58,175, +96,2014-01-12 15:18:33.064164,904,137,459, +16,2014-01-12 19:37:28.663529,955,964,820, +96,2014-01-19 04:50:07.498775,961,825,845, +96,2014-01-13 17:28:23.179738,427,339,175, +16,2014-01-20 21:12:11.618747,587,752,689, +16,2014-01-14 12:40:08.490383,660,922,320, +96,2014-01-14 09:48:32.013844,414,310,297, +16,2014-01-14 17:53:00.664009,438,955,166, +16,2014-01-18 21:08:02.23509,469,202,861, +96,2014-01-20 22:58:50.597483,128,168,194, +96,2014-01-11 00:11:41.776784,364,949,884, +96,2014-01-11 04:05:54.241551,263,803,401, +96,2014-01-16 01:48:58.146656,585,526,385, +16,2014-01-17 17:15:49.721731,591,719,143, +96,2014-01-11 04:41:08.736301,605,343,423, +16,2014-01-21 02:07:58.578327,839,988,759, +16,2014-01-15 09:38:13.233585,35,958,178, +16,2014-01-11 20:44:18.622252,552,993,808, +16,2014-01-14 00:41:21.125484,961,851,962, +16,2014-01-12 05:49:46.524681,598,253,638, +16,2014-01-14 06:17:28.451388,774,173,818, +16,2014-01-11 21:19:45.861267,138,563,22, +96,2014-01-14 15:33:42.972384,805,553,549, +16,2014-01-16 14:00:32.276322,941,346,40, +96,2014-01-16 03:17:14.431548,794,847,860, +16,2014-01-13 19:14:53.264018,272,874,432, +96,2014-01-14 14:21:05.214639,133,642,593, +96,2014-01-13 00:04:16.923444,32,315,214, +16,2014-01-20 13:27:40.833907,170,884,642, +16,2014-01-13 14:40:45.445366,543,655,199, +96,2014-01-17 06:36:19.438923,419,303,651, +96,2014-01-11 22:46:13.89849,679,197,506, +16,2014-01-15 14:18:14.109314,893,193,532, +96,2014-01-15 05:26:26.937698,684,819,289, +16,2014-01-14 20:14:37.078227,774,646,649, +96,2014-01-15 05:30:25.72806,955,0,982, +96,2014-01-18 22:06:35.42808,447,413,287, +16,2014-01-18 10:03:09.092071,425,193,67, +16,2014-01-19 03:23:26.39207,577,535,17, +96,2014-01-16 13:14:37.66359,33,468,467, +96,2014-01-18 03:01:59.689554,880,870,256, +16,2014-01-19 07:35:08.168854,786,506,388, +96,2014-01-16 21:20:31.90514,408,18,977, +16,2014-01-12 22:50:57.836629,836,135,964, +16,2014-01-15 18:50:57.890585,550,176,46, +16,2014-01-17 06:01:40.641441,411,856,411, +96,2014-01-12 18:58:56.414956,60,809,884, +16,2014-01-20 08:29:11.124171,982,902,120, +16,2014-01-18 06:45:59.264112,531,433,355, +96,2014-01-15 23:40:17.54086,989,914,254, +96,2014-01-11 08:18:57.648852,109,187,466, +96,2014-01-11 07:03:27.7155,80,663,325, +16,2014-01-17 01:00:03.402127,982,980,350, +16,2014-01-15 03:52:40.621235,803,270,844, +16,2014-01-17 01:03:59.992241,279,316,416, +96,2014-01-11 22:17:17.833675,635,858,360, +16,2014-01-18 03:07:33.885673,317,388,563, +96,2014-01-20 19:25:05.206879,789,582,332, +16,2014-01-14 02:21:34.757119,401,633,220, +96,2014-01-17 10:35:14.71958,3,538,141, +96,2014-01-13 04:05:50.652246,658,29,820, +16,2014-01-20 12:57:54.196042,660,917,375, +96,2014-01-18 13:21:28.618069,591,623,446, +16,2014-01-17 22:24:04.761559,120,305,458, +16,2014-01-14 12:24:21.134158,502,165,321, +16,2014-01-12 03:36:05.696297,235,281,131, +96,2014-01-11 21:54:30.48962,998,824,424, +96,2014-01-12 04:30:56.56224,902,160,198, +16,2014-01-19 17:39:14.788786,934,782,233, +16,2014-01-20 05:17:56.88169,315,362,112, +96,2014-01-17 21:45:34.225828,721,817,115, +16,2014-01-16 14:41:14.478341,535,884,974, +16,2014-01-18 06:53:05.050544,685,836,769, +96,2014-01-13 13:06:06.131388,966,104,720, +96,2014-01-18 17:32:12.31497,406,582,821, +96,2014-01-12 19:44:02.941129,963,926,589, +96,2014-01-19 23:07:46.772828,530,645,536, +16,2014-01-20 16:31:08.730346,767,267,944, +16,2014-01-11 22:13:14.0653,438,387,790, +16,2014-01-16 23:53:46.036941,281,625,975, +16,2014-01-15 10:11:26.271205,118,766,653, +16,2014-01-12 10:32:11.714152,558,666,391, +96,2014-01-17 10:57:13.752859,100,35,113, +16,2014-01-11 05:11:29.673333,461,401,327, +96,2014-01-16 18:24:52.335807,637,638,323, +96,2014-01-13 06:01:13.745101,54,799,721, +16,2014-01-12 07:28:47.507008,470,865,366, +96,2014-01-13 15:32:26.221479,876,571,987, +16,2014-01-12 19:26:18.95198,121,859,876, +96,2014-01-15 13:50:22.264547,528,198,375, +96,2014-01-20 06:07:40.941059,773,96,449, +16,2014-01-15 03:32:09.604226,337,398,456, +16,2014-01-14 20:48:16.460589,284,79,570, +16,2014-01-17 13:29:09.559547,368,860,982, +16,2014-01-11 19:56:14.366204,758,858,851, +96,2014-01-18 13:12:37.594748,996,580,166, +16,2014-01-18 21:05:15.255844,261,559,255, +16,2014-01-12 21:50:44.855824,561,265,790, +96,2014-01-19 21:43:34.157406,195,930,853, +16,2014-01-17 08:44:30.04463,700,418,516, +96,2014-01-11 21:08:41.737933,458,227,312, +16,2014-01-16 13:29:08.383234,664,615,129, +16,2014-01-12 17:25:44.52339,940,860,806, +96,2014-01-19 08:01:46.788477,389,636,801, +96,2014-01-19 06:35:14.514622,992,104,659, +96,2014-01-20 14:57:56.83836,110,311,199, +96,2014-01-10 21:45:49.730026,456,482,595, +96,2014-01-17 23:43:01.28787,368,932,212, +96,2014-01-20 01:29:05.568705,368,81,383, +96,2014-01-11 23:59:03.795326,509,901,825, +96,2014-01-13 17:36:47.32481,512,826,930, +96,2014-01-14 05:40:31.83991,718,579,634, +16,2014-01-13 14:31:15.509897,974,146,982, +96,2014-01-20 08:34:01.077671,541,195,161, +96,2014-01-14 14:52:01.513244,142,730,281, +16,2014-01-19 12:56:07.845704,189,965,116, +16,2014-01-12 08:35:14.822771,319,747,538, +16,2014-01-16 02:20:49.020671,409,449,566, +96,2014-01-11 22:28:34.067183,795,535,921, +16,2014-01-14 08:01:33.774751,825,772,654, +16,2014-01-20 20:11:11.285218,984,401,931, +96,2014-01-10 22:36:15.008243,910,657,375, +96,2014-01-18 15:33:43.379396,945,700,67, +16,2014-01-14 10:59:27.745806,556,217,512, +96,2014-01-17 16:05:24.56779,415,131,5, +96,2014-01-19 15:29:57.7456,446,985,923, +96,2014-01-11 18:12:05.340973,747,955,358, +16,2014-01-15 07:10:39.824052,339,320,790, +96,2014-01-11 07:20:42.601424,204,201,367, +96,2014-01-20 19:55:39.498379,611,89,740, +16,2014-01-11 09:55:09.868683,437,72,683, +16,2014-01-12 08:29:24.339357,850,937,533, +96,2014-01-16 03:24:47.881614,827,155,958, +16,2014-01-13 07:20:54.392073,297,111,10, +96,2014-01-20 20:31:11.128253,537,445,18, +16,2014-01-14 04:00:02.396654,121,428,534, +16,2014-01-12 16:18:51.230852,427,377,81, +96,2014-01-20 22:17:00.858279,767,288,40, +96,2014-01-10 21:43:03.684524,32,334,579, +96,2014-01-11 11:47:56.799557,108,520,546, +16,2014-01-11 16:16:04.653605,233,740,974, +96,2014-01-13 19:19:51.009334,756,238,583, +96,2014-01-14 21:28:28.639887,265,464,171, +96,2014-01-14 10:47:20.163502,693,67,832, +96,2014-01-12 21:53:52.087424,74,185,913, +16,2014-01-18 16:20:30.153131,588,177,644, +16,2014-01-12 17:43:28.009206,391,885,525, +96,2014-01-14 10:29:06.910196,715,38,981, +16,2014-01-13 12:41:19.173802,339,179,453, +96,2014-01-13 20:12:02.07639,97,340,391, +16,2014-01-17 22:30:40.685366,661,189,234, +16,2014-01-13 02:52:30.45902,964,111,722, +16,2014-01-13 22:48:17.08505,386,37,561, +96,2014-01-15 08:04:24.064761,445,407,640, +96,2014-01-16 17:51:58.205245,891,406,160, +96,2014-01-20 18:53:41.65284,944,566,128, +16,2014-01-13 17:34:21.810361,608,578,847, +16,2014-01-17 16:04:03.546218,130,215,177, +16,2014-01-14 20:04:21.476893,120,627,770, +16,2014-01-14 04:55:04.411785,795,258,817, +16,2014-01-17 05:59:43.044597,337,628,219, +96,2014-01-15 09:59:31.345995,410,418,843, +96,2014-01-15 17:24:28.751562,807,895,565, +16,2014-01-12 03:24:30.92621,533,621,912, +96,2014-01-17 21:20:25.738068,612,170,681, +96,2014-01-15 07:55:39.879816,209,90,28, +16,2014-01-15 11:24:33.322865,40,214,534, +16,2014-01-19 17:39:16.96892,411,118,314, +96,2014-01-15 00:12:40.738095,111,669,825, +96,2014-01-15 13:07:37.007389,114,987,3, +16,2014-01-20 09:27:13.768896,931,548,30, +16,2014-01-15 20:28:45.391701,2,19,544, +96,2014-01-18 12:27:28.017143,641,841,2, +16,2014-01-14 00:55:42.408783,178,369,877, +16,2014-01-19 11:16:05.555623,183,446,338, +96,2014-01-20 14:21:20.104567,395,911,391, +16,2014-01-11 11:16:12.561915,650,853,483, +16,2014-01-10 22:59:33.564828,900,737,24, +85,2014-01-13 18:50:27.014762,672,985,281, +85,2014-01-14 03:57:31.736135,686,519,14, +98,2014-01-13 23:11:35.641636,532,388,701, +85,2014-01-20 21:21:07.700128,344,470,407, +98,2014-01-16 10:50:02.195155,708,23,279, +85,2014-01-17 01:59:52.726687,839,565,582, +85,2014-01-14 23:25:31.76489,253,13,986, +98,2014-01-11 22:42:00.400401,21,371,987, +98,2014-01-16 14:53:34.379527,726,700,408, +85,2014-01-17 20:59:53.575251,660,173,356, +85,2014-01-18 18:46:03.946619,754,346,218, +85,2014-01-20 14:57:55.85684,991,913,368, +98,2014-01-21 05:54:57.987456,23,873,402, +85,2014-01-14 18:45:46.991216,179,532,254, +85,2014-01-14 18:57:27.202833,971,700,199, +98,2014-01-15 17:19:26.739018,726,77,214, +85,2014-01-16 02:10:17.917845,361,489,80, +98,2014-01-11 10:17:52.940901,601,207,644, +98,2014-01-20 05:15:06.618833,35,943,148, +98,2014-01-20 17:34:51.240709,663,73,11, +98,2014-01-20 07:57:09.91024,116,413,927, +85,2014-01-13 23:27:47.356929,423,952,206, +85,2014-01-15 00:42:28.248517,30,571,9, +98,2014-01-19 11:24:23.679136,574,537,217, +98,2014-01-18 23:56:32.748629,744,998,641, +85,2014-01-12 07:09:56.265658,995,959,371, +85,2014-01-12 06:20:06.08792,628,918,758, +85,2014-01-17 05:12:38.304252,155,172,551, +85,2014-01-11 15:31:16.370225,9,632,116, +85,2014-01-12 21:36:18.649833,125,483,874, +85,2014-01-17 08:12:11.8695,468,263,195, +85,2014-01-14 14:21:43.384988,409,860,73, +98,2014-01-16 05:33:50.38597,194,82,975, +98,2014-01-20 11:23:47.511136,869,1000,138, +85,2014-01-14 05:42:51.085534,189,506,257, +98,2014-01-11 10:23:52.581545,546,295,133, +98,2014-01-16 07:23:40.237824,564,316,431, +98,2014-01-18 09:08:22.850424,939,392,653, +98,2014-01-12 13:05:52.981945,22,12,549, +85,2014-01-11 16:17:14.617351,340,553,457, +85,2014-01-15 00:08:16.426095,437,730,671, +98,2014-01-20 11:51:56.928983,72,304,620, +85,2014-01-11 01:15:10.474191,652,229,277, +98,2014-01-15 00:03:14.41355,652,340,566, +98,2014-01-14 00:37:43.920199,676,561,315, +98,2014-01-15 00:12:37.677024,387,878,698, +98,2014-01-19 21:22:41.152568,124,831,909, +85,2014-01-19 06:48:01.838044,352,223,252, +85,2014-01-15 14:30:30.618345,846,987,514, +98,2014-01-18 20:37:47.771402,920,51,780, +98,2014-01-18 18:22:53.079172,324,604,113, +98,2014-01-14 16:27:40.528584,122,125,642, +85,2014-01-11 14:05:35.12833,593,776,735, +98,2014-01-12 13:05:21.327688,49,811,833, +85,2014-01-12 21:52:04.207721,754,881,261, +85,2014-01-19 18:02:07.87696,486,124,621, +98,2014-01-14 00:15:17.593347,791,298,512, +85,2014-01-14 08:12:10.29564,590,207,745, +85,2014-01-15 17:14:46.181631,432,51,710, +85,2014-01-14 19:46:33.963572,688,867,255, +85,2014-01-16 09:48:28.945474,758,329,118, +98,2014-01-11 19:26:58.051131,432,951,800, +85,2014-01-18 14:08:17.348559,706,36,453, +85,2014-01-11 09:22:19.331862,260,152,735, +85,2014-01-11 00:50:45.562268,354,943,232, +98,2014-01-11 13:51:08.434094,168,750,796, +85,2014-01-11 23:46:11.913406,28,626,949, +85,2014-01-16 12:14:25.800092,546,342,748, +85,2014-01-19 02:59:31.284937,534,653,960, +98,2014-01-13 16:52:04.895352,503,815,712, +98,2014-01-17 08:31:40.417443,333,368,437, +98,2014-01-12 21:07:47.711032,672,608,866, +98,2014-01-12 22:44:01.824334,32,149,27, +85,2014-01-17 13:46:50.892052,454,453,620, +98,2014-01-17 01:11:02.124582,2,691,450, +85,2014-01-16 03:21:45.744953,625,249,313, +85,2014-01-11 07:59:28.569077,176,800,584, +85,2014-01-15 16:33:43.27715,296,463,781, +98,2014-01-14 04:09:47.582996,462,43,462, +85,2014-01-16 02:29:59.187422,795,189,514, +85,2014-01-13 07:11:31.048552,11,752,680, +98,2014-01-11 16:32:40.662168,39,971,63, +85,2014-01-19 22:57:39.716006,417,958,318, +98,2014-01-14 01:17:06.176882,450,524,888, +85,2014-01-13 09:38:01.989855,447,230,402, +85,2014-01-11 14:49:43.923726,140,421,25, +85,2014-01-12 13:19:14.053843,433,396,534, +85,2014-01-16 13:53:19.583202,77,714,15, +98,2014-01-15 03:01:54.219367,454,258,894, +85,2014-01-17 10:34:00.235474,263,391,720, +85,2014-01-20 13:39:53.546774,570,246,17, +98,2014-01-20 16:50:23.165259,735,909,647, +98,2014-01-18 10:00:58.286604,156,87,630, +98,2014-01-17 21:48:10.895753,419,435,674, +98,2014-01-10 20:12:42.497122,295,783,530, +85,2014-01-18 14:51:43.848872,825,96,990, +85,2014-01-18 15:39:19.329847,282,708,228, +85,2014-01-11 23:58:54.410528,807,399,245, +85,2014-01-13 21:06:09.648964,762,6,343, +85,2014-01-16 12:38:50.614784,168,668,878, +85,2014-01-14 20:50:59.30588,566,18,838, +85,2014-01-20 09:37:50.066826,384,759,72, +85,2014-01-18 13:46:38.325817,218,53,711, +98,2014-01-16 23:35:01.130633,656,755,840, +85,2014-01-16 17:24:40.958878,41,332,652, +98,2014-01-14 08:57:40.450398,543,652,427, +98,2014-01-11 20:56:46.875586,985,623,126, +98,2014-01-17 05:24:09.527955,257,779,583, +98,2014-01-19 05:31:23.727548,617,189,900, +85,2014-01-15 05:06:34.458582,583,698,435, +85,2014-01-12 01:54:08.715796,676,949,995, +98,2014-01-11 06:42:54.7761,974,12,468, +98,2014-01-16 01:39:15.121169,446,599,805, +85,2014-01-21 04:51:48.431802,622,184,683, +98,2014-01-14 12:00:00.952982,230,568,181, +85,2014-01-18 15:17:17.111025,310,634,476, +85,2014-01-11 13:41:32.355948,547,136,11, +98,2014-01-16 05:19:15.007244,338,736,824, +98,2014-01-13 23:10:36.694646,623,878,8, +85,2014-01-15 20:43:26.575314,659,922,459, +98,2014-01-12 09:53:15.242717,329,373,381, +98,2014-01-13 06:50:30.24142,207,3,309, +98,2014-01-15 07:33:49.740573,492,90,777, +85,2014-01-19 23:54:13.529741,218,512,126, +85,2014-01-20 08:38:41.137172,164,311,557, +98,2014-01-15 07:46:32.237695,877,374,832, +85,2014-01-17 08:45:57.378614,437,847,326, +98,2014-01-17 18:18:00.467438,859,480,447, +85,2014-01-16 11:45:26.648223,262,816,426, +98,2014-01-20 09:52:07.027996,935,677,858, +85,2014-01-13 00:56:51.082222,858,655,894, +85,2014-01-20 12:36:25.954522,596,855,310, +85,2014-01-19 13:29:57.094822,92,786,693, +85,2014-01-20 18:43:29.408457,520,527,980, +98,2014-01-16 06:11:27.085155,525,970,527, +85,2014-01-15 00:54:38.053701,946,101,385, +98,2014-01-13 21:41:09.858856,360,37,598, +98,2014-01-17 07:08:13.960742,0,428,127, +85,2014-01-11 00:18:47.581656,987,349,430, +85,2014-01-11 21:12:33.586823,141,880,203, +85,2014-01-11 06:14:48.419325,981,184,308, +85,2014-01-12 06:12:56.297452,214,993,704, +85,2014-01-12 07:55:28.362923,264,33,204, +98,2014-01-16 11:54:03.540494,568,507,299, +85,2014-01-12 05:04:44.729673,410,554,350, +98,2014-01-15 23:55:29.316324,529,56,223, +85,2014-01-13 21:11:20.651937,165,601,172, +98,2014-01-12 22:46:17.085621,847,495,66, +98,2014-01-10 23:14:44.323568,2,369,577, +85,2014-01-17 00:21:57.346583,958,205,672, +98,2014-01-17 23:29:43.660934,467,198,714, +85,2014-01-12 13:07:59.566285,404,220,142, +85,2014-01-19 11:12:27.588002,660,805,876, +98,2014-01-12 01:03:33.401927,35,97,594, +85,2014-01-11 07:02:13.096026,660,426,435, +98,2014-01-18 13:51:08.725594,150,72,788, +98,2014-01-16 12:50:05.639622,992,490,459, +98,2014-01-17 19:48:10.475058,114,592,516, +98,2014-01-15 02:09:09.193031,328,657,780, +98,2014-01-11 18:35:32.288264,997,249,967, +85,2014-01-16 23:40:17.503054,562,470,325, +85,2014-01-17 07:06:00.275254,440,689,324, +85,2014-01-11 01:11:58.242785,460,163,309, +98,2014-01-15 07:10:14.597877,401,577,561, +85,2014-01-16 19:49:29.683711,890,407,583, +98,2014-01-16 11:23:25.327941,788,865,918, +98,2014-01-19 12:04:52.651578,221,67,660, +85,2014-01-19 21:30:39.542986,105,518,464, +98,2014-01-12 12:31:39.288682,400,405,334, +85,2014-01-19 16:23:40.233234,533,479,244, +85,2014-01-20 22:43:13.129809,205,386,541, +85,2014-01-12 22:46:27.708007,142,964,601, +98,2014-01-21 02:36:36.531105,488,422,644, +85,2014-01-12 00:38:41.492732,668,496,111, +98,2014-01-18 14:40:31.24892,483,590,16, +98,2014-01-12 01:41:21.260779,45,355,991, +98,2014-01-17 04:34:10.809056,407,238,764, +85,2014-01-11 05:51:51.900857,794,336,386, +98,2014-01-14 04:27:38.3464,692,922,964, +98,2014-01-17 07:48:55.132625,617,861,629, +85,2014-01-17 10:13:49.24744,62,515,981, +98,2014-01-10 21:57:22.007334,836,517,603, +98,2014-01-19 00:56:54.699329,727,414,187, +85,2014-01-15 15:26:16.835443,32,770,746, +98,2014-01-12 03:00:55.409261,906,648,399, +85,2014-01-19 11:59:07.795354,891,723,617, +85,2014-01-12 23:17:25.561035,931,194,771, +98,2014-01-17 19:51:01.049302,699,840,879, +98,2014-01-16 01:47:18.270413,390,349,847, +85,2014-01-17 05:26:34.754067,355,27,512, +84,2014-01-18 18:26:33.337566,125,351,626, +84,2014-01-11 19:27:35.773468,250,557,722, +36,2014-01-13 06:32:35.02974,644,223,381, +36,2014-01-18 23:38:31.580351,698,548,552, +36,2014-01-16 06:37:50.371344,331,72,970, +84,2014-01-19 06:22:04.713451,220,436,878, +36,2014-01-14 05:01:56.908291,618,405,330, +84,2014-01-14 12:42:43.022922,761,209,990, +84,2014-01-17 21:52:44.256437,83,638,537, +36,2014-01-15 21:33:36.196973,417,310,967, +36,2014-01-12 23:06:23.256575,806,94,687, +84,2014-01-17 14:35:57.386246,707,841,772, +89,2014-01-18 00:20:03.90498,256,816,117, +89,2014-01-12 19:42:59.78768,117,798,874, +89,2014-01-18 19:14:38.879398,238,30,550, +84,2014-01-15 09:00:35.1539,360,462,590, +84,2014-01-14 01:24:21.048459,804,241,509, +89,2014-01-14 17:48:49.688454,171,920,237, +36,2014-01-15 18:52:27.054757,96,582,607, +84,2014-01-17 09:51:59.394858,422,885,943, +89,2014-01-21 05:37:44.821498,163,776,13, +89,2014-01-11 23:06:16.302197,93,101,230, +89,2014-01-17 11:49:21.402193,527,714,589, +89,2014-01-19 00:34:39.520827,965,845,412, +84,2014-01-16 18:32:33.138058,854,680,832, +36,2014-01-18 18:50:16.811874,282,327,443, +84,2014-01-17 06:33:47.316181,221,756,210, +36,2014-01-18 21:49:58.699094,115,500,936, +89,2014-01-15 08:41:17.861176,561,205,591, +84,2014-01-12 02:21:05.587014,159,221,609, +84,2014-01-14 21:16:33.45358,888,621,996, +36,2014-01-12 21:07:51.198742,308,969,700, +36,2014-01-13 01:48:41.36048,774,13,716, +36,2014-01-17 07:49:08.48332,325,755,457, +36,2014-01-21 00:46:22.779093,296,81,919, +36,2014-01-18 12:26:31.732244,137,689,771, +84,2014-01-15 08:11:13.196771,730,541,403, +36,2014-01-13 23:48:19.687383,515,700,473, +36,2014-01-11 19:09:14.755165,870,232,788, +84,2014-01-12 00:03:57.453627,948,884,188, +84,2014-01-19 01:21:55.884356,289,473,510, +36,2014-01-13 22:15:38.01174,469,343,818, +84,2014-01-18 18:39:54.839874,265,761,13, +84,2014-01-15 19:41:59.789336,702,273,249, +89,2014-01-15 21:58:37.79942,813,626,457, +89,2014-01-16 07:54:33.719271,362,621,839, +89,2014-01-20 08:42:34.943655,11,235,23, +89,2014-01-19 03:22:58.847879,337,598,270, +84,2014-01-20 05:43:23.408145,894,234,817, +89,2014-01-14 21:35:01.998412,500,749,326, +36,2014-01-15 07:14:58.242737,336,97,944, +84,2014-01-20 05:21:08.229643,753,108,901, +36,2014-01-16 00:41:18.301028,792,716,743, +89,2014-01-11 13:04:19.64535,805,4,679, +84,2014-01-17 23:55:47.75047,873,511,294, +36,2014-01-11 13:13:51.439086,116,476,203, +84,2014-01-19 11:54:36.457223,761,226,760, +84,2014-01-14 00:29:35.066651,688,51,159, +36,2014-01-19 15:03:50.13818,720,750,601, +89,2014-01-13 14:35:54.318399,870,349,543, +84,2014-01-15 06:50:40.653665,895,439,173, +36,2014-01-13 06:20:23.59176,862,399,485, +84,2014-01-15 15:43:45.517141,94,768,333, +84,2014-01-17 12:39:22.014564,645,817,968, +84,2014-01-19 18:09:32.07508,92,731,679, +89,2014-01-15 10:30:08.296233,10,399,35, +36,2014-01-14 19:05:53.746807,900,919,881, +36,2014-01-13 20:20:45.272271,905,14,789, +84,2014-01-18 14:18:27.983617,516,602,618, +36,2014-01-15 18:15:08.501972,861,120,353, +84,2014-01-15 00:24:42.725898,230,776,850, +89,2014-01-16 09:40:23.867973,852,650,89, +36,2014-01-18 20:30:46.514131,986,274,238, +84,2014-01-12 13:04:37.565771,595,643,744, +84,2014-01-10 23:22:23.65731,981,665,968, +84,2014-01-13 12:29:24.313551,207,142,375, +84,2014-01-18 00:59:11.285461,301,845,723, +89,2014-01-20 12:04:58.600966,512,714,836, +84,2014-01-11 09:52:23.161849,804,126,530, +89,2014-01-17 00:42:34.693606,806,660,917, +84,2014-01-14 03:40:00.599797,308,902,178, +89,2014-01-15 21:07:21.404586,470,606,697, +36,2014-01-16 00:03:42.923249,427,614,233, +84,2014-01-19 08:21:18.900825,825,336,776, +36,2014-01-16 14:11:41.049935,937,942,533, +89,2014-01-12 17:59:30.673719,891,826,800, +89,2014-01-20 01:35:10.339911,925,641,892, +36,2014-01-14 20:06:17.507159,130,179,753, +84,2014-01-15 22:29:05.74037,956,320,256, +36,2014-01-18 10:39:00.478092,586,187,56, +36,2014-01-17 14:42:11.825558,359,280,493, +89,2014-01-20 09:19:46.394453,110,291,671, +89,2014-01-20 20:59:24.070271,961,496,328, +89,2014-01-12 00:25:57.3427,7,600,475, +36,2014-01-16 15:59:08.409017,343,892,365, +89,2014-01-19 09:08:56.145352,936,666,958, +89,2014-01-16 14:56:05.638933,188,217,902, +89,2014-01-20 15:05:02.155824,69,466,277, +89,2014-01-11 23:29:41.417623,302,0,754, +84,2014-01-13 23:14:33.62255,577,998,608, +89,2014-01-15 03:20:10.657797,251,631,728, +36,2014-01-16 03:54:24.14352,951,967,333, +36,2014-01-19 12:54:57.490523,116,658,511, +36,2014-01-12 17:50:57.171928,498,369,972, +36,2014-01-17 20:59:01.70971,132,524,668, +84,2014-01-19 16:17:21.148252,125,718,951, +84,2014-01-15 10:20:21.485898,133,899,827, +84,2014-01-14 15:58:12.995172,852,908,181, +36,2014-01-18 22:22:19.749218,980,811,38, +89,2014-01-16 00:12:44.647747,788,63,740, +36,2014-01-20 20:40:47.688779,419,853,998, +89,2014-01-11 20:02:20.349015,270,624,818, +84,2014-01-21 01:20:06.052333,669,31,489, +89,2014-01-15 14:44:30.612028,456,799,355, +89,2014-01-20 08:23:39.249839,95,228,92, +36,2014-01-16 09:31:47.102689,877,889,45, +36,2014-01-17 12:44:01.285747,808,547,150, +89,2014-01-19 03:58:49.58975,382,65,310, +89,2014-01-20 09:38:04.609847,557,525,594, +36,2014-01-12 05:13:07.026118,980,606,817, +84,2014-01-16 08:37:50.068261,722,838,181, +36,2014-01-16 18:20:16.435825,80,776,101, +36,2014-01-11 08:32:53.420571,465,968,67, +89,2014-01-15 23:37:14.138532,216,178,455, +84,2014-01-17 22:46:13.778524,737,52,474, +84,2014-01-17 04:32:01.829588,607,372,653, +84,2014-01-14 02:46:10.283884,361,343,850, +84,2014-01-13 07:42:19.417876,787,861,964, +89,2014-01-16 13:37:03.985412,356,505,661, +36,2014-01-15 06:15:51.701926,643,312,58, +89,2014-01-16 10:56:53.040426,452,957,931, +89,2014-01-20 20:57:14.643628,199,158,614, +84,2014-01-20 14:10:15.845446,145,501,528, +84,2014-01-14 17:51:50.531368,1,252,423, +36,2014-01-12 08:48:11.815556,163,165,592, +89,2014-01-17 05:09:17.555156,58,286,977, +36,2014-01-13 04:09:11.67962,114,129,764, +84,2014-01-16 23:08:33.301454,617,254,73, +89,2014-01-21 01:07:30.550329,668,945,404, +89,2014-01-10 20:31:31.428838,206,313,89, +89,2014-01-11 17:21:17.949201,483,988,640, +89,2014-01-20 15:48:18.239107,864,249,694, +36,2014-01-11 20:33:51.778271,397,628,807, +84,2014-01-11 12:41:24.001953,800,381,284, +36,2014-01-15 00:32:48.851136,836,877,42, +36,2014-01-10 22:57:31.028109,926,208,608, +84,2014-01-17 02:13:11.104641,352,452,498, +84,2014-01-11 07:16:50.136883,695,523,754, +89,2014-01-19 06:56:20.618279,120,868,381, +89,2014-01-16 05:51:15.714488,924,162,712, +89,2014-01-12 16:29:57.16342,616,192,820, +89,2014-01-14 09:34:10.68654,317,375,60, +36,2014-01-11 18:11:32.150313,822,583,910, +84,2014-01-13 05:02:50.583991,242,184,172, +89,2014-01-19 13:11:24.825073,416,766,367, +84,2014-01-18 20:57:45.929256,13,419,683, +84,2014-01-19 13:34:52.413998,931,410,414, +84,2014-01-12 09:57:35.108956,924,243,216, +89,2014-01-10 22:40:05.347132,301,749,481, +89,2014-01-14 21:11:56.39941,542,353,854, +36,2014-01-16 20:13:26.810882,797,134,765, +36,2014-01-16 13:36:58.387558,256,846,216, +84,2014-01-14 12:09:11.043039,724,513,109, +36,2014-01-16 04:23:42.656747,43,836,256, +89,2014-01-20 11:28:48.918926,750,634,674, +84,2014-01-16 00:57:22.859013,402,773,285, +89,2014-01-12 03:33:00.211904,775,252,740, +36,2014-01-12 09:38:00.598547,256,14,158, +84,2014-01-11 18:05:56.160467,166,557,300, +89,2014-01-11 22:40:30.762652,395,731,416, +36,2014-01-12 10:09:32.027803,291,909,98, +89,2014-01-12 15:27:14.110086,564,359,673, +36,2014-01-11 08:28:49.001759,307,474,355, +36,2014-01-13 10:43:23.806074,35,991,271, +84,2014-01-13 08:08:38.11204,689,247,234, +36,2014-01-15 13:01:37.853315,451,546,684, +89,2014-01-13 13:40:54.834183,140,165,670, +89,2014-01-19 14:21:49.21668,701,41,55, +36,2014-01-16 00:18:27.990198,843,701,217, +36,2014-01-11 14:37:15.452463,562,146,364, +84,2014-01-14 14:13:04.931168,791,28,973, +89,2014-01-17 20:48:25.153618,872,834,801, +36,2014-01-15 04:11:26.139003,908,709,518, +36,2014-01-15 12:24:37.0819,450,113,322, +84,2014-01-20 05:51:15.738028,623,96,284, +84,2014-01-13 11:22:50.964075,861,797,601, +84,2014-01-13 03:22:23.011155,409,701,824, +84,2014-01-18 13:26:08.152025,381,438,152, +84,2014-01-15 01:20:26.073451,397,965,74, +36,2014-01-13 06:02:28.358289,858,536,332, +36,2014-01-12 04:38:04.551435,790,511,57, +36,2014-01-21 01:33:52.884333,97,748,821, +36,2014-01-18 23:39:26.745846,654,797,921, +89,2014-01-15 20:47:15.594893,837,638,312, +84,2014-01-15 23:57:35.54108,832,350,307, +84,2014-01-18 05:08:15.665192,70,651,41, +84,2014-01-21 01:44:38.453905,837,595,482, +36,2014-01-17 07:30:35.753403,375,28,291, +89,2014-01-19 18:46:16.263739,103,93,514, +89,2014-01-11 13:50:34.614372,968,708,749, +36,2014-01-18 10:11:06.516055,833,431,227, +36,2014-01-10 22:55:48.291542,858,96,94, +84,2014-01-13 09:17:48.724458,730,888,434, +84,2014-01-18 22:39:55.517816,173,408,614, +36,2014-01-13 13:39:12.097616,992,262,200, +36,2014-01-15 21:26:26.836498,232,919,591, +89,2014-01-13 05:41:33.37113,58,952,36, +36,2014-01-16 07:20:06.932219,510,802,864, +36,2014-01-14 05:48:16.053178,70,506,718, +84,2014-01-18 10:00:01.361748,153,976,165, +84,2014-01-17 01:57:22.384681,288,428,193, +84,2014-01-18 00:01:20.984765,444,316,882, +84,2014-01-15 00:48:26.515366,291,53,686, +84,2014-01-11 00:08:48.524103,865,531,88, +36,2014-01-12 06:25:58.066665,650,663,380, +36,2014-01-14 00:39:42.253393,591,70,17, +36,2014-01-13 15:31:39.488178,406,988,622, +89,2014-01-14 13:48:21.077821,0,215,213, +36,2014-01-11 08:05:50.405419,439,814,256, +89,2014-01-17 20:52:05.561629,762,83,925, +36,2014-01-16 23:50:49.436108,481,164,216, +36,2014-01-12 16:43:54.957273,471,170,337, +89,2014-01-17 16:25:58.446381,609,119,555, +89,2014-01-14 17:30:16.181955,420,831,99, +36,2014-01-17 17:31:10.552166,927,225,250, +84,2014-01-12 10:23:33.987462,435,540,806, +89,2014-01-11 16:38:31.847147,351,343,60, +36,2014-01-17 13:15:49.006071,510,894,640, +84,2014-01-18 21:54:09.740866,380,84,756, +89,2014-01-20 15:24:48.111304,615,267,844, +36,2014-01-18 07:06:23.620443,589,968,564, +36,2014-01-16 02:05:16.256922,146,346,451, +89,2014-01-20 18:20:36.402846,486,610,912, +36,2014-01-20 20:24:12.345321,492,31,837, +84,2014-01-13 18:45:11.775156,738,2,749, +84,2014-01-13 01:59:48.50088,1,187,175, +84,2014-01-15 11:50:39.181819,774,360,709, +36,2014-01-16 04:26:45.146285,493,540,321, +89,2014-01-18 13:19:55.433099,323,975,942, +84,2014-01-18 21:38:55.235416,452,2,652, +89,2014-01-13 08:26:46.508033,215,85,930, +84,2014-01-14 09:17:17.81778,568,949,381, +36,2014-01-15 15:40:16.22018,858,976,966, +36,2014-01-17 13:15:13.023818,571,183,881, +84,2014-01-14 13:26:06.341883,987,474,184, +89,2014-01-17 02:06:14.286846,814,563,319, +36,2014-01-20 17:54:55.277211,320,721,623, +84,2014-01-17 08:57:45.83048,68,278,466, +84,2014-01-20 19:54:35.364666,883,579,362, +84,2014-01-10 20:00:45.683049,751,941,169, +36,2014-01-13 23:49:51.392109,693,585,824, +36,2014-01-16 13:45:24.800774,400,321,150, +89,2014-01-12 16:44:40.640322,237,384,235, +89,2014-01-20 20:15:49.838492,377,986,763, +84,2014-01-20 11:15:40.982729,797,946,277, +36,2014-01-19 14:15:51.192487,81,648,80, +36,2014-01-12 00:39:23.826373,667,698,988, +36,2014-01-10 21:54:12.830295,496,565,694, +36,2014-01-15 21:31:40.198558,833,63,43, +84,2014-01-20 02:33:33.567239,967,625,58, +84,2014-01-20 17:19:00.941599,50,751,345, +89,2014-01-12 22:38:03.819001,743,637,744, +89,2014-01-14 22:38:49.824579,540,409,190, +36,2014-01-20 05:39:37.344445,671,16,683, +89,2014-01-12 13:02:16.164322,172,936,245, +36,2014-01-17 21:24:01.599734,639,95,789, +89,2014-01-12 01:39:25.845325,664,551,69, +84,2014-01-17 04:52:55.34656,813,169,639, +89,2014-01-12 19:50:46.746021,368,891,526, +89,2014-01-19 18:59:21.278424,956,556,807, +84,2014-01-14 20:31:50.581976,16,85,88, +89,2014-01-15 08:17:33.254473,338,283,58, +84,2014-01-12 22:16:39.096623,719,310,894, +84,2014-01-19 16:12:06.802156,234,233,739, +89,2014-01-11 15:32:46.278291,298,123,674, +89,2014-01-16 15:42:45.438505,831,149,296, +84,2014-01-15 12:18:21.089002,449,723,406, +84,2014-01-11 03:27:41.555502,956,363,46, +36,2014-01-12 18:40:31.268986,492,349,163, +36,2014-01-15 02:12:56.453668,146,476,494, +84,2014-01-11 03:28:27.23855,110,6,615, +89,2014-01-15 22:30:22.661515,41,218,26, +36,2014-01-20 19:58:21.254442,106,492,53, +84,2014-01-13 00:13:07.878872,283,202,818, +84,2014-01-15 12:46:12.500006,843,830,400, +36,2014-01-20 01:14:02.237171,477,356,990, +89,2014-01-11 08:28:59.071359,430,269,35, +36,2014-01-16 17:25:36.326378,743,171,753, +36,2014-01-20 03:08:15.067465,766,897,572, +36,2014-01-16 10:00:39.269917,218,554,76, +89,2014-01-15 13:59:09.894035,958,799,199, +36,2014-01-19 14:27:16.009064,619,390,941, +0,2014-01-18 12:38:43.089337,570,323,558, +64,2014-01-19 16:37:59.718615,26,931,337, +0,2014-01-18 14:06:53.353927,42,574,543, +55,2014-01-20 05:40:59.253659,392,901,2, +0,2014-01-16 08:02:01.318349,101,35,51, +19,2014-01-19 19:46:19.199252,400,621,804, +19,2014-01-16 04:33:54.60022,641,258,968, +55,2014-01-18 07:52:48.064369,402,28,741, +55,2014-01-18 08:45:40.478095,328,356,30, +55,2014-01-20 05:05:45.182195,681,201,826, +19,2014-01-12 10:10:21.318842,76,766,979, +64,2014-01-20 11:02:19.574718,529,610,939, +55,2014-01-18 15:17:51.984352,139,910,363, +55,2014-01-13 05:43:07.597133,262,436,591, +64,2014-01-15 20:45:05.013223,466,218,800, +0,2014-01-12 21:36:13.073353,88,35,27, +0,2014-01-13 13:10:49.153054,606,400,620, +55,2014-01-17 19:25:36.282628,856,549,40, +55,2014-01-17 03:49:09.527021,809,729,725, +19,2014-01-13 20:39:16.391604,978,86,638, +55,2014-01-12 11:55:58.944143,192,626,994, +55,2014-01-16 17:47:30.781463,206,601,326, +55,2014-01-16 00:52:24.270896,433,939,313, +64,2014-01-17 04:42:11.444148,754,639,23, +0,2014-01-15 13:01:33.019052,349,966,984, +64,2014-01-16 13:21:23.342254,113,164,649, +55,2014-01-12 16:07:47.770946,767,307,286, +0,2014-01-14 10:09:48.086517,22,406,349, +55,2014-01-11 17:22:02.612591,614,413,397, +64,2014-01-17 10:06:57.664981,167,951,327, +19,2014-01-12 18:37:04.096,623,798,643, +19,2014-01-19 10:00:45.701928,125,356,304, +55,2014-01-15 20:44:57.383596,883,946,788, +0,2014-01-20 12:43:57.449927,656,83,947, +0,2014-01-18 09:41:44.955588,314,618,677, +0,2014-01-10 22:46:58.701945,924,502,387, +19,2014-01-19 02:30:16.649179,129,165,541, +19,2014-01-13 08:15:39.556226,103,170,777, +55,2014-01-18 10:39:46.766314,167,38,114, +64,2014-01-16 05:15:57.127274,475,237,361, +64,2014-01-12 07:21:24.738422,888,220,624, +19,2014-01-20 00:50:08.085575,5,890,460, +55,2014-01-15 10:18:16.701991,315,385,361, +55,2014-01-20 02:39:16.723193,915,194,975, +19,2014-01-12 00:33:15.682707,758,874,904, +19,2014-01-20 11:03:21.715633,277,97,535, +55,2014-01-11 18:15:29.796546,448,90,213, +0,2014-01-14 17:44:04.835761,54,836,513, +55,2014-01-17 00:28:57.99826,289,744,557, +64,2014-01-18 02:04:39.323986,460,8,881, +64,2014-01-17 18:23:21.227785,352,705,352, +0,2014-01-18 16:24:56.942403,92,323,636, +64,2014-01-13 13:52:10.105449,616,333,912, +0,2014-01-12 13:15:45.49868,208,135,2, +0,2014-01-14 15:07:08.386552,436,957,401, +19,2014-01-18 06:53:43.124501,527,468,69, +55,2014-01-18 06:37:08.840934,680,441,544, +55,2014-01-16 11:14:56.157498,93,520,132, +55,2014-01-11 11:03:31.211437,592,961,103, +0,2014-01-19 03:59:11.453526,784,304,120, +55,2014-01-12 15:21:53.822479,8,287,506, +19,2014-01-13 09:40:35.307437,368,529,447, +19,2014-01-17 07:59:57.155453,569,638,140, +0,2014-01-17 16:06:51.206074,394,857,734, +64,2014-01-12 16:24:32.757365,393,660,476, +19,2014-01-14 11:41:42.11146,723,68,806, +64,2014-01-17 18:53:49.908019,828,412,718, +64,2014-01-20 22:54:49.406543,103,658,41, +55,2014-01-16 23:57:21.667686,472,824,669, +64,2014-01-14 23:33:36.674752,884,654,68, +64,2014-01-15 22:10:46.534235,354,485,377, +55,2014-01-18 11:18:46.406108,686,956,508, +64,2014-01-13 18:23:44.760327,373,89,987, +55,2014-01-20 12:29:03.236226,366,255,126, +64,2014-01-17 07:58:03.1293,986,728,66, +55,2014-01-14 22:57:00.443034,28,940,815, +55,2014-01-19 17:32:24.951859,538,245,844, +55,2014-01-18 06:13:32.926266,156,654,79, +0,2014-01-18 20:41:05.279216,21,458,226, +64,2014-01-15 12:01:22.95012,486,670,375, +0,2014-01-15 02:18:12.250251,176,72,640, +0,2014-01-15 09:04:26.507,389,704,688, +19,2014-01-12 22:26:19.892524,357,379,120, +64,2014-01-17 20:10:22.3557,542,784,405, +64,2014-01-17 02:20:12.00568,431,599,292, +64,2014-01-16 17:33:28.279495,587,568,745, +55,2014-01-14 21:04:05.480621,779,647,137, +55,2014-01-14 02:57:20.846616,795,191,296, +19,2014-01-11 22:48:24.436992,156,12,276, +55,2014-01-15 12:07:36.692058,284,431,208, +55,2014-01-12 00:56:32.30056,277,875,230, +19,2014-01-13 18:10:18.25989,518,294,358, +0,2014-01-18 01:48:11.999495,907,169,625, +0,2014-01-18 12:56:29.456014,545,972,120, +64,2014-01-20 14:17:09.465965,337,33,253, +64,2014-01-19 22:12:44.756859,281,30,612, +55,2014-01-11 18:38:11.567474,484,836,796, +64,2014-01-17 03:10:59.374402,980,40,197, +55,2014-01-19 15:07:34.163402,251,118,222, +19,2014-01-17 22:35:33.23516,729,618,36, +55,2014-01-10 20:44:36.049154,689,526,31, +55,2014-01-14 07:18:20.697637,34,456,714, +19,2014-01-15 03:54:19.641687,886,874,914, +55,2014-01-13 19:08:20.809481,732,929,327, +55,2014-01-13 13:47:23.934282,150,417,629, +64,2014-01-11 05:52:22.770987,875,352,572, +0,2014-01-17 22:05:21.252516,725,712,316, +55,2014-01-12 01:19:48.886142,801,808,715, +55,2014-01-18 16:05:55.697252,635,807,842, +19,2014-01-15 12:46:26.531731,514,906,36, +0,2014-01-16 17:21:11.836681,20,124,36, +55,2014-01-12 12:24:07.947504,820,468,285, +55,2014-01-20 01:50:53.038731,494,943,522, +55,2014-01-18 19:47:31.729204,79,331,724, +19,2014-01-19 12:34:30.303623,680,20,84, +55,2014-01-15 22:11:05.044411,255,955,989, +64,2014-01-14 07:21:00.008699,282,710,612, +64,2014-01-13 03:38:35.784244,640,641,202, +0,2014-01-19 05:08:25.891446,271,434,725, +64,2014-01-15 10:09:24.44611,976,186,322, +19,2014-01-17 19:46:12.476302,27,727,266, +55,2014-01-20 10:04:58.192005,108,364,565, +55,2014-01-18 08:19:42.706,375,481,829, +19,2014-01-14 15:34:24.475797,189,359,947, +19,2014-01-17 17:01:27.648019,673,756,529, +19,2014-01-17 16:36:52.171965,955,945,541, +0,2014-01-13 07:47:09.232656,804,331,189, +19,2014-01-18 15:39:39.215912,439,453,247, +55,2014-01-13 13:47:51.546367,766,775,345, +64,2014-01-11 16:54:43.396057,828,873,891, +64,2014-01-15 08:15:12.451073,862,837,258, +64,2014-01-13 14:32:27.595522,829,372,767, +64,2014-01-15 04:13:04.094115,346,414,48, +0,2014-01-19 16:09:32.092759,753,798,974, +55,2014-01-16 13:40:48.405002,320,66,309, +55,2014-01-17 22:00:28.028397,446,616,252, +64,2014-01-20 02:01:54.864166,88,797,782, +0,2014-01-13 05:46:09.657937,991,87,858, +0,2014-01-19 03:20:16.914539,839,539,642, +64,2014-01-17 12:07:50.561419,261,717,572, +55,2014-01-17 22:32:36.189668,464,1,863, +64,2014-01-14 14:41:28.75122,982,724,253, +55,2014-01-19 04:31:58.509342,79,811,217, +0,2014-01-16 18:23:29.228818,201,652,550, +64,2014-01-12 04:29:00.480843,964,318,751, +19,2014-01-17 11:06:28.812966,277,229,236, +64,2014-01-11 10:34:34.273229,811,477,461, +0,2014-01-15 15:50:00.489543,303,532,292, +0,2014-01-19 18:45:04.597209,326,217,464, +19,2014-01-19 19:43:00.164675,165,157,190, +55,2014-01-20 05:59:24.935652,372,12,278, +64,2014-01-16 08:31:17.07351,932,618,548, +0,2014-01-18 23:47:58.35668,661,717,181, +19,2014-01-17 08:19:07.641653,282,335,226, +19,2014-01-20 04:05:41.549307,284,31,748, +19,2014-01-15 10:49:26.005119,546,932,819, +19,2014-01-13 18:55:59.814036,774,914,43, +19,2014-01-12 05:52:50.781964,872,729,283, +64,2014-01-12 20:29:05.22103,357,863,137, +64,2014-01-16 12:43:51.360404,786,272,269, +19,2014-01-13 02:47:34.178021,215,795,37, +55,2014-01-17 08:44:17.672103,756,598,960, +19,2014-01-19 07:16:18.956345,777,777,861, +19,2014-01-17 11:00:38.272135,482,418,757, +19,2014-01-15 18:53:49.765282,392,400,381, +64,2014-01-14 14:57:07.361347,233,292,726, +64,2014-01-14 03:01:06.300532,447,274,678, +55,2014-01-14 14:55:44.629448,457,190,214, +0,2014-01-17 00:43:17.019283,328,588,364, +64,2014-01-12 00:21:23.21549,754,375,630, +64,2014-01-10 21:03:35.190867,464,598,129, +19,2014-01-13 17:15:53.209371,415,695,636, +19,2014-01-15 19:02:51.966709,412,8,699, +19,2014-01-19 05:35:33.700208,422,76,849, +55,2014-01-19 15:39:22.438189,329,862,266, +19,2014-01-17 03:31:52.447553,792,187,252, +19,2014-01-15 10:42:02.513174,799,31,902, +55,2014-01-20 06:13:56.711418,94,382,685, +19,2014-01-11 13:21:52.937515,745,750,83, +19,2014-01-13 23:27:07.110382,781,734,93, +0,2014-01-18 19:56:56.876511,419,218,805, +64,2014-01-20 23:21:17.873167,64,546,325, +0,2014-01-19 11:58:24.183894,212,744,529, +55,2014-01-16 13:44:55.233192,837,282,118, +55,2014-01-17 01:40:25.515239,810,345,547, +64,2014-01-18 10:04:05.733201,487,650,904, +64,2014-01-21 04:34:21.23831,215,517,364, +64,2014-01-20 00:36:25.329275,534,233,373, +0,2014-01-19 19:56:56.515165,263,503,822, +0,2014-01-12 19:03:26.459341,285,616,889, +19,2014-01-15 07:20:16.689679,985,618,269, +64,2014-01-11 16:44:30.693604,544,478,382, +55,2014-01-19 07:47:44.131864,982,612,909, +64,2014-01-13 08:36:35.646023,712,667,854, +55,2014-01-18 07:45:08.96574,504,248,779, +0,2014-01-13 20:41:33.897145,335,834,259, +19,2014-01-17 03:33:43.00779,347,873,208, +19,2014-01-11 04:46:15.266691,852,477,51, +19,2014-01-17 15:37:18.526593,578,927,480, +19,2014-01-12 22:17:00.027073,792,809,805, +64,2014-01-12 09:07:38.482181,763,421,43, +19,2014-01-17 16:40:53.717459,138,553,942, +55,2014-01-15 19:32:53.236444,158,389,54, +55,2014-01-17 08:10:30.448891,432,228,712, +19,2014-01-15 16:16:27.418086,224,380,524, +19,2014-01-14 05:12:15.674632,573,356,395, +19,2014-01-13 05:42:22.896862,479,722,211, +19,2014-01-20 06:58:29.93126,610,866,309, +64,2014-01-13 05:26:12.386469,839,779,181, +64,2014-01-13 23:04:15.834376,772,497,38, +55,2014-01-13 00:25:37.042062,586,869,24, +19,2014-01-21 05:23:09.26298,202,888,640, +55,2014-01-13 16:25:33.707543,570,777,396, +0,2014-01-11 06:24:01.225955,754,138,549, +55,2014-01-16 13:08:04.496172,686,687,259, +19,2014-01-19 22:05:59.222781,249,224,7, +64,2014-01-18 20:28:06.959575,843,874,329, +64,2014-01-16 11:42:25.734901,430,833,877, +55,2014-01-18 16:42:24.552057,581,50,359, +64,2014-01-17 10:25:03.47474,124,172,358, +0,2014-01-18 10:45:52.194242,667,90,870, +0,2014-01-12 18:02:41.242155,196,304,602, +64,2014-01-18 07:09:34.168344,327,893,878, +19,2014-01-16 12:33:36.326105,115,145,583, +55,2014-01-15 06:39:16.888178,868,620,315, +55,2014-01-15 08:54:43.134502,560,551,492, +55,2014-01-19 13:15:10.22325,401,284,464, +19,2014-01-11 04:12:59.895968,414,164,437, +55,2014-01-15 17:40:58.401193,431,398,979, +64,2014-01-15 22:52:28.749843,829,230,510, +19,2014-01-13 06:29:59.923459,248,272,580, +64,2014-01-17 06:48:36.883374,249,491,574, +55,2014-01-12 09:33:22.467721,974,132,53, +0,2014-01-18 06:02:53.159904,959,404,694, +19,2014-01-13 08:59:07.332265,772,890,102, +0,2014-01-17 05:49:49.885807,425,851,159, +64,2014-01-11 05:15:08.834955,668,632,183, +55,2014-01-15 18:41:30.229127,354,916,454, +55,2014-01-16 06:48:19.817068,164,225,690, +19,2014-01-13 14:41:21.221424,879,911,328, +64,2014-01-18 21:45:46.063503,119,39,435, +64,2014-01-18 11:13:56.85913,919,788,212, +19,2014-01-13 14:04:30.484404,550,593,852, +64,2014-01-11 08:11:19.771466,695,511,191, +19,2014-01-18 21:37:58.085504,145,657,446, +64,2014-01-19 07:12:34.980576,851,731,793, +19,2014-01-20 10:17:18.994247,360,612,533, +55,2014-01-16 12:06:05.045079,245,784,31, +0,2014-01-14 12:55:00.715477,883,829,593, +0,2014-01-17 20:59:43.546723,940,78,101, +55,2014-01-12 16:31:08.519819,987,359,776, +55,2014-01-11 17:40:52.910138,8,843,979, +0,2014-01-19 19:02:24.788878,997,204,838, +55,2014-01-20 03:40:42.688581,438,493,877, +64,2014-01-17 10:14:29.236243,819,248,582, +0,2014-01-13 19:41:41.677056,630,696,267, +64,2014-01-14 06:35:25.823083,580,273,389, +0,2014-01-15 17:29:39.459911,631,370,479, +64,2014-01-14 03:54:41.573443,866,35,77, +64,2014-01-19 04:16:24.224277,890,139,913, +19,2014-01-20 20:22:08.209754,389,495,924, +64,2014-01-16 14:24:41.496903,0,649,431, +64,2014-01-15 05:05:01.107651,363,358,64, +0,2014-01-11 23:55:30.677475,65,65,641, +64,2014-01-13 14:27:34.656806,853,583,47, +55,2014-01-17 18:04:08.439916,68,71,447, +19,2014-01-18 09:45:20.563283,250,158,741, +0,2014-01-13 23:42:43.491761,173,44,187, +19,2014-01-12 06:45:38.669461,915,322,794, +64,2014-01-13 10:33:40.38077,832,810,509, +19,2014-01-16 18:24:04.713185,343,659,471, +64,2014-01-20 08:31:24.732965,537,313,604, +55,2014-01-21 01:47:37.2399,569,310,561, +55,2014-01-19 12:28:35.19759,636,820,151, +0,2014-01-20 20:42:44.50443,523,989,9, +64,2014-01-18 17:25:35.325404,677,646,744, +64,2014-01-17 13:41:10.178585,698,466,174, +55,2014-01-20 01:00:03.499096,840,345,91, +19,2014-01-13 23:31:40.370484,83,133,311, +55,2014-01-10 20:36:10.894062,940,291,896, +55,2014-01-16 15:59:47.045819,631,907,713, +0,2014-01-15 20:02:48.890722,469,261,770, +19,2014-01-11 18:17:03.8042,145,128,301, +0,2014-01-15 05:02:11.834697,462,625,505, +64,2014-01-14 17:43:31.579303,860,400,233, +19,2014-01-18 08:31:33.040861,527,649,704, +55,2014-01-18 04:43:53.511753,738,782,536, +0,2014-01-18 04:18:57.402386,898,981,128, +0,2014-01-12 20:01:12.500774,530,989,838, +0,2014-01-11 02:38:35.085197,218,951,484, +19,2014-01-16 02:35:21.626664,854,536,749, +19,2014-01-12 10:23:20.710527,419,423,645, +64,2014-01-16 21:03:16.582099,271,3,303, +64,2014-01-20 11:40:22.734315,757,108,378, +55,2014-01-13 14:18:51.388422,824,865,578, +0,2014-01-19 15:30:51.239325,418,792,563, +55,2014-01-16 23:44:31.174229,557,46,304, +19,2014-01-21 04:04:11.951704,427,154,997, +55,2014-01-12 09:13:34.731086,453,860,208, +19,2014-01-18 10:30:09.843691,648,436,297, +19,2014-01-13 08:37:52.332475,22,66,510, +64,2014-01-18 07:37:39.444692,2,580,873, +64,2014-01-17 13:01:34.577074,921,218,141, +0,2014-01-13 04:25:29.572794,813,575,422, +64,2014-01-16 14:06:14.642281,890,782,686, +19,2014-01-17 03:44:19.081503,378,736,835, +0,2014-01-21 01:51:04.898199,908,130,96, +55,2014-01-12 21:47:24.820867,849,532,657, +64,2014-01-15 22:44:22.580599,868,484,229, +0,2014-01-13 19:22:45.269102,90,134,232, +55,2014-01-12 22:23:35.715348,933,104,697, +64,2014-01-11 08:44:09.626418,173,592,39, +19,2014-01-18 19:25:34.159824,108,966,753, +19,2014-01-13 20:40:39.519548,652,377,494, +19,2014-01-15 17:46:21.461116,961,629,119, +55,2014-01-12 07:09:05.739127,580,807,969, +55,2014-01-10 23:12:12.56041,526,811,276, +55,2014-01-12 16:30:14.973288,320,401,677, +19,2014-01-19 15:28:03.141515,370,347,353, +64,2014-01-12 23:13:25.061183,176,81,828, +55,2014-01-12 23:08:50.058484,428,180,301, +64,2014-01-14 12:03:24.768178,604,259,340, +19,2014-01-14 13:36:45.77213,278,850,581, +0,2014-01-19 00:12:06.641003,571,445,951, +55,2014-01-13 17:43:47.502492,866,774,736, +19,2014-01-17 07:55:37.160552,436,875,212, +0,2014-01-17 09:42:57.880328,244,487,235, +19,2014-01-19 21:28:18.676722,328,483,775, +19,2014-01-17 05:59:49.112256,404,752,849, +64,2014-01-18 22:56:32.611415,893,487,894, +64,2014-01-17 01:58:28.520831,419,121,895, +19,2014-01-19 18:37:41.44515,962,246,827, +55,2014-01-16 00:34:12.056106,403,869,585, +64,2014-01-13 09:00:03.097904,54,425,39, +64,2014-01-11 17:03:11.017944,318,870,569, +55,2014-01-11 08:40:26.698807,50,241,540, +19,2014-01-19 16:44:22.179408,556,357,34, +64,2014-01-11 12:54:15.916143,423,775,226, +64,2014-01-13 10:27:51.519674,977,889,885, +55,2014-01-14 09:28:44.760426,384,47,247, +64,2014-01-14 12:17:01.185244,615,120,392, +0,2014-01-15 12:51:27.235022,401,630,59, +19,2014-01-14 22:12:54.386845,487,849,582, +64,2014-01-12 01:42:35.345068,383,336,604, +55,2014-01-18 13:32:06.754989,575,53,511, +19,2014-01-19 19:59:15.848379,868,259,101, +64,2014-01-13 12:51:41.084196,504,76,8, +55,2014-01-18 16:44:19.315399,303,500,319, +0,2014-01-11 06:29:30.821667,717,82,49, +0,2014-01-11 22:19:44.225709,354,599,3, +55,2014-01-20 19:57:44.377001,173,126,211, +64,2014-01-13 09:38:20.88015,179,5,443, +55,2014-01-15 14:23:08.993888,304,462,380, +0,2014-01-14 03:34:30.149131,631,320,870, +64,2014-01-11 03:50:27.521153,881,872,635, +55,2014-01-18 12:06:56.496379,252,738,274, +55,2014-01-20 15:30:07.309683,578,896,101, +0,2014-01-17 17:33:25.401481,930,534,11, +19,2014-01-17 03:35:15.17352,481,38,369, +40,2014-01-16 15:29:56.42194,921,221,688, +74,2014-01-15 10:29:58.013315,698,736,657, +45,2014-01-12 23:33:43.694351,211,515,983, +40,2014-01-15 04:07:37.86709,677,988,975, +40,2014-01-20 15:04:10.069421,694,848,270, +65,2014-01-15 12:33:46.792255,590,339,933, +74,2014-01-16 01:10:48.885034,98,563,860, +40,2014-01-21 03:44:36.768228,540,737,237, +65,2014-01-13 23:18:08.971664,4,234,820, +45,2014-01-16 18:05:04.801596,851,89,997, +74,2014-01-13 08:12:28.288321,752,788,633, +37,2014-01-17 12:46:53.73209,471,685,824, +65,2014-01-20 10:22:05.98684,991,747,527, +37,2014-01-18 01:03:55.523342,690,186,933, +45,2014-01-11 04:59:48.119353,713,1,833, +37,2014-01-11 06:04:41.332327,839,387,49, +65,2014-01-15 08:36:02.27833,845,620,402, +74,2014-01-20 04:59:03.967731,195,359,399, +45,2014-01-13 22:56:22.416523,866,589,512, +74,2014-01-12 19:20:21.594149,260,615,799, +45,2014-01-20 15:28:34.789398,909,942,722, +45,2014-01-15 01:16:06.642651,925,575,603, +45,2014-01-12 09:18:05.97115,645,839,792, +65,2014-01-12 19:06:55.669549,139,936,543, +45,2014-01-19 19:39:15.636539,813,219,689, +45,2014-01-15 16:52:36.120281,543,877,893, +40,2014-01-13 02:57:23.191121,610,539,28, +45,2014-01-17 01:46:12.133338,554,280,45, +74,2014-01-15 02:22:43.429965,86,20,973, +40,2014-01-20 00:30:48.592602,375,409,517, +65,2014-01-12 23:21:27.306858,803,844,630, +37,2014-01-20 21:52:39.851904,410,293,557, +37,2014-01-14 05:00:46.605917,473,810,627, +45,2014-01-15 02:55:11.001208,327,660,182, +40,2014-01-14 20:00:17.719414,896,716,525, +65,2014-01-13 14:04:56.675756,979,811,172, +45,2014-01-19 19:28:57.793465,561,983,496, +37,2014-01-20 01:11:06.604448,782,999,748, +45,2014-01-13 11:49:33.443984,557,283,703, +40,2014-01-12 12:47:06.765127,974,143,988, +40,2014-01-15 13:16:11.406044,632,743,174, +65,2014-01-16 00:02:01.732304,142,410,403, +40,2014-01-19 05:34:00.497636,766,788,895, +37,2014-01-14 17:38:17.393302,866,107,459, +37,2014-01-12 19:05:57.256066,796,813,887, +40,2014-01-19 14:33:48.616989,537,482,374, +74,2014-01-15 03:42:58.725629,678,932,630, +45,2014-01-17 07:41:59.534396,472,981,772, +74,2014-01-18 13:32:52.584721,100,670,799, +45,2014-01-18 06:39:21.142152,989,599,750, +45,2014-01-19 07:02:21.128545,215,620,519, +37,2014-01-17 23:01:27.374119,518,78,491, +40,2014-01-12 01:55:27.784803,106,384,172, +65,2014-01-20 20:20:27.099695,11,167,108, +45,2014-01-19 22:08:23.043668,273,462,123, +65,2014-01-21 01:34:43.421761,51,612,850, +37,2014-01-15 07:13:03.219976,973,811,727, +37,2014-01-11 19:05:46.234788,251,761,727, +40,2014-01-16 21:20:55.555099,69,23,717, +65,2014-01-19 13:35:46.649941,466,251,129, +74,2014-01-20 23:36:34.827808,799,371,595, +45,2014-01-19 00:42:22.861956,394,884,149, +65,2014-01-19 05:28:26.502264,9,498,751, +74,2014-01-13 22:37:21.433725,476,865,504, +65,2014-01-12 21:37:33.863166,415,883,550, +40,2014-01-12 19:28:44.221678,411,148,436, +45,2014-01-16 16:42:18.109481,324,611,663, +37,2014-01-11 11:06:31.65663,110,732,408, +40,2014-01-11 14:39:50.826125,879,318,503, +40,2014-01-19 08:31:51.553884,669,961,126, +37,2014-01-13 03:53:38.421757,561,812,503, +37,2014-01-16 07:56:02.232588,601,974,715, +37,2014-01-14 02:33:53.286189,581,919,349, +45,2014-01-11 03:27:38.919394,889,589,912, +40,2014-01-20 05:34:19.625891,175,817,415, +74,2014-01-16 01:39:50.542254,377,936,358, +65,2014-01-19 22:01:27.536382,707,255,839, +65,2014-01-14 03:17:18.35152,500,491,695, +65,2014-01-12 03:21:50.077069,633,631,303, +45,2014-01-17 05:34:20.121103,917,226,755, +45,2014-01-11 03:56:39.493671,154,465,675, +74,2014-01-20 14:24:11.205614,739,741,91, +74,2014-01-13 22:35:47.495222,707,711,21, +45,2014-01-12 09:52:07.278894,477,935,404, +40,2014-01-20 04:44:38.305727,853,303,783, +37,2014-01-12 14:44:10.539308,83,358,737, +40,2014-01-12 05:26:50.700654,571,140,358, +45,2014-01-14 05:57:41.525702,922,341,970, +65,2014-01-13 13:49:56.774096,68,193,257, +45,2014-01-18 06:47:46.255753,215,743,231, +74,2014-01-12 13:33:28.176061,196,201,579, +45,2014-01-13 07:26:31.601905,445,120,557, +45,2014-01-16 01:30:09.11771,998,812,259, +65,2014-01-20 23:01:54.678326,145,724,275, +45,2014-01-16 10:03:53.036049,182,840,711, +45,2014-01-18 03:07:42.980876,215,529,540, +45,2014-01-12 12:30:38.900003,770,44,472, +74,2014-01-11 20:46:11.14553,548,647,757, +65,2014-01-18 18:14:14.637505,97,996,463, +74,2014-01-13 07:10:29.726129,113,566,847, +37,2014-01-20 09:18:02.699415,693,913,824, +45,2014-01-21 02:07:53.059263,460,798,716, +65,2014-01-18 19:06:31.958717,852,504,612, +40,2014-01-13 05:51:55.986022,673,950,379, +65,2014-01-10 23:35:31.979075,164,1,704, +65,2014-01-17 18:40:51.584607,825,235,722, +65,2014-01-18 11:31:46.528276,370,59,158, +74,2014-01-20 01:36:59.515457,675,921,344, +65,2014-01-21 01:58:09.936126,568,901,655, +37,2014-01-19 18:53:36.605345,504,148,900, +65,2014-01-16 01:11:19.636979,76,89,337, +37,2014-01-10 23:54:49.430217,682,91,141, +65,2014-01-19 03:17:47.811378,463,916,288, +40,2014-01-19 03:47:07.132201,380,880,423, +74,2014-01-12 13:46:56.70911,198,918,203, +65,2014-01-18 02:02:26.117104,77,74,589, +37,2014-01-20 22:31:17.671509,256,909,51, +37,2014-01-13 23:13:47.409765,905,299,528, +37,2014-01-11 02:00:07.642807,576,559,783, +37,2014-01-13 06:21:14.446024,648,88,983, +65,2014-01-11 00:01:33.665519,972,528,675, +45,2014-01-12 19:33:35.818869,287,338,509, +37,2014-01-15 17:47:46.047929,621,108,147, +74,2014-01-16 05:31:42.783228,327,243,617, +65,2014-01-12 12:35:30.497195,199,580,563, +45,2014-01-10 21:51:39.083978,709,689,68, +45,2014-01-13 02:39:25.764104,496,213,988, +40,2014-01-14 05:06:09.397198,589,243,273, +45,2014-01-11 22:37:50.229928,141,222,249, +45,2014-01-21 00:53:40.401609,401,48,485, +40,2014-01-16 16:16:39.123747,357,59,621, +40,2014-01-11 01:55:52.929343,878,62,800, +65,2014-01-20 21:01:33.460873,264,786,558, +37,2014-01-14 05:23:11.082464,822,867,476, +45,2014-01-13 11:47:48.915365,301,484,933, +37,2014-01-21 00:37:05.439948,188,713,466, +37,2014-01-21 04:04:02.66749,246,553,553, +37,2014-01-21 03:19:35.44406,200,382,160, +65,2014-01-19 20:14:04.955824,908,939,204, +45,2014-01-21 00:02:12.603616,270,49,308, +74,2014-01-19 16:13:12.049405,84,831,380, +74,2014-01-14 15:25:24.592803,16,887,492, +37,2014-01-21 03:57:02.033832,694,702,931, +40,2014-01-17 13:30:59.860783,178,993,932, +74,2014-01-12 13:12:31.725004,644,386,463, +74,2014-01-12 11:43:58.742943,724,687,889, +45,2014-01-14 09:33:25.977888,614,214,698, +40,2014-01-12 05:43:49.396933,809,225,181, +65,2014-01-15 14:57:46.152707,259,51,573, +45,2014-01-14 15:33:33.621114,487,366,409, +65,2014-01-14 16:05:03.842957,972,268,120, +37,2014-01-15 18:59:19.818226,2,870,83, +37,2014-01-16 15:07:09.439982,443,842,810, +40,2014-01-19 13:52:49.890886,810,670,309, +37,2014-01-21 04:31:02.601454,711,54,660, +45,2014-01-18 07:42:39.937597,241,35,911, +37,2014-01-19 15:44:28.975284,959,930,485, +45,2014-01-13 01:10:28.365558,661,550,947, +40,2014-01-11 06:48:49.334795,969,304,762, +65,2014-01-20 18:22:19.205211,427,911,2, +74,2014-01-12 20:04:08.767168,3,333,668, +45,2014-01-17 03:05:28.458542,223,698,704, +65,2014-01-21 00:18:12.134554,357,873,844, +45,2014-01-12 11:05:42.228459,291,861,362, +74,2014-01-20 12:28:39.541424,359,874,513, +74,2014-01-13 06:06:01.050339,865,837,600, +37,2014-01-12 05:42:47.668407,19,983,39, +74,2014-01-20 10:32:42.208914,183,900,569, +37,2014-01-13 03:25:36.494399,61,33,694, +65,2014-01-21 05:56:52.624231,241,30,543, +65,2014-01-20 04:34:54.812529,352,944,364, +40,2014-01-11 13:38:48.543804,361,771,594, +37,2014-01-14 15:22:17.217034,615,429,243, +40,2014-01-20 02:31:56.846781,27,531,802, +37,2014-01-18 07:09:48.405006,944,850,761, +40,2014-01-16 08:34:48.942458,520,493,174, +74,2014-01-11 08:15:55.589724,523,164,737, +40,2014-01-11 10:43:14.382894,244,525,393, +40,2014-01-17 18:18:38.339391,555,448,85, +40,2014-01-16 03:13:41.742851,386,568,89, +37,2014-01-15 06:16:48.004007,854,61,638, +65,2014-01-11 04:23:42.182348,551,303,832, +37,2014-01-21 02:13:01.561076,950,156,324, +45,2014-01-21 01:23:57.444409,47,784,882, +45,2014-01-19 22:16:32.073235,649,685,745, +37,2014-01-21 00:44:04.16295,145,334,835, +45,2014-01-18 03:06:37.382006,425,807,375, +40,2014-01-18 08:01:01.048519,911,700,724, +45,2014-01-12 19:54:32.528508,133,165,756, +65,2014-01-18 13:55:26.716801,412,239,557, +65,2014-01-17 20:23:20.25373,300,252,94, +65,2014-01-14 19:58:41.296095,455,127,104, +74,2014-01-14 11:00:55.175761,92,407,393, +37,2014-01-17 14:41:32.388704,719,658,956, +45,2014-01-16 11:04:23.524554,706,228,209, +74,2014-01-13 17:29:34.717186,208,983,771, +74,2014-01-20 00:47:33.439043,534,405,880, +40,2014-01-17 20:47:11.192961,933,616,834, +37,2014-01-12 22:02:16.9261,681,785,263, +65,2014-01-11 22:13:09.933441,610,864,450, +65,2014-01-17 20:44:03.817611,221,973,872, +45,2014-01-11 20:37:11.738629,141,995,643, +40,2014-01-12 15:51:58.477245,283,810,585, +74,2014-01-11 06:06:21.034646,951,96,281, +40,2014-01-21 03:09:08.58541,536,45,833, +74,2014-01-20 03:01:46.882251,225,526,912, +40,2014-01-16 18:41:09.977104,937,163,574, +65,2014-01-11 05:25:04.175553,658,166,279, +40,2014-01-20 17:45:01.265564,966,645,597, +37,2014-01-13 06:59:48.316496,852,651,960, +74,2014-01-16 12:38:45.918404,600,238,201, +74,2014-01-14 18:01:49.269571,793,804,607, +40,2014-01-13 15:23:30.498844,144,522,231, +40,2014-01-16 08:51:47.47948,418,523,390, +45,2014-01-14 13:25:46.71398,324,787,736, +65,2014-01-12 07:40:02.572498,883,515,971, +65,2014-01-16 03:35:51.64243,386,656,49, +45,2014-01-11 10:32:24.095986,167,273,224, +74,2014-01-19 19:41:03.621017,171,590,272, +45,2014-01-18 03:30:24.171357,720,640,121, +40,2014-01-19 04:27:50.813206,614,941,782, +65,2014-01-16 10:04:23.875167,649,594,315, +37,2014-01-11 17:29:05.467452,172,182,377, +40,2014-01-12 09:28:45.988969,183,33,295, +37,2014-01-12 18:45:56.263871,350,261,777, +74,2014-01-17 08:33:28.992006,620,779,990, +45,2014-01-15 06:58:20.706154,641,261,383, +37,2014-01-11 13:33:29.702913,418,372,879, +45,2014-01-13 23:20:40.184969,392,958,932, +65,2014-01-17 09:00:37.632254,738,795,64, +45,2014-01-12 15:46:39.636353,481,735,764, +40,2014-01-21 00:04:44.00258,658,117,657, +37,2014-01-18 09:37:49.370883,285,852,962, +40,2014-01-14 11:38:38.113598,7,897,775, +37,2014-01-11 00:11:05.037646,794,40,17, +40,2014-01-18 06:46:57.956713,54,576,998, +74,2014-01-13 08:40:24.996268,286,110,47, +45,2014-01-16 22:52:15.01475,511,841,833, +45,2014-01-18 16:12:02.132267,84,562,598, +37,2014-01-12 20:25:26.261831,482,482,799, +45,2014-01-19 09:52:03.331665,663,992,228, +74,2014-01-13 22:50:48.050671,899,772,194, +40,2014-01-16 18:27:15.531402,480,204,570, +65,2014-01-11 19:15:33.830508,204,812,660, +74,2014-01-19 11:42:35.530151,692,527,193, +45,2014-01-20 11:53:02.245802,149,273,187, +74,2014-01-13 06:55:36.403005,424,165,584, +74,2014-01-14 09:18:27.173,650,814,96, +37,2014-01-21 02:25:26.341789,197,572,374, +65,2014-01-11 20:36:40.024442,544,123,16, +65,2014-01-11 06:48:51.344356,20,633,937, +65,2014-01-19 00:53:17.154995,595,89,855, +40,2014-01-17 10:41:03.899607,428,610,561, +65,2014-01-12 04:17:56.811808,270,261,751, +74,2014-01-20 14:22:03.143964,342,327,420, +65,2014-01-19 09:27:00.163478,597,562,823, +37,2014-01-18 16:51:25.803815,403,840,443, +45,2014-01-14 15:20:23.850118,859,194,556, +45,2014-01-20 03:00:29.866391,540,422,308, +45,2014-01-11 10:12:05.988783,427,717,652, +40,2014-01-21 04:21:01.482372,404,268,622, +45,2014-01-11 12:47:09.502744,840,176,862, +74,2014-01-11 04:16:49.991782,872,681,582, +45,2014-01-18 07:58:50.853674,788,421,300, +37,2014-01-15 04:25:47.616343,456,444,709, +40,2014-01-11 08:27:55.029428,128,494,123, +74,2014-01-15 08:45:48.810387,453,171,521, +40,2014-01-17 17:06:12.61261,487,31,143, +37,2014-01-17 11:20:10.044178,572,802,340, +74,2014-01-12 18:57:50.942653,518,328,864, +65,2014-01-19 17:31:38.874442,614,413,528, +45,2014-01-15 15:12:13.375842,124,565,150, +45,2014-01-15 21:48:38.993324,335,399,83, +74,2014-01-15 05:58:54.406264,864,164,61, +37,2014-01-16 14:27:47.206769,133,512,700, +65,2014-01-14 03:31:14.523474,519,201,836, +65,2014-01-14 11:51:56.652066,694,815,307, +65,2014-01-19 01:23:23.609774,613,172,304, +45,2014-01-17 16:49:41.696474,397,966,248, +37,2014-01-14 08:17:22.993853,194,285,615, +45,2014-01-20 02:00:03.634216,922,513,257, +45,2014-01-18 03:38:33.04083,201,735,163, +74,2014-01-12 03:10:40.149267,984,830,98, +74,2014-01-16 06:41:07.533823,724,507,684, +40,2014-01-19 11:56:29.852639,116,189,884, +45,2014-01-11 11:32:43.29323,689,150,339, +40,2014-01-14 10:08:07.697301,165,472,845, +74,2014-01-16 22:47:55.656453,719,33,217, +65,2014-01-15 06:53:07.143767,612,370,559, +40,2014-01-13 07:08:37.563692,595,934,746, +65,2014-01-17 13:00:01.645656,509,454,978, +45,2014-01-15 05:14:08.626139,726,516,132, +65,2014-01-13 23:55:47.066436,241,251,126, +65,2014-01-17 21:16:51.637439,908,844,469, +37,2014-01-12 07:12:59.479813,381,771,384, +45,2014-01-18 08:21:34.683198,75,851,872, +45,2014-01-18 09:44:46.666867,694,489,154, +65,2014-01-16 19:58:48.2902,967,702,60, +45,2014-01-14 19:27:47.295808,85,171,803, +37,2014-01-14 15:04:56.711044,681,766,855, +45,2014-01-18 18:56:39.232853,204,998,869, +37,2014-01-13 06:59:26.170669,187,259,114, +40,2014-01-19 10:17:10.087305,327,660,475, +65,2014-01-13 10:45:18.226177,395,859,767, +45,2014-01-17 16:58:20.576932,632,194,13, +40,2014-01-14 18:44:57.294074,249,566,431, +40,2014-01-16 18:16:32.75007,537,774,643, +74,2014-01-10 22:50:17.228998,80,958,722, +40,2014-01-12 14:08:20.903848,900,737,91, +45,2014-01-13 05:06:14.446544,845,940,888, +74,2014-01-14 11:07:40.222851,352,215,312, +45,2014-01-11 10:08:24.538482,179,506,269, +65,2014-01-20 12:44:47.487794,193,345,343, +40,2014-01-15 18:18:20.372118,119,491,748, +37,2014-01-16 20:49:32.072305,766,806,420, +74,2014-01-18 18:41:17.340432,109,74,673, +74,2014-01-16 09:51:03.665767,530,343,909, +74,2014-01-20 10:57:39.770026,58,35,333, +74,2014-01-14 11:29:12.997304,879,72,828, +65,2014-01-20 20:44:10.809534,39,552,69, +37,2014-01-12 12:06:17.333718,369,678,676, +74,2014-01-21 04:29:14.64296,279,587,643, +37,2014-01-14 19:58:19.435673,404,373,995, +65,2014-01-15 16:02:04.400573,540,919,36, +65,2014-01-17 19:46:06.280399,967,931,966, +37,2014-01-16 07:11:18.915904,753,676,326, +65,2014-01-12 18:23:39.08377,137,531,438, +74,2014-01-14 23:30:52.947266,27,301,960, +40,2014-01-11 21:10:07.206104,19,808,671, +74,2014-01-16 17:51:26.379578,854,908,407, +37,2014-01-18 18:35:49.658309,994,749,202, +37,2014-01-19 20:06:46.439377,601,118,619, +65,2014-01-19 04:50:52.550247,847,354,244, +65,2014-01-16 22:52:59.745615,151,99,71, +37,2014-01-12 00:52:04.665553,602,724,624, +45,2014-01-15 15:49:13.127179,961,837,342, +45,2014-01-20 21:37:57.039688,173,414,664, +65,2014-01-17 23:08:37.415624,629,118,965, +37,2014-01-15 18:39:30.356177,273,360,371, +37,2014-01-12 05:46:17.943954,976,303,44, +40,2014-01-20 08:14:51.862586,660,656,922, +74,2014-01-19 09:47:10.579447,211,354,316, +45,2014-01-12 19:54:42.482437,193,535,884, +65,2014-01-19 14:59:39.35038,457,484,45, +37,2014-01-13 22:05:30.951565,823,957,476, +74,2014-01-18 20:44:14.554743,63,583,874, +40,2014-01-17 03:40:56.690812,469,995,575, +65,2014-01-19 11:56:34.617331,236,209,338, +37,2014-01-18 01:41:54.324769,522,108,897, +37,2014-01-20 19:10:09.688117,110,698,801, +37,2014-01-19 02:40:45.426866,565,804,50, +74,2014-01-19 17:48:11.658905,757,759,195, +74,2014-01-20 17:39:24.331077,714,265,154, +65,2014-01-12 16:39:04.862957,340,257,340, +45,2014-01-14 03:50:16.059477,868,671,98, +37,2014-01-17 07:25:30.611476,807,370,65, +74,2014-01-18 03:50:23.778861,630,157,161, +45,2014-01-16 02:13:55.143247,624,362,234, +40,2014-01-11 00:56:23.558742,744,719,597, +65,2014-01-19 05:00:30.984966,8,174,91, +65,2014-01-11 14:05:21.522825,495,537,736, +74,2014-01-18 23:32:13.21747,857,320,938, +40,2014-01-17 19:07:17.424343,937,319,205, +74,2014-01-19 22:56:14.073492,21,531,172, +40,2014-01-14 16:25:12.963083,914,578,721, +45,2014-01-18 23:59:22.090315,283,793,912, +37,2014-01-14 08:45:27.200671,195,833,812, +65,2014-01-14 08:03:10.003191,524,538,242, +37,2014-01-15 17:07:59.505939,692,273,397, +65,2014-01-19 07:24:57.557267,777,657,440, +65,2014-01-15 17:49:27.947145,198,608,996, +65,2014-01-14 19:22:51.368526,124,982,297, +40,2014-01-17 11:12:08.136714,292,1,218, +40,2014-01-17 17:44:10.429582,209,745,808, +45,2014-01-13 04:22:30.718906,569,906,422, +65,2014-01-20 13:17:39.088277,820,197,290, +74,2014-01-15 08:28:24.984325,954,361,172, +74,2014-01-19 12:03:27.410137,632,381,312, +65,2014-01-18 19:14:13.706028,223,748,527, +74,2014-01-12 04:10:19.309512,893,142,783, +74,2014-01-19 01:13:37.098253,14,909,519, +37,2014-01-16 15:54:59.132894,156,488,883, +40,2014-01-21 01:58:30.968417,218,835,650, +37,2014-01-18 12:53:01.42975,586,570,96, +37,2014-01-18 12:34:03.99585,231,868,147, +37,2014-01-13 23:48:47.027894,516,679,56, +37,2014-01-14 14:18:32.041226,616,588,926, +45,2014-01-15 10:24:27.774711,802,456,769, +37,2014-01-19 06:02:42.171142,582,293,41, +74,2014-01-14 19:14:55.600386,752,185,945, +37,2014-01-13 09:24:58.760097,67,382,529, +40,2014-01-20 00:08:03.693967,351,185,834, +40,2014-01-12 12:47:08.817855,650,576,672, +45,2014-01-20 08:32:16.184439,596,317,795, +37,2014-01-18 17:04:17.767458,534,243,642, +40,2014-01-16 09:12:21.78094,693,992,836, +40,2014-01-18 02:31:38.274753,428,57,219, +45,2014-01-11 19:49:44.968548,1000,911,253, +37,2014-01-19 21:15:31.78413,727,812,519, +40,2014-01-12 13:39:37.781111,392,958,532, +37,2014-01-20 07:14:42.525814,564,723,506, +37,2014-01-14 09:04:59.731275,68,865,302, +74,2014-01-16 13:02:29.149636,576,744,147, +65,2014-01-16 12:26:50.662527,912,25,610, +37,2014-01-10 20:49:10.160857,51,502,417, +37,2014-01-18 21:24:59.868961,710,725,322, +74,2014-01-15 19:44:29.750804,527,772,910, +45,2014-01-15 09:17:35.145601,262,111,159, +40,2014-01-17 03:28:27.279099,637,145,678, +74,2014-01-13 08:58:43.456832,84,173,703, +65,2014-01-16 17:27:54.455114,384,236,680, +45,2014-01-14 22:42:04.377352,127,387,18, +37,2014-01-19 04:53:42.590145,729,369,425, +40,2014-01-16 13:26:25.42353,554,863,790, +37,2014-01-12 05:35:05.807102,840,101,227, +65,2014-01-16 11:27:46.585995,242,891,464, +40,2014-01-19 17:15:12.451424,347,593,40, +40,2014-01-15 23:53:37.848747,289,798,332, +45,2014-01-21 01:52:14.361126,872,572,291, +65,2014-01-17 17:17:54.622566,478,798,178, +45,2014-01-19 23:08:33.449133,6,365,278, +74,2014-01-13 05:17:13.121222,297,224,408, +65,2014-01-16 11:25:58.316532,355,958,929, +45,2014-01-11 05:55:42.266989,993,290,533, +74,2014-01-12 07:49:29.30566,408,920,984, +40,2014-01-13 22:30:16.084409,41,53,232, +40,2014-01-16 19:08:04.047928,899,188,367, +65,2014-01-19 14:21:07.580833,126,903,116, +74,2014-01-14 22:20:01.052957,576,283,268, +45,2014-01-15 10:23:35.832477,297,113,492, +40,2014-01-10 22:00:45.361945,937,383,388, +65,2014-01-13 23:34:43.578771,685,782,375, +74,2014-01-18 23:28:35.563752,286,300,104, +74,2014-01-16 15:03:14.511581,235,935,607, +40,2014-01-19 16:01:34.241298,955,835,107, +65,2014-01-19 00:17:45.725028,148,978,306, +40,2014-01-14 06:28:14.380544,262,183,196, +45,2014-01-14 05:46:03.992102,566,970,74, +40,2014-01-13 03:35:20.870629,29,822,672, +40,2014-01-20 13:56:41.659642,2,895,848, +74,2014-01-16 18:44:47.449354,547,669,475, +74,2014-01-19 01:03:15.325743,985,132,266, +37,2014-01-14 06:38:46.037414,416,284,157, +65,2014-01-14 17:38:30.039499,219,530,821, +40,2014-01-14 08:29:40.749273,948,770,608, +65,2014-01-15 16:13:51.844516,592,435,678, +37,2014-01-20 09:06:16.625494,948,423,47, +40,2014-01-12 19:44:53.200697,13,393,871, +45,2014-01-20 20:07:29.693263,151,787,611, +40,2014-01-20 04:58:30.986619,754,207,232, +65,2014-01-19 17:02:47.823264,274,752,885, +74,2014-01-19 13:16:03.142396,495,481,476, +65,2014-01-12 04:15:44.107841,92,888,42, +40,2014-01-14 22:28:46.139796,268,751,53, +37,2014-01-19 23:11:45.409383,801,966,146, +37,2014-01-13 16:05:13.413921,375,590,415, +74,2014-01-18 00:59:02.224205,207,972,124, +40,2014-01-15 12:19:49.45773,94,167,466, +37,2014-01-12 00:26:20.994754,611,452,788, +65,2014-01-11 17:19:03.277162,901,927,794, +37,2014-01-20 02:43:25.290207,871,819,830, +45,2014-01-12 02:27:06.356699,255,699,228, +45,2014-01-14 20:53:46.855933,782,114,916, +65,2014-01-17 20:12:00.853959,508,138,263, +40,2014-01-17 21:30:20.86828,513,197,595, +37,2014-01-13 06:55:21.097231,360,462,874, +65,2014-01-15 14:29:46.578987,578,915,190, +74,2014-01-10 21:58:35.249243,225,902,350, +65,2014-01-16 16:41:25.089753,900,599,286, +74,2014-01-17 22:05:07.449617,586,478,82, +74,2014-01-20 15:55:16.908884,460,440,849, +74,2014-01-12 05:26:12.539106,556,74,47, +40,2014-01-15 17:08:22.775359,927,256,729, +45,2014-01-13 16:34:02.946298,579,975,545, +37,2014-01-16 03:04:42.578605,72,714,612, +40,2014-01-19 05:38:03.524632,821,376,473, +37,2014-01-18 12:47:54.791233,85,565,156, +37,2014-01-15 06:10:59.204099,880,114,927, +65,2014-01-21 05:22:56.725329,519,457,259, +45,2014-01-18 02:55:24.484496,474,381,785, +74,2014-01-14 05:09:30.191137,838,168,271, +65,2014-01-19 16:25:44.548593,885,342,388, +65,2014-01-16 10:11:27.62731,599,719,813, +40,2014-01-15 13:25:14.298978,475,697,683, +45,2014-01-13 08:54:30.688807,808,605,477, +65,2014-01-15 03:23:13.036694,502,55,699, +37,2014-01-18 09:30:27.712899,342,707,995, +37,2014-01-20 13:53:32.913013,937,214,784, +74,2014-01-19 19:43:02.494425,924,484,268, +45,2014-01-19 13:56:48.707653,766,914,240, +65,2014-01-11 01:12:36.190595,618,779,949, +40,2014-01-18 16:26:27.784632,550,36,449, +65,2014-01-20 20:23:55.064351,876,276,898, +45,2014-01-15 02:06:23.046527,199,678,927, +74,2014-01-15 06:38:28.63901,990,216,630, +45,2014-01-17 11:54:15.93305,610,733,534, +45,2014-01-17 13:01:44.144178,649,396,669, +74,2014-01-20 01:08:15.217997,532,520,862, +74,2014-01-17 13:52:51.182293,494,407,239, +74,2014-01-12 23:43:09.233931,787,988,691, +3,2014-01-16 17:13:22.668032,217,625,610, +3,2014-01-16 23:48:08.091178,427,19,857, +91,2014-01-14 09:09:21.773038,133,777,144, +3,2014-01-11 04:21:45.443392,453,319,793, +3,2014-01-19 20:22:11.037896,514,331,180, +3,2014-01-19 16:14:04.351643,607,905,667, +3,2014-01-19 13:59:48.968443,803,6,613, +3,2014-01-17 03:10:05.829128,492,74,544, +91,2014-01-13 16:25:03.555742,699,533,82, +91,2014-01-19 13:22:45.693773,416,283,871, +3,2014-01-14 00:05:30.313624,874,956,866, +3,2014-01-17 01:34:33.746879,193,492,599, +3,2014-01-17 23:48:30.242784,192,563,881, +3,2014-01-19 14:16:57.940934,804,13,305, +3,2014-01-11 08:59:48.046276,623,932,885, +3,2014-01-20 12:43:00.931592,542,359,466, +3,2014-01-13 11:40:10.978048,396,113,862, +3,2014-01-18 22:30:15.759175,425,518,975, +91,2014-01-19 20:36:33.844605,553,989,373, +3,2014-01-12 01:23:13.472473,478,122,394, +3,2014-01-17 06:27:04.467247,486,278,256, +3,2014-01-20 01:49:10.035199,155,16,93, +3,2014-01-19 21:49:41.257524,410,494,567, +3,2014-01-16 20:50:59.531598,169,413,777, +3,2014-01-13 21:55:33.082146,538,423,263, +91,2014-01-13 22:28:09.896533,302,946,269, +91,2014-01-13 02:45:15.464648,375,207,675, +3,2014-01-20 14:57:17.226324,465,545,368, +91,2014-01-12 17:36:25.114531,683,79,381, +3,2014-01-19 20:38:06.646942,970,692,373, +3,2014-01-12 08:40:26.460254,138,615,836, +3,2014-01-18 14:49:47.782564,317,652,493, +3,2014-01-15 14:26:14.738539,450,327,895, +3,2014-01-15 21:49:48.233292,588,547,797, +3,2014-01-18 23:11:33.226375,172,850,799, +91,2014-01-14 04:48:25.776433,943,296,28, +3,2014-01-14 08:03:52.584935,104,573,230, +3,2014-01-17 07:11:22.194818,192,929,189, +3,2014-01-20 11:58:31.605562,657,820,488, +91,2014-01-17 04:28:56.140677,752,530,672, +3,2014-01-15 14:34:07.888591,326,160,597, +91,2014-01-13 06:04:01.919186,617,623,356, +91,2014-01-13 00:03:29.887975,782,263,737, +91,2014-01-12 08:22:38.131375,268,606,829, +3,2014-01-11 14:20:59.860541,46,166,950, +3,2014-01-13 13:03:17.934251,693,873,388, +91,2014-01-11 15:05:39.062967,140,88,605, +91,2014-01-14 06:01:10.838589,555,172,434, +3,2014-01-11 05:33:33.693426,826,481,479, +91,2014-01-20 15:42:12.907991,321,283,465, +3,2014-01-15 11:24:24.311061,503,142,574, +3,2014-01-17 16:00:38.160673,880,991,115, +3,2014-01-19 11:31:22.94319,891,116,309, +91,2014-01-14 03:14:05.568584,898,808,536, +3,2014-01-13 06:51:37.69269,625,140,750, +91,2014-01-12 03:26:56.025335,291,34,911, +91,2014-01-17 05:42:15.465119,950,932,229, +3,2014-01-15 13:36:53.157338,620,243,260, +91,2014-01-11 12:24:13.251659,199,414,937, +3,2014-01-19 03:18:40.580069,930,53,703, +91,2014-01-14 04:14:59.804698,242,175,438, +91,2014-01-13 01:04:39.711915,304,988,145, +91,2014-01-16 12:08:28.362632,928,814,820, +91,2014-01-18 22:41:14.543236,804,928,716, +91,2014-01-18 02:54:27.945206,351,907,226, +91,2014-01-14 05:20:01.589006,630,58,570, +3,2014-01-11 21:29:40.31967,291,808,484, +91,2014-01-11 04:58:20.530142,373,724,648, +3,2014-01-20 16:31:23.783824,734,175,772, +3,2014-01-11 03:28:11.925232,996,659,615, +3,2014-01-17 13:27:16.671237,705,190,976, +91,2014-01-15 01:05:31.672834,4,901,919, +91,2014-01-13 13:32:13.844419,241,62,695, +3,2014-01-19 17:30:46.559212,156,997,40, +91,2014-01-16 13:28:09.804208,455,764,709, +3,2014-01-14 07:53:13.704959,672,764,92, +91,2014-01-12 00:34:04.493464,105,921,210, +3,2014-01-17 08:33:48.867595,86,346,558, +3,2014-01-17 17:54:24.543548,112,530,957, +91,2014-01-12 10:07:38.18689,335,68,184, +3,2014-01-16 18:16:01.775585,959,750,595, +3,2014-01-11 23:18:48.855028,851,468,696, +91,2014-01-19 06:08:16.347981,47,687,171, +91,2014-01-14 23:47:24.718775,828,207,140, +91,2014-01-15 06:32:54.423614,994,768,444, +91,2014-01-11 06:59:54.040672,926,753,102, +91,2014-01-16 07:14:20.74453,647,591,85, +91,2014-01-11 06:15:09.88915,155,950,406, +91,2014-01-16 00:36:47.198009,890,173,37, +91,2014-01-16 23:38:33.99619,879,325,318, +91,2014-01-19 13:33:50.469219,45,230,677, +3,2014-01-19 08:51:47.002707,639,79,948, +3,2014-01-19 04:43:13.708523,701,249,406, +91,2014-01-14 19:42:18.83185,91,706,586, +3,2014-01-17 01:33:01.545944,891,201,927, +3,2014-01-16 01:37:41.653729,844,115,977, +3,2014-01-18 05:02:20.421276,837,711,353, +3,2014-01-18 03:02:41.865615,614,879,919, +91,2014-01-16 10:36:02.18429,570,694,264, +91,2014-01-17 15:33:44.205101,716,175,742, +91,2014-01-18 10:30:53.790847,828,418,407, +3,2014-01-12 18:03:18.855526,567,295,816, +91,2014-01-11 10:39:15.877934,319,915,963, +91,2014-01-21 04:03:07.635685,137,549,60, +3,2014-01-11 05:34:05.414739,747,723,7, +3,2014-01-17 04:07:25.682562,91,936,792, +3,2014-01-14 05:56:21.340645,489,906,215, +91,2014-01-12 10:08:09.908202,480,488,228, +3,2014-01-13 06:41:14.550156,41,488,757, +3,2014-01-21 03:50:45.884612,92,669,702, +3,2014-01-14 00:15:48.095092,461,853,462, +91,2014-01-19 04:57:16.325742,318,541,681, +3,2014-01-11 21:09:34.739641,550,931,652, +91,2014-01-12 00:24:04.443074,275,318,264, +91,2014-01-12 22:44:41.044517,5,103,721, +3,2014-01-16 07:42:29.163253,903,752,513, +91,2014-01-12 11:23:58.483745,102,326,766, +3,2014-01-18 09:59:01.789047,44,491,467, +3,2014-01-16 17:57:39.052404,932,802,777, +3,2014-01-17 16:00:45.682174,31,748,405, +91,2014-01-14 03:37:35.785655,725,403,356, +91,2014-01-15 01:31:29.521623,808,712,437, +3,2014-01-15 18:52:32.684881,296,225,824, +3,2014-01-12 02:20:49.494178,470,713,634, +91,2014-01-19 01:13:48.353893,226,752,582, +91,2014-01-11 14:25:34.231245,837,186,395, +91,2014-01-17 07:58:31.147907,152,805,519, +91,2014-01-16 00:16:08.775169,478,536,510, +91,2014-01-18 21:28:16.096858,274,290,455, +91,2014-01-12 12:34:33.332196,56,383,240, +3,2014-01-12 09:49:52.980269,320,204,184, +91,2014-01-16 01:59:09.888125,555,992,432, +3,2014-01-14 10:37:52.187723,769,707,739, +91,2014-01-13 00:29:08.858623,590,256,983, +91,2014-01-16 00:02:17.523809,65,244,276, +91,2014-01-14 20:11:57.602461,298,908,232, +3,2014-01-19 08:36:34.541184,621,672,101, +91,2014-01-19 09:58:38.864455,544,921,332, +91,2014-01-16 10:20:07.510664,94,306,407, +3,2014-01-11 09:17:49.091342,879,780,439, +91,2014-01-19 07:49:24.749067,825,132,574, +91,2014-01-19 14:35:55.606175,908,967,257, +91,2014-01-19 18:15:05.417083,306,246,277, +91,2014-01-20 08:58:59.488707,704,277,161, +91,2014-01-20 19:00:00.049249,4,944,795, +3,2014-01-11 10:59:46.4616,176,799,461, +3,2014-01-15 10:41:28.65238,952,534,637, +3,2014-01-12 00:23:58.533414,79,201,593, +3,2014-01-19 00:58:48.251067,108,543,381, +91,2014-01-10 22:39:07.704784,302,63,422, +3,2014-01-18 20:24:44.215586,439,891,938, +91,2014-01-11 22:36:24.036722,402,600,3, +3,2014-01-15 04:10:37.226826,82,43,715, +91,2014-01-13 09:17:16.900468,10,507,224, +91,2014-01-13 04:57:13.5309,156,880,658, +91,2014-01-12 23:24:25.580718,604,435,474, +91,2014-01-14 03:42:51.131712,654,811,123, +91,2014-01-19 16:55:44.678807,791,379,930, +91,2014-01-18 03:40:34.355886,551,136,732, +91,2014-01-11 19:11:07.22899,124,386,309, +3,2014-01-10 23:30:18.011423,784,594,600, +3,2014-01-19 17:30:27.336155,733,704,285, +91,2014-01-17 01:10:17.117115,650,562,149, +91,2014-01-14 14:08:10.199145,27,690,106, +3,2014-01-11 11:59:36.194778,984,339,515, +3,2014-01-11 19:12:34.640925,713,638,921, +3,2014-01-18 14:20:07.802025,971,518,428, +3,2014-01-20 00:36:10.735963,660,362,118, +3,2014-01-20 09:11:13.505379,470,616,969, +3,2014-01-13 18:40:15.312689,103,61,42, +91,2014-01-20 13:53:59.827304,9,691,93, +91,2014-01-18 11:00:38.254866,612,545,651, +3,2014-01-12 03:16:10.918864,53,439,151, +3,2014-01-19 02:09:05.244387,537,157,230, +3,2014-01-17 13:59:37.743573,688,105,109, +3,2014-01-11 16:16:10.968531,877,951,479, +91,2014-01-19 17:08:51.706406,666,561,246, +3,2014-01-11 18:41:06.395953,947,531,683, +91,2014-01-12 20:40:09.501945,267,646,63, +91,2014-01-17 12:07:39.957473,884,464,878, +3,2014-01-11 21:20:14.101156,816,472,797, +3,2014-01-20 21:04:53.717531,511,357,559, +91,2014-01-18 14:44:03.994195,226,143,187, +91,2014-01-16 05:30:51.327982,973,971,880, +91,2014-01-13 00:22:10.617999,693,686,871, +3,2014-01-20 23:41:17.525095,295,0,15, +91,2014-01-18 08:55:16.9087,533,669,155, +3,2014-01-16 08:05:01.75013,922,43,29, +91,2014-01-19 10:37:02.203902,878,850,783, +3,2014-01-15 06:35:51.264587,976,41,44, +3,2014-01-17 07:16:08.97912,659,677,615, +91,2014-01-19 14:07:20.215325,838,663,605, +91,2014-01-13 18:06:18.600743,362,390,47, +3,2014-01-13 02:26:26.096235,810,767,971, +52,2014-01-12 22:15:30.414889,322,752,691, +100,2014-01-14 10:05:54.79594,826,603,769, +57,2014-01-14 01:39:00.737159,334,95,861, +57,2014-01-20 16:35:38.216915,317,456,555, +57,2014-01-13 04:42:05.531902,582,828,477, +52,2014-01-13 04:50:14.242539,870,839,513, +100,2014-01-13 05:15:53.529603,951,974,955, +100,2014-01-12 12:36:05.359626,845,31,702, +52,2014-01-20 19:50:52.497404,242,661,425, +52,2014-01-14 12:32:04.448885,140,40,608, +57,2014-01-20 18:45:10.604013,229,359,647, +57,2014-01-17 03:50:30.241396,364,600,831, +52,2014-01-15 08:48:15.417418,626,609,949, +57,2014-01-19 05:54:02.31042,506,723,529, +57,2014-01-18 02:31:36.637349,815,641,647, +52,2014-01-17 09:28:24.919361,189,807,975, +52,2014-01-15 12:01:42.267893,656,821,250, +52,2014-01-19 03:51:50.738505,880,11,457, +52,2014-01-17 00:33:18.636893,678,322,539, +57,2014-01-12 20:45:46.262087,547,707,795, +52,2014-01-14 03:22:42.066487,684,190,734, +57,2014-01-19 04:55:29.254892,750,539,587, +57,2014-01-12 14:27:03.787182,718,153,261, +57,2014-01-11 06:17:58.975188,407,609,723, +52,2014-01-14 07:00:31.005022,108,659,820, +57,2014-01-21 05:04:05.991504,901,950,392, +57,2014-01-15 16:53:50.239775,47,338,142, +57,2014-01-20 18:16:39.984142,685,883,438, +52,2014-01-19 13:11:26.206829,933,471,198, +52,2014-01-18 15:00:08.840936,684,119,216, +57,2014-01-12 14:43:06.080377,600,654,827, +57,2014-01-11 05:26:56.621718,577,33,153, +52,2014-01-11 19:06:03.636876,362,13,9, +52,2014-01-15 20:22:06.817536,886,28,892, +52,2014-01-21 02:02:34.838632,894,450,992, +52,2014-01-14 03:48:09.168779,966,553,649, +100,2014-01-18 05:12:21.060495,893,431,128, +52,2014-01-13 01:18:28.368654,317,291,768, +52,2014-01-15 20:24:14.528404,687,560,871, +52,2014-01-17 19:03:13.557899,103,68,485, +100,2014-01-16 17:50:32.817541,231,399,68, +100,2014-01-15 09:09:25.132836,33,463,942, +100,2014-01-13 16:53:43.799295,695,233,997, +57,2014-01-10 20:38:48.234957,707,131,261, +100,2014-01-13 09:03:27.443255,980,269,124, +52,2014-01-20 23:25:20.437063,454,797,255, +57,2014-01-17 10:07:13.154319,901,298,640, +52,2014-01-18 01:05:09.711567,82,175,850, +57,2014-01-18 21:17:11.175568,539,784,705, +52,2014-01-13 04:40:31.791212,252,564,952, +100,2014-01-20 01:50:55.973654,780,307,147, +100,2014-01-11 18:39:53.242474,45,176,179, +57,2014-01-11 03:36:01.046104,331,209,374, +57,2014-01-11 10:17:59.761256,489,295,769, +100,2014-01-12 04:57:52.217661,526,423,492, +52,2014-01-14 14:36:32.051545,726,727,223, +57,2014-01-11 09:22:05.75276,273,861,474, +57,2014-01-17 01:51:42.457855,294,169,679, +52,2014-01-14 02:53:12.035686,879,835,870, +100,2014-01-20 02:33:31.95959,536,317,373, +57,2014-01-14 10:51:51.298792,899,590,49, +52,2014-01-15 21:36:18.116483,322,553,985, +52,2014-01-20 12:00:28.581726,114,172,838, +100,2014-01-15 09:57:54.935668,26,510,951, +100,2014-01-20 21:58:24.93402,876,752,141, +57,2014-01-20 08:03:03.420359,853,600,666, +100,2014-01-18 17:46:04.104447,420,839,922, +57,2014-01-17 21:10:45.994515,328,411,608, +52,2014-01-12 03:21:31.789014,212,335,796, +100,2014-01-13 08:10:18.63327,753,154,160, +57,2014-01-14 10:13:59.552832,135,544,741, +52,2014-01-18 01:12:04.606554,43,786,426, +52,2014-01-17 21:19:43.766106,574,212,872, +52,2014-01-17 07:07:43.352127,291,518,457, +57,2014-01-18 01:50:52.841511,712,288,902, +100,2014-01-20 10:23:11.209362,439,186,187, +52,2014-01-17 00:33:03.78919,772,381,339, +57,2014-01-14 05:58:05.99583,677,238,416, +57,2014-01-17 05:28:20.920929,398,704,842, +57,2014-01-14 15:50:14.965176,846,884,661, +52,2014-01-16 14:38:37.787043,813,16,331, +100,2014-01-16 01:19:16.895002,56,513,728, +52,2014-01-15 14:30:08.20765,874,819,28, +52,2014-01-16 22:14:38.833566,643,954,898, +100,2014-01-16 15:37:16.656258,294,645,232, +100,2014-01-16 23:28:00.425311,633,988,714, +57,2014-01-20 16:51:10.88511,641,216,255, +100,2014-01-17 04:59:22.409019,926,780,344, +57,2014-01-12 19:19:42.883167,901,182,868, +100,2014-01-13 13:44:22.920797,376,694,375, +100,2014-01-16 01:32:54.368607,506,978,502, +100,2014-01-16 10:11:34.181958,873,80,789, +100,2014-01-18 15:20:41.03728,749,385,54, +57,2014-01-15 07:33:22.950334,967,800,317, +57,2014-01-21 00:09:29.117626,412,592,899, +57,2014-01-18 07:19:05.97172,204,535,193, +100,2014-01-14 09:36:26.371112,739,756,402, +52,2014-01-18 11:55:33.222493,354,287,290, +52,2014-01-14 22:29:51.966234,809,924,66, +52,2014-01-15 16:57:58.160126,611,943,9, +52,2014-01-21 00:05:51.855763,303,895,655, +52,2014-01-18 12:43:51.519067,535,315,656, +57,2014-01-12 12:10:02.767099,40,71,658, +57,2014-01-17 15:25:35.621869,728,342,446, +52,2014-01-14 13:51:34.871613,686,887,307, +57,2014-01-19 18:00:55.60861,771,342,389, +52,2014-01-16 19:48:46.831231,669,710,905, +52,2014-01-20 18:24:38.660802,426,224,527, +100,2014-01-12 17:59:01.604859,669,242,907, +52,2014-01-12 19:17:07.752579,245,959,891, +57,2014-01-14 04:14:53.625978,708,527,227, +52,2014-01-18 12:37:39.391902,61,524,24, +100,2014-01-18 00:36:24.647581,536,635,505, +52,2014-01-18 22:45:01.833628,89,690,317, +52,2014-01-14 04:52:18.225468,407,462,861, +57,2014-01-13 10:13:41.30384,344,707,319, +57,2014-01-14 16:13:02.259359,124,24,506, +100,2014-01-13 15:43:29.110578,253,546,20, +57,2014-01-19 19:13:03.712858,533,846,872, +52,2014-01-16 15:32:45.142526,413,487,689, +52,2014-01-16 09:27:52.031795,978,712,353, +100,2014-01-14 14:45:58.081466,925,539,20, +52,2014-01-11 19:44:19.324904,245,881,594, +57,2014-01-13 18:48:33.069075,278,731,759, +57,2014-01-19 02:19:21.032219,693,714,47, +52,2014-01-11 13:53:48.44253,588,283,788, +57,2014-01-10 20:07:39.040795,547,645,614, +57,2014-01-12 05:55:47.403331,584,602,269, +57,2014-01-19 05:49:21.665023,905,515,829, +57,2014-01-14 22:37:31.007448,961,97,555, +57,2014-01-17 02:53:45.563457,143,33,254, +52,2014-01-18 23:55:13.520785,285,321,642, +52,2014-01-12 05:21:22.526515,97,158,839, +52,2014-01-18 19:03:48.330556,310,742,784, +57,2014-01-15 09:20:49.142654,717,622,846, +57,2014-01-15 23:12:57.398127,543,990,150, +57,2014-01-17 07:04:43.939585,293,919,497, +52,2014-01-10 23:09:35.974305,307,590,404, +100,2014-01-15 11:37:36.059348,653,600,735, +100,2014-01-19 05:03:45.544445,825,3,981, +57,2014-01-12 22:26:43.726884,268,377,545, +52,2014-01-18 19:52:29.685327,677,675,696, +52,2014-01-16 11:41:24.936347,7,244,978, +57,2014-01-20 03:03:08.374466,550,412,523, +52,2014-01-16 12:37:31.519374,934,874,117, +100,2014-01-19 20:33:43.162234,967,444,698, +57,2014-01-12 07:16:49.678306,113,966,239, +100,2014-01-20 08:50:33.778733,903,28,453, +57,2014-01-12 06:17:12.272812,918,82,54, +57,2014-01-10 20:29:53.391165,879,975,989, +100,2014-01-15 18:23:18.921259,44,97,733, +100,2014-01-17 19:45:04.304607,188,682,892, +57,2014-01-14 15:15:51.47263,687,695,411, +52,2014-01-16 18:07:38.246164,44,718,832, +57,2014-01-20 18:33:37.374101,249,832,639, +57,2014-01-12 11:35:12.50485,549,562,834, +52,2014-01-17 12:01:26.689113,88,748,358, +100,2014-01-20 18:41:16.414896,670,316,655, +57,2014-01-13 21:30:59.908181,550,537,176, +57,2014-01-15 11:50:48.354135,320,983,877, +52,2014-01-14 11:18:47.422343,86,846,998, +57,2014-01-20 04:24:45.472057,896,202,562, +52,2014-01-13 05:46:01.87534,802,949,427, +57,2014-01-15 20:40:09.949277,543,827,36, +57,2014-01-17 17:28:33.802614,84,756,624, +52,2014-01-17 19:06:51.017995,32,402,531, +52,2014-01-20 23:53:07.347403,657,801,457, +57,2014-01-13 18:33:17.742198,329,394,365, +52,2014-01-17 22:16:26.9923,120,167,929, +100,2014-01-15 05:30:43.406752,989,732,843, +57,2014-01-11 17:37:03.286644,945,581,874, +100,2014-01-20 00:43:10.719184,900,73,288, +52,2014-01-12 19:23:13.092498,333,760,875, +100,2014-01-17 09:18:28.223409,955,666,984, +52,2014-01-18 21:46:19.09365,384,255,944, +100,2014-01-18 12:00:44.611872,165,545,924, +57,2014-01-15 23:52:11.385644,937,618,174, +57,2014-01-20 09:03:08.771956,408,772,386, +100,2014-01-17 14:51:18.390605,811,69,991, +57,2014-01-17 10:09:23.658456,128,89,96, +100,2014-01-20 09:33:02.163121,616,555,247, +52,2014-01-12 03:14:37.311865,933,998,497, +52,2014-01-13 23:54:27.963482,822,974,141, +57,2014-01-13 18:48:53.63617,816,384,967, +57,2014-01-18 01:22:15.558447,92,45,7, +57,2014-01-13 12:28:05.337583,963,957,828, +52,2014-01-15 10:24:06.14102,791,86,723, +52,2014-01-14 07:23:42.247559,575,564,470, +57,2014-01-13 01:09:21.752478,644,624,932, +100,2014-01-18 11:55:06.04962,609,840,905, +57,2014-01-18 23:14:30.601695,924,442,568, +57,2014-01-16 16:28:09.175241,973,202,874, +100,2014-01-17 10:19:51.521677,764,586,619, +100,2014-01-10 23:00:32.477035,695,195,828, +52,2014-01-11 07:08:19.124518,349,786,366, +57,2014-01-13 21:48:25.324291,88,713,179, +52,2014-01-17 22:07:23.495449,693,377,834, +52,2014-01-11 01:01:26.471921,353,496,138, +57,2014-01-16 20:21:43.066908,221,225,659, +57,2014-01-14 14:23:50.487748,177,606,854, +100,2014-01-15 10:32:09.879092,51,511,571, +52,2014-01-17 17:58:46.353551,364,846,124, +57,2014-01-13 09:07:01.207351,23,904,82, +100,2014-01-17 09:55:22.97159,167,219,793, +57,2014-01-13 21:17:14.57696,768,355,793, +52,2014-01-11 00:53:20.301001,197,840,130, +52,2014-01-14 15:56:07.58346,940,108,735, +57,2014-01-19 01:09:25.962604,253,871,405, +52,2014-01-20 13:56:29.073376,354,352,716, +57,2014-01-11 00:47:25.974066,960,122,986, +57,2014-01-15 05:18:49.621479,597,539,137, +57,2014-01-19 17:29:31.236497,624,698,882, +52,2014-01-12 08:02:03.28593,798,127,793, +100,2014-01-18 09:13:17.584961,547,155,11, +57,2014-01-12 06:18:24.872667,347,184,573, +57,2014-01-19 13:24:18.844377,448,273,308, +57,2014-01-21 01:41:22.922545,410,799,365, +57,2014-01-16 20:42:31.014105,570,72,539, +57,2014-01-12 14:48:01.091936,604,74,732, +57,2014-01-12 20:50:44.675023,865,922,965, +52,2014-01-14 02:37:37.063725,821,53,80, +52,2014-01-20 18:02:31.694051,393,569,736, +52,2014-01-18 17:18:53.850264,534,849,924, +52,2014-01-20 16:57:28.585402,641,711,474, +52,2014-01-20 21:03:04.171085,761,219,678, +100,2014-01-19 04:27:12.974781,570,687,465, +52,2014-01-13 08:45:53.909692,378,756,398, +52,2014-01-17 13:10:27.666534,71,567,376, +57,2014-01-19 09:28:39.447121,426,3,571, +57,2014-01-19 09:07:36.9766,723,763,518, +100,2014-01-10 21:34:18.154702,75,273,796, +52,2014-01-13 14:00:49.326213,323,538,922, +100,2014-01-15 21:06:23.33057,596,783,377, +52,2014-01-13 10:41:19.362053,798,594,467, +57,2014-01-20 03:56:12.297802,901,506,169, +100,2014-01-18 22:23:37.907531,854,153,172, +52,2014-01-13 15:34:39.663054,976,111,922, +52,2014-01-13 13:52:19.881263,328,126,587, +57,2014-01-16 17:33:03.870554,2,376,757, +100,2014-01-12 23:31:08.73643,303,928,301, +100,2014-01-13 18:39:45.855328,997,530,691, +52,2014-01-21 02:51:53.492034,549,693,740, +57,2014-01-11 11:00:39.973347,278,49,96, +52,2014-01-15 06:41:49.141258,595,529,351, +52,2014-01-18 06:05:11.076996,846,281,44, +52,2014-01-12 21:19:04.846014,229,388,9, +57,2014-01-13 14:06:07.986055,929,428,580, +99,2014-01-18 01:46:33.999541,710,495,124, +99,2014-01-18 22:01:35.860119,247,539,988, +99,2014-01-15 08:54:09.077992,112,31,694, +62,2014-01-20 02:37:18.674564,997,56,184, +99,2014-01-11 18:39:12.923844,739,458,925, +62,2014-01-14 20:56:40.772043,266,739,6, +99,2014-01-17 13:56:12.525247,60,750,169, +62,2014-01-11 05:36:41.509245,751,17,689, +62,2014-01-14 11:59:44.943547,816,314,176, +99,2014-01-15 12:23:25.500027,890,808,763, +99,2014-01-13 18:22:35.419356,634,674,547, +62,2014-01-21 05:10:12.610081,192,293,751, +62,2014-01-13 15:52:04.947149,494,52,655, +62,2014-01-11 21:30:12.395956,288,959,77, +99,2014-01-10 20:44:30.764783,310,461,362, +62,2014-01-16 09:52:54.273361,835,796,490, +62,2014-01-16 22:36:35.726526,492,36,646, +99,2014-01-13 11:25:50.126836,393,230,436, +99,2014-01-15 07:49:06.571164,767,153,932, +99,2014-01-14 15:00:13.634476,166,680,45, +62,2014-01-16 07:00:29.790309,543,386,374, +62,2014-01-18 01:41:26.452426,88,775,967, +99,2014-01-20 12:33:17.505031,885,522,997, +99,2014-01-18 10:31:38.526741,905,138,590, +62,2014-01-21 00:21:12.307754,491,905,166, +99,2014-01-20 09:25:10.997065,545,394,891, +62,2014-01-19 01:32:18.500086,540,164,882, +99,2014-01-15 01:03:01.449431,146,6,997, +99,2014-01-17 09:30:22.07406,479,385,366, +62,2014-01-21 02:51:23.346519,662,683,41, +62,2014-01-17 19:09:09.435486,297,252,909, +62,2014-01-14 05:16:56.073601,246,570,39, +99,2014-01-18 18:52:59.206638,987,497,783, +62,2014-01-11 22:03:18.513478,834,832,679, +62,2014-01-13 01:54:14.748165,399,993,617, +62,2014-01-19 17:32:12.1309,921,110,55, +62,2014-01-15 22:59:59.285939,243,590,422, +99,2014-01-19 19:50:27.27341,433,309,998, +99,2014-01-20 03:08:53.640145,79,825,971, +99,2014-01-19 14:59:44.229486,618,480,868, +99,2014-01-14 02:13:52.773857,862,331,33, +62,2014-01-12 15:31:29.059501,444,158,169, +99,2014-01-19 14:09:56.839568,880,243,200, +62,2014-01-16 22:05:57.721006,47,217,799, +62,2014-01-13 17:01:41.455877,217,27,930, +62,2014-01-19 14:54:27.60477,579,258,466, +99,2014-01-12 01:58:51.994786,847,921,187, +99,2014-01-19 19:38:17.182403,253,77,998, +99,2014-01-11 20:20:17.731606,1,129,558, +62,2014-01-16 13:47:58.56595,24,603,401, +62,2014-01-13 04:38:30.81688,682,34,381, +99,2014-01-17 07:20:47.521917,471,553,305, +62,2014-01-13 09:29:25.018795,402,585,730, +62,2014-01-12 11:11:48.32191,362,400,541, +99,2014-01-14 11:52:26.049076,59,471,516, +99,2014-01-13 03:50:37.326548,901,917,343, +99,2014-01-11 14:36:59.318975,971,615,266, +62,2014-01-12 07:24:44.549163,107,28,325, +62,2014-01-17 08:53:38.77598,67,638,578, +62,2014-01-18 04:07:21.393036,372,677,467, +62,2014-01-12 04:16:07.895682,445,101,286, +62,2014-01-13 22:02:48.211466,839,481,283, +99,2014-01-11 03:24:17.466636,911,447,626, +62,2014-01-20 03:09:07.102739,6,627,190, +99,2014-01-15 00:06:06.725363,233,663,335, +99,2014-01-13 09:18:32.215221,693,957,688, +62,2014-01-18 14:41:19.233639,42,414,968, +99,2014-01-20 03:06:06.011302,927,456,236, +62,2014-01-11 23:08:59.488631,317,67,617, +62,2014-01-17 11:50:12.873784,599,908,65, +99,2014-01-18 12:05:50.240788,700,463,831, +62,2014-01-15 05:22:52.262489,270,699,214, +99,2014-01-19 07:21:41.933705,711,803,934, +99,2014-01-16 20:15:47.080355,312,207,196, +62,2014-01-10 21:28:49.983915,501,217,510, +99,2014-01-11 18:23:23.389581,621,810,399, +99,2014-01-15 05:10:14.685126,672,215,402, +99,2014-01-12 03:27:41.978701,955,48,619, +99,2014-01-20 18:01:40.571985,521,844,790, +99,2014-01-16 05:30:32.417151,589,418,546, +62,2014-01-17 21:15:40.54465,470,778,824, +99,2014-01-12 16:40:11.389284,783,222,314, +62,2014-01-12 06:51:19.939068,559,196,433, +62,2014-01-20 10:45:05.563445,827,348,33, +62,2014-01-14 07:51:59.711195,769,154,30, +99,2014-01-15 22:43:45.988144,65,264,776, +99,2014-01-12 08:35:42.890412,853,286,555, +99,2014-01-15 02:28:59.03059,103,276,52, +99,2014-01-17 10:08:30.537726,881,11,461, +99,2014-01-18 21:29:21.666392,831,536,663, +62,2014-01-12 00:36:20.423626,328,867,442, +62,2014-01-18 18:24:38.433408,327,96,770, +62,2014-01-11 13:32:09.878277,817,850,768, +99,2014-01-12 08:00:37.890681,894,103,403, +99,2014-01-17 15:33:45.536147,50,881,805, +99,2014-01-15 17:38:16.60364,704,485,374, +62,2014-01-14 21:19:10.105902,943,801,21, +62,2014-01-15 00:15:04.769785,670,12,482, +62,2014-01-14 14:44:22.614942,861,209,531, +99,2014-01-16 00:28:09.594533,149,231,807, +62,2014-01-11 06:05:17.643989,9,25,748, +99,2014-01-11 20:50:12.855729,120,625,135, +62,2014-01-20 09:51:01.857442,568,225,976, +62,2014-01-19 17:26:59.577694,577,190,272, +62,2014-01-17 21:05:59.936085,643,583,311, +62,2014-01-20 11:19:51.841356,586,928,958, +62,2014-01-20 15:50:22.967275,39,424,207, +99,2014-01-11 20:16:14.62163,295,635,35, +99,2014-01-11 08:47:33.820057,169,148,573, +62,2014-01-20 03:52:03.53926,473,364,740, +99,2014-01-17 05:46:47.038781,187,263,162, +62,2014-01-18 10:03:14.364707,694,707,963, +99,2014-01-11 14:32:14.928545,673,928,7, +62,2014-01-18 16:38:06.977849,152,637,553, +62,2014-01-17 14:48:19.928571,865,113,350, +99,2014-01-15 02:24:14.640158,420,302,797, +99,2014-01-13 09:21:52.966411,63,268,662, +99,2014-01-19 03:24:02.818983,29,332,14, +99,2014-01-19 08:53:13.670748,147,333,319, +99,2014-01-19 23:30:23.504137,153,928,510, +99,2014-01-16 18:53:24.485375,954,925,456, +99,2014-01-20 13:29:34.094374,672,903,379, +62,2014-01-17 11:55:01.937545,704,829,973, +99,2014-01-17 12:25:34.363652,345,649,252, +99,2014-01-11 15:30:11.985055,221,355,827, +62,2014-01-13 21:28:47.474111,380,172,603, +62,2014-01-12 00:03:50.967292,617,892,650, +62,2014-01-15 16:49:22.090957,14,770,772, +62,2014-01-18 01:43:52.243897,125,694,228, +99,2014-01-15 18:48:13.582233,182,141,754, +99,2014-01-20 21:17:31.68591,701,543,583, +62,2014-01-18 11:49:09.887885,183,665,457, +62,2014-01-16 19:38:26.437963,205,263,279, +62,2014-01-20 01:08:33.543352,181,376,338, +99,2014-01-16 23:16:09.465579,944,722,229, +62,2014-01-13 10:44:26.374467,188,55,871, +99,2014-01-19 06:28:25.384708,673,527,749, +62,2014-01-16 09:06:32.432854,655,366,502, +62,2014-01-14 11:00:40.996096,745,843,242, +62,2014-01-19 19:15:59.204765,834,296,358, +99,2014-01-15 06:58:35.972533,792,438,89, +62,2014-01-20 20:47:28.034877,261,379,703, +62,2014-01-16 23:19:13.569472,711,683,993, +99,2014-01-16 01:30:50.901078,57,387,969, +62,2014-01-18 07:25:35.012726,957,215,986, +99,2014-01-13 08:07:33.498043,590,670,805, +62,2014-01-20 07:55:05.541237,213,448,477, +62,2014-01-20 20:47:27.979138,669,620,466, +62,2014-01-11 05:31:36.317026,94,100,178, +62,2014-01-18 10:48:19.211985,71,663,336, +99,2014-01-19 14:17:51.483275,569,334,215, +62,2014-01-17 04:25:00.80282,72,179,633, +99,2014-01-17 18:17:53.306778,521,775,679, +99,2014-01-15 20:12:53.42124,683,738,334, +99,2014-01-13 10:50:35.166472,500,484,96, +62,2014-01-18 13:48:05.291833,420,668,372, +62,2014-01-18 21:41:40.89535,717,940,541, +62,2014-01-14 14:54:26.134182,642,791,561, +99,2014-01-13 00:37:27.38321,121,483,435, +62,2014-01-15 17:25:33.139247,366,675,457, +99,2014-01-19 13:42:39.716415,386,683,100, +62,2014-01-12 15:54:59.069121,311,461,587, +62,2014-01-12 23:14:43.027551,393,220,884, +99,2014-01-15 03:21:06.154797,758,719,266, +99,2014-01-11 11:03:32.612473,471,527,915, +99,2014-01-19 02:30:52.49313,54,413,751, +99,2014-01-17 18:05:32.529264,58,587,960, +62,2014-01-19 21:31:57.99718,65,8,114, +62,2014-01-14 05:37:24.926404,180,789,540, +99,2014-01-10 23:06:13.525359,637,66,886, +62,2014-01-18 10:47:57.201946,50,952,361, +99,2014-01-18 16:36:00.898938,49,964,422, +99,2014-01-20 23:53:41.560236,596,725,64, +99,2014-01-14 04:07:10.771418,972,676,444, +99,2014-01-13 12:06:51.800016,672,547,190, +62,2014-01-18 01:19:16.572963,86,811,23, +99,2014-01-16 16:14:44.26988,584,753,789, +62,2014-01-12 14:01:57.341672,291,721,30, +99,2014-01-17 16:06:44.55252,773,520,397, +99,2014-01-17 01:46:20.586906,451,31,34, +99,2014-01-20 04:50:16.553657,59,371,978, +99,2014-01-16 00:24:36.035795,282,468,154, +62,2014-01-13 00:11:21.389726,869,314,181, +99,2014-01-16 17:08:09.860435,506,285,802, +62,2014-01-21 00:37:29.457033,737,384,904, +99,2014-01-15 15:01:56.556617,799,156,799, +99,2014-01-14 00:56:15.152689,899,707,385, +99,2014-01-18 16:19:10.352383,701,301,947, +62,2014-01-19 09:56:22.690799,819,224,553, +99,2014-01-16 05:33:42.535898,128,796,723, +99,2014-01-13 03:44:43.49205,745,217,439, +99,2014-01-17 17:39:02.407214,274,300,848, +46,2014-01-18 01:28:41.605019,421,352,633, +28,2014-01-15 06:59:26.519601,912,373,744, +46,2014-01-11 15:00:08.56201,70,47,377, +46,2014-01-18 16:32:14.217491,393,28,619, +28,2014-01-13 03:30:19.012731,855,76,498, +97,2014-01-18 13:05:41.091273,911,249,663, +28,2014-01-17 08:04:12.214672,688,118,958, +28,2014-01-16 13:07:43.939135,458,891,63, +28,2014-01-18 16:11:54.616633,81,471,229, +97,2014-01-14 12:52:09.416618,890,25,765, +28,2014-01-13 23:43:44.838073,837,665,47, +28,2014-01-18 10:05:36.17687,993,672,311, +46,2014-01-17 20:59:20.188035,801,31,180, +28,2014-01-16 15:50:36.638508,61,896,339, +97,2014-01-15 05:24:52.750252,573,281,278, +28,2014-01-13 07:14:04.457916,309,207,283, +28,2014-01-18 09:52:33.98018,168,258,563, +28,2014-01-11 15:31:37.302772,376,472,583, +46,2014-01-19 13:00:25.045241,197,140,697, +28,2014-01-17 08:42:50.533838,367,400,768, +97,2014-01-16 19:56:13.338566,440,291,48, +46,2014-01-11 07:11:46.434967,708,482,423, +46,2014-01-12 19:51:00.394693,605,134,24, +97,2014-01-16 14:33:42.796019,903,477,45, +97,2014-01-16 02:13:42.991583,632,880,946, +28,2014-01-16 00:47:15.54738,493,356,880, +46,2014-01-14 00:52:53.148402,93,360,706, +97,2014-01-14 06:10:05.682381,319,516,340, +46,2014-01-11 00:20:58.083279,305,89,266, +97,2014-01-16 08:37:36.640452,689,195,1000, +46,2014-01-21 03:49:08.090015,366,123,284, +97,2014-01-18 05:49:39.688297,445,534,67, +46,2014-01-20 19:37:03.160053,939,371,194, +46,2014-01-11 12:49:16.652024,757,841,640, +97,2014-01-15 16:21:53.905789,424,4,398, +97,2014-01-12 17:07:22.173203,523,563,523, +28,2014-01-19 05:54:57.743717,485,562,791, +28,2014-01-11 18:26:06.120459,824,403,605, +28,2014-01-18 10:15:06.112339,107,392,555, +46,2014-01-16 16:06:52.36035,763,328,736, +46,2014-01-15 11:18:15.537077,553,826,654, +97,2014-01-11 03:58:50.95083,243,269,985, +46,2014-01-13 20:12:28.537639,371,922,943, +28,2014-01-12 02:17:35.725113,646,965,49, +46,2014-01-16 23:49:27.589339,288,543,808, +97,2014-01-18 05:37:21.28789,985,903,95, +46,2014-01-14 13:31:40.183447,514,586,905, +46,2014-01-14 03:42:01.569519,844,793,29, +46,2014-01-19 01:08:58.590661,781,628,977, +46,2014-01-12 20:32:05.228688,550,248,939, +97,2014-01-20 16:24:52.103356,689,120,413, +46,2014-01-14 15:05:11.929227,755,139,425, +46,2014-01-13 07:43:51.663654,470,474,122, +46,2014-01-12 06:15:52.498049,416,944,443, +46,2014-01-20 09:38:54.725246,298,946,322, +28,2014-01-18 13:57:34.655656,244,631,982, +97,2014-01-17 11:03:08.045429,387,818,841, +46,2014-01-13 04:31:47.874068,299,913,99, +46,2014-01-11 14:07:40.338039,958,304,406, +28,2014-01-17 15:24:06.128708,640,864,707, +28,2014-01-18 17:09:24.51452,183,382,519, +46,2014-01-11 11:56:48.428052,645,117,103, +28,2014-01-14 15:13:45.817005,588,944,237, +28,2014-01-18 06:46:27.674992,183,330,520, +28,2014-01-12 04:46:05.080496,785,262,963, +46,2014-01-19 11:35:39.722794,852,301,453, +97,2014-01-20 03:53:49.848196,673,786,417, +28,2014-01-20 14:41:02.824213,185,854,226, +46,2014-01-20 10:01:45.843253,610,650,697, +97,2014-01-17 08:08:55.960534,213,936,918, +97,2014-01-16 00:47:55.184562,399,730,754, +28,2014-01-14 15:20:01.38033,289,499,36, +46,2014-01-17 16:07:46.911365,20,744,787, +97,2014-01-19 01:00:23.722201,368,168,968, +46,2014-01-15 21:37:37.105862,634,217,326, +97,2014-01-13 09:57:14.500703,207,116,279, +28,2014-01-16 00:37:45.010091,294,919,705, +46,2014-01-19 15:09:17.289309,386,799,514, +46,2014-01-16 17:39:16.070222,996,854,716, +97,2014-01-13 19:46:43.600752,825,381,849, +97,2014-01-11 05:41:22.517997,869,993,420, +28,2014-01-16 04:04:08.173998,698,478,691, +97,2014-01-17 14:51:55.530399,131,613,471, +28,2014-01-13 17:25:14.181651,91,861,169, +46,2014-01-17 14:20:00.672047,133,892,880, +97,2014-01-16 18:30:50.255645,801,461,271, +28,2014-01-11 01:22:48.837308,825,549,106, +46,2014-01-13 19:23:08.717895,356,557,327, +28,2014-01-19 03:02:38.129713,692,304,580, +46,2014-01-11 19:30:29.175766,369,77,133, +46,2014-01-20 14:47:14.846603,336,896,553, +46,2014-01-16 14:12:02.644652,812,568,73, +46,2014-01-12 11:27:17.603818,917,165,613, +28,2014-01-14 00:01:00.664027,192,892,931, +28,2014-01-13 14:58:30.319644,66,307,863, +28,2014-01-13 20:13:22.684314,968,902,585, +46,2014-01-12 05:36:40.386821,722,267,21, +28,2014-01-12 12:52:20.16784,126,800,896, +28,2014-01-13 04:54:25.508527,695,991,449, +97,2014-01-11 09:38:26.230494,322,507,255, +28,2014-01-19 01:01:16.128374,981,308,314, +97,2014-01-18 09:42:20.693508,427,507,633, +28,2014-01-15 04:58:27.610824,462,766,748, +46,2014-01-15 11:09:03.040158,659,435,931, +46,2014-01-16 04:42:44.415709,87,606,531, +97,2014-01-20 06:36:04.716686,332,479,509, +46,2014-01-18 01:06:17.540861,926,961,579, +97,2014-01-10 23:20:29.426219,723,855,117, +97,2014-01-18 15:45:22.005996,836,976,924, +28,2014-01-13 12:45:33.611502,896,939,228, +97,2014-01-13 23:07:13.026971,872,983,858, +46,2014-01-19 01:26:44.523994,944,9,107, +97,2014-01-18 20:49:41.7855,107,587,66, +97,2014-01-20 17:59:08.55737,411,175,783, +97,2014-01-11 12:51:58.706064,723,12,589, +97,2014-01-15 05:09:42.457546,386,834,675, +46,2014-01-16 06:29:58.813434,409,174,219, +46,2014-01-11 18:14:47.543372,233,173,799, +28,2014-01-18 04:32:51.175442,430,39,618, +28,2014-01-14 03:32:36.943147,380,583,607, +46,2014-01-12 17:45:16.719138,754,571,299, +28,2014-01-17 13:20:06.022464,72,841,605, +28,2014-01-19 21:44:39.587799,895,94,755, +28,2014-01-14 09:12:34.323375,130,915,420, +46,2014-01-20 17:21:06.686491,788,855,721, +97,2014-01-12 06:43:09.907444,788,143,917, +97,2014-01-17 09:25:57.007689,190,778,908, +46,2014-01-11 16:57:47.073312,839,484,374, +46,2014-01-13 23:35:30.075283,996,241,840, +46,2014-01-19 18:20:22.516634,453,512,319, +46,2014-01-12 06:36:13.303805,318,697,576, +97,2014-01-11 18:36:46.204076,334,822,702, +46,2014-01-16 22:02:43.210142,52,190,673, +97,2014-01-16 15:34:40.915049,469,904,830, +46,2014-01-16 09:45:49.244234,751,181,214, +46,2014-01-11 20:45:27.625851,50,548,376, +46,2014-01-15 16:10:45.631735,357,987,341, +28,2014-01-13 04:52:06.785096,730,629,392, +97,2014-01-12 00:05:57.05207,649,705,604, +46,2014-01-13 01:56:07.638151,523,981,4, +28,2014-01-15 21:37:40.396598,24,586,157, +46,2014-01-15 03:13:10.07946,3,85,31, +97,2014-01-10 21:22:52.162144,201,100,317, +97,2014-01-13 12:27:22.182097,161,616,874, +28,2014-01-14 15:12:18.63683,164,908,225, +46,2014-01-11 14:14:50.868208,658,84,193, +97,2014-01-17 21:37:04.640062,208,128,626, +97,2014-01-20 01:42:17.450265,975,609,145, +46,2014-01-12 12:29:38.411999,478,489,873, +97,2014-01-14 20:09:55.815503,911,444,376, +28,2014-01-12 23:14:54.393831,624,659,706, +97,2014-01-14 10:14:55.131136,561,323,746, +46,2014-01-11 03:30:01.837967,811,417,712, +46,2014-01-11 14:59:33.98163,231,54,737, +97,2014-01-17 23:27:29.454511,234,788,144, +46,2014-01-21 00:51:08.524458,908,999,676, +97,2014-01-13 01:42:43.889493,41,207,464, +46,2014-01-14 02:53:26.462619,138,576,249, +97,2014-01-11 11:48:55.598189,393,321,845, +46,2014-01-16 05:18:13.964776,429,814,634, +46,2014-01-12 15:13:48.979253,296,332,158, +46,2014-01-12 22:25:08.901995,346,388,700, +97,2014-01-17 03:55:00.168853,952,801,323, +28,2014-01-18 17:16:32.189395,54,615,807, +46,2014-01-18 17:59:49.817044,481,383,111, +97,2014-01-12 07:40:49.413087,399,117,915, +97,2014-01-19 18:01:59.815246,799,437,590, +97,2014-01-13 04:10:35.449199,850,762,412, +28,2014-01-14 16:32:56.198602,61,386,620, +28,2014-01-20 22:07:56.867734,520,643,261, +28,2014-01-15 10:06:43.08735,584,850,446, +46,2014-01-19 18:10:36.595199,557,485,950, +46,2014-01-14 19:21:06.947195,560,12,671, +97,2014-01-15 11:29:35.249494,304,811,455, +46,2014-01-12 00:37:58.777716,962,630,398, +97,2014-01-18 14:33:25.584025,42,367,290, +28,2014-01-16 05:44:26.118121,271,168,217, +28,2014-01-19 02:15:03.417778,515,849,475, +46,2014-01-17 10:15:43.034709,401,881,281, +28,2014-01-17 22:14:04.530121,593,629,835, +28,2014-01-12 16:24:59.233281,927,665,187, +97,2014-01-19 13:30:37.428541,350,49,910, +46,2014-01-11 02:28:59.661257,482,383,817, +46,2014-01-12 23:55:01.071668,286,842,68, +97,2014-01-20 08:30:11.410171,869,246,929, +28,2014-01-18 05:56:29.116188,175,513,588, +97,2014-01-12 18:46:09.596126,206,864,366, +97,2014-01-12 04:12:55.299664,779,651,581, +97,2014-01-11 02:49:55.578806,765,466,640, +28,2014-01-13 10:35:05.194315,292,570,854, +28,2014-01-17 13:31:09.264859,630,996,357, +28,2014-01-12 22:03:44.558059,349,488,741, +46,2014-01-15 13:00:14.096728,772,419,49, +28,2014-01-13 11:26:09.433712,847,932,130, +46,2014-01-20 19:20:16.747454,604,349,844, +28,2014-01-13 01:00:03.913772,527,950,257, +28,2014-01-14 23:06:58.847219,346,168,39, +28,2014-01-19 07:22:16.562699,759,466,498, +97,2014-01-15 09:10:39.362971,807,515,206, +46,2014-01-18 19:39:55.04582,490,366,619, +46,2014-01-18 23:30:13.430434,257,228,690, +97,2014-01-19 23:17:22.450321,870,19,318, +28,2014-01-17 07:50:31.64102,197,361,633, +97,2014-01-12 12:51:20.377629,301,672,208, +97,2014-01-14 04:46:57.700233,112,606,933, +97,2014-01-18 12:28:30.418735,607,37,319, +97,2014-01-20 07:24:45.962074,225,745,28, +28,2014-01-19 14:31:23.818354,913,822,676, +46,2014-01-16 08:43:33.836514,251,918,577, +97,2014-01-16 11:40:28.996782,50,517,113, +28,2014-01-16 06:45:28.348475,589,109,582, +97,2014-01-18 05:08:33.070214,229,874,383, +46,2014-01-14 19:11:06.425323,807,461,859, +97,2014-01-16 13:14:28.009732,266,144,294, +28,2014-01-20 09:03:34.141881,825,19,295, +28,2014-01-13 21:41:17.835494,358,78,324, +28,2014-01-13 13:10:57.12592,91,557,671, +28,2014-01-11 21:49:43.738007,268,961,322, +28,2014-01-15 05:54:13.135577,465,967,937, +46,2014-01-13 20:00:52.704726,401,854,995, +46,2014-01-14 12:24:48.932741,528,418,930, +46,2014-01-11 13:25:22.400436,32,245,276, +28,2014-01-15 22:04:37.262785,139,826,464, +28,2014-01-19 05:25:03.029469,118,759,196, +46,2014-01-14 04:51:31.834148,834,773,728, +97,2014-01-15 11:24:54.01024,37,544,418, +97,2014-01-11 00:25:06.943241,642,99,295, +28,2014-01-18 07:58:30.681367,908,986,280, +97,2014-01-13 12:47:10.573358,608,880,175, +46,2014-01-15 13:35:46.306631,322,167,513, +46,2014-01-15 21:38:25.727187,434,267,730, +46,2014-01-11 06:17:24.003792,197,649,534, +97,2014-01-14 06:53:08.756951,398,352,476, +28,2014-01-11 23:28:57.368626,357,520,295, +46,2014-01-12 23:08:44.381841,724,597,599, +28,2014-01-17 15:40:06.457184,755,500,742, +28,2014-01-19 15:57:27.78736,927,317,485, +97,2014-01-12 00:33:30.343914,841,439,665, +28,2014-01-16 00:11:30.27554,952,641,542, +97,2014-01-14 18:41:01.624293,651,51,895, +46,2014-01-17 16:13:59.340697,900,405,708, +28,2014-01-11 00:56:58.624014,761,160,511, +97,2014-01-11 17:49:34.694507,926,734,135, +97,2014-01-11 05:25:05.76602,664,14,11, +46,2014-01-16 18:11:26.634166,931,28,230, +28,2014-01-10 20:53:08.836389,670,786,222, +46,2014-01-14 07:06:23.601514,668,677,665, +97,2014-01-19 11:22:23.760085,614,114,104, +46,2014-01-11 22:42:52.574396,324,381,922, +97,2014-01-18 17:00:36.737091,146,115,652, +28,2014-01-12 01:23:16.465231,822,384,713, +97,2014-01-15 15:07:41.507136,367,140,233, +97,2014-01-19 10:25:59.137526,447,337,8, +97,2014-01-17 03:27:53.728017,898,475,685, +46,2014-01-13 14:32:44.536605,411,627,696, +28,2014-01-12 09:17:30.972094,126,192,766, +97,2014-01-11 08:52:47.738675,901,209,863, +28,2014-01-13 18:57:51.480266,975,136,848, +97,2014-01-19 21:16:01.65346,297,245,94, +46,2014-01-14 01:39:58.312033,850,830,381, +46,2014-01-18 12:33:37.786896,904,48,954, +28,2014-01-14 12:54:27.381068,81,194,428, +97,2014-01-14 11:57:22.315825,941,722,807, +97,2014-01-11 13:26:46.543848,455,388,33, +46,2014-01-15 16:23:24.749693,741,221,595, +28,2014-01-16 15:06:06.697666,631,524,254, +28,2014-01-18 09:06:53.001451,211,450,543, +28,2014-01-14 02:20:52.537054,424,602,164, +97,2014-01-17 19:39:37.041579,193,911,957, +97,2014-01-13 03:18:23.276991,461,625,659, +97,2014-01-18 01:01:54.161347,586,508,960, +46,2014-01-14 05:53:36.382276,967,862,296, +46,2014-01-13 08:15:21.901424,102,403,293, +28,2014-01-18 22:51:28.855854,846,511,223, +46,2014-01-14 15:18:42.148296,606,811,481, +97,2014-01-19 06:26:48.535589,730,201,427, +46,2014-01-18 23:44:37.692242,194,824,60, +46,2014-01-18 02:25:05.750228,286,751,627, +28,2014-01-17 11:49:12.295674,550,279,358, +97,2014-01-20 02:27:30.267056,71,160,828, +28,2014-01-15 13:25:42.487319,733,965,275, +46,2014-01-18 17:12:28.760905,350,812,478, +97,2014-01-14 11:35:11.774193,872,258,878, +28,2014-01-13 17:51:41.625265,984,790,514, +46,2014-01-14 14:40:22.489342,382,764,363, +86,2014-01-17 06:07:56.311217,206,115,75, +38,2014-01-15 07:09:12.597358,179,948,651, +6,2014-01-15 03:33:10.228017,217,676,230, +71,2014-01-20 05:05:47.791481,13,692,896, +71,2014-01-13 22:25:14.250819,18,761,423, +71,2014-01-18 09:13:08.54005,605,621,756, +6,2014-01-17 11:39:25.578378,983,250,453, +38,2014-01-17 15:19:41.631886,92,593,66, +38,2014-01-11 15:10:30.855875,764,858,255, +73,2014-01-18 05:06:12.122226,460,725,961, +38,2014-01-12 01:43:06.381579,700,825,606, +86,2014-01-17 10:16:37.55396,713,197,502, +66,2014-01-15 08:13:05.123677,271,263,988, +6,2014-01-15 08:03:58.919052,160,312,216, +71,2014-01-13 23:56:14.59554,638,37,181, +66,2014-01-17 15:31:28.401086,615,116,565, +38,2014-01-12 03:05:53.080399,420,8,501, +66,2014-01-17 09:49:50.978234,869,500,985, +86,2014-01-20 03:46:50.302509,516,210,467, +38,2014-01-20 05:57:21.936672,483,295,389, +86,2014-01-21 05:08:33.12653,341,183,797, +6,2014-01-18 04:13:38.838099,125,879,890, +38,2014-01-17 23:41:59.628914,660,466,792, +66,2014-01-18 01:33:38.876758,281,709,635, +66,2014-01-14 10:02:51.133773,173,267,29, +66,2014-01-16 20:09:29.89597,670,53,980, +6,2014-01-12 08:59:21.364496,298,294,495, +86,2014-01-11 21:15:19.895098,126,608,173, +6,2014-01-20 11:44:41.670581,625,502,999, +6,2014-01-15 06:51:02.989759,562,441,890, +86,2014-01-15 15:55:42.384439,129,237,4, +38,2014-01-16 11:52:37.981798,531,894,517, +6,2014-01-19 18:00:15.587118,429,324,735, +71,2014-01-19 23:28:52.612455,194,613,668, +86,2014-01-15 10:58:25.77328,395,496,556, +38,2014-01-12 10:25:29.837936,113,978,220, +73,2014-01-17 02:42:01.152505,234,715,120, +38,2014-01-11 16:37:51.351657,70,781,314, +71,2014-01-19 05:45:11.470243,746,231,271, +66,2014-01-17 21:52:32.008381,835,260,907, +73,2014-01-19 01:44:03.473883,39,847,475, +73,2014-01-20 11:28:17.851822,800,887,232, +66,2014-01-14 02:09:09.562342,508,407,350, +71,2014-01-13 03:57:08.597979,318,267,195, +38,2014-01-14 13:32:16.770874,70,309,838, +73,2014-01-17 06:05:24.1583,265,414,913, +86,2014-01-19 23:28:36.999066,821,156,395, +86,2014-01-15 20:38:09.851692,822,629,97, +38,2014-01-13 09:55:15.136534,947,14,509, +73,2014-01-18 21:15:27.301575,14,257,967, +66,2014-01-14 20:35:31.788364,16,285,392, +71,2014-01-13 09:03:48.263065,154,97,345, +6,2014-01-15 19:29:06.139674,703,443,980, +66,2014-01-11 14:17:31.417277,165,838,620, +71,2014-01-20 14:37:27.140242,200,651,53, +66,2014-01-19 09:31:57.273447,712,580,741, +86,2014-01-17 14:27:01.313667,78,639,698, +73,2014-01-11 17:36:48.504738,989,935,892, +71,2014-01-20 10:47:17.168545,810,560,18, +38,2014-01-16 20:11:42.984248,505,948,506, +38,2014-01-16 04:27:51.494498,390,294,373, +6,2014-01-14 20:42:59.552983,72,923,445, +73,2014-01-12 02:04:20.966046,102,411,241, +6,2014-01-14 16:28:07.081616,76,499,574, +86,2014-01-13 14:11:52.16544,897,419,448, +71,2014-01-16 17:02:46.739326,466,355,565, +86,2014-01-16 06:53:36.919552,141,168,434, +38,2014-01-19 20:53:53.317945,216,44,796, +6,2014-01-17 13:40:38.090983,21,423,125, +6,2014-01-14 06:38:48.389795,816,60,389, +71,2014-01-16 12:46:25.326745,753,931,229, +73,2014-01-15 09:24:41.564867,584,523,256, +66,2014-01-13 12:07:06.242035,532,46,94, +71,2014-01-19 18:55:34.889086,308,719,476, +66,2014-01-17 17:21:50.162846,255,93,459, +86,2014-01-17 05:39:23.012908,597,358,201, +66,2014-01-15 19:00:59.047386,613,872,591, +66,2014-01-16 10:50:27.161911,15,182,785, +86,2014-01-11 20:17:32.8646,88,151,448, +71,2014-01-18 08:56:14.183921,30,391,294, +66,2014-01-14 02:05:54.463486,406,538,705, +6,2014-01-15 20:53:04.652964,126,123,960, +71,2014-01-20 22:00:02.447405,676,941,403, +6,2014-01-19 01:35:00.60316,947,871,43, +71,2014-01-16 15:10:36.070659,732,750,52, +73,2014-01-20 06:37:29.587647,693,887,369, +71,2014-01-17 05:06:57.877027,198,605,799, +6,2014-01-12 23:37:37.384326,758,112,891, +6,2014-01-21 04:14:18.092385,565,470,201, +38,2014-01-16 09:54:15.045571,881,504,442, +38,2014-01-18 23:49:20.368574,522,166,442, +73,2014-01-16 02:42:09.586883,965,726,525, +38,2014-01-20 10:37:14.598974,733,501,764, +66,2014-01-20 05:53:41.33462,854,732,281, +73,2014-01-19 23:10:16.668499,696,939,655, +73,2014-01-12 18:49:06.764413,585,724,103, +73,2014-01-15 16:56:28.073945,911,78,240, +6,2014-01-15 00:03:53.588051,190,438,464, +6,2014-01-11 09:43:00.082777,538,758,21, +66,2014-01-12 00:37:06.164928,266,430,98, +71,2014-01-18 10:42:41.978265,924,97,370, +86,2014-01-17 02:29:25.409522,469,127,682, +71,2014-01-16 14:01:47.729795,185,55,555, +71,2014-01-21 02:49:48.2203,726,777,323, +86,2014-01-15 15:25:00.298608,571,875,354, +73,2014-01-13 01:23:37.89306,182,334,615, +38,2014-01-17 02:29:11.233209,114,319,956, +38,2014-01-20 14:25:59.346414,577,733,286, +66,2014-01-18 16:14:05.054972,276,883,216, +86,2014-01-18 02:46:44.098228,804,912,64, +86,2014-01-17 17:22:13.530334,764,439,130, +66,2014-01-11 12:19:59.518878,313,730,356, +66,2014-01-12 17:39:48.751192,544,22,169, +6,2014-01-17 09:22:15.97774,386,453,725, +38,2014-01-19 17:55:00.122039,404,849,880, +38,2014-01-18 12:50:24.821852,37,502,220, +71,2014-01-16 09:59:45.565387,883,29,81, +86,2014-01-15 17:01:57.999065,247,573,368, +6,2014-01-20 16:28:02.206178,90,36,556, +66,2014-01-16 08:14:03.657772,974,151,408, +66,2014-01-10 20:56:13.045055,748,485,289, +6,2014-01-18 10:17:22.574751,602,525,213, +86,2014-01-11 04:56:13.244655,705,299,145, +38,2014-01-20 11:33:27.644029,206,367,639, +6,2014-01-17 10:11:03.909371,304,356,36, +38,2014-01-20 08:06:29.913154,660,656,821, +6,2014-01-12 00:22:34.408442,622,193,115, +66,2014-01-11 21:07:31.983316,788,398,23, +71,2014-01-14 02:10:23.501624,963,876,947, +71,2014-01-12 14:05:34.491219,500,192,919, +38,2014-01-13 01:44:38.148245,459,121,25, +38,2014-01-11 06:53:05.479889,288,273,633, +66,2014-01-18 20:34:59.900741,825,395,689, +66,2014-01-18 19:46:25.878458,741,16,823, +6,2014-01-11 03:42:53.700189,222,126,967, +86,2014-01-13 06:00:00.199768,141,465,195, +66,2014-01-21 01:10:03.771519,318,217,706, +66,2014-01-17 10:12:04.933398,730,241,696, +6,2014-01-12 14:25:59.546181,33,923,138, +66,2014-01-18 11:24:08.826491,603,122,969, +86,2014-01-14 06:58:49.031626,838,691,764, +71,2014-01-19 11:48:13.076516,77,543,125, +66,2014-01-19 03:44:08.345369,831,987,73, +73,2014-01-16 04:38:37.783237,528,165,107, +38,2014-01-15 15:10:29.054675,813,826,197, +66,2014-01-17 15:39:08.467826,86,634,192, +86,2014-01-13 11:29:02.605089,807,10,340, +86,2014-01-21 05:10:14.620061,592,21,614, +6,2014-01-12 02:41:06.466891,435,157,411, +86,2014-01-12 21:57:04.811685,861,266,724, +66,2014-01-16 07:24:18.278253,857,380,601, +38,2014-01-12 03:37:19.511946,354,567,106, +86,2014-01-20 12:14:27.386437,496,680,53, +86,2014-01-16 16:20:31.522908,339,550,723, +86,2014-01-11 09:10:47.155975,822,752,693, +86,2014-01-16 16:25:31.296227,335,160,22, +38,2014-01-15 18:27:01.436481,799,80,824, +73,2014-01-12 13:33:21.564835,264,625,661, +73,2014-01-17 17:33:03.279543,735,92,410, +73,2014-01-19 00:37:24.938105,940,744,510, +71,2014-01-14 07:38:56.056054,283,4,669, +6,2014-01-19 23:17:41.428206,293,597,586, +71,2014-01-19 11:30:30.417994,627,15,734, +38,2014-01-11 22:13:55.957214,213,655,837, +71,2014-01-17 13:04:07.306665,868,825,375, +73,2014-01-19 19:13:24.118182,564,880,812, +6,2014-01-14 08:13:56.156981,932,606,22, +86,2014-01-17 08:14:11.078184,432,472,613, +73,2014-01-15 23:25:29.05158,841,53,306, +38,2014-01-16 02:39:55.703163,483,364,670, +73,2014-01-14 13:38:19.904675,58,191,817, +66,2014-01-19 10:24:18.083625,411,741,83, +73,2014-01-14 08:28:08.779678,220,97,682, +73,2014-01-12 11:22:28.250462,88,829,407, +86,2014-01-14 09:02:55.866863,401,347,271, +66,2014-01-19 03:38:37.834353,510,519,926, +73,2014-01-19 07:01:36.718288,407,620,164, +73,2014-01-17 00:31:58.471952,270,269,10, +73,2014-01-19 02:48:52.454834,742,574,78, +73,2014-01-20 13:42:43.185178,344,246,868, +71,2014-01-19 02:29:03.283638,153,172,11, +86,2014-01-14 04:13:10.733088,93,930,39, +38,2014-01-11 11:20:02.697544,716,193,212, +38,2014-01-18 08:43:30.670494,399,234,998, +66,2014-01-20 00:33:42.255996,601,275,139, +66,2014-01-12 00:30:49.853519,116,770,315, +86,2014-01-13 19:09:01.966721,933,825,547, +73,2014-01-14 13:00:43.692477,99,417,350, +86,2014-01-13 18:04:11.418354,865,620,63, +73,2014-01-20 16:42:05.246264,759,70,958, +6,2014-01-12 07:38:08.630582,735,905,107, +71,2014-01-17 05:43:07.474827,54,899,465, +73,2014-01-19 09:59:46.674471,61,513,159, +6,2014-01-20 23:08:39.048576,227,713,216, +38,2014-01-18 07:57:03.432042,890,484,256, +66,2014-01-15 17:03:53.981135,4,222,551, +38,2014-01-19 12:22:03.166758,67,923,762, +66,2014-01-11 10:10:59.589023,648,135,322, +86,2014-01-11 19:18:05.05932,940,715,685, +73,2014-01-14 05:47:32.218758,153,367,321, +73,2014-01-16 16:50:55.292185,598,160,903, +6,2014-01-15 12:56:24.964414,69,679,788, +86,2014-01-12 10:11:50.302383,674,442,563, +71,2014-01-20 05:19:04.071864,344,14,977, +38,2014-01-17 04:18:53.214875,303,595,756, +6,2014-01-15 23:14:46.169246,616,343,748, +71,2014-01-18 02:57:41.906636,155,145,686, +86,2014-01-15 05:20:29.933164,430,493,297, +71,2014-01-11 17:46:44.641198,35,938,359, +73,2014-01-15 23:46:34.361471,493,51,238, +66,2014-01-14 13:03:13.118342,441,645,517, +66,2014-01-20 00:15:47.925255,377,573,727, +38,2014-01-19 07:59:45.094558,633,900,404, +6,2014-01-15 04:23:15.815885,884,744,552, +66,2014-01-17 02:59:18.595749,236,545,661, +66,2014-01-18 02:33:27.350555,287,322,694, +71,2014-01-16 08:54:05.669822,830,327,998, +38,2014-01-20 02:08:20.56247,474,966,92, +66,2014-01-11 09:34:11.043452,327,634,668, +38,2014-01-19 06:58:17.088176,639,273,6, +73,2014-01-19 12:50:25.808733,511,710,766, +6,2014-01-12 21:12:19.674034,474,363,969, +38,2014-01-15 06:41:24.563004,931,881,94, +73,2014-01-17 16:50:12.483623,499,681,466, +73,2014-01-12 14:20:58.723029,90,166,290, +71,2014-01-12 08:38:27.995045,664,887,485, +86,2014-01-12 03:54:06.464758,359,227,760, +6,2014-01-10 20:43:01.889788,94,809,15, +6,2014-01-12 22:49:27.584068,53,54,147, +6,2014-01-13 03:12:11.524497,186,724,702, +38,2014-01-14 06:30:34.108546,223,437,190, +38,2014-01-18 19:40:22.876253,920,739,452, +86,2014-01-17 20:08:36.48891,754,588,249, +66,2014-01-15 20:42:24.410929,434,189,528, +66,2014-01-17 18:59:26.948536,401,207,54, +6,2014-01-13 18:27:29.703785,415,128,336, +6,2014-01-20 23:57:10.580175,439,351,10, +71,2014-01-14 15:57:08.855173,751,636,625, +71,2014-01-18 03:47:59.636949,344,24,772, +6,2014-01-11 11:43:55.221793,668,684,729, +38,2014-01-19 19:43:43.216644,738,550,121, +66,2014-01-11 10:51:12.755291,739,851,143, +6,2014-01-20 15:59:43.147047,377,503,475, +71,2014-01-17 21:43:28.311203,423,249,111, +86,2014-01-15 19:14:28.571595,525,180,806, +86,2014-01-16 12:59:01.742796,193,401,895, +86,2014-01-14 18:16:55.661757,984,5,796, +66,2014-01-10 22:08:34.241417,514,410,429, +73,2014-01-15 09:07:22.305266,833,873,181, +71,2014-01-15 07:51:06.705209,1,110,992, +6,2014-01-19 09:06:51.329594,438,227,219, +86,2014-01-13 15:57:48.113999,575,117,90, +38,2014-01-17 09:03:26.379662,526,867,806, +38,2014-01-13 09:48:15.893017,783,22,611, +38,2014-01-20 12:48:00.597622,383,983,492, +73,2014-01-19 03:24:25.102692,780,792,214, +38,2014-01-14 22:26:43.888061,66,555,845, +38,2014-01-11 10:42:07.0628,786,407,835, +71,2014-01-19 04:07:26.992479,372,160,942, +71,2014-01-17 01:16:11.472549,939,184,254, +38,2014-01-13 17:54:18.587298,190,909,648, +66,2014-01-12 04:38:01.101444,412,258,240, +71,2014-01-14 14:56:34.348802,403,331,203, +66,2014-01-20 18:02:55.076208,252,637,911, +86,2014-01-17 05:20:25.512373,673,800,659, +86,2014-01-11 03:56:01.297339,347,344,905, +6,2014-01-13 06:30:24.779994,192,205,501, +86,2014-01-16 23:17:36.092968,235,633,780, +66,2014-01-14 23:53:10.152511,293,684,517, +38,2014-01-20 14:18:24.416943,66,734,471, +73,2014-01-17 15:01:31.314759,166,402,820, +66,2014-01-13 13:36:53.369155,827,835,30, +38,2014-01-21 05:09:37.172233,258,213,38, +73,2014-01-17 01:01:14.461807,61,184,195, +38,2014-01-20 15:20:21.680358,881,770,170, +66,2014-01-15 18:24:05.743828,943,511,464, +73,2014-01-12 08:00:16.204603,516,985,697, +73,2014-01-14 03:37:17.342535,501,60,581, +6,2014-01-15 20:32:39.985245,603,378,130, +38,2014-01-16 21:07:38.509868,419,383,266, +66,2014-01-18 15:28:24.047745,16,694,879, +71,2014-01-13 23:39:31.315257,614,159,998, +86,2014-01-19 17:05:26.623867,418,959,419, +86,2014-01-14 18:31:50.427407,723,355,612, +86,2014-01-16 13:27:47.208274,141,784,682, +38,2014-01-18 23:53:27.221908,142,424,831, +86,2014-01-12 15:56:15.530098,821,90,296, +71,2014-01-20 15:54:31.096335,549,464,9, +71,2014-01-19 14:35:34.284708,949,814,423, +86,2014-01-21 00:03:42.522997,814,461,825, +38,2014-01-16 11:10:42.568884,240,716,26, +73,2014-01-12 02:29:52.872006,963,694,361, +73,2014-01-11 22:41:43.624441,10,821,577, +6,2014-01-20 06:07:16.918105,38,138,239, +38,2014-01-11 14:32:47.948214,135,515,119, +71,2014-01-18 08:02:09.136814,822,366,890, +6,2014-01-20 14:03:18.215444,891,606,958, +66,2014-01-14 01:03:12.728207,704,890,90, +71,2014-01-14 01:19:45.229781,858,368,947, +86,2014-01-14 07:56:28.368375,266,808,852, +71,2014-01-13 09:21:37.14515,303,289,330, +86,2014-01-20 20:21:16.544541,998,694,676, +38,2014-01-17 01:33:21.73753,177,171,51, +86,2014-01-13 08:31:14.317383,676,264,664, +38,2014-01-16 15:22:31.006348,464,125,230, +71,2014-01-16 10:53:43.418307,724,647,892, +6,2014-01-18 06:55:20.06163,262,610,668, +66,2014-01-18 03:22:47.210951,517,132,918, +86,2014-01-19 18:31:00.760842,989,68,277, +86,2014-01-12 21:28:00.046875,988,84,939, +6,2014-01-13 18:30:25.720819,156,940,534, +38,2014-01-17 03:59:24.808586,948,204,543, +66,2014-01-16 01:07:31.362133,471,428,672, +38,2014-01-12 05:35:52.345105,140,902,139, +73,2014-01-21 02:31:15.236412,418,213,884, +86,2014-01-11 08:35:18.570407,877,827,55, +38,2014-01-20 09:29:19.567014,824,748,336, +38,2014-01-12 12:27:30.76651,318,885,364, +66,2014-01-21 04:29:49.667161,999,133,765, +71,2014-01-18 18:04:53.851722,753,695,931, +38,2014-01-12 06:31:13.289507,369,740,252, +73,2014-01-16 09:40:32.236046,340,719,109, +71,2014-01-20 00:34:46.723728,460,361,632, +66,2014-01-13 09:12:56.913948,665,64,79, +71,2014-01-15 09:47:49.154152,407,654,823, +66,2014-01-20 19:07:34.671942,202,426,360, +66,2014-01-20 21:15:06.051181,734,915,346, +6,2014-01-14 17:51:07.370015,445,366,722, +6,2014-01-13 14:10:47.40015,233,580,623, +71,2014-01-13 16:34:51.280962,722,13,211, +66,2014-01-18 05:47:35.73839,887,433,663, +73,2014-01-16 03:32:24.5453,294,726,614, +86,2014-01-13 06:56:07.825922,911,836,793, +71,2014-01-14 01:20:57.47592,124,251,887, +71,2014-01-18 16:03:38.862683,976,351,549, +71,2014-01-19 02:18:38.832271,696,325,438, +86,2014-01-19 16:14:40.894226,716,858,44, +38,2014-01-15 16:58:58.924314,696,946,697, +86,2014-01-15 23:41:26.043641,299,699,318, +71,2014-01-18 04:45:41.655068,978,522,824, +6,2014-01-17 18:26:58.971608,237,940,717, +66,2014-01-18 22:11:51.764459,522,358,913, +66,2014-01-14 02:45:06.464073,754,899,636, +38,2014-01-12 13:34:30.333742,777,644,932, +38,2014-01-20 07:47:44.109564,271,369,715, +66,2014-01-13 23:16:21.700485,490,479,159, +6,2014-01-13 02:09:48.904568,858,784,143, +71,2014-01-19 11:17:03.676577,346,435,278, +71,2014-01-15 15:43:52.466996,939,281,705, +86,2014-01-13 00:39:38.571729,150,259,584, +73,2014-01-16 23:21:57.528299,646,570,763, +38,2014-01-17 02:15:05.756923,646,983,605, +73,2014-01-18 14:20:10.807776,291,427,18, +71,2014-01-15 17:56:44.252027,266,125,195, +6,2014-01-19 15:28:02.670871,787,171,545, +86,2014-01-12 18:07:59.962347,483,924,906, +86,2014-01-15 07:04:18.92397,632,431,706, +66,2014-01-19 06:43:08.722051,46,729,433, +38,2014-01-16 15:59:07.332361,549,916,881, +38,2014-01-18 01:15:06.324119,601,460,456, +66,2014-01-11 17:18:00.003432,531,58,214, +38,2014-01-13 15:46:43.070751,846,754,26, +73,2014-01-12 22:47:30.869419,639,916,160, +71,2014-01-14 04:14:07.829355,666,361,845, +71,2014-01-16 21:07:40.546671,844,655,869, +71,2014-01-20 18:51:09.732522,68,618,421, +86,2014-01-12 00:32:46.661625,48,740,490, +38,2014-01-15 07:22:21.441316,783,517,320, +73,2014-01-15 05:50:08.656835,785,909,834, +86,2014-01-17 04:14:12.705266,866,115,408, +6,2014-01-12 06:08:03.096384,652,840,932, +86,2014-01-11 18:17:07.628444,839,160,827, +71,2014-01-14 20:26:04.470144,405,756,966, +6,2014-01-15 12:53:09.560457,467,934,103, +86,2014-01-13 11:51:37.962604,988,525,517, +66,2014-01-13 22:13:48.579707,922,518,835, +38,2014-01-18 16:09:31.260943,347,167,668, +73,2014-01-15 18:01:26.867171,739,431,109, +73,2014-01-12 03:30:52.256704,533,906,458, +71,2014-01-13 01:53:23.728358,769,703,194, +73,2014-01-17 22:41:05.4389,248,196,165, +86,2014-01-18 06:52:49.785003,429,502,641, +71,2014-01-19 08:08:29.48528,228,963,577, +66,2014-01-15 07:01:16.246676,465,218,33, +71,2014-01-12 18:49:34.037449,69,451,844, +6,2014-01-17 17:36:32.156151,205,656,537, +38,2014-01-17 05:09:16.209023,789,789,551, +86,2014-01-17 05:53:52.961419,74,559,418, +86,2014-01-15 18:19:40.878621,361,70,626, +86,2014-01-12 15:08:23.541384,216,861,813, +86,2014-01-14 01:08:59.285957,129,110,968, +38,2014-01-16 15:37:40.882054,274,116,611, +73,2014-01-15 10:55:06.612135,907,403,32, +66,2014-01-16 03:56:30.155376,773,670,554, +73,2014-01-19 23:51:48.711408,21,421,153, +6,2014-01-11 02:02:47.159225,800,183,217, +73,2014-01-15 16:47:39.887898,909,119,648, +38,2014-01-21 04:24:35.373034,973,670,76, +38,2014-01-15 13:25:08.600542,266,709,934, +38,2014-01-20 02:37:48.545152,6,930,995, +6,2014-01-17 02:38:48.078719,838,687,221, +6,2014-01-16 23:33:11.696925,330,996,626, +38,2014-01-21 00:54:56.173595,57,315,171, +38,2014-01-21 03:04:52.548862,62,709,733, +73,2014-01-11 06:26:21.257801,978,692,258, +73,2014-01-13 06:46:34.136199,291,232,644, +6,2014-01-13 19:18:41.12857,442,715,189, +71,2014-01-19 02:35:52.518745,729,496,834, +73,2014-01-18 04:48:01.00337,369,568,70, +73,2014-01-15 02:49:33.385274,586,227,466, +71,2014-01-10 22:29:16.247102,889,2,762, +66,2014-01-14 21:29:06.442271,173,857,158, +71,2014-01-12 03:42:23.170696,143,132,395, +73,2014-01-19 10:37:45.732383,771,204,834, +73,2014-01-19 08:30:22.689366,327,784,530, +71,2014-01-14 02:31:57.208145,727,599,182, +66,2014-01-15 22:14:17.888953,650,843,760, +66,2014-01-15 07:39:38.898389,997,898,349, +86,2014-01-20 12:25:50.169564,710,224,279, +73,2014-01-20 20:33:58.767574,862,369,699, +73,2014-01-17 02:48:02.440193,387,17,513, +6,2014-01-13 07:34:49.455521,306,0,357, +66,2014-01-16 06:11:39.649628,386,775,796, +6,2014-01-11 07:43:09.052328,514,276,503, +38,2014-01-18 15:31:19.611317,464,928,980, +66,2014-01-15 00:03:28.361037,284,834,400, +71,2014-01-11 13:45:56.211554,987,176,617, +86,2014-01-13 02:18:59.499214,546,144,24, +73,2014-01-14 22:28:03.734071,81,450,808, +6,2014-01-16 07:11:04.812095,751,926,524, +38,2014-01-11 22:56:48.044366,339,569,439, +71,2014-01-21 05:06:51.812791,186,788,187, +66,2014-01-12 00:44:16.50944,654,448,94, +73,2014-01-11 17:51:44.21838,503,320,31, +86,2014-01-21 02:11:44.361652,389,479,143, +38,2014-01-12 11:10:37.767241,259,938,918, +66,2014-01-14 04:38:18.354579,616,189,226, +73,2014-01-13 15:30:25.490642,355,970,431, +6,2014-01-20 17:46:30.285985,432,141,780, +86,2014-01-11 03:26:19.358369,101,511,370, +6,2014-01-17 22:19:58.875916,802,650,355, +66,2014-01-20 20:15:46.533506,956,995,912, +66,2014-01-15 04:55:25.800639,68,520,624, +38,2014-01-19 06:02:22.046611,847,872,125, +73,2014-01-19 00:53:32.26589,67,446,288, +73,2014-01-13 07:25:48.490005,509,934,898, +73,2014-01-12 02:34:19.254756,800,593,398, +73,2014-01-13 17:07:50.154843,182,994,69, +6,2014-01-17 19:05:27.388813,756,546,173, +66,2014-01-11 09:00:09.42474,210,942,908, +38,2014-01-13 07:41:48.922417,475,881,352, +73,2014-01-13 15:53:29.829005,364,860,815, +66,2014-01-13 20:34:58.88026,274,483,694, +86,2014-01-18 17:53:28.572046,79,679,912, +6,2014-01-14 03:36:38.881334,948,459,966, +38,2014-01-11 06:06:18.491577,224,589,588, +71,2014-01-12 11:56:56.933082,932,158,399, +71,2014-01-14 21:22:35.093307,827,750,747, +66,2014-01-13 12:25:17.991209,671,176,683, +38,2014-01-16 14:25:00.667573,667,624,710, +73,2014-01-20 08:33:39.905402,907,94,529, +73,2014-01-14 15:22:06.035576,793,785,891, +73,2014-01-16 13:31:52.480363,307,506,779, +6,2014-01-11 03:17:56.414842,508,485,53, +66,2014-01-15 13:13:50.253955,196,456,764, +73,2014-01-16 09:43:36.842434,819,967,564, +6,2014-01-12 18:28:34.182082,582,193,536, +71,2014-01-18 21:52:08.608954,3,90,956, +38,2014-01-19 05:14:02.333076,118,254,942, +38,2014-01-12 06:15:04.468486,427,151,710, +73,2014-01-19 05:18:27.967322,39,521,884, +71,2014-01-15 21:34:01.208992,549,812,382, +71,2014-01-11 20:30:51.001993,361,545,874, +66,2014-01-13 04:13:53.767961,111,817,872, +71,2014-01-13 21:36:23.256022,879,361,271, +66,2014-01-20 01:24:23.267883,468,910,430, +6,2014-01-15 15:39:42.258385,738,813,197, +86,2014-01-15 04:10:42.510778,440,773,995, +6,2014-01-12 12:32:13.423145,713,745,197, +86,2014-01-12 04:45:09.647198,995,19,447, +6,2014-01-15 17:10:51.935517,662,450,553, +73,2014-01-15 00:14:02.345561,275,212,98, +66,2014-01-15 00:38:39.476204,860,102,969, +86,2014-01-18 17:45:50.816197,666,845,310, +6,2014-01-12 12:07:30.918026,470,671,707, +66,2014-01-18 08:15:18.357539,22,440,996, +73,2014-01-19 03:52:09.307773,88,551,1, +73,2014-01-14 04:04:27.851108,434,592,307, +86,2014-01-11 23:37:53.450845,621,194,611, +66,2014-01-11 10:17:27.298983,968,83,806, +73,2014-01-19 22:29:28.518681,561,855,969, +71,2014-01-11 02:11:33.356667,686,665,686, +6,2014-01-15 05:39:33.334978,931,346,733, +71,2014-01-15 06:01:20.999464,643,243,206, +86,2014-01-11 09:29:29.771507,689,628,176, +73,2014-01-19 22:53:23.588933,490,978,895, +73,2014-01-20 19:44:57.841898,886,881,812, +71,2014-01-13 07:58:03.954009,693,312,870, +66,2014-01-17 14:45:32.197887,423,592,766, +86,2014-01-18 18:59:00.174974,208,347,612, +86,2014-01-14 18:13:08.422496,948,15,825, +73,2014-01-15 14:04:00.165209,215,41,300, +86,2014-01-13 10:33:01.383966,700,337,897, +73,2014-01-15 18:43:59.424489,620,810,592, +6,2014-01-17 22:17:53.933591,847,469,12, +73,2014-01-16 12:09:24.639987,62,219,984, +71,2014-01-14 14:08:22.692372,596,375,460, +38,2014-01-12 07:57:36.191976,302,731,696, +71,2014-01-20 20:20:07.151184,12,274,422, +6,2014-01-16 06:40:36.115517,910,242,428, +6,2014-01-13 16:42:45.839174,896,497,129, +73,2014-01-15 07:30:59.086701,965,711,896, +71,2014-01-20 10:54:38.461497,748,743,845, +66,2014-01-17 21:21:25.315378,81,940,745, +66,2014-01-12 19:16:49.902898,722,635,323, +71,2014-01-11 17:02:09.379524,56,644,403, +71,2014-01-14 23:36:43.672916,804,635,311, +73,2014-01-21 03:08:59.21109,529,476,987, +66,2014-01-15 01:06:37.230632,693,955,400, +86,2014-01-16 03:14:37.12418,699,287,363, +86,2014-01-11 07:26:26.510073,628,906,934, +6,2014-01-13 17:36:05.749732,944,318,249, +73,2014-01-16 09:26:10.480847,68,473,438, +66,2014-01-15 17:05:59.845051,287,260,833, +86,2014-01-18 03:37:26.749196,358,925,641, +6,2014-01-16 22:55:40.252354,926,490,854, +38,2014-01-14 09:59:23.434403,800,66,307, +86,2014-01-17 17:22:24.591094,234,109,121, +38,2014-01-19 10:53:44.206364,862,686,561, +38,2014-01-21 04:44:55.632291,367,721,893, +86,2014-01-15 06:21:24.766069,12,81,15, +38,2014-01-12 23:06:52.628859,90,678,19, +6,2014-01-15 12:48:55.79792,1,354,189, +71,2014-01-17 20:54:26.150033,507,469,489, +86,2014-01-17 21:50:52.053348,842,940,790, +66,2014-01-12 05:06:49.73151,800,349,653, +73,2014-01-13 03:03:50.79044,962,897,234, +6,2014-01-11 05:59:14.746139,657,310,844, +71,2014-01-13 17:04:25.923485,235,969,585, +6,2014-01-12 17:23:57.941624,463,431,980, +86,2014-01-16 16:39:50.861654,903,762,943, +73,2014-01-16 13:47:11.762659,840,845,232, +66,2014-01-17 04:54:57.028325,999,502,760, +71,2014-01-15 21:34:29.323152,811,843,981, +38,2014-01-13 05:08:37.078038,865,823,433, +73,2014-01-19 04:11:46.931642,778,49,247, +38,2014-01-16 18:36:38.702675,820,846,831, +71,2014-01-17 08:45:20.750953,195,84,808, +73,2014-01-19 01:20:46.142731,315,886,559, +86,2014-01-20 23:43:15.933727,381,463,67, +38,2014-01-12 05:59:57.875134,189,935,849, +38,2014-01-19 12:47:12.652804,759,909,566, +86,2014-01-13 11:19:21.683459,976,467,378, +38,2014-01-17 19:26:08.35598,384,206,505, +6,2014-01-13 23:53:12.498274,805,616,640, +71,2014-01-20 18:56:48.432656,563,810,436, +6,2014-01-13 12:21:48.608754,369,502,816, +66,2014-01-17 13:52:35.932677,452,693,13, +66,2014-01-17 06:19:13.02375,450,37,28, +86,2014-01-11 17:15:32.815118,234,731,93, +73,2014-01-17 12:37:31.564969,675,253,853, +38,2014-01-11 06:40:37.789819,942,199,679, +71,2014-01-13 20:22:25.444396,114,379,95, +6,2014-01-11 19:26:27.362889,578,775,199, +6,2014-01-18 07:35:03.939852,180,335,114, +73,2014-01-20 22:13:17.497743,748,259,256, +6,2014-01-13 04:33:17.094398,25,441,295, +86,2014-01-20 14:38:54.730292,305,293,795, +73,2014-01-10 22:12:32.243881,261,499,659, +86,2014-01-16 01:37:43.017883,389,976,15, +66,2014-01-12 02:02:52.671916,858,668,346, +86,2014-01-16 18:52:23.105955,125,870,645, +86,2014-01-11 09:24:54.780543,246,546,433, +66,2014-01-18 10:57:49.700659,730,224,990, +71,2014-01-11 10:26:52.429107,189,852,275, +6,2014-01-13 18:33:31.85858,899,945,770, +71,2014-01-16 09:09:36.632301,161,722,466, +86,2014-01-17 09:03:31.132201,972,514,292, +71,2014-01-20 07:18:52.609953,608,620,853, +73,2014-01-14 04:30:22.775032,192,875,882, +21,2014-01-17 02:46:47.065928,69,318,247, +70,2014-01-11 07:18:50.485087,139,99,714, +21,2014-01-12 11:17:35.427836,942,356,819, +21,2014-01-19 18:06:08.749388,696,864,77, +21,2014-01-18 06:44:58.841486,500,531,695, +70,2014-01-15 15:10:47.92611,352,840,98, +34,2014-01-19 07:02:57.182044,273,901,776, +70,2014-01-20 23:06:47.450241,896,862,714, +21,2014-01-11 23:03:23.858789,98,430,163, +70,2014-01-15 07:22:10.205794,597,618,194, +21,2014-01-11 10:22:20.265358,44,671,816, +70,2014-01-18 15:40:55.424176,475,212,441, +34,2014-01-15 18:02:47.995611,267,684,785, +21,2014-01-14 10:44:45.709753,190,74,803, +21,2014-01-19 15:07:22.787064,493,824,593, +70,2014-01-12 19:37:51.935465,839,826,864, +34,2014-01-14 02:58:03.207916,719,894,597, +34,2014-01-11 13:40:39.881881,610,361,302, +70,2014-01-12 04:16:46.666175,375,839,190, +70,2014-01-14 05:10:35.451797,722,562,588, +21,2014-01-16 19:18:22.899765,189,371,487, +34,2014-01-13 10:19:39.338092,49,800,586, +21,2014-01-20 04:02:58.557752,219,638,84, +34,2014-01-17 08:43:17.680727,91,301,388, +34,2014-01-21 01:17:29.038751,459,61,527, +70,2014-01-20 18:29:50.987278,457,994,682, +70,2014-01-20 07:16:49.539307,844,333,891, +34,2014-01-16 04:27:05.671052,926,643,811, +34,2014-01-16 21:33:22.11948,159,330,644, +21,2014-01-19 08:35:42.14926,539,207,526, +70,2014-01-19 12:57:28.446084,467,336,507, +21,2014-01-12 18:20:09.185408,271,615,111, +34,2014-01-19 19:54:32.634767,681,619,925, +34,2014-01-21 04:15:03.874341,124,261,350, +70,2014-01-11 06:26:17.934796,136,753,918, +34,2014-01-16 20:39:31.476254,802,923,39, +34,2014-01-15 13:25:51.800451,152,811,504, +70,2014-01-19 17:29:15.11684,929,905,12, +34,2014-01-16 13:46:18.926495,488,878,659, +70,2014-01-16 16:29:15.659658,139,938,528, +34,2014-01-13 18:51:25.322633,143,90,108, +34,2014-01-17 04:08:39.191853,176,527,90, +21,2014-01-14 02:10:11.083834,637,696,699, +34,2014-01-18 16:54:13.318246,871,620,698, +34,2014-01-20 18:53:24.902026,963,516,181, +34,2014-01-12 11:17:33.870898,883,893,679, +70,2014-01-20 16:32:05.253709,245,469,555, +70,2014-01-13 15:51:28.109942,507,106,15, +21,2014-01-13 04:58:13.752779,712,851,312, +34,2014-01-11 14:48:51.919884,647,435,188, +34,2014-01-17 01:02:03.561739,910,878,801, +34,2014-01-19 04:16:36.652963,873,583,881, +21,2014-01-14 05:08:31.258395,76,541,861, +34,2014-01-15 23:05:02.119909,476,34,286, +70,2014-01-15 06:59:54.33369,433,807,827, +21,2014-01-14 00:26:00.297146,630,408,666, +70,2014-01-15 11:34:53.107188,755,895,441, +70,2014-01-14 08:16:43.872997,183,81,874, +34,2014-01-19 08:53:05.968618,920,422,384, +34,2014-01-11 03:08:15.226668,808,335,599, +34,2014-01-12 10:52:26.022676,361,933,495, +70,2014-01-17 15:50:34.414702,764,735,593, +21,2014-01-13 01:28:24.412075,881,287,959, +34,2014-01-11 00:46:58.657444,30,927,80, +34,2014-01-17 14:05:38.289043,774,899,483, +21,2014-01-13 11:54:42.346872,652,798,26, +34,2014-01-17 01:26:30.133697,307,221,689, +21,2014-01-11 21:31:30.089912,139,424,311, +34,2014-01-11 23:23:57.463711,702,442,195, +21,2014-01-12 09:12:49.060192,446,225,604, +21,2014-01-17 18:00:45.749571,477,879,20, +34,2014-01-14 22:15:22.786345,291,65,889, +70,2014-01-18 17:21:28.252045,502,212,306, +21,2014-01-21 00:10:56.833405,527,56,218, +34,2014-01-12 09:09:36.10459,244,917,193, +34,2014-01-18 06:14:53.154071,668,168,435, +70,2014-01-12 05:28:30.704303,752,920,748, +34,2014-01-11 19:41:41.358299,382,12,207, +70,2014-01-21 02:06:21.264011,313,351,688, +21,2014-01-14 14:26:44.457501,756,198,921, +34,2014-01-12 14:30:33.278603,178,350,122, +34,2014-01-16 21:08:24.82617,476,226,4, +70,2014-01-12 12:43:21.110464,820,479,615, +34,2014-01-15 23:39:04.536998,229,656,711, +70,2014-01-11 14:13:26.946079,864,364,793, +70,2014-01-16 23:43:15.444153,313,520,382, +34,2014-01-19 04:05:04.834144,263,56,474, +34,2014-01-16 05:48:20.053267,302,577,839, +70,2014-01-20 11:59:59.31715,550,434,543, +34,2014-01-17 06:58:10.802761,411,181,645, +70,2014-01-16 12:56:35.279934,909,352,943, +21,2014-01-11 16:52:25.339826,445,675,222, +21,2014-01-13 16:48:45.217882,953,983,941, +70,2014-01-18 18:24:59.692009,320,905,605, +70,2014-01-11 21:39:23.99727,527,4,510, +34,2014-01-20 10:54:23.506925,685,126,661, +70,2014-01-11 00:19:42.038881,324,96,262, +70,2014-01-18 03:05:54.130967,825,383,78, +34,2014-01-11 02:25:53.596837,870,88,7, +34,2014-01-12 03:43:39.502593,820,688,707, +70,2014-01-19 16:18:43.191158,438,196,716, +34,2014-01-18 00:26:39.346408,383,553,909, +21,2014-01-16 05:59:02.288937,393,86,198, +34,2014-01-17 03:40:11.443623,875,603,529, +21,2014-01-17 18:37:36.179813,799,619,587, +34,2014-01-17 19:08:38.393527,818,207,493, +21,2014-01-14 03:55:04.597693,812,253,365, +21,2014-01-19 04:06:06.884535,879,968,273, +70,2014-01-18 18:50:19.751826,36,787,238, +34,2014-01-14 00:01:25.862124,925,983,338, +34,2014-01-12 12:32:51.342036,231,602,272, +70,2014-01-20 13:20:53.030429,181,620,300, +70,2014-01-20 01:09:50.688294,631,957,824, +21,2014-01-14 05:16:12.4525,760,203,872, +21,2014-01-15 06:59:57.567427,987,543,421, +34,2014-01-20 19:23:17.634373,756,499,416, +34,2014-01-20 08:59:27.896654,788,322,170, +34,2014-01-13 05:05:02.401991,105,172,717, +34,2014-01-15 19:11:37.68764,465,328,91, +70,2014-01-19 14:59:27.213803,605,90,338, +21,2014-01-19 16:03:13.204752,471,557,903, +21,2014-01-11 02:08:12.967574,973,864,27, +70,2014-01-20 11:51:52.554049,674,515,177, +70,2014-01-12 02:51:58.422635,902,555,774, +70,2014-01-19 00:33:12.659583,538,882,474, +70,2014-01-11 03:31:16.551318,531,827,931, +34,2014-01-11 07:46:21.929979,380,567,155, +21,2014-01-19 04:52:54.698465,372,9,260, +21,2014-01-18 10:37:10.682704,770,178,508, +34,2014-01-11 14:12:15.526816,828,965,157, +21,2014-01-20 12:36:34.201057,665,851,965, +70,2014-01-16 20:55:53.873862,995,776,292, +21,2014-01-18 18:38:54.873643,252,503,815, +34,2014-01-15 12:35:36.489994,322,951,533, +34,2014-01-12 18:36:05.317484,10,776,23, +21,2014-01-15 07:16:31.053455,725,444,254, +21,2014-01-12 01:44:14.883521,831,64,227, +21,2014-01-16 02:31:09.915597,924,116,517, +21,2014-01-13 05:22:37.937991,266,643,704, +34,2014-01-20 00:34:34.635347,192,256,754, +21,2014-01-19 06:32:35.777721,2,140,903, +70,2014-01-14 21:55:29.280027,806,989,292, +34,2014-01-19 07:55:27.666196,857,149,57, +21,2014-01-18 01:42:26.466015,450,537,372, +21,2014-01-18 07:11:41.732528,201,690,565, +34,2014-01-13 08:55:25.233623,976,923,845, +21,2014-01-17 15:05:44.100386,33,276,411, +70,2014-01-17 10:11:09.629181,229,527,118, +34,2014-01-15 18:00:27.635615,894,133,375, +21,2014-01-12 04:17:21.788026,441,663,942, +70,2014-01-15 19:10:36.843404,825,866,76, +34,2014-01-14 04:03:40.840785,533,976,524, +21,2014-01-12 10:25:34.7556,261,391,196, +70,2014-01-15 01:02:29.397453,663,374,987, +70,2014-01-15 10:55:39.263421,257,509,865, +21,2014-01-20 14:58:47.415183,16,143,619, +70,2014-01-15 08:33:45.948771,755,820,213, +70,2014-01-15 22:42:01.193399,349,260,326, +34,2014-01-18 13:51:42.113647,281,552,139, +21,2014-01-12 13:10:56.631475,183,272,296, +70,2014-01-16 16:54:16.720634,321,820,849, +70,2014-01-17 20:28:16.314704,140,137,239, +34,2014-01-18 14:06:50.505756,961,744,243, +34,2014-01-14 05:33:11.594277,863,502,854, +70,2014-01-12 03:03:52.804699,92,14,583, +21,2014-01-20 12:42:55.823241,918,91,955, +21,2014-01-18 16:49:42.647732,774,99,909, +21,2014-01-13 08:48:07.68822,803,822,20, +70,2014-01-15 09:14:05.738838,803,909,347, +34,2014-01-21 02:12:20.586143,328,372,15, +21,2014-01-12 03:22:42.323567,733,984,570, +70,2014-01-13 09:46:41.516558,157,394,358, +34,2014-01-14 18:07:49.86617,474,123,107, +21,2014-01-20 15:18:09.989763,712,766,269, +21,2014-01-20 15:29:07.982573,801,130,684, +34,2014-01-11 19:19:31.599117,117,554,802, +70,2014-01-12 18:13:35.223805,936,820,73, +70,2014-01-17 00:34:52.082959,482,760,300, +70,2014-01-18 09:30:41.228299,802,565,605, +21,2014-01-17 16:14:02.85942,996,901,985, +70,2014-01-18 08:52:13.870985,132,665,271, +34,2014-01-12 22:41:18.071703,683,694,338, +21,2014-01-21 00:17:43.700205,135,929,246, +70,2014-01-19 23:17:48.626584,173,732,452, +21,2014-01-17 03:43:47.469155,484,994,671, +70,2014-01-15 05:13:22.964045,590,793,6, +21,2014-01-19 08:16:36.041768,733,596,340, +70,2014-01-11 06:17:33.418346,656,289,660, +70,2014-01-20 07:55:24.157444,88,252,687, +34,2014-01-16 16:08:18.155415,489,756,214, +70,2014-01-12 23:28:30.049821,504,697,956, +21,2014-01-15 18:49:40.878078,509,529,904, +34,2014-01-13 06:36:34.47012,602,311,552, +34,2014-01-20 17:35:20.555577,54,679,441, +21,2014-01-19 04:22:52.472355,549,363,262, +70,2014-01-14 13:40:27.274818,260,651,38, +34,2014-01-20 00:18:16.379237,563,110,895, +34,2014-01-16 15:12:35.120507,529,133,311, +70,2014-01-17 02:28:34.963038,298,375,936, +34,2014-01-14 03:32:22.118075,167,591,252, +34,2014-01-16 11:24:55.70665,186,633,251, +70,2014-01-18 09:51:17.287024,251,334,520, +21,2014-01-16 17:19:03.635053,830,614,356, +34,2014-01-20 09:32:45.57282,597,239,445, +70,2014-01-17 19:09:27.276786,440,533,541, +21,2014-01-16 02:48:11.617626,608,335,476, +21,2014-01-10 22:52:17.171936,928,438,134, +34,2014-01-19 17:23:02.500592,867,545,925, +34,2014-01-11 21:23:03.701004,314,262,334, +21,2014-01-18 12:22:58.400654,862,43,570, +34,2014-01-16 03:37:05.36043,207,786,533, +21,2014-01-19 10:15:17.57199,689,248,486, +70,2014-01-20 15:04:16.472356,372,119,514, +70,2014-01-15 21:54:49.060635,424,554,926, +34,2014-01-18 03:33:06.198994,703,425,886, +70,2014-01-16 12:48:03.941931,273,486,514, +70,2014-01-20 07:08:12.02468,201,423,673, +21,2014-01-16 05:49:42.240761,290,690,909, +21,2014-01-16 23:05:37.360277,55,928,63, +70,2014-01-19 09:03:36.182543,681,892,797, +70,2014-01-11 15:58:00.396595,967,928,400, +21,2014-01-19 02:34:07.410098,751,248,669, +70,2014-01-13 21:53:17.060621,735,736,609, +21,2014-01-14 02:34:34.866715,900,30,223, +34,2014-01-18 14:09:27.966094,221,958,468, +34,2014-01-11 20:16:09.533396,18,412,678, +70,2014-01-17 20:15:02.141952,521,550,890, +21,2014-01-17 08:27:44.345331,210,21,598, +34,2014-01-17 15:28:44.653902,277,684,797, +34,2014-01-13 16:43:37.10499,939,962,676, +21,2014-01-20 16:00:06.463406,490,156,692, +34,2014-01-12 20:53:40.360552,184,728,600, +34,2014-01-10 20:34:54.392013,489,523,974, +70,2014-01-16 03:19:10.098459,716,60,32, +21,2014-01-12 00:26:25.933371,592,435,627, +21,2014-01-17 19:44:21.669218,394,338,776, +21,2014-01-11 00:07:21.716504,612,491,653, +34,2014-01-12 03:18:43.105727,841,272,426, +34,2014-01-16 07:07:24.169809,34,888,549, +34,2014-01-12 01:30:25.417507,682,226,670, +70,2014-01-19 19:41:41.506381,608,12,38, +21,2014-01-11 04:44:29.53024,318,221,25, +70,2014-01-20 15:45:42.989497,745,164,59, +21,2014-01-19 04:45:57.978737,236,798,346, +21,2014-01-16 06:39:18.591294,243,894,122, +21,2014-01-17 13:18:49.188491,223,452,266, +70,2014-01-14 11:34:01.920669,519,632,907, +21,2014-01-15 07:47:30.615974,493,312,606, +21,2014-01-12 13:08:31.429671,848,464,782, +21,2014-01-20 14:39:39.280946,200,4,392, +70,2014-01-13 10:51:06.798517,748,207,497, +21,2014-01-13 09:06:31.826266,599,537,835, +34,2014-01-18 11:13:46.691462,654,7,540, +70,2014-01-16 12:44:23.859557,31,438,476, +70,2014-01-16 15:41:06.692981,537,394,566, +21,2014-01-15 19:23:14.657556,301,938,449, +21,2014-01-17 13:00:33.392952,466,630,862, +70,2014-01-13 05:56:08.834932,705,795,958, +34,2014-01-11 21:50:59.002887,872,668,989, +21,2014-01-13 22:29:18.046854,929,26,440, +70,2014-01-16 02:39:45.940341,800,3,843, +21,2014-01-11 07:51:05.466294,547,367,48, +21,2014-01-15 23:22:58.407406,350,116,83, +21,2014-01-16 03:14:40.332354,713,311,331, +70,2014-01-16 15:10:15.565172,500,487,141, +21,2014-01-17 03:49:24.340778,964,785,809, +21,2014-01-12 16:59:02.001572,604,269,960, +34,2014-01-16 19:17:37.281676,873,715,138, +70,2014-01-18 11:08:07.446504,251,874,975, +34,2014-01-18 04:06:26.171801,742,889,82, +70,2014-01-18 00:48:02.699183,954,910,105, +34,2014-01-17 00:49:48.952885,957,352,283, +21,2014-01-18 12:50:55.702041,117,239,175, +70,2014-01-17 10:33:45.68868,747,136,795, +34,2014-01-14 23:35:46.932042,12,909,500, +34,2014-01-13 13:30:14.293334,725,320,412, +21,2014-01-13 17:52:34.877591,459,648,939, +34,2014-01-18 15:09:48.85271,225,96,606, +34,2014-01-18 01:17:44.909727,737,844,63, +21,2014-01-15 11:01:06.307261,225,848,133, +34,2014-01-17 23:49:28.134075,714,926,881, +21,2014-01-20 16:08:51.708244,591,321,982, +34,2014-01-18 00:07:38.133527,365,995,198, +49,2014-01-15 05:03:14.825538,219,297,369, +83,2014-01-15 22:53:15.567801,493,761,769, +39,2014-01-13 09:48:44.826508,824,342,658, +83,2014-01-20 04:26:29.483094,679,10,581, +49,2014-01-12 05:53:48.960753,282,49,475, +39,2014-01-15 19:44:53.661859,80,169,523, +39,2014-01-10 20:17:28.485981,548,443,543, +39,2014-01-15 08:23:07.007608,90,647,602, +49,2014-01-21 02:24:39.602201,844,668,351, +39,2014-01-11 08:08:33.952275,881,257,228, +49,2014-01-20 11:46:05.415015,617,302,770, +49,2014-01-15 23:39:19.934554,847,264,313, +39,2014-01-17 03:18:49.517447,271,332,714, +83,2014-01-16 09:35:29.756211,861,506,486, +83,2014-01-17 20:38:21.936545,720,662,618, +39,2014-01-12 16:36:26.799122,525,713,241, +49,2014-01-13 14:43:37.202716,99,514,258, +83,2014-01-14 18:44:48.108346,884,468,52, +39,2014-01-19 21:24:29.498306,718,181,836, +39,2014-01-19 19:33:26.15602,578,78,210, +49,2014-01-12 01:35:43.810386,1,479,881, +49,2014-01-16 01:58:15.187405,462,621,304, +83,2014-01-13 13:09:13.088061,21,71,931, +83,2014-01-14 19:05:58.10414,991,68,50, +39,2014-01-18 23:50:50.064996,124,207,696, +49,2014-01-10 22:19:01.940772,35,85,75, +83,2014-01-11 14:23:43.013867,197,945,518, +39,2014-01-13 04:51:56.372257,955,105,194, +39,2014-01-18 02:08:30.074847,464,307,568, +83,2014-01-11 00:32:34.72211,317,42,235, +39,2014-01-20 08:59:34.505784,436,894,336, +49,2014-01-12 01:11:44.900384,28,599,203, +83,2014-01-16 03:25:50.29033,494,124,893, +39,2014-01-12 12:48:19.332293,144,796,746, +49,2014-01-10 23:38:14.383478,423,481,495, +83,2014-01-17 13:19:39.251083,788,83,871, +49,2014-01-17 12:33:12.994152,333,389,209, +39,2014-01-10 23:55:42.869459,898,932,150, +39,2014-01-11 15:42:46.25911,169,914,187, +83,2014-01-17 08:57:52.596352,73,394,367, +49,2014-01-11 12:04:16.822153,420,778,336, +83,2014-01-10 21:28:51.674125,983,636,168, +49,2014-01-12 02:37:12.531326,728,461,523, +83,2014-01-17 19:23:06.3396,492,813,445, +83,2014-01-16 11:04:21.430336,923,188,595, +83,2014-01-19 03:15:34.467871,685,661,685, +83,2014-01-19 15:59:33.139142,144,314,284, +83,2014-01-19 05:47:58.633471,561,362,657, +83,2014-01-12 16:00:22.576217,113,954,646, +49,2014-01-18 07:24:02.637448,629,395,427, +49,2014-01-17 19:21:24.789491,803,192,766, +39,2014-01-13 21:36:06.386603,517,133,944, +83,2014-01-13 03:22:17.824853,516,533,756, +39,2014-01-20 12:30:37.877552,896,163,914, +83,2014-01-17 20:42:04.490743,108,45,221, +83,2014-01-10 21:13:07.889849,446,542,408, +49,2014-01-20 14:49:39.818324,56,232,990, +49,2014-01-18 15:05:47.504609,312,726,532, +49,2014-01-13 06:05:04.262106,5,303,76, +49,2014-01-17 10:58:09.89359,652,128,425, +83,2014-01-18 19:38:22.22714,500,848,524, +83,2014-01-12 09:04:38.767891,105,580,908, +49,2014-01-18 16:09:54.793974,585,940,659, +49,2014-01-13 17:04:12.51747,636,532,472, +39,2014-01-14 01:52:58.100602,838,230,716, +83,2014-01-18 19:48:09.177872,406,720,338, +83,2014-01-20 10:23:51.768553,468,140,911, +49,2014-01-20 18:26:11.094754,928,220,712, +39,2014-01-18 23:43:52.047331,38,259,322, +83,2014-01-10 20:06:38.027664,92,399,36, +83,2014-01-16 21:24:03.691526,807,341,955, +39,2014-01-19 15:48:08.869484,32,29,307, +83,2014-01-10 21:35:29.702208,845,367,380, +39,2014-01-18 04:01:16.222851,975,941,393, +83,2014-01-16 05:11:15.209504,902,814,896, +49,2014-01-16 12:39:51.132545,704,355,448, +39,2014-01-16 01:16:50.690723,567,401,147, +39,2014-01-14 15:10:48.348646,129,903,99, +83,2014-01-14 12:27:49.766016,105,27,486, +83,2014-01-17 21:17:13.26694,112,412,224, +49,2014-01-11 16:34:50.986094,13,229,729, +39,2014-01-11 01:49:14.555506,608,697,496, +39,2014-01-20 22:53:19.653543,530,450,877, +39,2014-01-13 23:57:08.811366,430,707,775, +83,2014-01-20 18:19:52.433058,836,715,784, +83,2014-01-17 13:35:24.144704,791,271,262, +39,2014-01-14 01:10:16.701215,860,320,933, +39,2014-01-20 03:09:32.251801,238,331,777, +83,2014-01-14 22:41:11.649315,953,941,116, +49,2014-01-16 11:15:20.96374,408,311,894, +49,2014-01-16 08:07:42.145391,763,745,250, +83,2014-01-12 12:19:33.876453,330,688,61, +49,2014-01-18 00:19:59.73163,882,35,972, +83,2014-01-13 18:17:36.939366,261,922,340, +39,2014-01-15 09:23:46.393923,924,826,450, +49,2014-01-10 20:12:57.832232,252,300,302, +83,2014-01-11 08:05:46.117236,975,388,476, +83,2014-01-14 13:47:38.162895,107,987,680, +49,2014-01-20 18:39:08.927405,78,16,585, +49,2014-01-19 11:49:38.164986,241,800,74, +39,2014-01-14 13:54:16.190559,607,545,934, +49,2014-01-16 10:03:12.618931,717,429,484, +49,2014-01-17 21:37:47.034472,75,133,264, +83,2014-01-14 15:29:45.892768,747,806,135, +83,2014-01-13 08:04:28.841782,107,404,20, +49,2014-01-12 20:49:02.243975,918,192,183, +83,2014-01-20 08:09:37.025731,846,633,585, +83,2014-01-18 13:21:19.532505,841,112,328, +39,2014-01-16 15:59:50.592621,32,475,287, +49,2014-01-13 14:37:26.791746,555,144,876, +83,2014-01-15 04:38:32.799445,532,443,445, +39,2014-01-17 12:34:41.579134,881,723,663, +39,2014-01-13 20:26:41.347671,302,396,759, +83,2014-01-14 21:31:52.452988,629,336,116, +39,2014-01-20 16:31:50.3905,636,844,583, +83,2014-01-13 08:46:33.780729,303,684,645, +83,2014-01-11 05:07:16.597693,856,515,957, +83,2014-01-13 11:42:07.091715,985,154,662, +39,2014-01-12 05:56:06.03253,302,674,961, +49,2014-01-15 07:48:28.247425,325,271,375, +49,2014-01-19 02:57:28.055454,70,45,883, +83,2014-01-17 18:03:48.177922,402,316,466, +39,2014-01-17 00:08:02.123878,901,327,362, +49,2014-01-15 21:17:27.787504,159,972,450, +39,2014-01-20 16:21:25.117706,101,578,247, +83,2014-01-11 03:31:48.518221,918,807,712, +83,2014-01-15 21:30:25.619736,973,248,792, +39,2014-01-21 04:27:11.234943,780,36,628, +83,2014-01-14 21:19:26.681116,411,1000,820, +49,2014-01-15 10:09:34.547142,544,652,613, +83,2014-01-19 10:16:49.399929,678,510,117, +49,2014-01-18 15:13:42.871675,496,60,900, +49,2014-01-21 00:12:47.166073,623,773,692, +39,2014-01-16 01:54:36.43482,840,998,872, +49,2014-01-12 00:43:28.764861,469,508,763, +39,2014-01-13 02:17:16.007855,830,376,724, +49,2014-01-18 02:43:38.678796,147,548,144, +83,2014-01-11 02:53:05.790593,23,356,669, +83,2014-01-20 19:38:35.54036,648,848,660, +49,2014-01-13 12:43:29.271835,984,318,223, +39,2014-01-13 21:30:32.582339,779,894,288, +49,2014-01-14 18:17:08.339805,265,100,173, +39,2014-01-20 05:18:10.85097,74,829,298, +39,2014-01-16 21:57:13.930009,635,789,694, +49,2014-01-18 19:49:00.793212,50,311,59, +49,2014-01-19 15:50:01.24147,435,484,181, +83,2014-01-19 10:43:47.711158,443,113,691, +39,2014-01-19 04:56:17.390904,3,10,191, +49,2014-01-11 21:32:08.333183,978,461,539, +39,2014-01-20 20:39:53.743689,285,107,998, +83,2014-01-13 06:44:45.63833,342,148,229, +39,2014-01-20 04:29:36.389057,529,485,915, +83,2014-01-17 08:43:41.922029,86,770,325, +49,2014-01-19 10:52:47.762627,4,616,397, +83,2014-01-14 19:47:04.176561,34,803,170, +83,2014-01-16 19:05:07.039734,53,218,562, +49,2014-01-19 18:24:36.280848,691,138,295, +83,2014-01-19 21:17:29.796298,384,214,856, +83,2014-01-16 17:32:18.274677,744,891,274, +49,2014-01-13 09:44:02.961964,100,717,135, +39,2014-01-14 01:27:04.343858,991,648,67, +83,2014-01-14 21:49:07.675026,165,662,287, +49,2014-01-21 04:57:45.833639,530,729,181, +49,2014-01-13 19:39:51.509931,841,43,738, +39,2014-01-20 03:43:44.109846,726,815,989, +83,2014-01-11 23:41:14.5985,753,952,961, +83,2014-01-16 01:57:07.518205,678,121,906, +49,2014-01-17 00:27:22.788642,47,562,786, +39,2014-01-12 06:34:20.389093,776,332,122, +83,2014-01-15 15:35:43.058567,697,365,366, +49,2014-01-19 17:10:52.060478,490,256,918, +49,2014-01-15 08:04:52.97185,106,744,378, +83,2014-01-19 13:52:51.398791,944,92,32, +49,2014-01-18 16:29:02.911448,59,538,464, +39,2014-01-11 00:02:06.901859,823,759,26, +49,2014-01-17 03:41:52.192003,393,307,845, +39,2014-01-17 02:19:04.152917,758,834,92, +49,2014-01-19 14:45:54.613018,361,855,196, +49,2014-01-15 02:38:09.582907,106,83,245, +83,2014-01-18 03:51:12.48652,390,91,441, +83,2014-01-19 05:25:48.357125,315,9,961, +83,2014-01-17 13:22:55.221656,90,631,464, +49,2014-01-17 02:20:48.875577,631,918,317, +49,2014-01-15 08:09:30.279154,297,111,828, +49,2014-01-15 18:15:42.984283,279,598,373, +39,2014-01-21 02:07:53.052139,565,597,651, +49,2014-01-10 21:14:37.318889,408,470,557, +83,2014-01-14 06:40:19.265131,929,476,151, +39,2014-01-19 17:25:22.848435,791,468,171, +49,2014-01-16 18:46:55.593566,862,65,596, +39,2014-01-16 20:24:22.227095,147,654,604, +83,2014-01-12 12:52:27.192294,977,107,284, +83,2014-01-20 20:36:03.268593,944,713,298, +39,2014-01-16 19:22:08.060734,471,72,222, +49,2014-01-15 12:32:18.702644,214,807,178, +49,2014-01-19 18:19:47.378439,644,758,644, +49,2014-01-17 23:03:22.659653,771,860,735, +49,2014-01-20 18:29:26.22085,38,87,108, +39,2014-01-15 12:47:10.1675,239,274,80, +49,2014-01-19 09:37:43.048746,80,299,400, +49,2014-01-15 04:05:09.279416,545,660,359, +39,2014-01-13 23:58:02.227977,186,82,487, +83,2014-01-13 11:42:36.020596,492,111,501, +83,2014-01-13 11:58:00.678207,486,444,913, +83,2014-01-11 10:27:05.139844,672,402,640, +49,2014-01-13 15:44:42.922875,929,573,369, +49,2014-01-19 19:39:52.87021,498,662,665, +39,2014-01-17 16:46:09.292761,592,766,604, +83,2014-01-12 00:30:37.535893,6,567,694, +39,2014-01-13 16:18:02.453536,254,216,452, +49,2014-01-14 14:37:21.779281,376,300,513, +39,2014-01-20 09:56:25.893018,229,138,801, +49,2014-01-20 09:40:57.675193,769,17,455, +39,2014-01-20 20:58:10.654858,202,689,102, +39,2014-01-14 12:05:56.172171,323,961,614, +83,2014-01-14 21:56:40.659477,707,549,173, +83,2014-01-20 17:06:03.706996,887,30,845, +83,2014-01-14 13:20:33.491059,890,983,128, +49,2014-01-18 08:36:59.924608,565,972,544, +83,2014-01-19 04:31:26.55585,419,762,107, +39,2014-01-20 12:07:29.085045,603,958,670, +83,2014-01-13 23:01:22.151703,712,765,559, +39,2014-01-20 21:23:53.748145,459,807,687, +39,2014-01-20 02:43:32.353637,473,327,61, +83,2014-01-19 22:23:30.212437,626,702,574, +49,2014-01-15 03:56:12.450789,586,566,160, +83,2014-01-18 15:03:19.732495,956,144,941, +49,2014-01-16 15:26:52.872091,997,872,442, +39,2014-01-14 16:25:38.671639,706,790,763, +83,2014-01-12 21:50:29.899995,405,881,803, +83,2014-01-14 19:04:35.921255,426,571,1000, +83,2014-01-19 00:30:47.951473,824,515,196, +49,2014-01-16 01:48:32.127972,62,970,952, +39,2014-01-17 10:47:11.941851,328,311,93, +49,2014-01-11 06:28:48.62968,97,679,795, +83,2014-01-16 16:15:37.267816,279,39,129, +49,2014-01-20 06:31:54.864726,466,569,315, +83,2014-01-20 06:08:41.500309,386,623,698, +49,2014-01-13 03:01:46.560996,113,582,957, +39,2014-01-11 01:02:32.401038,849,773,972, +39,2014-01-12 16:26:43.953846,441,822,919, +49,2014-01-16 21:39:08.340277,773,329,628, +49,2014-01-20 14:58:58.294055,748,560,989, +39,2014-01-11 20:07:41.629039,591,980,955, +49,2014-01-16 12:37:18.995553,96,574,120, +39,2014-01-13 21:04:54.466645,163,495,81, +39,2014-01-15 22:04:22.288516,66,73,654, +49,2014-01-15 23:43:22.702549,108,675,355, +49,2014-01-17 14:25:27.957705,710,149,838, +83,2014-01-13 00:41:22.213124,936,891,588, +49,2014-01-13 22:14:49.2584,583,221,686, +83,2014-01-16 20:32:57.04275,57,529,839, +83,2014-01-16 03:42:44.364827,465,764,328, +39,2014-01-13 13:38:43.006964,509,162,173, +83,2014-01-15 17:16:29.396806,149,579,532, +49,2014-01-14 20:06:14.577265,904,984,460, +39,2014-01-17 21:34:55.457752,876,827,198, +39,2014-01-13 02:19:49.129301,221,298,823, +49,2014-01-20 15:33:07.449775,265,836,781, +83,2014-01-11 08:00:34.129808,493,322,502, +39,2014-01-15 04:10:19.029295,568,333,970, +39,2014-01-14 04:37:43.37103,331,891,200, +83,2014-01-19 12:31:22.081282,259,173,209, +83,2014-01-20 09:58:51.157267,60,899,969, +49,2014-01-20 19:24:55.312881,835,624,162, +83,2014-01-19 23:00:10.710962,943,476,911, +39,2014-01-15 20:14:28.425501,645,420,999, +49,2014-01-19 19:56:50.178026,526,195,24, +49,2014-01-18 23:08:52.211272,257,587,930, +39,2014-01-18 03:16:14.986497,818,978,311, +83,2014-01-20 00:59:22.579064,310,156,76, +49,2014-01-20 19:35:36.165118,574,214,241, +83,2014-01-13 18:55:23.326774,335,376,906, +83,2014-01-19 09:58:20.873119,160,274,391, +39,2014-01-11 09:43:17.794157,944,556,660, +49,2014-01-19 11:32:42.322327,991,109,655, +49,2014-01-12 01:03:15.339764,752,901,19, +39,2014-01-16 11:47:40.082673,144,225,843, +83,2014-01-14 05:16:05.025296,389,336,310, +39,2014-01-18 19:28:43.297889,422,465,322, +39,2014-01-18 16:29:02.295797,745,668,213, +83,2014-01-17 07:30:54.283696,319,210,725, +39,2014-01-14 10:01:40.340638,3,393,997, +39,2014-01-13 14:11:46.660624,843,520,174, +83,2014-01-20 01:09:37.290659,230,522,806, +83,2014-01-19 07:18:09.737444,877,886,649, +39,2014-01-17 14:18:01.238308,358,217,141, +39,2014-01-16 16:44:32.74883,338,521,476, +49,2014-01-11 03:37:58.866745,213,217,676, +49,2014-01-16 23:51:08.688082,9,644,736, +49,2014-01-17 04:45:06.878639,286,413,96, +83,2014-01-15 11:48:17.89604,932,197,305, +49,2014-01-20 08:28:52.059113,432,694,935, +49,2014-01-15 11:16:28.959921,618,12,131, +83,2014-01-14 15:47:09.053726,326,454,557, +39,2014-01-19 21:53:47.371994,7,252,307, +83,2014-01-14 04:16:39.670883,633,629,893, +49,2014-01-19 16:01:37.479227,101,889,808, +83,2014-01-18 11:50:37.55002,258,743,183, +39,2014-01-11 21:25:31.882575,535,841,540, +83,2014-01-16 13:17:52.465725,371,946,824, +39,2014-01-17 06:50:00.129083,131,215,658, +39,2014-01-11 11:01:08.047693,339,937,572, +39,2014-01-19 12:13:15.792499,890,838,40, +49,2014-01-15 10:48:21.002621,557,853,498, +39,2014-01-12 00:44:25.84227,980,413,109, +39,2014-01-17 17:45:58.115245,183,112,903, +83,2014-01-16 15:51:36.342385,114,922,335, +39,2014-01-17 16:32:05.924943,947,332,920, +83,2014-01-21 03:02:03.140541,456,980,192, +83,2014-01-14 05:20:19.640273,251,176,809, +83,2014-01-15 03:01:08.221158,634,375,829, +83,2014-01-17 04:32:57.424237,741,836,643, +49,2014-01-17 19:21:59.98133,864,842,914, +49,2014-01-17 21:12:54.881782,940,102,198, +43,2014-01-15 23:42:34.715316,889,739,314, +56,2014-01-15 20:40:09.718774,331,679,13, +43,2014-01-14 05:30:56.120091,333,58,292, +13,2014-01-11 10:27:07.464146,155,857,480, +56,2014-01-16 04:18:08.585939,995,543,913, +13,2014-01-20 09:22:04.808173,793,117,161, +56,2014-01-17 19:12:14.342784,650,268,51, +43,2014-01-20 20:06:26.481978,765,883,303, +13,2014-01-19 11:50:56.867285,767,736,265, +56,2014-01-12 00:28:43.302706,865,853,799, +13,2014-01-14 05:53:35.535704,919,587,508, +43,2014-01-18 03:44:44.239699,566,154,658, +13,2014-01-15 08:45:22.97359,9,334,396, +56,2014-01-12 15:55:13.014931,440,906,782, +56,2014-01-15 09:35:21.789719,566,168,119, +56,2014-01-16 10:10:54.856165,197,254,148, +13,2014-01-18 09:13:05.480655,331,524,400, +56,2014-01-11 10:25:21.919221,231,708,119, +43,2014-01-17 01:12:02.904276,962,267,738, +43,2014-01-16 15:26:21.273573,553,948,916, +56,2014-01-16 01:13:42.921843,492,74,424, +13,2014-01-18 05:56:28.746546,748,971,31, +13,2014-01-13 03:12:19.388818,170,250,760, +13,2014-01-11 11:05:19.264227,461,846,185, +13,2014-01-14 16:28:34.671489,569,760,821, +56,2014-01-13 00:14:22.529359,503,527,144, +13,2014-01-14 20:25:38.90492,620,945,538, +56,2014-01-18 23:29:42.892646,914,892,589, +13,2014-01-19 08:47:19.953596,866,449,29, +56,2014-01-11 09:47:38.88625,733,957,277, +43,2014-01-15 14:42:37.774848,669,343,209, +56,2014-01-14 02:29:54.668911,490,410,817, +56,2014-01-16 10:27:48.605024,504,972,720, +13,2014-01-19 00:13:33.894939,41,642,693, +13,2014-01-14 16:57:02.133057,290,408,521, +13,2014-01-11 08:45:57.190963,616,64,535, +56,2014-01-18 03:35:38.70353,830,181,597, +56,2014-01-11 06:09:16.475843,151,26,326, +13,2014-01-10 22:52:23.673359,744,840,294, +13,2014-01-16 09:26:35.570817,90,889,776, +13,2014-01-12 10:37:59.778548,477,687,973, +56,2014-01-14 08:45:59.209064,864,566,232, +56,2014-01-13 07:11:19.810515,95,15,80, +13,2014-01-16 23:23:22.752557,987,188,272, +13,2014-01-16 04:41:12.224414,283,460,662, +56,2014-01-17 20:46:41.600652,241,901,503, +56,2014-01-12 03:34:17.608722,641,977,675, +13,2014-01-13 07:54:17.705069,912,196,345, +56,2014-01-18 11:12:03.519874,449,505,272, +13,2014-01-18 08:46:20.512998,427,330,454, +43,2014-01-19 03:20:38.978642,913,798,526, +56,2014-01-13 06:25:46.441716,348,324,463, +13,2014-01-15 08:42:49.259544,173,860,894, +13,2014-01-11 00:32:58.367459,884,267,314, +43,2014-01-13 21:31:05.705944,679,82,597, +43,2014-01-19 05:11:23.931451,902,792,619, +43,2014-01-13 04:47:20.896819,327,614,265, +13,2014-01-17 21:56:44.610864,5,121,470, +56,2014-01-16 22:41:06.824097,628,923,336, +13,2014-01-11 07:34:40.850833,122,573,243, +13,2014-01-18 11:44:23.497114,257,927,842, +13,2014-01-11 07:23:44.598945,601,547,994, +56,2014-01-14 14:04:35.519746,366,434,589, +13,2014-01-13 16:12:12.102557,214,482,644, +13,2014-01-19 11:37:18.494302,910,769,560, +13,2014-01-18 11:01:37.653222,509,75,877, +13,2014-01-14 04:58:09.29352,122,998,67, +13,2014-01-16 09:12:57.197833,363,97,343, +43,2014-01-18 21:10:54.129065,904,80,13, +13,2014-01-14 07:50:32.966879,687,96,290, +13,2014-01-11 12:39:32.768649,508,617,455, +56,2014-01-20 11:48:53.908032,264,884,552, +43,2014-01-17 20:36:32.176361,320,730,480, +56,2014-01-13 23:50:52.579583,127,147,603, +43,2014-01-16 05:12:16.660589,633,524,538, +13,2014-01-12 19:17:44.400775,312,277,497, +43,2014-01-21 00:37:34.180236,753,700,418, +43,2014-01-17 12:46:34.26931,820,723,555, +43,2014-01-15 07:12:02.105843,835,152,255, +13,2014-01-18 05:49:37.700109,374,467,477, +13,2014-01-14 15:32:54.782727,251,141,998, +56,2014-01-13 04:32:41.084904,430,793,895, +13,2014-01-20 16:15:24.141826,3,296,449, +13,2014-01-19 04:15:44.042271,638,982,413, +13,2014-01-13 09:05:39.452364,331,496,300, +43,2014-01-13 07:46:29.847769,553,400,805, +43,2014-01-17 03:27:07.973722,464,634,300, +43,2014-01-15 17:53:00.349601,742,830,292, +13,2014-01-20 09:43:14.459052,459,63,68, +56,2014-01-12 20:08:14.798239,727,915,235, +56,2014-01-16 05:27:41.200434,792,826,16, +43,2014-01-17 15:27:37.956165,42,342,973, +56,2014-01-13 07:31:59.397183,96,308,267, +13,2014-01-19 23:32:16.72018,232,43,915, +13,2014-01-20 11:39:50.058722,669,572,475, +43,2014-01-11 13:09:17.891485,113,245,393, +56,2014-01-17 04:33:54.373402,798,637,431, +56,2014-01-13 10:37:59.35266,837,374,513, +43,2014-01-17 02:22:15.089319,345,990,137, +43,2014-01-14 19:44:48.502885,10,293,90, +56,2014-01-16 22:28:32.31954,33,286,535, +13,2014-01-17 19:01:47.858387,421,225,330, +43,2014-01-14 01:33:42.410918,313,831,342, +56,2014-01-13 13:05:04.495901,251,550,430, +43,2014-01-20 22:52:40.437971,841,452,969, +13,2014-01-19 10:45:59.071506,683,345,32, +43,2014-01-15 12:22:48.896675,76,167,432, +56,2014-01-20 17:30:14.618206,853,375,195, +56,2014-01-15 17:32:33.340817,29,345,112, +13,2014-01-19 23:34:51.002938,602,380,24, +56,2014-01-17 17:19:52.318317,65,962,487, +13,2014-01-19 13:05:28.123544,426,140,835, +56,2014-01-11 22:07:32.087842,50,372,493, +13,2014-01-17 03:35:16.460143,154,404,961, +13,2014-01-17 11:21:12.166234,463,983,131, +56,2014-01-14 11:13:11.540205,627,461,593, +56,2014-01-19 15:21:46.307911,342,524,535, +56,2014-01-13 08:48:20.139956,368,189,225, +43,2014-01-19 09:06:11.889805,691,825,609, +13,2014-01-18 19:05:00.766964,150,241,290, +13,2014-01-15 08:56:34.938194,220,640,660, +13,2014-01-14 08:33:53.09024,810,337,525, +56,2014-01-15 04:32:38.723547,341,625,173, +43,2014-01-17 20:28:34.335796,469,546,498, +56,2014-01-13 02:06:09.810839,355,513,171, +43,2014-01-14 10:12:28.78227,144,301,869, +56,2014-01-18 13:37:52.227281,224,446,328, +43,2014-01-19 10:40:04.184241,756,374,244, +56,2014-01-17 00:50:28.13493,485,162,382, +13,2014-01-14 10:00:07.317019,25,411,782, +56,2014-01-13 00:24:52.687126,66,968,110, +43,2014-01-12 17:19:00.454889,906,266,629, +13,2014-01-10 23:01:55.175406,759,476,557, +13,2014-01-16 05:58:35.098043,787,916,325, +13,2014-01-15 10:24:04.95079,819,830,298, +56,2014-01-21 01:54:35.613377,881,67,900, +13,2014-01-14 10:44:34.169549,137,796,227, +56,2014-01-20 02:46:53.847883,107,278,459, +13,2014-01-20 13:24:50.231583,770,9,84, +56,2014-01-19 08:17:07.510785,388,385,584, +13,2014-01-18 20:21:44.850822,936,432,993, +13,2014-01-17 00:44:42.5499,383,243,363, +43,2014-01-17 15:22:35.634329,443,413,661, +43,2014-01-19 22:29:16.938664,842,837,560, +43,2014-01-12 22:19:59.010043,232,467,15, +56,2014-01-13 20:43:47.800563,764,422,612, +13,2014-01-13 03:42:28.478868,32,624,214, +43,2014-01-11 07:41:45.317954,646,631,876, +56,2014-01-16 09:32:07.940938,680,703,784, +43,2014-01-11 06:48:40.369093,887,378,742, +43,2014-01-19 06:46:46.085336,168,521,682, +13,2014-01-20 22:28:42.879131,623,503,239, +43,2014-01-14 19:22:33.459332,876,550,606, +43,2014-01-13 05:19:24.808883,17,368,696, +43,2014-01-17 12:57:17.214928,22,690,439, +13,2014-01-17 01:28:43.270171,501,857,521, +43,2014-01-16 19:31:53.591153,752,967,326, +43,2014-01-14 20:35:09.442628,234,469,971, +13,2014-01-15 06:08:47.45483,627,43,454, +56,2014-01-12 14:22:21.726502,44,854,946, +43,2014-01-18 10:35:16.759648,788,951,146, +13,2014-01-17 10:33:40.141956,328,290,146, +13,2014-01-14 11:41:22.18139,793,729,414, +13,2014-01-18 13:37:11.935054,673,271,765, +13,2014-01-12 10:32:15.240419,619,151,439, +56,2014-01-19 02:05:27.132179,733,331,821, +43,2014-01-18 09:31:47.548431,174,937,753, +13,2014-01-16 01:16:49.409968,477,336,107, +13,2014-01-17 22:52:20.980063,102,677,199, +56,2014-01-17 16:56:37.780015,558,262,668, +13,2014-01-14 03:33:56.920753,371,340,887, +56,2014-01-15 13:14:05.830884,680,785,881, +43,2014-01-13 11:41:20.329915,875,5,214, +56,2014-01-20 22:56:32.555501,398,102,212, +43,2014-01-14 05:43:22.769548,947,804,269, +43,2014-01-15 14:01:19.339957,830,632,476, +43,2014-01-13 13:40:20.356064,935,368,827, +13,2014-01-16 13:25:51.248834,216,6,182, +43,2014-01-16 01:43:04.657911,561,749,650, +13,2014-01-19 03:12:28.297001,523,396,776, +56,2014-01-17 00:14:31.617927,948,845,807, +56,2014-01-14 02:29:50.743248,465,846,813, +13,2014-01-18 19:41:11.176551,837,360,37, +43,2014-01-20 23:37:05.077259,682,82,850, +56,2014-01-16 11:49:15.552131,15,175,818, +13,2014-01-15 02:38:28.391479,328,239,372, +13,2014-01-16 19:05:48.347849,685,640,773, +56,2014-01-12 01:21:09.143703,55,42,743, +43,2014-01-19 03:13:37.834107,647,478,395, +43,2014-01-21 05:14:35.802679,77,626,22, +56,2014-01-13 19:43:30.870204,261,998,710, +13,2014-01-16 07:48:54.593755,269,925,726, +13,2014-01-17 09:48:15.944635,159,910,85, +13,2014-01-17 11:24:53.051595,534,688,200, +56,2014-01-13 15:26:06.528809,950,180,640, +56,2014-01-19 00:20:31.185054,858,549,32, +43,2014-01-15 07:30:20.183774,616,812,221, +13,2014-01-21 04:57:54.077241,692,295,790, +56,2014-01-13 19:37:20.595441,584,54,698, +43,2014-01-12 00:22:41.164256,107,881,573, +13,2014-01-17 15:54:31.857255,488,365,148, +56,2014-01-17 03:11:17.516194,460,305,130, +43,2014-01-16 17:36:46.995141,220,895,170, +43,2014-01-20 07:35:52.18717,249,486,185, +43,2014-01-16 20:07:50.071694,838,86,787, +13,2014-01-20 03:20:09.765107,812,436,156, +43,2014-01-14 15:37:11.527127,107,258,58, +13,2014-01-19 13:48:10.428176,215,450,713, +56,2014-01-15 10:46:01.013942,735,572,686, +13,2014-01-19 21:20:16.185457,908,927,181, +13,2014-01-17 11:00:38.725177,941,194,282, +13,2014-01-11 05:00:32.631869,710,66,269, +43,2014-01-12 17:50:06.928704,475,136,872, +13,2014-01-15 00:41:49.901728,127,842,250, +43,2014-01-10 22:37:37.709128,384,888,765, +13,2014-01-18 09:39:22.481255,573,57,941, +43,2014-01-19 07:20:18.293627,935,991,602, +43,2014-01-16 21:43:26.056977,787,972,98, +56,2014-01-19 15:00:31.624957,866,171,659, +43,2014-01-17 04:33:56.127734,858,306,73, +56,2014-01-16 20:58:01.859656,615,125,467, +13,2014-01-12 04:44:02.495162,434,690,984, +13,2014-01-12 06:22:50.721908,935,451,821, +43,2014-01-13 00:46:17.804711,46,382,786, +43,2014-01-18 20:08:55.546756,424,705,836, +43,2014-01-15 01:48:57.250718,798,219,824, +13,2014-01-21 05:06:48.989766,530,917,877, +43,2014-01-12 21:39:15.73053,205,665,467, +43,2014-01-15 00:46:51.328377,535,462,198, +56,2014-01-13 18:44:09.585206,386,384,280, +56,2014-01-14 02:01:56.894786,474,728,933, +13,2014-01-11 10:41:23.185632,579,362,29, +43,2014-01-20 01:55:27.101819,573,192,457, +13,2014-01-19 23:38:43.890346,768,80,718, +43,2014-01-20 22:17:15.373221,978,88,663, +56,2014-01-15 16:03:17.173514,459,566,111, +56,2014-01-18 20:58:53.655453,52,521,521, +56,2014-01-14 07:54:26.900348,108,756,781, +43,2014-01-13 23:51:27.60169,741,675,840, +13,2014-01-13 01:44:54.669395,582,162,483, +56,2014-01-12 23:14:43.085805,626,640,924, +56,2014-01-20 14:52:06.327285,650,472,787, +13,2014-01-13 10:45:27.301264,951,829,339, +13,2014-01-14 21:04:50.014929,250,404,745, +43,2014-01-14 09:33:56.229015,105,828,646, +13,2014-01-13 13:23:05.010392,754,102,154, +43,2014-01-12 00:44:12.496184,957,527,915, +43,2014-01-12 10:54:14.522641,261,437,385, +56,2014-01-19 15:06:31.067788,482,305,523, +56,2014-01-20 19:44:44.121142,253,924,577, +56,2014-01-18 19:28:10.650795,80,581,817, +56,2014-01-15 06:04:32.927444,159,844,404, +13,2014-01-11 18:28:46.616303,774,586,82, +43,2014-01-20 05:51:01.372703,782,873,424, +13,2014-01-17 10:50:50.732155,424,135,1, +13,2014-01-19 18:37:42.16306,810,346,360, +56,2014-01-14 01:39:58.623421,450,138,779, +56,2014-01-17 09:57:39.72234,216,986,506, +43,2014-01-11 10:16:57.893591,499,134,941, +56,2014-01-18 06:26:49.951799,331,363,940, +56,2014-01-20 08:41:49.307546,633,170,242, +13,2014-01-14 16:18:54.788796,850,219,310, +56,2014-01-18 21:08:13.13785,677,80,912, +56,2014-01-19 04:37:16.409365,441,183,848, +43,2014-01-13 09:57:38.679141,366,131,425, +43,2014-01-18 13:25:28.511072,953,923,295, +13,2014-01-13 14:40:33.583297,321,877,974, +56,2014-01-11 00:56:32.334594,845,264,32, +56,2014-01-11 15:19:55.41142,661,123,698, +56,2014-01-16 18:32:01.184986,350,941,429, +56,2014-01-13 06:41:27.003989,832,228,147, +56,2014-01-13 18:34:38.497645,203,378,967, +56,2014-01-16 03:24:07.512272,25,452,429, +43,2014-01-15 21:26:54.305252,943,605,364, +13,2014-01-17 19:39:28.512574,418,181,150, +56,2014-01-19 16:58:03.741705,876,555,581, +43,2014-01-18 14:49:59.315644,746,528,835, +56,2014-01-19 00:23:41.008758,144,435,832, +56,2014-01-10 21:52:18.264347,28,89,884, +13,2014-01-16 23:56:30.383431,427,716,104, +13,2014-01-18 14:08:25.129899,997,491,775, +43,2014-01-18 21:20:28.915141,647,536,65, +56,2014-01-11 00:01:03.311294,131,544,206, +13,2014-01-19 12:37:11.746203,373,202,132, +43,2014-01-17 21:11:30.287844,409,518,423, +56,2014-01-17 14:51:54.043449,759,932,626, +13,2014-01-18 01:14:53.909264,634,971,553, +13,2014-01-21 02:51:28.911684,137,514,434, +56,2014-01-13 18:49:33.765789,247,10,783, +56,2014-01-18 15:31:51.802853,601,329,185, +13,2014-01-18 03:18:18.863482,101,319,154, +56,2014-01-12 21:31:23.073753,584,80,897, +13,2014-01-12 01:50:46.591649,41,917,515, +13,2014-01-15 18:26:32.001332,128,486,22, +56,2014-01-10 20:08:39.483118,200,392,434, +13,2014-01-14 15:48:25.270791,721,740,843, +43,2014-01-13 01:52:00.512404,266,223,250, +13,2014-01-13 14:49:13.066414,823,452,501, +43,2014-01-14 20:44:57.605384,899,574,777, +13,2014-01-13 21:11:55.924244,803,983,744, +56,2014-01-19 13:21:14.251819,340,313,971, +13,2014-01-17 07:26:24.609373,848,547,454, +43,2014-01-16 19:46:34.421888,786,772,86, +56,2014-01-14 10:45:21.764091,638,189,505, +43,2014-01-11 22:53:18.914624,132,444,933, +56,2014-01-13 09:26:02.934461,370,505,711, +13,2014-01-12 21:43:25.505797,840,155,887, +43,2014-01-19 17:43:18.230686,325,945,193, +13,2014-01-11 03:49:43.94322,579,250,218, +56,2014-01-12 23:35:43.770562,424,58,841, +56,2014-01-15 11:39:48.614118,43,17,861, +43,2014-01-18 21:58:09.073119,211,879,518, +43,2014-01-21 00:56:12.685703,679,144,545, +47,2014-01-15 15:40:51.925411,967,0,999, +2,2014-01-17 04:35:20.819322,887,329,306, +32,2014-01-17 16:07:42.973966,337,81,97, +2,2014-01-12 00:32:45.96928,129,401,227, +32,2014-01-13 23:50:14.728585,911,768,411, +2,2014-01-17 12:59:11.88565,956,384,921, +2,2014-01-14 23:22:19.735069,193,123,13, +32,2014-01-11 09:22:06.531439,173,935,22, +32,2014-01-14 10:17:30.749132,105,903,643, +47,2014-01-17 00:53:42.808822,31,651,135, +2,2014-01-12 15:12:53.123507,450,479,302, +2,2014-01-19 08:44:02.750883,332,304,86, +47,2014-01-17 01:02:22.292358,851,810,83, +47,2014-01-16 11:01:18.394298,82,530,802, +32,2014-01-11 04:36:03.263289,773,820,31, +2,2014-01-19 19:51:35.358772,618,1000,888, +32,2014-01-20 11:46:16.000101,416,325,923, +32,2014-01-14 05:47:59.187531,581,213,16, +47,2014-01-18 03:12:49.610592,258,693,389, +2,2014-01-16 13:12:40.609473,537,834,534, +32,2014-01-20 05:34:33.609419,762,531,800, +32,2014-01-11 07:58:11.375101,985,792,641, +47,2014-01-17 16:05:59.524517,352,448,814, +32,2014-01-12 09:00:36.543881,838,90,185, +2,2014-01-13 09:41:36.880898,443,106,762, +2,2014-01-16 03:49:17.755203,416,988,414, +32,2014-01-12 16:50:20.4871,625,356,452, +2,2014-01-15 13:17:20.65146,498,337,604, +32,2014-01-20 19:29:06.369321,772,837,916, +32,2014-01-20 18:48:29.560219,956,589,440, +32,2014-01-15 08:13:33.337582,949,945,749, +32,2014-01-15 05:09:58.295152,568,394,766, +2,2014-01-16 17:23:50.379542,6,637,127, +32,2014-01-11 18:21:16.311548,148,920,388, +2,2014-01-16 09:42:44.264432,520,908,611, +2,2014-01-19 21:14:05.108126,569,97,496, +2,2014-01-18 11:20:28.197197,166,431,693, +2,2014-01-20 13:05:03.999501,503,755,218, +32,2014-01-20 10:36:11.639984,875,847,444, +47,2014-01-11 15:37:58.946329,510,814,961, +2,2014-01-16 07:58:46.808742,355,889,808, +47,2014-01-11 19:49:04.763492,207,764,917, +2,2014-01-20 04:22:01.697214,859,751,307, +47,2014-01-12 03:01:09.1011,551,149,874, +32,2014-01-17 10:50:23.15779,49,328,875, +2,2014-01-20 12:58:04.960921,318,525,932, +47,2014-01-21 02:52:44.459873,297,666,618, +32,2014-01-16 16:36:39.15789,812,115,358, +32,2014-01-13 12:46:04.148452,748,696,597, +47,2014-01-18 00:05:34.070883,647,567,609, +32,2014-01-11 23:49:19.767782,391,114,463, +2,2014-01-12 12:20:37.75829,494,756,703, +2,2014-01-18 12:03:45.445984,505,349,792, +47,2014-01-18 19:55:19.292299,123,980,647, +32,2014-01-14 01:21:14.302171,221,107,457, +2,2014-01-21 01:45:22.326882,453,283,11, +32,2014-01-13 17:44:37.047503,681,105,613, +2,2014-01-15 22:11:34.789691,320,714,150, +2,2014-01-15 09:02:42.978761,327,607,158, +32,2014-01-13 07:13:43.416824,757,394,961, +32,2014-01-15 11:00:04.349909,458,218,890, +32,2014-01-19 21:16:16.316344,136,441,696, +2,2014-01-17 16:23:41.711976,988,45,642, +2,2014-01-10 22:23:54.72987,284,445,642, +47,2014-01-20 19:37:32.627891,771,691,497, +32,2014-01-12 20:06:25.976408,323,496,63, +32,2014-01-19 23:37:59.837996,946,745,544, +47,2014-01-18 00:58:00.825089,714,321,430, +2,2014-01-12 03:11:29.976328,173,631,822, +47,2014-01-19 04:14:11.47798,225,671,23, +47,2014-01-18 20:35:59.771418,337,57,926, +2,2014-01-17 15:10:16.785071,31,109,248, +2,2014-01-20 04:03:16.241472,279,950,565, +2,2014-01-17 18:58:01.46905,909,96,66, +2,2014-01-18 22:11:25.886171,371,184,444, +32,2014-01-16 08:53:39.39968,817,910,548, +2,2014-01-17 01:56:06.42997,210,710,54, +47,2014-01-18 19:04:10.346044,619,469,3, +32,2014-01-11 19:30:18.557571,399,328,412, +32,2014-01-19 18:42:10.578422,381,89,252, +2,2014-01-15 13:09:44.416927,369,770,695, +47,2014-01-12 23:19:38.325353,185,628,458, +2,2014-01-11 01:02:48.336711,36,131,46, +32,2014-01-12 19:13:29.862911,154,700,206, +2,2014-01-20 23:14:57.617652,663,861,602, +2,2014-01-14 06:24:02.639302,273,154,799, +32,2014-01-12 14:58:52.190212,730,157,168, +2,2014-01-13 10:59:34.665154,676,444,234, +2,2014-01-19 08:35:37.428992,344,499,92, +32,2014-01-17 04:01:35.168974,3,290,331, +47,2014-01-15 22:13:18.082398,479,513,34, +32,2014-01-13 13:35:41.778901,137,149,123, +47,2014-01-15 19:17:51.485317,735,968,736, +47,2014-01-12 08:36:59.794374,458,427,403, +47,2014-01-13 15:59:36.508771,857,573,992, +47,2014-01-15 08:55:24.113207,978,263,258, +2,2014-01-14 08:43:25.771201,380,268,412, +2,2014-01-12 09:37:36.347186,641,807,747, +47,2014-01-12 03:53:24.938296,656,555,523, +2,2014-01-15 15:54:55.74753,97,620,493, +47,2014-01-20 17:51:47.825167,804,122,656, +32,2014-01-20 04:29:24.709714,578,795,180, +32,2014-01-12 01:05:12.5326,910,518,942, +47,2014-01-19 15:55:04.067058,949,976,115, +2,2014-01-16 17:27:26.178763,243,687,929, +2,2014-01-20 03:16:38.418772,498,703,123, +32,2014-01-14 18:48:43.466739,721,526,320, +47,2014-01-12 13:23:32.608733,840,259,710, +47,2014-01-17 16:20:48.764816,37,691,367, +47,2014-01-15 18:19:02.024309,29,964,917, +2,2014-01-11 02:05:43.187574,393,107,968, +47,2014-01-11 23:30:33.18216,827,998,643, +47,2014-01-17 21:38:40.350081,475,772,299, +32,2014-01-11 07:08:31.524285,542,433,441, +47,2014-01-13 22:44:03.045072,272,290,811, +32,2014-01-17 14:53:37.967733,68,542,290, +2,2014-01-14 17:32:34.163587,491,651,131, +2,2014-01-15 17:42:55.235284,618,411,136, +32,2014-01-20 05:53:12.633306,709,540,883, +32,2014-01-12 20:08:11.592579,878,667,296, +32,2014-01-11 15:44:30.404257,200,292,935, +2,2014-01-14 22:06:30.715704,80,156,460, +2,2014-01-15 13:43:53.3719,984,626,566, +47,2014-01-16 15:02:21.889574,593,219,494, +32,2014-01-16 10:43:30.510078,592,826,503, +32,2014-01-18 09:43:29.880671,866,696,816, +47,2014-01-21 03:57:46.002782,246,706,57, +32,2014-01-19 23:26:56.281279,310,907,105, +32,2014-01-19 23:21:06.227856,229,565,46, +32,2014-01-12 01:51:10.941078,536,880,285, +32,2014-01-14 09:21:52.028808,22,202,390, +32,2014-01-19 11:12:54.053443,101,599,643, +47,2014-01-11 00:20:35.65121,742,813,710, +47,2014-01-15 14:27:04.561409,942,313,171, +2,2014-01-17 21:07:58.120501,14,110,908, +2,2014-01-16 21:48:01.829973,220,573,30, +47,2014-01-14 11:43:42.98018,891,370,538, +47,2014-01-11 09:56:41.58724,769,750,833, +32,2014-01-18 15:11:34.439125,635,412,248, +2,2014-01-10 22:04:31.745415,90,76,550, +32,2014-01-16 08:15:43.611549,681,349,171, +2,2014-01-18 21:17:17.626699,171,132,726, +2,2014-01-12 01:35:04.927576,472,896,945, +2,2014-01-12 23:54:23.961629,862,574,758, +47,2014-01-19 08:25:49.150985,706,887,52, +47,2014-01-15 04:19:07.972648,331,623,183, +32,2014-01-19 18:48:01.929781,95,189,757, +47,2014-01-12 19:58:23.314992,120,324,373, +2,2014-01-20 02:02:03.208351,476,812,798, +47,2014-01-18 18:41:14.563089,696,248,359, +32,2014-01-14 20:06:34.907571,480,544,892, +32,2014-01-20 21:46:33.612608,674,317,507, +47,2014-01-12 10:47:45.278793,25,95,40, +47,2014-01-19 13:50:28.279471,849,836,829, +2,2014-01-16 06:48:55.502602,936,859,251, +2,2014-01-18 01:31:15.78887,108,822,916, +32,2014-01-16 17:33:58.16056,783,861,506, +32,2014-01-16 04:46:41.505383,506,115,981, +2,2014-01-16 18:58:12.070568,511,757,391, +47,2014-01-15 10:55:04.388417,335,757,164, +2,2014-01-17 10:37:52.446881,369,738,957, +32,2014-01-20 08:20:04.099376,954,335,200, +32,2014-01-13 16:07:58.441859,606,142,573, +32,2014-01-17 14:58:28.098092,915,945,478, +47,2014-01-14 16:47:08.661204,291,653,916, +32,2014-01-20 17:15:56.56236,286,542,736, +47,2014-01-13 06:46:29.928065,224,99,437, +47,2014-01-18 08:30:51.641384,156,226,808, +2,2014-01-10 21:12:38.149599,420,648,436, +32,2014-01-21 01:58:04.36719,15,21,221, +47,2014-01-18 10:35:23.3868,665,549,156, +32,2014-01-16 09:28:21.761567,441,594,481, +32,2014-01-18 17:15:21.99389,554,199,807, +32,2014-01-19 16:10:28.314375,57,519,163, +32,2014-01-18 13:22:45.723197,209,427,352, +2,2014-01-16 19:41:11.145294,794,992,85, +47,2014-01-13 14:29:36.287442,146,250,774, +47,2014-01-17 02:10:47.652978,850,837,18, +32,2014-01-18 19:39:34.460285,584,438,357, +2,2014-01-12 10:31:39.495793,83,849,320, +32,2014-01-14 14:52:02.216067,734,466,702, +47,2014-01-12 09:46:09.367856,502,898,274, +47,2014-01-12 02:18:13.108401,387,408,968, +47,2014-01-16 05:39:47.494858,745,858,703, +2,2014-01-21 03:36:37.647746,342,328,412, +2,2014-01-17 13:07:08.611002,488,487,766, +2,2014-01-13 01:11:03.284148,345,775,499, +2,2014-01-16 15:10:35.808306,73,432,38, +2,2014-01-12 11:53:50.116805,431,4,754, +2,2014-01-19 00:09:15.354716,442,877,287, +32,2014-01-10 20:05:40.196723,998,10,764, +32,2014-01-19 02:31:42.563686,213,8,358, +32,2014-01-18 02:29:19.454093,53,85,146, +2,2014-01-13 16:13:38.639002,303,752,876, +32,2014-01-15 11:30:10.661777,459,815,604, +2,2014-01-11 13:16:28.115297,883,128,35, +47,2014-01-13 03:29:35.201361,350,45,207, +47,2014-01-17 22:16:40.589842,111,687,864, +2,2014-01-19 01:47:19.757101,559,778,267, +47,2014-01-13 04:42:13.35138,961,310,481, +47,2014-01-17 18:14:44.957451,377,981,520, +2,2014-01-16 06:22:43.1439,739,58,436, +47,2014-01-18 18:10:35.112947,107,169,547, +47,2014-01-15 05:30:06.951341,280,460,397, +32,2014-01-14 16:33:11.458695,878,754,751, +47,2014-01-16 01:33:20.836144,965,344,913, +32,2014-01-21 05:11:18.096633,96,167,107, +47,2014-01-17 11:02:47.746136,452,804,836, +2,2014-01-11 21:44:08.489541,635,699,428, +47,2014-01-18 18:50:52.556919,100,623,545, +32,2014-01-19 01:34:27.241929,220,362,965, +32,2014-01-15 16:36:10.705607,875,788,446, +47,2014-01-20 08:37:01.925194,575,457,953, +47,2014-01-20 07:52:40.350329,498,816,87, +47,2014-01-21 02:15:58.200884,932,573,374, +2,2014-01-20 06:13:39.57294,770,728,493, +2,2014-01-16 14:59:48.961751,152,101,561, +32,2014-01-12 21:27:01.485032,835,567,190, +47,2014-01-15 15:24:15.381246,285,638,896, +32,2014-01-18 06:53:39.078556,332,177,737, +32,2014-01-21 01:36:16.839748,403,628,958, +32,2014-01-15 15:29:55.57797,199,643,79, +47,2014-01-16 03:25:21.642243,599,464,551, +2,2014-01-17 22:05:36.293841,699,449,993, +32,2014-01-18 11:43:34.216971,225,617,959, +47,2014-01-20 18:55:32.30402,341,667,111, +32,2014-01-18 15:22:04.409556,229,188,135, +32,2014-01-20 19:13:09.418752,955,393,489, +32,2014-01-17 11:12:12.893862,42,868,264, +2,2014-01-16 11:09:24.166657,770,646,321, +47,2014-01-12 17:55:22.770131,337,395,143, +2,2014-01-13 23:26:57.851314,928,846,664, +32,2014-01-11 11:32:07.310558,1,481,83, +2,2014-01-20 16:05:57.883078,489,654,145, +32,2014-01-18 08:57:04.803073,63,809,59, +47,2014-01-15 08:05:18.769253,567,966,734, +2,2014-01-15 11:39:18.719222,903,343,909, +32,2014-01-18 08:08:22.899706,961,267,995, +32,2014-01-11 13:08:06.515389,590,293,554, +2,2014-01-16 13:23:27.208762,397,190,563, +2,2014-01-15 20:59:15.457045,129,775,471, +32,2014-01-19 18:42:33.757318,898,831,969, +47,2014-01-10 23:59:37.914789,854,694,375, +47,2014-01-14 23:36:17.382239,677,670,62, +32,2014-01-18 20:35:14.108067,961,978,81, +2,2014-01-10 20:15:36.115673,966,278,403, +2,2014-01-13 23:49:56.955179,459,529,816, +2,2014-01-14 05:35:03.069818,929,868,206, +32,2014-01-12 21:42:37.600705,168,895,658, +32,2014-01-18 19:14:12.336425,584,441,267, +32,2014-01-11 06:28:42.148374,533,32,754, +2,2014-01-12 17:18:54.440454,733,7,521, +2,2014-01-13 04:44:07.914395,268,769,800, +2,2014-01-16 13:54:03.790617,917,342,142, +47,2014-01-19 19:24:30.734295,459,67,547, +47,2014-01-20 20:27:42.131784,57,564,572, +32,2014-01-16 02:49:36.094636,906,747,653, +2,2014-01-17 04:46:35.143851,683,720,340, +2,2014-01-20 09:40:51.550536,545,156,557, +32,2014-01-12 08:01:48.988499,303,158,154, +2,2014-01-12 09:55:59.310509,616,101,502, +47,2014-01-11 21:36:14.320668,771,895,83, +47,2014-01-15 11:28:46.840231,851,93,121, +32,2014-01-13 01:28:06.621486,3,551,670, +2,2014-01-11 07:42:12.203747,529,211,713, +47,2014-01-12 14:25:51.643304,56,895,351, +32,2014-01-17 13:33:25.390739,11,986,929, +47,2014-01-15 23:21:30.922969,77,703,228, +2,2014-01-20 02:34:14.54301,172,412,422, +32,2014-01-18 06:41:31.906547,301,727,349, +32,2014-01-11 06:44:58.13215,521,354,37, +32,2014-01-14 17:33:30.000054,999,890,471, +32,2014-01-16 19:24:05.663865,619,660,108, +47,2014-01-11 10:44:36.046939,118,710,38, +32,2014-01-18 21:09:47.382293,523,183,888, +47,2014-01-14 09:59:19.771931,529,604,557, +47,2014-01-11 11:00:12.16261,914,15,175, +47,2014-01-11 14:59:44.337472,409,746,60, +2,2014-01-17 19:34:22.841748,460,604,64, +2,2014-01-13 12:42:49.763317,545,916,190, +32,2014-01-19 14:13:56.673897,817,881,758, +32,2014-01-18 06:03:04.990122,849,400,279, +2,2014-01-15 10:01:44.20377,430,984,2, +2,2014-01-11 12:58:04.58871,104,593,384, +2,2014-01-13 13:57:08.780739,619,619,41, +2,2014-01-13 23:26:14.938065,646,295,590, +32,2014-01-11 03:25:46.720495,776,979,733, +47,2014-01-18 20:46:44.875375,304,421,877, +32,2014-01-20 08:12:50.082334,147,489,801, +32,2014-01-20 17:06:38.271031,723,156,156, +2,2014-01-20 08:48:33.864293,259,628,343, +32,2014-01-11 12:08:49.392844,815,342,535, +2,2014-01-11 08:42:52.591699,161,416,286, +47,2014-01-14 14:17:20.704524,740,965,285, +2,2014-01-13 17:36:56.01433,626,915,178, +2,2014-01-11 20:25:04.795446,957,463,309, +47,2014-01-16 08:43:12.347828,692,300,713, +32,2014-01-20 11:10:21.405488,348,413,371, +32,2014-01-16 23:46:35.718414,390,11,506, +47,2014-01-15 05:17:26.890839,954,170,586, +47,2014-01-17 11:51:53.312034,459,129,7, +2,2014-01-17 10:31:33.850564,917,984,249, +47,2014-01-19 02:50:56.891311,385,745,848, +47,2014-01-13 01:15:58.975899,423,867,883, +47,2014-01-18 01:16:09.897502,403,163,605, +47,2014-01-16 18:00:44.273605,896,843,191, +47,2014-01-16 15:15:18.748249,712,492,344, +32,2014-01-18 16:16:22.060113,672,705,597, +47,2014-01-17 13:00:28.611496,182,69,551, +2,2014-01-13 04:49:41.589997,897,756,119, +2,2014-01-10 22:59:11.823429,559,229,733, +2,2014-01-15 21:14:25.285393,415,848,794, +2,2014-01-20 14:52:46.580538,691,718,653, +32,2014-01-15 13:00:56.027199,678,159,613, +2,2014-01-16 14:12:29.874103,657,177,191, +47,2014-01-12 22:49:55.361276,430,7,15, +2,2014-01-18 16:27:10.965682,905,752,6, +32,2014-01-16 21:38:16.594598,494,292,349, +32,2014-01-20 23:36:40.23707,881,386,748, +95,2014-01-17 18:40:01.048018,642,799,965, +27,2014-01-16 08:44:54.865628,433,322,559, +27,2014-01-20 02:25:14.101363,379,502,852, +27,2014-01-18 10:48:50.440861,90,203,122, +95,2014-01-16 21:27:47.457327,974,214,858, +27,2014-01-13 10:42:34.805887,700,563,32, +95,2014-01-10 22:25:46.455609,823,718,875, +95,2014-01-17 21:52:52.252773,102,612,476, +95,2014-01-18 23:25:47.153715,635,246,258, +27,2014-01-20 13:36:07.861097,124,191,819, +27,2014-01-13 15:39:27.971606,811,597,364, +27,2014-01-12 22:43:14.044553,163,5,292, +95,2014-01-16 19:28:01.173131,892,350,369, +27,2014-01-20 06:11:01.82217,198,207,591, +27,2014-01-21 05:34:10.935865,912,605,989, +27,2014-01-19 00:44:00.14903,725,533,375, +27,2014-01-17 01:27:11.720091,577,905,171, +95,2014-01-16 17:34:55.209889,513,139,513, +27,2014-01-14 09:59:18.897279,447,198,34, +95,2014-01-14 11:43:33.780203,34,479,520, +95,2014-01-13 00:35:23.821384,673,941,68, +27,2014-01-16 18:49:00.487695,83,576,652, +27,2014-01-14 14:42:45.604052,468,407,206, +95,2014-01-18 01:49:49.106777,567,773,363, +27,2014-01-16 03:41:47.068233,905,405,592, +27,2014-01-19 07:43:41.631251,795,928,328, +27,2014-01-13 10:02:18.981299,645,648,27, +27,2014-01-18 06:31:42.429508,402,648,98, +95,2014-01-16 18:10:52.596933,688,470,835, +95,2014-01-19 11:40:35.575896,829,354,181, +95,2014-01-18 00:08:22.666579,238,26,452, +95,2014-01-13 06:50:53.64495,214,797,587, +27,2014-01-14 14:25:30.441944,900,874,600, +95,2014-01-16 20:33:36.767942,342,2,948, +95,2014-01-20 21:39:44.08623,133,768,826, +95,2014-01-20 15:53:17.899271,530,711,572, +95,2014-01-19 11:16:11.573829,114,748,91, +27,2014-01-21 00:05:30.541841,825,790,228, +95,2014-01-17 07:46:10.152463,958,422,18, +95,2014-01-17 04:41:58.727544,40,993,368, +27,2014-01-20 07:41:38.402938,985,159,944, +95,2014-01-20 03:25:38.124069,919,447,542, +95,2014-01-19 07:25:12.772517,958,493,494, +95,2014-01-15 21:09:39.576069,632,98,481, +27,2014-01-19 03:36:39.946239,12,929,445, +27,2014-01-19 06:59:23.708381,805,339,503, +95,2014-01-13 15:53:39.7251,943,24,933, +27,2014-01-14 23:03:51.666329,129,956,269, +95,2014-01-14 18:34:18.91827,817,257,744, +27,2014-01-17 05:52:58.622798,118,436,368, +27,2014-01-18 14:47:25.446951,348,573,247, +27,2014-01-16 23:09:42.739654,943,882,766, +95,2014-01-12 18:41:59.110493,442,448,96, +95,2014-01-11 23:30:11.051003,161,932,415, +95,2014-01-13 18:59:31.84685,802,833,729, +27,2014-01-18 02:23:46.178726,524,266,698, +27,2014-01-20 11:13:52.682253,12,355,425, +95,2014-01-16 09:01:50.828149,95,962,21, +95,2014-01-15 02:55:28.608234,92,223,821, +95,2014-01-15 23:24:45.279605,201,958,38, +27,2014-01-14 14:42:26.404045,973,486,587, +27,2014-01-11 21:03:51.275232,300,952,149, +27,2014-01-18 10:15:38.924556,298,400,890, +27,2014-01-18 09:07:56.845989,644,748,457, +95,2014-01-17 21:37:28.043174,973,356,780, +27,2014-01-18 01:55:23.010786,326,670,390, +27,2014-01-17 19:01:14.745678,330,888,811, +27,2014-01-16 02:53:39.617422,796,490,665, +95,2014-01-17 20:00:53.552626,300,830,369, +95,2014-01-13 20:47:24.898142,212,375,109, +95,2014-01-12 01:35:38.344967,421,664,879, +95,2014-01-16 21:42:31.955564,202,252,903, +27,2014-01-12 18:13:03.022209,429,710,943, +95,2014-01-20 13:00:51.117482,409,81,986, +95,2014-01-11 12:52:11.531633,938,463,88, +27,2014-01-21 01:49:42.968448,776,739,144, +95,2014-01-18 14:00:14.826282,514,920,28, +95,2014-01-14 08:45:51.257152,83,735,752, +27,2014-01-14 18:53:34.635196,497,700,872, +95,2014-01-12 02:34:33.744552,154,941,84, +27,2014-01-20 18:38:49.87995,363,290,329, +27,2014-01-12 03:41:00.082147,759,757,183, +95,2014-01-18 05:44:16.484625,174,425,284, +27,2014-01-12 07:20:48.990443,375,853,581, +95,2014-01-13 07:11:11.13315,394,120,808, +95,2014-01-21 04:43:48.331476,76,126,898, +95,2014-01-19 13:44:35.169169,800,341,811, +95,2014-01-12 12:25:03.815403,279,272,701, +27,2014-01-16 07:45:39.159625,963,870,388, +95,2014-01-13 10:40:03.777403,392,982,994, +95,2014-01-17 15:49:49.095008,784,598,200, +27,2014-01-20 02:28:05.56367,604,416,721, +27,2014-01-14 11:43:55.052635,43,791,59, +95,2014-01-14 20:05:28.019983,951,422,676, +95,2014-01-17 05:36:02.410077,449,876,642, +95,2014-01-11 03:21:23.096229,65,608,170, +95,2014-01-11 16:00:51.03077,145,954,67, +27,2014-01-13 18:37:17.155756,18,676,574, +95,2014-01-16 10:15:02.713651,987,940,177, +27,2014-01-18 16:01:44.583816,139,399,571, +95,2014-01-16 19:24:42.053897,331,301,205, +95,2014-01-17 15:50:41.058618,27,415,149, +95,2014-01-14 07:44:16.539379,269,174,575, +95,2014-01-18 17:37:45.076107,430,227,598, +95,2014-01-16 22:51:32.176519,64,886,156, +27,2014-01-15 00:36:28.071431,977,836,152, +95,2014-01-18 13:27:28.044554,817,872,609, +95,2014-01-14 06:51:47.002801,385,471,356, +27,2014-01-18 13:22:19.328583,89,961,284, +95,2014-01-12 02:21:02.67975,537,528,668, +27,2014-01-15 13:26:20.747354,25,435,74, +95,2014-01-18 02:01:09.208533,73,718,572, +95,2014-01-13 10:02:02.761897,403,520,505, +27,2014-01-12 13:10:37.231979,140,819,755, +95,2014-01-19 13:21:58.198976,634,991,65, +95,2014-01-15 21:13:13.895047,884,40,287, +95,2014-01-12 11:54:25.563455,330,59,473, +27,2014-01-17 21:06:33.368144,956,806,464, +27,2014-01-17 13:38:17.710869,439,537,745, +27,2014-01-17 23:40:04.723079,172,133,994, +27,2014-01-20 11:46:37.145547,649,550,374, +27,2014-01-13 23:28:06.805878,610,974,319, +27,2014-01-16 20:08:10.287169,948,996,878, +27,2014-01-13 17:30:32.198602,284,543,675, +95,2014-01-17 23:33:34.825861,751,834,281, +27,2014-01-12 19:44:12.697246,189,465,467, +27,2014-01-14 00:51:55.29483,337,567,358, +27,2014-01-18 19:34:25.857051,240,158,683, +95,2014-01-15 18:21:29.853002,0,425,528, +95,2014-01-19 15:06:58.008481,925,145,93, +27,2014-01-16 05:36:10.440866,862,983,268, +27,2014-01-11 07:46:11.906899,694,237,710, +27,2014-01-16 00:57:39.067099,155,20,640, +27,2014-01-19 17:20:26.980246,595,814,737, +27,2014-01-19 05:23:56.983005,611,298,410, +27,2014-01-11 17:49:11.243618,761,356,624, +27,2014-01-13 11:56:55.051677,475,806,595, +27,2014-01-16 12:51:25.02756,625,377,925, +27,2014-01-15 04:40:58.24642,510,185,987, +27,2014-01-21 05:19:14.38026,19,19,205, +95,2014-01-17 19:12:27.707729,162,44,446, +27,2014-01-19 22:07:18.994193,446,638,657, +95,2014-01-18 01:20:23.588794,304,702,988, +27,2014-01-20 09:14:30.469626,60,713,882, +27,2014-01-11 05:17:56.226172,275,111,73, +95,2014-01-16 08:42:21.787769,421,797,140, +95,2014-01-15 00:27:44.365093,739,93,765, +95,2014-01-12 21:12:21.790046,418,55,378, +95,2014-01-12 23:48:55.155913,106,631,997, +27,2014-01-11 08:06:02.075961,906,677,252, +27,2014-01-20 00:52:26.513125,494,417,719, +27,2014-01-12 05:35:32.301879,748,134,320, +27,2014-01-14 11:34:08.88184,286,908,856, +95,2014-01-15 15:00:36.800294,61,356,328, +95,2014-01-15 03:06:04.50048,942,742,154, +27,2014-01-11 05:07:43.70812,172,866,902, +27,2014-01-17 14:44:49.497539,811,180,25, +95,2014-01-18 07:57:59.795311,469,885,396, +27,2014-01-19 04:42:09.565171,518,521,946, +95,2014-01-12 03:06:19.350541,495,776,208, +27,2014-01-16 17:04:57.803793,789,337,827, +27,2014-01-14 04:18:20.006036,28,108,354, +27,2014-01-12 14:52:31.25744,681,980,994, +95,2014-01-11 12:02:36.870892,686,97,589, +95,2014-01-12 15:38:46.986282,740,670,986, +95,2014-01-21 00:16:28.240446,136,731,138, +27,2014-01-12 09:51:48.114929,96,703,220, +95,2014-01-15 07:35:42.038378,46,302,154, +95,2014-01-16 07:07:53.268425,683,257,853, +27,2014-01-16 18:32:46.361349,827,318,226, +95,2014-01-15 06:54:56.418639,23,285,584, +95,2014-01-12 20:20:20.976154,200,703,178, +27,2014-01-15 10:40:05.355541,14,907,374, +95,2014-01-12 02:15:20.007851,441,934,893, +27,2014-01-11 23:34:51.44578,252,307,993, +27,2014-01-15 19:58:01.582131,347,613,205, +95,2014-01-17 14:57:41.79562,333,162,722, +95,2014-01-16 04:02:35.810873,725,390,19, +27,2014-01-17 21:10:23.372177,802,23,791, +95,2014-01-19 18:46:36.951952,143,597,272, +27,2014-01-16 16:08:37.886834,239,249,641, +27,2014-01-16 16:02:49.885302,531,277,904, +27,2014-01-21 04:22:09.253831,576,237,269, +27,2014-01-20 07:42:46.769093,667,928,118, +95,2014-01-11 01:03:26.686015,382,14,141, +95,2014-01-15 01:28:13.754311,898,45,851, +27,2014-01-20 16:50:30.477212,433,811,84, +27,2014-01-17 19:48:16.183553,626,966,909, +95,2014-01-12 03:26:13.549622,186,241,50, +95,2014-01-18 15:32:40.042382,262,320,809, +95,2014-01-19 02:54:35.534514,96,471,542, +95,2014-01-18 00:31:11.353415,31,908,387, +27,2014-01-11 13:51:00.048419,648,815,825, +95,2014-01-20 21:47:06.791953,16,688,771, +27,2014-01-18 16:33:48.224307,260,813,704, +95,2014-01-13 09:29:47.034701,228,902,198, +95,2014-01-20 16:03:35.032818,15,829,629, +95,2014-01-20 06:25:36.339236,620,439,750, +27,2014-01-17 21:05:29.073079,275,580,748, +95,2014-01-15 17:11:28.301242,882,89,475, +27,2014-01-15 18:58:22.701004,144,356,60, +95,2014-01-11 22:00:25.492136,30,191,221, +58,2014-01-17 17:31:49.277396,887,708,445, +58,2014-01-20 09:38:28.056545,604,242,60, +58,2014-01-13 04:15:45.499988,620,453,143, +58,2014-01-18 21:06:40.723177,884,661,293, +58,2014-01-14 23:36:29.638676,230,486,461, +58,2014-01-19 23:13:27.295607,375,993,116, +58,2014-01-13 19:09:16.534469,558,91,720, +58,2014-01-11 14:46:53.010853,97,484,685, +58,2014-01-18 12:00:04.247559,523,478,629, +58,2014-01-19 15:17:54.421303,870,951,316, +58,2014-01-17 10:49:42.896575,272,66,755, +58,2014-01-18 10:22:13.501391,900,597,49, +58,2014-01-18 17:00:41.190396,113,469,107, +58,2014-01-17 15:53:09.582589,588,412,279, +58,2014-01-12 05:50:27.255702,264,390,825, +58,2014-01-18 03:51:11.667608,38,366,19, +58,2014-01-14 05:41:25.766143,963,398,688, +58,2014-01-13 13:16:40.805324,316,631,470, +58,2014-01-15 13:23:51.709991,191,349,769, +58,2014-01-12 02:36:01.300655,986,257,585, +58,2014-01-20 17:47:52.158739,950,819,238, +58,2014-01-16 07:14:51.758409,451,541,717, +58,2014-01-11 18:23:08.093027,610,592,139, +58,2014-01-18 04:21:40.383465,4,448,832, +58,2014-01-18 20:44:38.79353,615,133,752, +58,2014-01-11 04:26:43.125845,266,675,641, +58,2014-01-17 04:47:16.722701,95,202,976, +58,2014-01-15 11:50:07.866609,596,269,957, +58,2014-01-16 01:38:11.427087,508,945,494, +58,2014-01-11 17:45:39.423705,511,998,95, +58,2014-01-16 13:50:33.358747,162,129,693, +58,2014-01-12 13:10:00.704483,340,756,945, +58,2014-01-10 21:24:07.480669,447,906,401, +58,2014-01-18 22:06:18.858734,554,683,194, +58,2014-01-20 14:16:41.42766,113,454,195, +58,2014-01-15 01:00:37.119346,931,464,466, +58,2014-01-17 15:19:46.154761,668,846,504, +58,2014-01-13 03:25:57.962129,34,46,575, +58,2014-01-15 19:47:30.130618,856,495,371, +58,2014-01-14 21:19:50.402321,846,61,317, +58,2014-01-11 12:43:52.383851,843,765,674, +58,2014-01-12 00:37:13.027193,490,236,633, +58,2014-01-12 01:42:03.90413,523,443,206, +58,2014-01-19 09:44:33.574247,163,433,412, +58,2014-01-18 20:30:22.609781,502,922,759, +58,2014-01-13 11:32:31.159832,814,91,660, +58,2014-01-16 07:35:45.242273,810,92,908, +58,2014-01-11 20:11:48.375924,440,696,358, +58,2014-01-16 04:49:11.965575,49,648,209, +58,2014-01-21 00:59:36.952265,870,235,45, +58,2014-01-13 02:47:49.676998,685,787,135, +58,2014-01-15 16:37:04.124314,653,314,551, +58,2014-01-16 02:14:28.711093,723,688,845, +58,2014-01-14 01:10:57.770026,836,67,69, +58,2014-01-12 14:58:44.507779,345,958,420, +58,2014-01-13 16:59:07.504623,140,530,806, +58,2014-01-14 09:37:40.895871,135,267,383, +58,2014-01-18 23:46:01.230899,521,30,996, +58,2014-01-18 08:49:15.371232,272,582,762, +58,2014-01-19 15:15:52.322957,376,893,660, +58,2014-01-19 21:31:40.654604,16,814,571, +58,2014-01-13 16:39:48.730398,920,161,184, +58,2014-01-10 22:25:53.027441,308,582,689, +58,2014-01-19 22:55:48.135273,45,280,207, +58,2014-01-11 08:46:07.589132,120,717,834, +58,2014-01-20 16:42:34.455101,785,827,341, +58,2014-01-13 17:56:25.255037,88,584,457, +58,2014-01-18 04:05:53.743894,13,616,507, +58,2014-01-12 14:08:32.417649,181,75,241, +58,2014-01-18 17:43:55.385655,164,924,16, +58,2014-01-11 19:25:44.146633,504,707,929, +58,2014-01-13 06:52:24.8015,208,747,329, +58,2014-01-19 22:21:08.412848,429,487,122, +58,2014-01-13 01:07:48.050764,421,518,282, +58,2014-01-11 10:36:58.375747,960,442,110, +58,2014-01-17 12:51:31.022629,860,302,391, +58,2014-01-15 16:40:19.210596,713,418,320, +58,2014-01-16 22:12:43.61802,586,992,758, +58,2014-01-18 13:03:19.398553,125,536,170, +58,2014-01-21 01:29:31.176171,507,726,388, +58,2014-01-16 17:12:20.570703,633,689,204, +58,2014-01-20 19:51:09.075551,257,504,63, +58,2014-01-15 12:06:35.300903,742,5,971, +58,2014-01-11 13:26:49.281796,306,496,608, +58,2014-01-13 15:02:06.845577,862,83,465, +58,2014-01-17 07:05:19.808682,729,270,717, +58,2014-01-14 10:25:56.78642,923,533,114, +42,2014-01-17 04:39:47.741448,79,809,880, +41,2014-01-15 00:51:21.039581,621,379,436, +41,2014-01-11 13:15:12.157652,857,212,899, +41,2014-01-15 13:55:40.064405,608,191,542, +41,2014-01-13 16:23:01.694604,5,815,917, +42,2014-01-14 09:55:00.88805,655,723,893, +41,2014-01-15 16:21:33.091846,105,815,78, +42,2014-01-12 09:18:49.829877,245,813,111, +41,2014-01-14 22:41:08.477602,650,450,990, +41,2014-01-15 03:04:07.547367,122,398,216, +41,2014-01-15 07:15:15.084915,534,727,425, +41,2014-01-11 20:47:02.221496,884,917,84, +41,2014-01-16 21:12:39.965016,14,834,79, +41,2014-01-12 18:59:10.47057,552,817,481, +41,2014-01-12 20:12:46.368129,315,60,674, +42,2014-01-19 08:05:04.766516,406,708,87, +42,2014-01-11 11:20:18.883418,394,582,267, +41,2014-01-15 01:20:34.418893,53,970,340, +41,2014-01-19 22:42:03.142262,411,10,343, +41,2014-01-18 04:11:49.906047,711,785,746, +41,2014-01-19 22:00:53.629907,977,791,502, +42,2014-01-15 14:54:46.760701,384,437,605, +42,2014-01-15 11:15:09.305019,934,714,560, +42,2014-01-19 17:30:24.806078,103,290,775, +41,2014-01-11 02:07:07.331404,604,107,399, +41,2014-01-15 01:06:18.38057,940,95,290, +41,2014-01-13 23:37:00.106981,151,602,538, +41,2014-01-11 19:33:56.613201,529,380,590, +42,2014-01-17 20:08:25.226567,755,765,956, +42,2014-01-20 10:42:19.916083,447,996,743, +42,2014-01-15 09:59:53.39962,125,608,587, +42,2014-01-13 18:48:12.968014,328,702,822, +42,2014-01-14 05:33:40.955665,308,251,40, +42,2014-01-16 03:15:05.557272,359,254,749, +42,2014-01-18 12:43:53.032839,535,385,106, +42,2014-01-17 01:56:42.650269,611,859,136, +41,2014-01-19 17:10:06.445742,713,620,354, +42,2014-01-12 23:05:26.124684,243,376,428, +42,2014-01-18 15:15:32.480566,851,154,285, +42,2014-01-13 09:51:14.923344,322,837,755, +41,2014-01-17 06:09:33.672051,910,210,845, +42,2014-01-12 16:30:47.56548,920,466,696, +41,2014-01-14 10:38:17.14484,643,342,761, +41,2014-01-12 21:22:13.637067,122,21,637, +41,2014-01-14 15:29:58.036469,159,969,382, +41,2014-01-16 10:51:03.513387,198,936,996, +41,2014-01-10 23:27:18.403582,693,741,604, +42,2014-01-15 06:50:16.919886,844,669,348, +41,2014-01-20 16:11:37.93228,872,860,659, +42,2014-01-20 02:09:21.546264,876,867,717, +41,2014-01-12 05:02:06.826352,300,418,787, +42,2014-01-19 08:12:31.562188,72,198,304, +41,2014-01-14 11:04:08.306965,854,308,62, +42,2014-01-16 20:17:16.131371,187,959,459, +42,2014-01-17 19:42:56.368685,730,118,427, +41,2014-01-14 17:11:15.638369,901,741,37, +42,2014-01-21 01:23:34.511942,590,732,382, +42,2014-01-20 23:19:56.475667,164,522,712, +41,2014-01-15 16:45:12.25157,382,7,102, +42,2014-01-17 15:31:59.738507,343,846,472, +42,2014-01-20 04:02:16.39175,184,944,156, +41,2014-01-20 06:45:05.65119,294,523,438, +41,2014-01-20 14:20:12.706941,322,83,258, +41,2014-01-13 03:35:57.347833,997,843,328, +42,2014-01-15 04:00:11.208461,913,254,938, +42,2014-01-17 21:04:05.739779,86,782,778, +41,2014-01-19 09:32:39.998103,925,246,705, +41,2014-01-13 15:10:17.654203,129,546,347, +41,2014-01-20 00:09:31.864464,210,564,880, +41,2014-01-16 18:48:12.478669,854,880,391, +42,2014-01-16 05:01:32.577547,627,712,518, +42,2014-01-16 00:19:05.536933,951,459,42, +42,2014-01-18 15:19:00.044568,64,286,290, +42,2014-01-19 19:39:49.722805,440,454,912, +41,2014-01-18 01:41:19.174,150,984,399, +42,2014-01-12 00:48:58.081036,662,847,945, +41,2014-01-15 00:30:53.236193,865,689,41, +42,2014-01-18 05:08:37.578001,621,913,394, +41,2014-01-16 11:39:15.000923,416,186,956, +42,2014-01-14 10:42:31.168473,611,248,898, +41,2014-01-17 01:17:59.124265,564,415,988, +41,2014-01-17 20:41:21.827275,180,662,115, +41,2014-01-12 12:55:02.73108,428,206,823, +41,2014-01-20 16:22:07.431229,802,887,475, +41,2014-01-13 10:58:37.958646,491,977,480, +42,2014-01-19 12:37:59.099765,930,656,300, +41,2014-01-14 03:33:23.069599,365,466,280, +42,2014-01-13 06:22:12.471006,716,842,246, +42,2014-01-19 05:57:55.575432,963,879,531, +42,2014-01-19 00:18:35.321169,328,887,248, +42,2014-01-20 01:54:12.209514,141,268,559, +41,2014-01-18 04:00:11.967601,695,842,211, +41,2014-01-18 01:03:40.972358,252,685,543, +42,2014-01-19 10:14:24.916454,413,541,128, +41,2014-01-20 11:36:09.315434,312,105,531, +42,2014-01-11 23:03:52.18082,677,745,208, +41,2014-01-16 01:18:30.656233,135,476,994, +42,2014-01-18 15:08:49.313537,916,966,696, +42,2014-01-14 18:14:09.835443,730,824,540, +41,2014-01-14 19:28:02.521116,953,323,838, +41,2014-01-14 03:57:01.792625,520,603,543, +41,2014-01-20 03:15:42.41299,293,122,977, +42,2014-01-19 23:47:08.058049,581,462,714, +42,2014-01-11 13:16:01.837193,638,575,29, +42,2014-01-18 16:55:32.135796,548,402,650, +41,2014-01-16 19:28:27.23205,605,870,385, +42,2014-01-12 18:04:59.918228,335,407,736, +41,2014-01-12 11:26:25.371989,310,247,355, +41,2014-01-13 18:37:04.810051,864,990,564, +41,2014-01-18 09:44:14.919151,530,428,158, +42,2014-01-16 02:08:56.54088,170,659,434, +41,2014-01-19 23:55:03.934316,127,156,244, +41,2014-01-15 00:25:36.746845,698,980,236, +41,2014-01-17 19:03:59.27196,8,437,131, +42,2014-01-19 10:17:11.365545,240,644,476, +42,2014-01-17 15:24:14.705491,320,494,615, +41,2014-01-16 01:41:58.371725,224,195,438, +42,2014-01-12 07:50:34.435144,387,21,623, +41,2014-01-20 01:46:27.176497,141,183,590, +42,2014-01-14 01:39:53.947157,686,160,982, +42,2014-01-20 12:09:09.756312,280,905,129, +41,2014-01-18 21:40:39.38643,865,400,821, +41,2014-01-10 23:40:05.914758,703,852,71, +42,2014-01-17 07:12:50.72867,692,167,8, +41,2014-01-17 01:55:04.302884,388,510,773, +42,2014-01-20 15:16:15.230193,673,346,443, +41,2014-01-18 10:16:42.909909,109,243,107, +42,2014-01-11 21:13:34.959537,617,857,850, +41,2014-01-18 00:25:04.544149,331,104,275, +42,2014-01-11 22:30:52.745352,185,809,117, +42,2014-01-15 20:41:37.480653,207,536,163, +42,2014-01-10 22:22:06.336774,659,565,606, +42,2014-01-21 05:46:35.158342,761,877,335, +42,2014-01-14 14:28:45.538703,744,719,718, +42,2014-01-11 15:38:08.173967,321,301,547, +41,2014-01-18 16:42:07.294556,299,694,408, +41,2014-01-20 13:57:12.770752,677,845,961, +42,2014-01-13 13:43:08.092195,126,107,535, +42,2014-01-20 08:08:32.666545,885,197,676, +42,2014-01-13 02:34:17.581222,515,976,779, +41,2014-01-21 03:27:23.011346,101,9,908, +42,2014-01-15 04:17:29.207425,160,765,925, +41,2014-01-11 20:29:21.515538,908,93,663, +42,2014-01-14 21:52:59.758191,98,839,430, +42,2014-01-11 17:21:28.479385,939,82,8, +42,2014-01-20 10:46:32.881502,543,163,901, +41,2014-01-11 07:17:14.4641,729,293,834, +42,2014-01-16 23:03:26.851111,785,811,795, +41,2014-01-11 12:37:07.316646,579,222,337, +41,2014-01-20 13:03:41.640597,338,814,237, +42,2014-01-20 04:43:20.798687,903,115,19, +41,2014-01-21 04:46:17.073377,345,765,644, +41,2014-01-18 04:44:21.027027,569,87,233, +42,2014-01-20 08:23:26.713446,910,274,523, +42,2014-01-17 05:59:07.802047,391,873,517, +42,2014-01-14 00:39:25.33033,545,789,675, +42,2014-01-19 17:39:41.944057,866,458,5, +42,2014-01-14 10:15:50.711956,23,637,90, +42,2014-01-15 01:53:00.289868,40,414,496, +42,2014-01-16 12:04:46.488206,669,440,397, +41,2014-01-15 12:46:43.457308,741,850,381, +41,2014-01-20 02:34:37.770521,222,29,28, +41,2014-01-16 14:26:52.824981,695,485,24, +42,2014-01-15 12:33:18.616069,208,284,82, +42,2014-01-13 11:03:23.309224,907,269,442, +42,2014-01-17 10:05:00.998948,964,958,909, +41,2014-01-12 23:15:25.910625,787,494,188, +41,2014-01-12 19:00:36.079976,237,825,98, +42,2014-01-20 03:48:09.091143,999,102,438, +41,2014-01-12 01:23:58.57717,779,609,468, +42,2014-01-15 01:34:53.661198,634,990,441, +41,2014-01-20 01:15:32.102488,30,400,707, +41,2014-01-16 09:41:27.785015,78,256,323, +41,2014-01-16 02:04:15.177155,801,79,467, +41,2014-01-13 17:08:31.861098,478,118,427, +41,2014-01-17 07:02:56.2644,924,716,457, +42,2014-01-15 06:50:48.058656,844,942,510, +41,2014-01-14 04:25:46.325198,628,921,467, +41,2014-01-13 00:06:23.11593,946,620,699, +42,2014-01-15 23:27:55.375302,31,609,135, +42,2014-01-13 11:29:27.965795,836,903,376, +41,2014-01-11 22:49:43.914617,344,602,525, +42,2014-01-15 22:14:12.448679,180,752,827, +42,2014-01-20 20:13:48.993241,425,335,816, +42,2014-01-11 01:13:10.628063,979,337,466, +42,2014-01-11 22:13:20.251145,640,353,41, +42,2014-01-13 14:53:14.323571,332,774,106, +41,2014-01-19 22:52:52.57212,164,630,914, +42,2014-01-15 12:29:10.9631,807,716,788, +41,2014-01-17 20:46:14.613439,860,29,812, +41,2014-01-15 04:57:39.060327,296,91,815, +41,2014-01-20 05:15:54.420827,342,994,275, +42,2014-01-16 17:20:52.38396,886,670,159, +42,2014-01-20 23:24:31.885307,630,88,396, +42,2014-01-14 11:49:13.036896,490,88,971, +41,2014-01-19 08:24:15.693183,548,588,505, +42,2014-01-17 03:29:32.884255,472,393,952, +41,2014-01-16 15:04:38.947522,739,574,970, +41,2014-01-10 21:24:51.773159,115,779,726, +41,2014-01-16 01:17:41.975397,989,382,557, +41,2014-01-17 20:28:37.524692,85,159,68, +41,2014-01-15 02:59:45.434777,334,812,11, +42,2014-01-14 20:33:14.078304,585,702,588, +41,2014-01-13 00:10:05.309705,886,671,261, +42,2014-01-20 09:04:00.611931,939,195,431, +42,2014-01-17 17:41:45.939402,307,99,261, +42,2014-01-19 11:13:01.574524,799,710,700, +41,2014-01-14 09:54:48.670589,395,362,281, +41,2014-01-21 02:07:32.264599,974,136,401, +41,2014-01-11 05:19:24.690454,660,184,398, +41,2014-01-19 13:22:44.045891,400,836,350, +41,2014-01-13 07:37:00.230394,663,11,393, +42,2014-01-12 08:09:08.605071,489,481,85, +41,2014-01-14 05:36:56.494989,849,356,39, +42,2014-01-12 21:50:49.223634,393,758,608, +41,2014-01-12 13:22:19.233133,248,64,723, +41,2014-01-15 07:50:16.746133,472,791,607, +90,2014-01-15 16:44:03.547205,2,571,653, +76,2014-01-11 06:15:11.805673,212,498,665, +9,2014-01-20 00:19:27.709233,321,395,970, +80,2014-01-12 07:30:18.160644,432,318,428, +80,2014-01-15 15:12:50.865999,449,224,349, +23,2014-01-18 23:35:22.13006,329,527,486, +76,2014-01-18 04:51:10.544604,589,573,514, +90,2014-01-15 08:37:22.751726,569,947,478, +90,2014-01-12 05:24:35.166956,109,869,268, +81,2014-01-16 07:15:26.237788,416,819,905, +30,2014-01-11 06:06:55.63598,506,478,252, +23,2014-01-18 00:29:14.114478,91,182,884, +9,2014-01-16 08:40:18.011367,770,457,647, +90,2014-01-16 11:24:37.611797,968,348,43, +76,2014-01-14 14:57:51.639589,173,115,266, +90,2014-01-20 15:40:03.446144,283,641,674, +90,2014-01-20 11:57:51.690101,190,104,458, +30,2014-01-16 19:07:56.949294,952,543,519, +9,2014-01-19 18:44:04.058075,985,727,127, +80,2014-01-16 23:39:37.629503,957,386,139, +23,2014-01-15 00:20:58.523818,287,915,268, +23,2014-01-12 22:38:52.728664,116,587,746, +30,2014-01-16 19:47:09.894102,290,543,45, +80,2014-01-15 09:40:23.214272,101,36,985, +81,2014-01-11 06:01:36.774554,992,870,172, +30,2014-01-19 07:24:10.124496,914,123,550, +80,2014-01-16 21:49:31.819343,677,924,829, +90,2014-01-14 15:38:33.269542,722,295,897, +23,2014-01-10 23:14:59.348548,999,75,700, +30,2014-01-18 15:11:51.052896,175,408,275, +90,2014-01-19 03:28:50.015675,108,683,193, +30,2014-01-15 19:59:02.895753,314,636,844, +80,2014-01-19 01:27:02.858569,843,685,466, +76,2014-01-17 21:48:17.725327,734,173,309, +23,2014-01-17 07:29:21.056817,250,150,641, +76,2014-01-13 10:39:53.724568,914,515,256, +81,2014-01-15 15:23:39.855388,155,188,697, +81,2014-01-14 06:20:31.60142,993,498,473, +23,2014-01-17 23:17:16.476293,377,935,865, +9,2014-01-17 00:48:15.022764,498,190,229, +90,2014-01-19 17:35:57.839627,453,944,163, +23,2014-01-18 09:24:12.112693,410,755,93, +81,2014-01-13 19:17:29.137242,291,137,512, +23,2014-01-14 20:16:15.850994,828,277,291, +30,2014-01-13 14:48:49.72449,930,470,714, +23,2014-01-17 14:15:20.77683,244,588,381, +81,2014-01-14 05:56:19.297136,602,378,559, +76,2014-01-12 20:46:41.414591,845,627,105, +90,2014-01-13 03:23:17.726544,292,640,644, +30,2014-01-12 18:40:23.355212,322,606,523, +23,2014-01-19 00:26:19.044094,818,464,103, +30,2014-01-17 07:44:16.250361,402,87,571, +90,2014-01-14 21:19:16.083876,484,76,205, +76,2014-01-14 14:13:28.938196,397,113,301, +81,2014-01-11 11:24:39.465052,912,57,985, +23,2014-01-15 07:20:52.858429,710,1,399, +80,2014-01-12 15:37:39.062692,940,422,520, +90,2014-01-17 13:14:11.284396,54,947,487, +9,2014-01-19 02:59:26.128391,623,164,485, +90,2014-01-12 18:52:38.41124,942,773,151, +76,2014-01-14 22:26:02.337292,804,32,685, +23,2014-01-17 00:28:16.144066,293,459,938, +81,2014-01-17 18:51:41.307412,86,634,584, +81,2014-01-12 17:53:05.195859,657,314,176, +76,2014-01-13 16:16:33.869393,80,526,958, +9,2014-01-13 20:21:02.364228,591,986,901, +23,2014-01-15 08:32:58.920846,299,179,455, +23,2014-01-18 11:40:13.7252,539,472,631, +30,2014-01-17 06:41:33.965649,260,525,420, +76,2014-01-12 01:50:15.39714,354,336,98, +80,2014-01-14 06:28:28.747964,534,132,490, +30,2014-01-15 18:17:31.805275,395,909,315, +30,2014-01-19 15:14:27.509832,55,657,207, +30,2014-01-17 05:45:57.885205,961,663,266, +30,2014-01-19 18:33:47.656269,657,830,778, +23,2014-01-12 00:03:17.234322,677,373,393, +23,2014-01-13 14:01:18.662455,612,511,64, +23,2014-01-12 18:30:06.953405,285,798,811, +9,2014-01-14 00:49:58.648914,440,932,610, +90,2014-01-15 21:24:36.388998,929,717,260, +90,2014-01-14 17:10:30.308618,297,385,7, +9,2014-01-11 19:16:17.693007,350,165,955, +76,2014-01-11 23:08:52.639359,487,237,764, +80,2014-01-18 18:29:46.392493,855,441,702, +90,2014-01-15 13:29:46.631203,591,431,935, +80,2014-01-12 14:33:32.104411,283,436,317, +30,2014-01-12 19:50:39.251342,522,144,892, +30,2014-01-17 09:07:25.694314,620,448,226, +23,2014-01-19 07:47:43.389226,816,970,500, +90,2014-01-21 02:50:05.379732,546,152,198, +90,2014-01-19 08:00:04.105553,84,203,664, +9,2014-01-13 00:13:45.726518,488,417,262, +23,2014-01-16 21:18:21.523798,328,774,126, +90,2014-01-15 20:51:45.412966,988,288,742, +76,2014-01-14 22:06:50.922796,604,583,470, +76,2014-01-19 17:34:55.39361,224,748,670, +23,2014-01-18 21:12:47.777194,603,505,899, +9,2014-01-19 10:39:49.843643,789,338,227, +80,2014-01-16 23:15:09.11881,957,676,437, +80,2014-01-14 21:54:21.743261,434,610,129, +90,2014-01-20 16:30:05.240781,758,791,543, +81,2014-01-20 09:43:37.866774,36,869,58, +76,2014-01-19 20:11:53.548536,731,386,300, +90,2014-01-19 01:44:32.751033,593,983,101, +76,2014-01-16 09:29:35.751979,975,193,1000, +76,2014-01-18 08:45:41.205225,536,777,637, +90,2014-01-20 05:47:49.985355,382,595,448, +81,2014-01-19 03:30:54.414433,879,931,876, +23,2014-01-20 07:15:48.15863,779,877,573, +80,2014-01-13 00:37:48.634687,383,72,724, +23,2014-01-13 18:55:30.803431,453,702,859, +81,2014-01-13 18:26:18.467667,3,711,841, +81,2014-01-13 23:54:06.327695,558,77,987, +23,2014-01-14 22:04:23.44321,276,193,853, +90,2014-01-11 06:56:04.86016,220,479,344, +23,2014-01-18 17:23:52.959317,729,633,949, +90,2014-01-16 16:37:55.547622,232,257,253, +90,2014-01-13 06:46:44.111502,646,683,920, +80,2014-01-14 20:31:18.65363,419,6,976, +9,2014-01-14 18:25:38.936848,636,643,91, +23,2014-01-13 03:36:49.491234,266,892,317, +90,2014-01-12 22:31:22.759183,534,408,629, +76,2014-01-16 22:39:24.663785,409,486,666, +76,2014-01-19 04:55:11.015451,369,285,932, +23,2014-01-17 23:23:08.172569,290,987,426, +30,2014-01-21 00:46:15.586581,657,494,787, +23,2014-01-17 16:30:06.409061,510,253,234, +81,2014-01-15 14:35:55.949762,663,592,924, +76,2014-01-19 05:26:05.430224,986,909,567, +30,2014-01-13 09:45:15.527871,667,725,64, +90,2014-01-19 16:30:17.693024,881,48,342, +9,2014-01-18 15:56:10.671005,434,4,584, +23,2014-01-12 13:28:53.394645,231,680,262, +90,2014-01-18 06:42:11.24198,327,332,870, +23,2014-01-16 11:40:43.422039,590,158,465, +90,2014-01-18 02:58:29.146624,467,629,644, +81,2014-01-15 09:27:52.447205,867,174,631, +90,2014-01-15 11:28:33.407812,843,180,431, +81,2014-01-16 00:29:23.561476,384,729,601, +81,2014-01-14 10:43:40.605835,651,333,465, +76,2014-01-17 16:06:22.0425,193,619,707, +9,2014-01-18 23:24:54.364908,207,830,713, +80,2014-01-17 09:09:59.073502,887,661,720, +76,2014-01-20 20:00:28.370194,89,115,145, +76,2014-01-12 15:29:17.808118,262,310,95, +90,2014-01-17 20:06:03.934082,2,378,504, +23,2014-01-18 07:24:21.32951,937,454,998, +23,2014-01-18 12:07:13.356158,749,645,790, +9,2014-01-20 06:52:48.045583,245,482,190, +81,2014-01-11 21:55:39.983141,637,405,760, +80,2014-01-12 00:32:52.293007,781,288,625, +76,2014-01-12 04:29:37.537237,916,867,612, +76,2014-01-14 00:27:02.742744,854,126,433, +80,2014-01-18 03:12:16.956792,223,711,954, +76,2014-01-20 13:24:48.552689,728,251,241, +76,2014-01-21 03:50:10.915312,121,534,812, +23,2014-01-17 21:58:32.543373,318,214,892, +76,2014-01-16 23:54:54.96175,740,278,916, +30,2014-01-15 12:26:06.865075,599,780,978, +23,2014-01-15 21:24:37.973597,491,946,955, +81,2014-01-19 13:40:10.489621,567,900,910, +76,2014-01-13 22:56:24.558518,548,51,588, +9,2014-01-13 07:20:48.645021,634,265,303, +30,2014-01-10 21:09:03.884266,752,343,395, +23,2014-01-10 23:38:35.800498,783,960,333, +81,2014-01-18 23:01:32.067059,337,723,107, +81,2014-01-18 04:07:33.03089,355,966,948, +23,2014-01-15 13:06:28.247703,971,964,851, +9,2014-01-13 04:30:05.474872,256,185,660, +90,2014-01-12 22:36:56.592366,582,442,501, +81,2014-01-19 03:50:08.853539,719,569,647, +23,2014-01-20 00:36:27.517371,178,371,430, +30,2014-01-21 02:01:50.957693,277,764,911, +81,2014-01-15 07:00:07.927459,440,749,507, +30,2014-01-19 14:36:55.887984,974,821,150, +9,2014-01-12 11:31:08.76581,486,347,431, +81,2014-01-11 21:06:11.861542,703,291,181, +80,2014-01-16 16:01:17.217495,569,890,548, +90,2014-01-20 03:38:22.12197,405,20,597, +76,2014-01-10 21:58:59.907125,922,394,656, +9,2014-01-17 17:56:57.201055,309,801,245, +90,2014-01-10 22:11:14.415396,522,535,228, +90,2014-01-12 06:28:37.444362,827,870,123, +23,2014-01-20 22:23:59.943799,618,644,402, +30,2014-01-18 05:23:31.372188,270,669,381, +76,2014-01-11 13:53:25.997051,266,81,231, +9,2014-01-20 20:14:10.859111,344,441,471, +23,2014-01-14 21:22:03.91598,70,901,182, +90,2014-01-17 17:48:20.958801,178,574,354, +9,2014-01-15 02:40:17.724185,324,188,115, +76,2014-01-19 22:46:41.889577,134,693,910, +80,2014-01-16 01:28:31.448422,309,179,800, +80,2014-01-18 05:36:42.282704,601,549,344, +80,2014-01-12 00:07:30.534598,788,698,668, +23,2014-01-16 02:37:35.332687,121,422,439, +76,2014-01-18 09:15:18.083202,986,871,233, +30,2014-01-20 03:09:02.602076,275,212,702, +81,2014-01-13 00:45:08.363996,30,353,471, +9,2014-01-12 16:21:46.330905,158,691,592, +9,2014-01-12 01:39:08.076948,948,991,808, +30,2014-01-15 03:22:04.956361,551,348,818, +81,2014-01-21 00:11:55.184862,355,602,114, +23,2014-01-10 20:15:35.594738,338,176,42, +30,2014-01-14 23:23:55.914055,973,484,870, +76,2014-01-15 01:12:03.112322,528,231,63, +90,2014-01-19 14:52:31.482722,646,338,273, +9,2014-01-16 14:55:04.680284,240,737,909, +90,2014-01-16 02:18:14.973864,934,685,973, +9,2014-01-15 00:53:48.700217,621,570,982, +9,2014-01-15 12:33:26.802254,576,691,735, +30,2014-01-16 04:17:14.880989,762,881,745, +23,2014-01-11 12:50:45.901272,314,494,466, +23,2014-01-15 14:44:41.21765,589,154,197, +9,2014-01-17 14:45:52.325771,504,431,321, +81,2014-01-11 05:14:45.845071,471,75,530, +30,2014-01-12 14:08:12.590257,499,74,747, +30,2014-01-18 08:39:18.322822,535,19,414, +76,2014-01-21 05:28:56.704182,855,48,963, +30,2014-01-16 15:30:16.506237,67,532,303, +80,2014-01-14 20:27:39.282042,918,195,865, +90,2014-01-15 02:09:14.428787,752,341,688, +76,2014-01-15 08:16:58.395814,998,314,810, +30,2014-01-20 01:56:10.730464,573,340,168, +9,2014-01-12 01:45:56.711491,867,603,993, +76,2014-01-16 12:24:28.930831,782,358,252, +80,2014-01-14 22:33:46.06357,580,342,625, +80,2014-01-19 15:01:14.795111,819,728,982, +9,2014-01-15 09:33:31.532907,569,814,262, +81,2014-01-17 03:18:54.427566,468,109,181, +23,2014-01-11 01:23:01.126017,68,455,697, +9,2014-01-16 15:12:39.609854,74,435,45, +23,2014-01-11 00:40:59.383928,802,965,604, +81,2014-01-21 05:34:56.310878,852,188,54, +30,2014-01-16 15:28:15.204592,285,657,381, +9,2014-01-15 04:04:55.298402,553,110,47, +81,2014-01-15 00:46:59.423201,421,543,451, +23,2014-01-15 00:20:46.687314,994,770,79, +9,2014-01-20 22:59:59.978686,336,81,946, +90,2014-01-20 07:05:14.397065,953,754,990, +80,2014-01-19 05:14:35.38795,292,776,695, +23,2014-01-15 05:33:26.780941,442,653,899, +23,2014-01-15 05:22:29.278472,159,287,242, +90,2014-01-19 22:05:21.289222,965,127,688, +80,2014-01-20 00:18:07.99901,326,91,463, +9,2014-01-11 14:08:21.604243,866,808,584, +76,2014-01-20 07:20:07.134711,725,234,781, +81,2014-01-11 08:26:20.589268,552,286,599, +81,2014-01-19 02:47:39.927065,813,105,66, +30,2014-01-20 06:49:03.838894,923,110,928, +23,2014-01-17 03:56:37.095505,514,725,230, +30,2014-01-12 17:15:19.209106,521,349,490, +90,2014-01-14 02:58:18.267681,446,544,377, +90,2014-01-11 06:13:35.491319,947,143,775, +80,2014-01-11 13:11:29.939989,933,215,148, +76,2014-01-15 08:44:14.979591,820,184,505, +81,2014-01-16 22:38:04.42215,635,312,496, +30,2014-01-15 15:45:16.003557,293,90,114, +30,2014-01-13 17:45:29.774703,350,170,603, +30,2014-01-11 02:11:35.955056,25,458,235, +81,2014-01-11 13:04:10.431123,796,953,161, +81,2014-01-13 23:08:30.900719,294,251,816, +81,2014-01-16 21:24:15.565329,663,591,796, +90,2014-01-11 17:45:09.815051,254,132,977, +9,2014-01-13 22:43:27.212017,808,446,895, +23,2014-01-12 06:52:30.769922,810,251,70, +81,2014-01-16 01:50:05.113453,771,847,791, +81,2014-01-18 03:30:26.635218,818,854,657, +30,2014-01-16 11:13:17.457654,255,137,918, +80,2014-01-15 18:50:05.09214,443,258,930, +30,2014-01-17 04:35:41.032701,10,825,502, +90,2014-01-14 10:27:52.845603,912,592,554, +80,2014-01-20 04:23:31.873499,346,519,762, +80,2014-01-11 03:58:10.311173,283,472,255, +30,2014-01-13 02:33:14.134825,225,685,446, +90,2014-01-18 22:41:39.872509,329,964,524, +90,2014-01-11 22:06:31.915416,551,710,796, +80,2014-01-12 03:53:21.269536,339,74,13, +9,2014-01-19 11:08:00.461777,432,159,964, +81,2014-01-20 04:54:11.84248,506,268,881, +81,2014-01-11 04:42:25.10885,782,599,131, +90,2014-01-15 09:04:37.557282,436,230,333, +80,2014-01-11 16:09:31.052005,457,93,39, +30,2014-01-14 11:40:43.376531,375,768,239, +90,2014-01-15 19:18:13.048601,368,665,236, +9,2014-01-12 09:21:00.991994,569,780,505, +76,2014-01-19 00:24:58.356122,500,340,85, +81,2014-01-11 11:56:17.47117,64,806,444, +9,2014-01-17 05:06:16.995551,318,688,355, +81,2014-01-11 12:10:28.130825,102,763,102, +80,2014-01-11 18:07:53.426226,521,508,238, +23,2014-01-17 22:10:27.426675,268,657,439, +76,2014-01-14 15:18:59.031964,829,123,403, +80,2014-01-17 19:32:08.991555,472,514,326, +80,2014-01-18 19:55:37.241726,690,627,766, +81,2014-01-17 18:02:26.24398,716,220,173, +23,2014-01-19 06:24:39.761896,414,471,328, +80,2014-01-13 15:45:42.355597,634,184,800, +30,2014-01-14 15:32:52.879197,426,707,898, +30,2014-01-14 11:37:57.21955,82,218,547, +81,2014-01-18 14:35:47.447736,109,1,164, +90,2014-01-21 00:08:33.911898,739,188,218, +81,2014-01-18 02:05:50.065153,668,786,879, +81,2014-01-17 12:59:19.321235,217,633,398, +76,2014-01-10 22:06:44.223071,111,437,651, +90,2014-01-20 08:39:04.199978,135,985,37, +76,2014-01-15 05:40:59.193746,727,860,124, +81,2014-01-12 00:13:16.138486,680,945,196, +23,2014-01-11 06:32:25.469934,251,609,212, +9,2014-01-13 10:48:59.655523,133,907,813, +9,2014-01-10 23:07:27.981386,724,274,227, +76,2014-01-11 15:14:50.578784,968,655,478, +90,2014-01-17 23:53:37.212805,265,945,87, +76,2014-01-11 19:16:59.033392,600,846,794, +23,2014-01-15 06:55:33.955316,367,619,428, +80,2014-01-12 13:11:50.261825,255,501,289, +90,2014-01-13 08:38:00.025385,447,359,47, +80,2014-01-13 01:20:32.311856,880,241,831, +23,2014-01-13 05:08:07.732995,181,420,124, +90,2014-01-19 17:44:17.020936,494,873,902, +81,2014-01-13 17:31:00.442681,800,495,593, +9,2014-01-14 03:16:01.159221,396,102,319, +30,2014-01-16 09:54:44.447611,614,633,961, +23,2014-01-17 12:49:59.474645,804,283,70, +81,2014-01-21 02:48:10.151195,224,561,45, +80,2014-01-13 23:50:21.689336,2,146,338, +81,2014-01-14 00:52:25.718624,642,841,815, +80,2014-01-19 03:12:49.913091,857,225,442, +23,2014-01-16 19:36:04.044934,939,490,691, +23,2014-01-17 20:25:18.598241,677,327,396, +30,2014-01-12 08:50:47.132641,497,865,283, +90,2014-01-14 04:11:51.49309,148,78,573, +9,2014-01-17 14:33:52.510139,296,380,657, +9,2014-01-19 14:56:37.197794,938,12,610, +90,2014-01-20 21:11:10.814326,896,824,696, +80,2014-01-17 16:40:36.733628,721,340,905, +9,2014-01-18 17:35:41.397773,47,68,197, +81,2014-01-14 20:52:10.008491,29,223,944, +80,2014-01-18 20:53:52.872115,231,28,635, +76,2014-01-19 04:08:06.867707,635,721,567, +81,2014-01-17 11:41:09.664014,296,20,701, +76,2014-01-19 00:01:20.853501,847,822,719, +81,2014-01-19 23:22:57.446492,927,439,413, +23,2014-01-14 05:34:46.877238,427,18,870, +30,2014-01-19 23:18:19.886893,936,579,873, +90,2014-01-14 00:18:31.402226,372,906,646, +81,2014-01-15 22:46:37.139063,344,3,809, +76,2014-01-12 01:56:19.912278,134,877,774, +23,2014-01-16 05:39:03.714083,125,942,451, +23,2014-01-18 07:54:44.872057,986,429,176, +80,2014-01-20 23:40:36.933215,945,67,143, +30,2014-01-19 03:10:04.156765,172,745,563, +90,2014-01-11 05:10:46.031278,282,622,514, +30,2014-01-16 03:35:21.380826,637,202,166, +30,2014-01-15 10:00:03.631828,326,501,150, +9,2014-01-11 01:58:56.182473,507,493,128, +23,2014-01-19 07:25:43.070581,576,662,443, +30,2014-01-18 14:52:29.350453,106,698,605, +80,2014-01-19 09:11:46.095564,148,658,923, +76,2014-01-14 21:01:47.115516,726,62,365, +23,2014-01-15 05:17:47.948694,192,930,605, +81,2014-01-20 22:02:33.228204,522,786,821, +30,2014-01-18 05:13:38.608605,770,359,682, +90,2014-01-11 13:51:40.459251,874,801,464, +90,2014-01-19 06:59:10.425998,575,514,366, +90,2014-01-17 20:24:49.42335,280,665,168, +30,2014-01-18 10:32:17.192879,650,121,148, +80,2014-01-16 18:34:51.82419,539,391,127, +81,2014-01-11 11:16:59.431841,834,908,939, +23,2014-01-16 01:26:10.064994,541,838,969, +80,2014-01-14 16:42:58.691897,479,944,56, +90,2014-01-18 02:58:09.095854,456,841,694, +90,2014-01-13 19:27:30.918914,368,818,94, +81,2014-01-13 10:05:56.138808,561,252,427, +76,2014-01-11 02:32:55.973092,275,651,828, +81,2014-01-12 12:45:50.805806,215,507,13, +81,2014-01-16 14:24:27.541034,870,449,818, +80,2014-01-16 05:19:33.112154,489,964,118, +23,2014-01-13 18:42:10.718503,855,627,731, +23,2014-01-11 14:03:31.255117,362,168,935, +9,2014-01-13 07:14:17.984211,815,827,35, +30,2014-01-13 12:22:47.651718,27,186,384, +9,2014-01-19 21:13:35.411881,760,498,154, +81,2014-01-13 16:25:04.015908,187,684,329, +76,2014-01-18 19:58:09.032963,886,110,570, +76,2014-01-14 01:13:39.04371,16,814,206, +23,2014-01-13 22:24:00.198381,25,145,995, +81,2014-01-16 21:23:52.103545,129,388,590, +80,2014-01-11 10:06:08.394582,91,996,637, +80,2014-01-12 01:35:46.294364,143,419,334, +90,2014-01-20 22:25:39.21906,990,162,669, +23,2014-01-15 19:23:56.343275,913,72,172, +76,2014-01-11 17:38:19.522567,166,260,698, +76,2014-01-17 21:39:17.828084,403,859,364, +23,2014-01-16 13:15:36.802526,220,85,543, +30,2014-01-20 04:37:29.948984,665,191,910, +80,2014-01-14 12:04:07.251435,179,391,928, +80,2014-01-13 17:47:53.995405,543,367,404, +30,2014-01-15 17:12:21.773174,325,13,820, +9,2014-01-15 03:21:06.683276,340,82,465, +90,2014-01-18 23:14:04.060818,847,914,378, +80,2014-01-19 13:55:20.465072,121,804,355, +81,2014-01-12 00:19:15.779129,491,614,900, +80,2014-01-11 12:41:34.979731,595,459,258, +81,2014-01-11 18:01:16.603879,750,534,380, +30,2014-01-12 06:52:11.752641,973,878,370, +9,2014-01-13 05:27:25.785538,743,207,135, +80,2014-01-17 12:25:44.144914,587,152,398, +90,2014-01-17 16:11:44.864795,344,270,688, +81,2014-01-16 04:09:36.504042,812,707,475, +90,2014-01-18 06:29:15.40003,971,331,71, +23,2014-01-20 03:26:02.849426,248,931,115, +81,2014-01-18 20:32:24.156178,290,787,956, +76,2014-01-16 21:42:50.812331,662,73,989, +23,2014-01-12 13:51:06.865334,76,526,584, +81,2014-01-16 10:30:33.189142,436,119,282, +90,2014-01-20 02:56:29.856042,401,22,6, +90,2014-01-15 16:15:07.063715,350,417,237, +81,2014-01-12 01:54:25.292685,898,982,889, +76,2014-01-20 17:02:38.250624,449,966,970, +81,2014-01-16 21:50:53.358078,913,403,527, +80,2014-01-11 18:20:04.511746,149,543,774, +30,2014-01-15 06:26:34.594318,117,119,47, +76,2014-01-17 19:29:12.881065,207,130,935, +30,2014-01-18 19:59:22.339831,514,545,982, +23,2014-01-20 23:42:11.396844,19,383,910, +76,2014-01-16 18:06:42.830049,617,523,921, +76,2014-01-12 02:03:29.591266,816,392,640, +90,2014-01-13 11:30:05.392669,847,801,80, +30,2014-01-11 05:19:04.603223,4,995,131, +9,2014-01-16 09:24:36.274542,845,451,20, +76,2014-01-11 04:44:09.453486,196,763,844, +80,2014-01-19 23:14:25.068295,851,859,725, +23,2014-01-17 13:43:52.054091,650,589,382, +76,2014-01-11 21:25:44.433218,112,53,161, +81,2014-01-20 21:15:41.672593,601,870,781, +30,2014-01-19 00:36:03.80673,827,932,769, +9,2014-01-14 06:53:10.218755,718,933,834, +80,2014-01-17 03:41:25.817506,891,556,206, +90,2014-01-15 10:47:48.671525,791,601,285, +23,2014-01-19 15:02:46.723216,992,495,512, +23,2014-01-14 04:10:41.217956,678,519,105, +81,2014-01-14 08:13:51.520951,401,634,261, +23,2014-01-17 05:35:10.879394,528,443,219, +90,2014-01-20 05:53:32.030288,118,751,126, +23,2014-01-16 02:04:58.386284,946,370,565, +90,2014-01-12 10:05:44.068535,274,641,51, +23,2014-01-19 02:50:01.886329,48,1,776, +9,2014-01-20 22:20:05.450419,608,699,32, +23,2014-01-13 16:00:09.361221,934,700,743, +9,2014-01-18 13:52:40.137372,426,661,934, +80,2014-01-16 14:10:58.808497,259,972,891, +23,2014-01-14 14:20:13.872968,965,793,596, +90,2014-01-12 14:19:14.731691,80,681,121, +76,2014-01-13 03:40:11.68956,565,787,486, +80,2014-01-12 04:19:36.213217,957,501,652, +90,2014-01-12 08:01:26.128534,903,623,155, +81,2014-01-19 01:46:54.519609,29,686,611, +76,2014-01-13 10:23:05.804483,123,153,469, +30,2014-01-14 23:31:31.521203,595,770,38, +90,2014-01-19 11:05:59.122832,24,354,172, +81,2014-01-18 23:47:42.079444,493,429,384, +9,2014-01-15 08:15:40.974689,465,288,104, +30,2014-01-18 04:20:24.191546,684,326,571, +9,2014-01-15 07:31:34.133533,177,94,965, +76,2014-01-16 09:41:25.407906,122,114,13, +30,2014-01-17 19:36:05.864139,747,24,922, +90,2014-01-13 02:07:37.940264,661,475,4, +76,2014-01-19 20:34:35.62708,383,693,225, +9,2014-01-13 17:17:31.681646,598,777,280, +23,2014-01-17 16:55:26.61179,672,37,581, +81,2014-01-18 05:37:22.350296,548,477,854, +80,2014-01-17 01:28:12.899602,40,753,796, +76,2014-01-21 05:09:18.133159,847,235,744, +23,2014-01-14 05:12:33.229691,367,244,341, +30,2014-01-16 01:21:44.92989,460,71,216, +81,2014-01-16 01:14:16.519444,257,39,818, +81,2014-01-15 19:18:17.298226,408,454,289, +30,2014-01-13 22:11:46.816639,213,87,126, +76,2014-01-15 17:34:21.969863,456,762,572, +23,2014-01-18 15:18:26.659447,299,204,372, +30,2014-01-11 06:04:26.95401,110,633,934, +90,2014-01-11 01:45:20.778778,30,886,284, +30,2014-01-11 23:38:40.532415,2,895,876, +90,2014-01-13 00:23:41.6857,675,503,860, +23,2014-01-13 09:25:32.468339,956,213,732, +76,2014-01-13 07:58:16.745631,483,694,635, +80,2014-01-14 12:25:07.814234,61,369,42, +80,2014-01-11 05:12:26.988368,148,589,624, +90,2014-01-15 22:21:22.550533,580,317,283, +23,2014-01-18 15:56:39.335856,658,139,360, +76,2014-01-19 20:18:26.1112,499,120,388, +30,2014-01-13 16:09:04.629977,679,857,69, +80,2014-01-12 18:12:20.310546,24,534,635, +81,2014-01-16 18:38:50.302746,827,539,567, +81,2014-01-18 03:40:38.76351,126,383,592, +9,2014-01-18 07:53:45.718871,886,915,77, +23,2014-01-13 08:14:56.166885,563,329,661, +30,2014-01-20 09:48:16.703775,994,177,239, +23,2014-01-16 22:28:21.345952,247,17,145, +90,2014-01-16 05:32:27.84895,882,166,202, +80,2014-01-16 20:43:43.315564,455,193,298, +90,2014-01-13 22:05:43.696248,779,904,142, +76,2014-01-12 01:00:40.748552,468,797,541, +30,2014-01-16 19:53:01.448723,530,892,701, +81,2014-01-17 07:18:16.925939,400,848,630, +23,2014-01-17 06:22:25.67886,503,819,848, +76,2014-01-11 15:07:17.968586,47,538,388, +80,2014-01-11 20:36:34.224165,593,273,115, +30,2014-01-20 08:34:12.495499,585,420,474, +81,2014-01-16 12:41:39.938449,54,927,868, +23,2014-01-19 15:55:00.883611,267,390,470, +81,2014-01-20 18:38:39.449509,416,146,889, +90,2014-01-16 18:27:00.717227,749,303,389, +23,2014-01-20 19:33:41.416026,102,885,50, +9,2014-01-12 13:02:21.135209,858,350,966, +90,2014-01-19 07:52:33.185984,980,874,900, +81,2014-01-12 21:31:58.162076,915,184,7, +30,2014-01-16 05:27:28.949445,141,972,869, +76,2014-01-19 17:05:00.174352,138,728,857, +30,2014-01-17 23:53:20.712609,329,196,620, +76,2014-01-13 15:24:08.285301,791,219,588, +30,2014-01-18 07:23:26.285553,59,740,302, +30,2014-01-20 20:02:25.342586,385,204,496, +30,2014-01-15 13:36:28.596266,526,289,728, +9,2014-01-13 20:02:16.588718,495,963,648, +81,2014-01-17 17:43:04.106097,297,372,902, +81,2014-01-12 15:30:14.315137,779,968,159, +81,2014-01-16 08:17:12.755603,511,283,627, +90,2014-01-16 21:31:20.809872,74,162,509, +76,2014-01-18 17:58:35.66109,656,173,365, +30,2014-01-11 07:49:40.604553,27,255,81, +80,2014-01-12 12:15:04.125435,396,155,817, +76,2014-01-11 10:04:19.357337,679,887,254, +30,2014-01-12 12:50:21.353524,178,737,284, +76,2014-01-18 12:08:05.574577,90,658,478, +23,2014-01-17 21:22:36.283276,926,640,444, +76,2014-01-18 23:12:47.032384,530,373,676, +9,2014-01-19 07:15:23.543164,580,115,260, +76,2014-01-18 21:59:10.50744,280,759,363, +23,2014-01-18 01:46:59.527883,579,370,903, +81,2014-01-14 13:57:03.481611,600,472,496, +90,2014-01-17 07:54:11.391051,905,904,719, +30,2014-01-17 14:25:38.977393,225,755,171, +30,2014-01-20 12:24:04.199257,690,303,283, +23,2014-01-16 21:27:52.807077,601,73,488, +76,2014-01-19 07:28:00.112603,951,31,426, +81,2014-01-18 14:16:37.385243,150,529,553, +90,2014-01-18 22:59:50.969153,610,691,482, +23,2014-01-14 06:55:29.062048,591,496,52, +9,2014-01-17 01:21:37.559595,249,894,550, +9,2014-01-15 16:53:11.681763,24,765,326, +80,2014-01-17 02:19:37.347768,120,951,531, +23,2014-01-14 02:45:03.845148,965,485,428, +80,2014-01-15 06:55:37.024349,983,651,937, +23,2014-01-11 09:56:05.944034,56,683,520, +90,2014-01-17 02:47:20.433866,509,95,851, +76,2014-01-11 18:38:41.130446,797,474,272, +23,2014-01-13 05:26:20.259172,695,280,87, +81,2014-01-12 05:04:33.189889,443,80,555, +9,2014-01-17 20:10:01.940318,655,112,615, +9,2014-01-21 03:24:55.92026,48,374,123, +80,2014-01-12 16:54:13.794442,536,595,83, +9,2014-01-19 12:25:06.066172,185,699,92, +80,2014-01-11 07:29:15.277598,720,728,12, +9,2014-01-14 09:44:35.147966,385,20,418, +76,2014-01-16 18:33:11.64075,920,998,278, +9,2014-01-18 08:51:51.560874,733,514,709, +80,2014-01-12 02:57:22.18035,177,45,8, +9,2014-01-14 19:48:35.183913,35,46,689, +80,2014-01-16 00:51:02.068314,677,409,178, +90,2014-01-19 08:44:21.708234,575,756,298, +80,2014-01-18 13:45:38.665525,347,67,206, +23,2014-01-12 02:45:13.459365,118,425,762, +90,2014-01-15 17:10:00.685627,605,961,296, +81,2014-01-17 20:09:42.864782,780,461,986, +81,2014-01-18 04:13:06.266442,441,748,264, +80,2014-01-13 18:38:00.79823,1,499,56, +76,2014-01-15 04:26:20.250025,514,650,426, +81,2014-01-15 21:12:57.236015,786,876,127, +76,2014-01-17 05:33:29.860697,174,771,314, +81,2014-01-10 23:47:57.80962,941,556,727, +9,2014-01-20 18:06:08.917777,16,656,841, +30,2014-01-13 01:53:07.208466,428,818,669, +76,2014-01-14 06:33:01.655187,334,280,590, +80,2014-01-14 19:01:45.942546,67,358,555, +23,2014-01-13 15:49:13.152499,576,348,634, +23,2014-01-20 13:20:22.089053,277,376,286, +81,2014-01-15 17:40:27.072992,905,891,119, +80,2014-01-16 01:15:33.411671,548,675,656, +76,2014-01-11 12:24:55.278941,566,299,352, +23,2014-01-12 07:50:29.013729,694,168,334, +80,2014-01-15 22:40:29.331931,10,429,294, +76,2014-01-13 09:19:09.073801,636,790,295, +81,2014-01-21 00:15:35.079901,659,582,359, +30,2014-01-16 10:09:44.609529,264,535,887, +81,2014-01-16 23:03:44.221767,862,446,16, +90,2014-01-16 12:48:46.72065,353,987,974, +76,2014-01-13 13:01:36.170403,691,650,672, +90,2014-01-18 06:01:06.402536,152,145,223, +23,2014-01-20 12:37:21.904564,876,660,82, +90,2014-01-18 17:52:38.238717,488,79,446, +9,2014-01-16 08:45:28.110771,387,265,429, +23,2014-01-17 20:23:00.570089,166,380,960, +30,2014-01-20 00:37:51.698082,394,525,336, +23,2014-01-21 05:55:28.796818,573,495,790, +23,2014-01-14 10:32:43.43529,618,488,769, +81,2014-01-16 22:50:57.964524,393,469,34, +76,2014-01-13 18:33:29.595048,788,186,80, +23,2014-01-18 18:59:03.685316,471,217,709, +76,2014-01-11 14:03:55.200539,821,154,300, +30,2014-01-20 04:06:59.455745,582,884,812, +9,2014-01-18 22:47:01.495354,580,996,208, +90,2014-01-11 02:10:04.118734,97,821,995, +23,2014-01-12 00:00:06.664209,434,358,328, +9,2014-01-11 23:20:03.150542,275,418,665, +76,2014-01-15 01:11:50.061279,384,914,97, +23,2014-01-14 19:49:19.816709,381,865,443, +81,2014-01-11 06:40:25.239595,94,398,67, +23,2014-01-19 22:52:17.134272,25,20,862, +90,2014-01-20 01:04:53.22838,523,289,513, +90,2014-01-11 23:05:20.518955,651,498,849, +23,2014-01-11 00:42:46.148,359,325,910, +30,2014-01-14 17:45:22.560311,389,912,928, +30,2014-01-14 12:24:29.592756,729,569,30, +81,2014-01-21 04:58:21.227901,185,346,656, +80,2014-01-20 07:55:07.169841,574,68,951, +81,2014-01-20 15:28:13.814524,14,304,494, +76,2014-01-16 11:47:07.948552,139,835,784, +9,2014-01-12 14:56:43.340244,366,467,626, +23,2014-01-17 15:29:20.21706,135,108,144, +23,2014-01-15 18:24:29.853115,659,92,222, +90,2014-01-20 12:49:21.57896,343,52,590, +90,2014-01-12 18:14:48.32825,607,673,801, +23,2014-01-12 08:47:30.423623,262,886,742, +23,2014-01-19 07:27:13.277043,161,152,158, +80,2014-01-12 18:10:17.125068,601,977,162, +76,2014-01-15 23:20:13.858913,251,1,451, +30,2014-01-15 00:18:11.241985,382,766,272, +23,2014-01-15 16:43:46.720116,451,997,407, +80,2014-01-13 12:19:17.544228,254,408,914, +76,2014-01-15 18:22:06.442524,448,190,612, +80,2014-01-14 14:50:46.176279,380,456,948, +30,2014-01-11 05:06:19.039582,191,122,43, +81,2014-01-16 00:32:10.561258,54,769,195, +76,2014-01-15 18:50:52.840489,921,586,732, +23,2014-01-12 08:26:22.190124,375,672,349, +9,2014-01-20 05:44:00.622538,912,287,543, +90,2014-01-19 18:40:12.657617,497,728,158, +90,2014-01-12 19:06:47.430138,161,857,633, +76,2014-01-18 22:36:17.757228,439,385,9, +80,2014-01-18 13:45:05.885997,471,905,521, +90,2014-01-13 22:12:07.949093,903,163,887, +90,2014-01-19 03:19:03.905228,341,818,769, +80,2014-01-12 01:30:28.446728,383,527,718, +76,2014-01-17 14:36:37.541849,75,985,409, +81,2014-01-19 02:17:25.133549,218,242,285, +30,2014-01-11 03:25:35.616569,317,752,122, +81,2014-01-17 00:04:51.356373,262,208,222, +9,2014-01-14 08:04:33.0821,794,763,860, +9,2014-01-12 22:22:18.957231,372,507,502, +81,2014-01-13 09:34:11.573852,111,707,272, +80,2014-01-19 06:29:02.935634,422,291,302, +76,2014-01-12 05:11:40.536193,896,52,499, +80,2014-01-15 07:48:59.902102,252,360,557, +90,2014-01-20 19:16:33.359257,405,668,507, +30,2014-01-20 16:38:53.813654,713,358,764, +81,2014-01-17 05:59:17.02717,761,57,175, +90,2014-01-15 12:36:47.21817,483,139,235, +23,2014-01-14 10:57:05.05564,853,364,614, +23,2014-01-11 16:43:03.747284,185,605,745, +81,2014-01-18 04:56:04.762397,540,581,45, +23,2014-01-19 09:19:11.498164,306,897,690, +90,2014-01-15 11:33:49.923564,362,361,470, +23,2014-01-18 14:02:23.802399,539,637,3, +76,2014-01-14 03:51:22.059841,987,975,540, +76,2014-01-20 10:24:42.764471,665,285,496, +23,2014-01-20 02:28:45.992522,998,729,886, +23,2014-01-13 03:35:22.682378,460,978,681, +23,2014-01-18 23:04:55.422089,892,921,737, +23,2014-01-11 15:35:33.42266,765,644,459, +23,2014-01-10 20:11:40.439606,622,140,452, +30,2014-01-16 06:50:01.308085,448,373,991, +81,2014-01-14 17:47:41.371753,265,848,322, +30,2014-01-19 03:30:44.345253,642,661,250, +90,2014-01-17 12:20:29.754813,122,84,567, +30,2014-01-11 02:24:18.913601,427,986,210, +80,2014-01-16 23:48:09.478802,49,575,936, +90,2014-01-17 19:46:05.371801,122,389,423, +23,2014-01-17 06:29:10.270393,631,452,362, +9,2014-01-20 11:52:42.560902,190,414,93, +30,2014-01-19 22:08:24.329032,201,231,247, +30,2014-01-19 20:03:21.844245,784,800,708, +9,2014-01-18 12:21:45.496536,728,9,530, +76,2014-01-10 21:20:04.865224,110,313,766, +81,2014-01-13 21:52:21.746347,85,337,882, +80,2014-01-18 01:38:18.855794,927,812,988, +30,2014-01-20 17:58:58.678878,862,367,505, +80,2014-01-20 07:51:38.773516,505,651,349, +76,2014-01-12 08:15:06.073963,25,234,89, +76,2014-01-13 22:56:03.734518,686,329,801, +9,2014-01-21 04:34:42.5208,992,28,831, +90,2014-01-19 17:11:10.836779,135,742,338, +23,2014-01-12 02:15:15.2331,648,925,173, +30,2014-01-15 10:08:32.444783,59,319,251, +30,2014-01-17 01:13:34.639177,809,338,166, +9,2014-01-15 10:06:37.29294,251,502,246, +90,2014-01-14 14:33:15.209254,356,730,45, +76,2014-01-15 21:42:20.6317,471,60,322, +9,2014-01-17 17:41:59.975318,797,45,701, +9,2014-01-12 07:38:10.631343,612,906,685, +22,2014-01-16 17:17:54.054779,546,241,737, +59,2014-01-17 17:53:40.415343,439,346,870, +72,2014-01-17 18:28:11.939428,704,560,778, +72,2014-01-20 15:05:35.426531,638,406,49, +59,2014-01-15 15:24:24.760596,175,400,432, +59,2014-01-14 00:48:41.69466,66,601,270, +22,2014-01-20 21:29:54.340552,45,302,512, +72,2014-01-11 09:12:34.239398,669,520,992, +72,2014-01-21 00:34:47.06646,800,758,685, +22,2014-01-16 21:59:04.610946,419,611,428, +59,2014-01-21 01:05:16.8003,112,332,792, +22,2014-01-19 16:43:11.395493,392,909,421, +22,2014-01-15 12:02:26.455191,631,124,242, +22,2014-01-18 07:27:02.297255,209,239,869, +22,2014-01-19 18:03:16.260717,921,832,567, +59,2014-01-18 13:54:48.201537,879,543,637, +59,2014-01-15 03:05:21.153049,676,538,419, +72,2014-01-19 06:02:14.940015,617,294,373, +72,2014-01-17 15:46:26.975053,905,895,433, +72,2014-01-16 15:20:27.227431,754,919,531, +59,2014-01-11 22:58:18.674532,74,94,155, +22,2014-01-17 14:21:09.495853,849,267,349, +59,2014-01-15 02:31:38.06421,107,643,654, +22,2014-01-13 05:13:33.907632,935,360,17, +72,2014-01-11 18:29:41.940636,158,350,110, +59,2014-01-10 21:45:12.703388,244,446,725, +22,2014-01-17 19:20:11.200572,493,498,523, +72,2014-01-15 13:02:57.149891,965,795,319, +72,2014-01-15 23:27:33.335088,219,165,22, +59,2014-01-14 07:02:11.176308,621,330,115, +59,2014-01-17 00:41:07.781233,456,905,980, +72,2014-01-11 10:45:27.389867,201,587,195, +59,2014-01-21 04:55:51.591651,151,100,632, +59,2014-01-13 13:09:19.72108,59,893,626, +59,2014-01-21 05:51:02.816818,23,364,100, +22,2014-01-15 14:20:16.352247,366,989,833, +72,2014-01-16 17:58:01.415741,619,551,977, +22,2014-01-20 21:20:57.15737,668,681,692, +59,2014-01-16 03:32:50.591645,701,167,424, +72,2014-01-16 12:32:48.482201,520,950,499, +59,2014-01-16 13:20:01.768316,953,346,607, +59,2014-01-15 22:38:07.391945,731,340,92, +72,2014-01-14 23:15:59.877695,146,537,477, +22,2014-01-21 05:22:28.223506,901,859,757, +59,2014-01-13 00:05:09.689201,614,999,301, +59,2014-01-13 11:19:16.138411,184,397,523, +72,2014-01-18 13:17:16.425043,685,646,246, +22,2014-01-17 07:10:30.842669,340,187,453, +59,2014-01-11 11:21:31.078426,708,331,49, +22,2014-01-14 23:03:43.400096,924,504,171, +59,2014-01-12 16:30:58.0701,852,143,728, +72,2014-01-12 14:19:49.753377,679,564,640, +22,2014-01-11 07:24:52.895949,851,469,662, +22,2014-01-16 23:02:36.13431,788,861,867, +22,2014-01-14 23:33:23.661009,693,180,281, +72,2014-01-12 05:54:34.837005,498,133,701, +72,2014-01-17 00:47:48.837698,886,724,43, +22,2014-01-11 12:53:34.862,472,867,315, +72,2014-01-16 22:57:31.986896,349,505,813, +22,2014-01-11 18:15:22.172785,453,495,598, +59,2014-01-14 23:55:46.038308,629,581,399, +22,2014-01-12 17:38:39.768548,48,998,324, +72,2014-01-12 09:00:49.563072,517,669,787, +72,2014-01-14 22:51:37.629959,490,103,856, +59,2014-01-15 10:47:59.489628,300,836,597, +22,2014-01-12 08:51:52.37989,805,307,302, +59,2014-01-19 17:11:53.982206,389,965,745, +72,2014-01-10 22:46:00.90537,495,920,19, +72,2014-01-12 00:12:49.537259,63,292,695, +22,2014-01-14 14:44:44.573851,499,666,57, +22,2014-01-16 15:18:49.387571,148,494,493, +72,2014-01-17 17:32:51.305575,374,976,493, +22,2014-01-19 17:22:51.965797,278,896,571, +22,2014-01-20 18:34:49.265266,847,875,889, +72,2014-01-17 16:55:19.529081,287,151,284, +72,2014-01-11 11:28:01.655417,354,561,540, +72,2014-01-12 23:54:05.403677,430,529,592, +22,2014-01-15 00:12:35.954124,874,579,313, +72,2014-01-17 22:38:32.498085,472,582,162, +59,2014-01-13 15:15:36.482522,322,151,886, +72,2014-01-19 03:16:19.35422,413,226,215, +72,2014-01-19 19:09:30.568185,87,21,157, +72,2014-01-15 09:35:26.235899,852,294,642, +22,2014-01-19 14:41:12.250169,961,532,952, +22,2014-01-15 12:12:06.702496,704,314,212, +72,2014-01-19 13:08:49.896908,786,385,722, +59,2014-01-21 00:35:47.087174,980,705,236, +72,2014-01-11 06:59:55.540194,44,454,339, +59,2014-01-20 06:02:24.758907,578,514,979, +59,2014-01-16 17:33:19.074489,906,4,682, +59,2014-01-12 05:15:17.71298,778,704,696, +72,2014-01-13 23:58:10.797216,220,562,95, +22,2014-01-18 15:11:58.843036,432,490,125, +59,2014-01-13 18:16:07.276052,650,80,465, +59,2014-01-18 02:49:48.427176,291,860,977, +59,2014-01-12 19:59:58.332666,534,938,99, +59,2014-01-15 07:07:59.655942,366,688,665, +59,2014-01-16 14:01:42.409382,339,337,94, +72,2014-01-12 22:45:59.238034,805,654,310, +72,2014-01-16 11:20:49.193201,71,176,725, +22,2014-01-20 08:46:26.983233,965,573,60, +22,2014-01-18 18:04:48.625605,256,638,574, +22,2014-01-12 22:53:40.498776,215,523,547, +59,2014-01-18 20:09:18.949449,26,71,373, +59,2014-01-18 06:39:37.890871,232,390,246, +59,2014-01-19 19:49:00.027857,292,94,442, +59,2014-01-19 11:37:20.604866,521,702,103, +22,2014-01-20 10:33:43.294548,881,492,359, +22,2014-01-13 14:01:35.981981,32,774,19, +59,2014-01-16 04:15:53.102951,894,524,208, +72,2014-01-12 19:49:19.77707,809,692,211, +59,2014-01-11 11:17:55.336201,947,227,757, +72,2014-01-14 17:25:23.671136,22,409,549, +22,2014-01-17 09:24:46.012969,522,311,628, +72,2014-01-20 05:59:07.58679,57,359,631, +72,2014-01-19 09:37:30.373631,67,805,256, +59,2014-01-15 16:33:35.910296,387,270,961, +22,2014-01-20 00:34:54.673964,505,185,40, +59,2014-01-19 20:37:25.913826,115,984,286, +72,2014-01-14 16:36:00.669203,54,457,696, +22,2014-01-15 12:08:13.748452,153,677,349, +72,2014-01-21 05:52:43.626805,151,231,16, +59,2014-01-17 20:34:11.466839,590,921,362, +22,2014-01-12 21:20:12.591489,173,154,834, +72,2014-01-13 18:08:50.903276,41,638,109, +59,2014-01-14 17:23:59.894014,715,463,922, +22,2014-01-14 21:20:10.924153,689,920,281, +22,2014-01-18 05:16:50.559218,48,649,826, +22,2014-01-20 11:25:42.303816,79,923,733, +59,2014-01-17 00:06:10.162188,478,82,449, +72,2014-01-13 10:37:39.752837,209,572,397, +22,2014-01-19 14:12:09.287049,545,868,734, +22,2014-01-14 12:10:58.787794,570,518,558, +22,2014-01-15 13:31:20.251614,77,149,425, +22,2014-01-17 04:21:28.236498,138,986,886, +22,2014-01-11 12:50:36.678664,295,146,339, +22,2014-01-14 03:20:20.27989,435,102,392, +22,2014-01-15 09:58:48.841364,242,913,974, +72,2014-01-21 03:24:19.97363,809,88,508, +22,2014-01-16 21:21:56.261871,802,765,654, +22,2014-01-20 18:14:41.944315,441,126,296, +59,2014-01-12 17:13:39.7507,687,301,401, +72,2014-01-17 12:39:51.598491,265,212,616, +72,2014-01-14 05:40:05.61545,641,499,700, +22,2014-01-19 06:38:25.764088,853,675,51, +59,2014-01-16 12:38:59.18528,94,504,106, +22,2014-01-12 09:17:35.989082,363,256,638, +59,2014-01-13 17:12:01.674383,117,559,74, +72,2014-01-15 07:13:53.859244,513,873,611, +22,2014-01-10 23:55:01.902907,589,124,185, +22,2014-01-17 13:48:02.343586,79,358,704, +22,2014-01-19 23:22:07.608115,677,536,768, +72,2014-01-10 23:47:45.530132,682,726,624, +72,2014-01-14 04:22:13.810424,510,449,660, +72,2014-01-11 14:42:20.199603,549,781,936, +72,2014-01-13 21:56:36.433408,653,771,99, +72,2014-01-18 01:46:13.704857,346,659,118, +72,2014-01-15 16:02:31.124175,881,330,971, +59,2014-01-10 21:13:26.992625,609,347,537, +59,2014-01-17 07:11:56.008673,769,62,703, +72,2014-01-11 10:08:41.286364,697,400,338, +22,2014-01-13 11:51:06.745463,660,481,700, +59,2014-01-15 15:24:05.295721,581,735,456, +22,2014-01-15 02:19:40.074576,305,834,640, +72,2014-01-18 05:22:26.997495,936,895,514, +22,2014-01-11 13:45:33.532639,49,902,28, +72,2014-01-15 19:10:16.75324,64,501,363, +22,2014-01-11 02:42:47.277384,265,547,423, +22,2014-01-16 03:44:22.374002,639,407,467, +59,2014-01-15 16:34:36.72687,186,109,53, +72,2014-01-17 04:04:43.539255,666,375,431, +59,2014-01-15 15:59:04.318735,866,851,862, +59,2014-01-17 13:48:16.47799,921,859,235, +59,2014-01-13 10:44:35.137746,529,25,161, +22,2014-01-19 01:39:09.934186,22,752,691, +22,2014-01-15 14:26:42.242077,699,21,120, +59,2014-01-19 03:23:34.323027,231,465,780, +59,2014-01-20 14:56:45.923687,76,313,137, +59,2014-01-18 11:38:43.91646,784,168,348, +59,2014-01-13 04:37:28.18269,129,605,855, +22,2014-01-20 18:51:47.826595,4,596,149, +72,2014-01-14 19:26:46.260047,246,953,283, +22,2014-01-11 21:59:35.790804,72,160,204, +59,2014-01-20 22:39:33.356727,260,771,844, +72,2014-01-18 03:49:00.07089,341,149,378, +59,2014-01-12 16:41:55.990406,968,366,510, +72,2014-01-13 14:36:09.790135,321,565,785, +72,2014-01-14 23:35:13.775747,39,580,678, +59,2014-01-17 12:44:27.114582,515,485,299, +72,2014-01-13 15:49:36.78318,560,540,130, +72,2014-01-11 00:47:09.78442,122,946,467, +22,2014-01-18 02:53:08.401365,530,463,153, +22,2014-01-16 07:40:43.528643,537,478,821, +72,2014-01-15 20:11:15.080141,27,259,74, +59,2014-01-11 23:12:48.47594,240,178,437, +72,2014-01-13 07:03:10.526138,33,157,465, +22,2014-01-16 13:56:48.612779,661,200,868, +22,2014-01-16 22:23:05.229179,801,400,99, +22,2014-01-13 13:45:57.803522,646,473,327, +59,2014-01-11 11:41:10.987201,401,522,25, +59,2014-01-11 08:57:41.956469,153,343,789, +72,2014-01-19 21:50:41.343197,132,703,321, +72,2014-01-16 07:40:15.305936,988,365,607, +22,2014-01-18 02:45:58.434458,162,973,291, +72,2014-01-12 02:35:16.480943,202,784,443, +22,2014-01-14 03:19:25.240122,811,71,40, +22,2014-01-12 11:12:40.676535,372,978,155, +59,2014-01-20 09:58:50.804389,467,993,652, +59,2014-01-13 12:16:11.163809,447,131,666, +59,2014-01-20 02:51:24.592996,210,829,16, +22,2014-01-12 08:36:18.987078,442,711,27, +59,2014-01-13 01:07:58.990824,663,395,816, +59,2014-01-13 16:18:10.853042,645,161,347, +59,2014-01-13 10:35:54.777882,550,327,559, +72,2014-01-12 17:47:32.347551,749,407,962, +72,2014-01-21 00:07:10.923931,704,521,623, +59,2014-01-15 07:17:50.768289,989,532,738, +59,2014-01-15 12:23:42.138105,347,772,887, +59,2014-01-14 17:42:24.699679,254,14,265, +22,2014-01-11 14:02:17.88329,356,397,346, +59,2014-01-18 08:13:18.921285,180,458,467, +59,2014-01-14 22:29:34.484099,989,460,462, +59,2014-01-18 20:55:26.284654,640,890,563, +59,2014-01-13 09:54:02.449928,533,978,649, +22,2014-01-19 22:40:49.564658,846,545,692, +72,2014-01-20 00:08:14.760594,10,932,916, +72,2014-01-15 20:57:12.976484,734,197,962, +59,2014-01-15 06:37:38.177439,583,157,142, +72,2014-01-15 16:31:19.989773,212,425,659, +72,2014-01-18 14:43:10.780006,187,191,469, +22,2014-01-15 22:18:49.16464,367,129,932, +72,2014-01-16 05:29:01.946242,756,739,255, +22,2014-01-17 06:33:52.123203,17,889,987, +22,2014-01-10 23:59:04.470575,21,595,894, +59,2014-01-13 02:15:00.380699,192,51,75, +59,2014-01-18 13:09:08.604565,166,166,12, +59,2014-01-14 07:18:29.711117,377,930,598, +59,2014-01-14 17:27:41.057234,152,951,847, +72,2014-01-17 17:07:59.408953,95,677,907, +72,2014-01-16 23:34:40.874927,659,561,582, +72,2014-01-13 14:19:05.65023,246,670,398, +22,2014-01-19 05:44:18.396031,609,292,142, +22,2014-01-19 04:42:39.86575,557,461,122, +72,2014-01-16 10:37:16.503691,318,755,840, +72,2014-01-11 10:20:13.173914,61,948,776, +59,2014-01-21 02:30:12.213721,140,830,268, +22,2014-01-16 04:44:27.427623,300,160,121, +72,2014-01-15 21:38:03.942202,196,92,527, +72,2014-01-15 08:53:54.351826,186,790,65, +59,2014-01-20 02:26:52.127721,648,318,581, +72,2014-01-16 15:40:21.825492,510,659,700, +72,2014-01-12 11:07:13.27311,977,698,560, +72,2014-01-13 18:56:26.611819,677,735,855, +59,2014-01-14 06:35:48.110145,885,279,527, +59,2014-01-15 01:01:15.723039,769,764,189, +22,2014-01-12 11:37:16.176478,288,811,975, +72,2014-01-13 00:44:02.870739,675,404,723, +59,2014-01-20 01:58:28.699523,233,71,324, +22,2014-01-16 22:14:54.354335,287,955,170, +72,2014-01-17 21:15:22.86093,22,565,261, +22,2014-01-17 10:41:39.479948,482,444,486, +59,2014-01-11 14:33:43.518975,945,960,384, +22,2014-01-12 20:44:24.807172,268,428,548, +72,2014-01-13 11:15:31.603151,856,585,732, +59,2014-01-11 18:32:47.989969,799,566,106, +72,2014-01-15 02:59:25.18829,145,79,466, +29,2014-01-21 04:24:40.207716,943,165,456, +29,2014-01-15 05:51:17.701086,943,857,389, +69,2014-01-19 00:27:06.245524,650,708,450, +29,2014-01-17 15:32:39.616669,344,158,814, +29,2014-01-10 23:25:58.576013,421,368,91, +78,2014-01-11 08:46:11.896173,722,135,579, +69,2014-01-15 15:16:58.012701,231,134,960, +29,2014-01-19 08:08:38.442182,901,813,742, +11,2014-01-16 23:23:28.399865,327,726,179, +12,2014-01-16 05:37:11.186614,195,516,639, +78,2014-01-19 04:38:50.655903,235,453,275, +12,2014-01-11 22:07:55.827486,48,871,333, +29,2014-01-10 21:15:15.129234,659,50,328, +69,2014-01-13 07:32:45.007728,656,457,412, +69,2014-01-21 04:34:47.955207,214,174,498, +29,2014-01-16 16:55:36.954726,144,349,677, +69,2014-01-14 22:39:58.28084,940,693,767, +11,2014-01-13 17:31:14.567446,827,654,284, +78,2014-01-20 03:31:25.06529,48,489,889, +29,2014-01-19 03:41:14.003878,854,67,858, +29,2014-01-15 09:08:30.743924,11,403,138, +78,2014-01-11 22:15:27.936028,724,268,796, +69,2014-01-17 23:39:42.70382,803,207,992, +12,2014-01-11 01:23:25.098259,844,836,920, +69,2014-01-18 23:30:50.796958,521,386,144, +78,2014-01-14 04:21:22.183768,949,767,69, +69,2014-01-11 19:57:08.617653,87,471,824, +78,2014-01-21 00:15:15.604549,565,857,290, +78,2014-01-16 19:36:53.78692,529,437,50, +69,2014-01-12 18:29:56.607623,442,342,393, +69,2014-01-14 21:14:40.792839,155,504,968, +78,2014-01-16 18:01:33.995054,782,165,944, +78,2014-01-17 04:21:14.308708,700,914,194, +29,2014-01-12 15:41:47.038364,414,304,764, +29,2014-01-13 03:34:13.611724,808,671,830, +78,2014-01-17 07:47:12.884722,305,630,992, +69,2014-01-13 04:27:58.934536,639,378,401, +12,2014-01-17 22:51:11.624844,175,197,445, +69,2014-01-15 09:55:51.326904,615,536,849, +11,2014-01-19 07:51:27.334401,688,840,773, +11,2014-01-12 22:28:22.811457,725,716,898, +69,2014-01-13 08:34:41.982806,166,474,894, +69,2014-01-20 09:59:23.162306,915,841,269, +11,2014-01-12 23:43:37.940692,786,787,549, +78,2014-01-15 20:07:26.990534,721,551,417, +69,2014-01-20 08:34:11.117515,10,249,470, +12,2014-01-18 20:39:14.895836,954,689,244, +78,2014-01-19 22:47:25.271374,791,261,925, +12,2014-01-12 20:05:25.684959,362,360,505, +69,2014-01-17 18:10:39.961127,341,52,360, +11,2014-01-17 20:28:39.275671,47,812,760, +69,2014-01-17 09:13:56.429303,68,734,193, +11,2014-01-18 20:26:07.897155,708,793,96, +69,2014-01-14 14:08:21.979491,837,664,323, +69,2014-01-17 14:37:21.527562,878,587,401, +78,2014-01-16 13:56:58.694532,17,107,55, +11,2014-01-17 22:29:44.163259,906,121,817, +12,2014-01-18 14:34:30.145216,234,731,426, +11,2014-01-16 08:12:14.299081,635,957,672, +69,2014-01-13 12:06:37.950178,881,976,799, +12,2014-01-20 13:04:26.752838,51,826,688, +12,2014-01-20 09:26:55.09192,496,427,63, +69,2014-01-19 10:08:11.945233,719,254,896, +11,2014-01-16 11:25:41.061547,796,965,158, +78,2014-01-11 19:08:42.130283,158,961,39, +11,2014-01-11 07:42:25.557376,252,72,709, +29,2014-01-12 13:12:53.946687,171,477,648, +11,2014-01-14 03:36:41.065239,479,273,579, +69,2014-01-18 10:33:37.182219,37,497,109, +12,2014-01-17 03:08:45.273591,533,993,475, +12,2014-01-12 05:28:08.39964,250,254,807, +29,2014-01-20 13:01:59.993676,751,916,708, +29,2014-01-19 15:43:27.256817,849,2,624, +78,2014-01-11 09:27:31.561947,791,345,625, +12,2014-01-12 06:45:37.934787,944,239,898, +69,2014-01-14 05:50:54.247351,732,607,201, +11,2014-01-20 22:01:42.679879,567,871,553, +11,2014-01-20 07:24:52.830624,115,6,752, +78,2014-01-12 22:38:19.519144,698,442,270, +12,2014-01-12 12:07:08.36484,9,236,270, +12,2014-01-16 19:35:32.791751,503,877,548, +78,2014-01-19 23:06:58.794815,807,731,905, +29,2014-01-19 01:21:04.794142,856,775,389, +12,2014-01-14 10:01:40.688906,358,68,976, +78,2014-01-13 07:15:20.774305,648,723,629, +78,2014-01-15 09:58:26.322124,802,257,171, +69,2014-01-20 03:58:39.383439,227,77,515, +69,2014-01-20 09:45:04.937565,52,238,24, +11,2014-01-12 18:32:56.467339,420,685,112, +11,2014-01-15 06:10:53.68252,918,109,843, +69,2014-01-12 15:51:42.887743,455,511,267, +11,2014-01-12 01:37:23.220596,918,527,686, +69,2014-01-14 09:37:48.774441,306,537,957, +78,2014-01-21 05:59:54.833395,815,269,466, +12,2014-01-17 17:03:04.282143,806,423,829, +12,2014-01-15 08:46:30.905143,341,607,649, +29,2014-01-11 07:42:20.390771,557,354,419, +12,2014-01-19 10:15:58.22883,382,842,595, +78,2014-01-18 16:23:11.970382,796,700,857, +29,2014-01-18 22:15:57.57299,894,293,746, +69,2014-01-15 07:24:43.50284,831,873,297, +29,2014-01-20 01:51:20.370022,936,192,639, +29,2014-01-18 05:17:57.566666,833,435,188, +12,2014-01-13 17:08:10.759656,494,807,809, +69,2014-01-20 15:18:51.932387,636,701,808, +12,2014-01-19 16:03:35.501453,106,136,952, +69,2014-01-17 02:59:05.007007,206,346,732, +11,2014-01-20 07:20:34.612267,718,245,786, +69,2014-01-18 17:28:28.332077,862,365,806, +11,2014-01-19 05:37:24.526151,207,348,973, +12,2014-01-11 13:27:42.977106,42,905,923, +78,2014-01-14 07:04:01.123828,281,611,351, +11,2014-01-17 22:44:23.320966,295,683,464, +12,2014-01-19 18:48:47.771668,305,753,563, +69,2014-01-17 21:05:41.813153,439,103,326, +11,2014-01-20 09:59:44.095272,879,338,662, +12,2014-01-13 22:47:14.093791,996,123,841, +29,2014-01-16 19:04:21.196592,675,907,222, +12,2014-01-19 13:44:49.032836,629,529,735, +29,2014-01-15 21:20:10.56113,312,601,143, +11,2014-01-21 05:15:14.879531,459,545,80, +69,2014-01-10 23:36:31.920998,691,949,62, +78,2014-01-17 02:57:33.781726,521,19,505, +78,2014-01-14 08:53:03.653972,495,598,445, +11,2014-01-10 23:36:26.754393,298,593,754, +11,2014-01-13 14:00:38.064288,144,322,154, +29,2014-01-18 21:39:34.559115,650,140,224, +29,2014-01-11 11:18:47.145164,40,317,694, +78,2014-01-11 18:16:36.293118,899,92,123, +78,2014-01-16 08:02:46.529497,467,377,200, +12,2014-01-19 13:34:44.718153,148,985,583, +12,2014-01-16 05:41:19.795957,196,554,944, +69,2014-01-15 03:54:06.899937,957,704,860, +69,2014-01-16 12:52:42.284819,74,447,485, +78,2014-01-19 02:49:30.555614,599,192,351, +78,2014-01-14 13:12:58.832324,961,661,510, +12,2014-01-14 22:56:17.786691,979,128,879, +29,2014-01-14 23:48:35.56304,21,266,0, +12,2014-01-13 14:33:33.444591,198,773,353, +29,2014-01-12 10:24:46.118768,947,534,573, +12,2014-01-12 23:26:00.089191,81,395,359, +78,2014-01-14 08:01:16.421697,217,873,505, +78,2014-01-15 21:28:47.243016,753,317,688, +69,2014-01-20 02:10:23.410576,222,754,461, +29,2014-01-12 20:50:04.193365,86,680,130, +69,2014-01-12 12:34:29.056168,652,31,891, +69,2014-01-19 06:10:07.505848,788,410,937, +29,2014-01-15 23:37:18.287155,164,794,706, +29,2014-01-18 11:38:50.25276,857,813,681, +78,2014-01-17 13:54:56.539103,640,131,637, +78,2014-01-21 00:57:28.848704,793,874,599, +11,2014-01-18 10:54:05.132291,622,552,995, +12,2014-01-17 17:31:28.460101,859,534,168, +29,2014-01-16 21:55:02.63043,311,769,266, +78,2014-01-11 13:47:08.786681,576,874,827, +69,2014-01-17 21:07:55.214495,778,156,599, +11,2014-01-19 15:55:40.694718,26,145,677, +69,2014-01-19 15:26:43.345796,707,476,61, +78,2014-01-18 12:26:42.359658,808,799,422, +78,2014-01-20 14:12:16.988254,985,744,979, +11,2014-01-14 17:29:29.875711,288,445,660, +29,2014-01-16 20:01:27.077811,546,232,808, +29,2014-01-15 13:53:36.784211,622,325,562, +69,2014-01-19 01:23:36.775649,926,764,137, +78,2014-01-12 02:54:09.362631,160,549,755, +11,2014-01-13 10:43:07.340245,778,431,388, +78,2014-01-12 08:36:35.607973,504,823,699, +78,2014-01-16 05:50:27.149322,898,537,397, +29,2014-01-17 14:31:42.903284,184,538,109, +69,2014-01-15 03:10:09.052564,564,709,849, +12,2014-01-17 20:15:13.268509,758,58,773, +29,2014-01-19 17:57:42.992475,379,499,451, +12,2014-01-18 15:11:25.47426,517,340,716, +12,2014-01-12 11:44:00.511524,878,342,570, +12,2014-01-18 14:08:06.403051,377,481,696, +29,2014-01-20 16:01:29.668045,835,936,490, +29,2014-01-14 04:18:29.567693,33,292,704, +11,2014-01-16 14:18:13.909319,824,131,659, +12,2014-01-15 09:38:47.9552,25,924,696, +78,2014-01-11 09:57:19.820452,348,883,633, +69,2014-01-12 22:13:10.448422,231,306,84, +11,2014-01-15 04:36:16.803904,847,859,763, +29,2014-01-19 00:51:24.953162,512,731,442, +69,2014-01-19 19:44:38.908523,498,290,884, +69,2014-01-10 20:31:19.434753,748,858,50, +29,2014-01-19 18:38:33.739844,19,47,847, +11,2014-01-16 10:52:34.123018,860,804,438, +11,2014-01-19 16:27:00.129471,553,262,449, +29,2014-01-18 04:05:17.085641,822,344,218, +69,2014-01-13 17:19:16.482676,399,848,764, +11,2014-01-19 00:39:17.117725,343,627,254, +12,2014-01-11 15:34:46.961352,53,489,945, +29,2014-01-19 17:20:43.560489,141,997,263, +12,2014-01-13 08:32:53.902356,760,822,696, +11,2014-01-19 20:58:23.737,335,115,348, +11,2014-01-21 00:14:52.923119,807,327,271, +12,2014-01-15 23:16:01.2426,650,100,979, +78,2014-01-10 23:34:59.344973,832,844,280, +11,2014-01-16 00:05:20.07286,640,724,412, +11,2014-01-12 07:47:44.145884,650,843,679, +69,2014-01-15 06:45:08.397537,914,337,298, +78,2014-01-12 14:20:33.341369,97,432,339, +12,2014-01-21 05:45:27.138359,883,81,467, +29,2014-01-12 15:56:33.872217,509,52,686, +78,2014-01-14 06:04:33.852894,599,976,92, +12,2014-01-18 13:53:33.54183,939,771,518, +78,2014-01-12 01:58:03.540261,375,781,377, +12,2014-01-17 14:23:03.420585,837,86,937, +29,2014-01-13 22:11:47.451148,737,419,539, +69,2014-01-16 15:36:51.495461,165,907,695, +78,2014-01-18 04:20:23.241039,65,572,183, +29,2014-01-16 00:24:57.89957,534,700,483, +12,2014-01-21 00:13:08.299784,785,144,401, +78,2014-01-15 23:11:48.194201,347,607,305, +78,2014-01-14 14:09:36.808093,440,783,638, +11,2014-01-21 00:44:27.734538,738,114,355, +12,2014-01-14 11:50:21.934045,98,848,567, +29,2014-01-20 05:02:10.931111,168,256,661, +12,2014-01-19 11:11:27.864008,801,33,560, +11,2014-01-11 09:55:39.020104,158,606,564, +12,2014-01-12 16:21:27.413787,485,95,998, +69,2014-01-17 05:50:44.982153,364,657,850, +69,2014-01-12 05:30:25.981455,939,609,214, +78,2014-01-11 03:42:10.974276,648,676,408, +12,2014-01-19 18:23:38.884508,92,385,215, +78,2014-01-10 20:28:49.718875,20,904,449, +78,2014-01-10 21:57:03.897395,609,768,873, +69,2014-01-14 11:39:40.127108,106,831,85, +29,2014-01-11 00:03:49.063848,464,53,217, +12,2014-01-16 02:02:23.970254,211,192,69, +29,2014-01-15 23:27:24.272993,495,88,104, +69,2014-01-15 10:48:57.461804,427,189,619, +69,2014-01-17 20:22:57.311624,940,208,918, +12,2014-01-15 23:12:51.411353,914,350,791, +69,2014-01-17 06:45:31.334022,647,796,751, +12,2014-01-10 20:27:31.164517,795,442,354, +11,2014-01-13 07:06:24.953182,547,885,579, +12,2014-01-18 12:43:34.874283,147,12,665, +29,2014-01-17 14:50:34.585103,473,577,945, +78,2014-01-16 09:18:12.404331,891,23,994, +29,2014-01-13 22:20:26.369745,288,642,565, +69,2014-01-14 13:10:57.82656,604,955,467, +69,2014-01-11 03:43:10.303901,645,420,738, +11,2014-01-13 16:33:34.669529,575,951,636, +12,2014-01-19 16:22:46.02076,473,939,743, +11,2014-01-14 21:52:47.111994,687,993,987, +12,2014-01-13 11:18:02.404067,172,826,751, +29,2014-01-12 22:13:07.955225,298,411,696, +78,2014-01-13 20:54:58.043105,291,724,696, +12,2014-01-11 16:29:30.268494,86,171,875, +69,2014-01-13 12:08:46.975328,894,506,599, +78,2014-01-15 17:16:25.456893,387,415,149, +78,2014-01-18 02:20:15.250647,59,479,183, +78,2014-01-14 21:39:12.956784,143,637,955, +69,2014-01-16 00:58:36.431168,474,199,599, +29,2014-01-16 14:43:54.135156,123,146,750, +11,2014-01-14 22:08:02.675659,219,193,284, +78,2014-01-16 02:55:40.328981,675,782,14, +29,2014-01-20 06:23:34.262265,609,282,637, +11,2014-01-15 02:11:51.739927,478,373,747, +69,2014-01-10 22:58:04.299236,832,605,989, +29,2014-01-14 23:50:58.535257,986,948,945, +69,2014-01-19 17:00:49.201731,838,35,271, +78,2014-01-17 23:21:01.611279,230,46,571, +29,2014-01-20 03:03:49.94661,424,4,108, +12,2014-01-15 17:46:20.535753,284,904,309, +78,2014-01-17 23:48:32.775796,398,393,273, +69,2014-01-12 04:10:14.900212,644,291,584, +12,2014-01-13 00:29:55.410036,785,420,341, +29,2014-01-14 08:39:07.361318,172,981,758, +11,2014-01-17 17:28:27.304543,587,347,865, +12,2014-01-16 02:50:21.779781,986,200,212, +78,2014-01-18 01:50:05.187877,966,117,965, +29,2014-01-18 01:11:37.608863,673,478,948, +11,2014-01-18 23:23:56.449729,686,27,27, +78,2014-01-16 12:12:51.208638,929,769,350, +69,2014-01-11 17:04:24.720857,611,168,738, +78,2014-01-11 04:41:58.853796,184,601,976, +29,2014-01-18 14:25:59.163862,858,134,176, +12,2014-01-14 17:59:22.764381,671,734,157, +69,2014-01-12 01:11:29.12229,916,593,904, +11,2014-01-10 20:34:46.139191,991,571,720, +29,2014-01-19 15:15:48.221273,742,936,260, +12,2014-01-19 07:31:44.372936,952,569,814, +12,2014-01-14 22:13:59.096394,52,231,825, +11,2014-01-14 10:14:24.65286,966,540,462, +69,2014-01-14 16:15:38.508093,619,164,628, +78,2014-01-19 00:22:01.772053,603,695,444, +11,2014-01-19 17:10:04.981843,978,41,635, +29,2014-01-13 16:39:12.770357,891,677,70, +11,2014-01-12 20:33:53.51198,517,855,421, +78,2014-01-19 20:08:09.281078,992,937,7, +78,2014-01-17 20:30:11.305615,582,632,242, +78,2014-01-11 07:34:42.713711,341,414,319, +11,2014-01-16 13:29:10.892357,266,9,82, +11,2014-01-16 17:34:01.252645,744,824,835, +11,2014-01-16 05:21:03.249465,370,589,567, +69,2014-01-13 07:17:43.668572,251,215,453, +11,2014-01-18 01:44:16.152856,730,917,644, +69,2014-01-18 09:50:58.659501,692,748,449, +11,2014-01-16 19:56:51.029889,309,301,729, +11,2014-01-14 13:12:43.457399,601,619,63, +29,2014-01-13 06:41:20.439701,340,936,238, +78,2014-01-13 15:46:56.217767,673,891,145, +69,2014-01-11 08:24:21.066262,817,518,462, +12,2014-01-11 00:05:16.88943,28,758,90, +69,2014-01-19 07:59:47.426404,310,398,838, +69,2014-01-12 05:28:45.787538,571,0,426, +78,2014-01-11 08:47:15.743225,808,604,708, +29,2014-01-16 16:25:46.590685,918,56,976, +78,2014-01-16 03:28:08.551919,138,349,51, +69,2014-01-12 13:58:44.865934,968,95,556, +78,2014-01-16 17:00:32.729877,567,156,361, +12,2014-01-14 12:43:56.773192,188,682,988, +29,2014-01-21 01:30:29.238871,825,868,506, +69,2014-01-20 19:14:31.826271,633,825,509, +78,2014-01-18 02:58:21.426053,741,801,778, +69,2014-01-14 11:46:07.747383,317,523,971, +12,2014-01-18 13:36:33.598744,579,20,219, +11,2014-01-16 14:08:26.407895,953,32,197, +78,2014-01-17 08:25:20.51774,843,900,849, +11,2014-01-20 14:10:27.110724,841,456,124, +29,2014-01-15 04:16:35.689393,485,682,455, +11,2014-01-13 22:55:31.823774,666,635,102, +11,2014-01-21 01:45:09.824854,708,278,672, +29,2014-01-20 21:45:46.58175,848,383,925, +78,2014-01-19 20:29:33.076419,946,99,477, +11,2014-01-16 01:06:13.074319,9,545,448, +12,2014-01-12 23:03:30.250322,5,343,766, +12,2014-01-16 16:13:49.229275,624,776,541, +78,2014-01-13 04:57:11.73424,352,836,853, +29,2014-01-18 23:00:21.28021,388,687,448, +78,2014-01-20 09:26:32.686674,423,307,578, +12,2014-01-15 15:38:32.173941,64,576,487, +11,2014-01-11 08:47:17.497977,699,310,537, +12,2014-01-20 21:50:53.753355,100,38,273, +12,2014-01-15 19:43:49.06337,198,316,403, +69,2014-01-19 20:47:04.9248,286,448,463, +69,2014-01-11 21:19:39.540893,234,954,311, +12,2014-01-16 08:31:04.806596,138,313,770, +29,2014-01-15 07:12:51.515486,33,523,164, +11,2014-01-17 04:47:48.092811,643,323,149, +78,2014-01-18 02:29:49.67253,716,907,461, +11,2014-01-21 04:13:24.245363,178,429,116, +29,2014-01-20 21:31:44.866004,958,178,427, +69,2014-01-17 22:00:18.91182,587,500,893, +69,2014-01-20 17:27:56.072053,670,796,156, +69,2014-01-17 18:30:06.292476,480,881,374, +29,2014-01-11 03:46:26.659203,774,364,887, +69,2014-01-18 01:04:29.670797,301,90,978, +11,2014-01-13 02:38:32.700371,460,43,183, +78,2014-01-17 16:11:47.176943,511,182,688, +11,2014-01-17 09:14:56.78152,818,54,262, +69,2014-01-17 10:55:08.389764,296,139,570, +69,2014-01-20 19:07:19.000717,558,109,365, +78,2014-01-17 05:00:06.606375,977,827,821, +11,2014-01-17 02:40:54.971932,186,521,792, +12,2014-01-19 09:36:52.077135,197,709,129, +69,2014-01-12 00:06:19.681113,925,496,691, +11,2014-01-19 05:44:25.222253,395,628,540, +29,2014-01-14 19:50:41.30641,767,871,944, +78,2014-01-14 09:03:31.415352,530,410,552, +11,2014-01-16 22:44:46.502883,78,585,995, +69,2014-01-13 23:17:13.993503,704,550,828, +69,2014-01-19 04:42:03.589293,944,396,705, +12,2014-01-17 11:32:04.000859,568,68,396, +12,2014-01-13 15:08:07.746858,856,637,210, +11,2014-01-13 18:25:52.652663,854,216,865, +29,2014-01-16 02:19:08.925659,251,786,772, +12,2014-01-14 16:27:47.287751,768,538,802, +78,2014-01-19 06:56:57.459258,769,141,74, +69,2014-01-20 13:32:00.441146,613,101,229, +78,2014-01-21 01:15:35.380564,512,684,549, +12,2014-01-16 03:26:47.132207,960,808,373, +29,2014-01-20 11:45:24.686928,322,548,207, +69,2014-01-20 16:47:20.246567,738,704,957, +12,2014-01-12 19:27:06.044027,643,415,203, +78,2014-01-19 23:13:20.75898,855,962,1, +12,2014-01-17 05:17:26.539043,137,319,396, +78,2014-01-13 03:13:32.703229,143,422,816, +29,2014-01-16 18:17:50.429777,887,17,74, +69,2014-01-19 11:55:59.239832,667,429,720, +11,2014-01-19 23:25:19.880172,320,659,846, +11,2014-01-12 21:32:47.211297,719,270,581, +69,2014-01-15 16:51:07.629596,20,362,800, +69,2014-01-19 12:32:38.881308,991,373,156, +78,2014-01-19 06:32:53.818091,240,794,394, +29,2014-01-11 13:32:02.601528,515,484,981, +78,2014-01-17 16:09:30.958444,311,290,688, +78,2014-01-20 10:39:13.499204,505,666,45, +11,2014-01-19 23:16:27.8242,611,40,397, +78,2014-01-11 06:00:12.265273,891,483,267, +12,2014-01-13 13:42:44.914556,352,414,111, +11,2014-01-15 16:01:14.327083,457,525,6, +29,2014-01-14 09:17:26.258775,189,838,958, +11,2014-01-11 12:24:48.503849,857,334,323, +11,2014-01-11 21:33:18.327943,870,390,62, +29,2014-01-17 04:25:34.005633,445,440,663, +78,2014-01-14 10:50:41.156511,46,576,610, +12,2014-01-17 03:52:27.254022,146,76,538, +69,2014-01-21 00:53:21.293385,601,508,53, +78,2014-01-12 11:47:38.61577,44,143,495, +29,2014-01-16 11:24:27.695168,708,490,941, +29,2014-01-20 20:08:56.673948,528,305,222, +69,2014-01-17 19:14:25.747976,928,225,232, +78,2014-01-15 17:09:52.382095,124,425,131, +29,2014-01-20 06:56:16.920516,237,707,827, +78,2014-01-19 18:41:31.792003,80,299,775, +29,2014-01-14 10:23:13.141076,657,954,665, +29,2014-01-16 06:13:43.459977,229,505,939, +11,2014-01-11 15:55:04.495232,205,387,939, +29,2014-01-20 08:41:03.570852,653,678,708, +11,2014-01-14 12:09:42.69981,858,745,48, +29,2014-01-20 19:20:24.375824,298,345,923, +11,2014-01-12 00:13:50.782569,828,716,676, +11,2014-01-19 09:00:50.329406,145,981,727, +12,2014-01-19 01:53:03.257132,226,487,166, +11,2014-01-20 10:46:44.600659,107,843,95, +69,2014-01-20 02:32:52.931353,915,407,841, +11,2014-01-15 12:02:34.215575,313,324,415, +29,2014-01-19 15:25:58.099864,488,940,59, +12,2014-01-18 19:49:20.755553,848,776,211, +12,2014-01-15 22:02:46.480848,498,494,61, +12,2014-01-11 23:08:43.01442,118,440,450, +69,2014-01-13 05:50:35.082635,365,974,649, +11,2014-01-19 11:20:12.739623,996,141,705, +69,2014-01-12 15:33:31.518269,180,254,539, +29,2014-01-14 07:23:53.410578,772,3,456, +11,2014-01-15 09:45:46.745257,259,130,796, +12,2014-01-16 06:24:12.67478,975,33,694, +12,2014-01-20 15:16:20.6646,898,668,250, +11,2014-01-15 04:39:08.038642,794,219,971, +78,2014-01-17 22:11:51.29055,865,798,432, +11,2014-01-15 20:40:48.360186,546,554,349, +12,2014-01-14 18:48:04.712591,97,239,676, +29,2014-01-14 11:26:17.038945,887,968,372, +69,2014-01-20 17:50:40.742281,305,402,975, +12,2014-01-13 19:44:21.633525,446,763,636, +69,2014-01-13 00:07:48.830948,429,794,163, +69,2014-01-13 22:13:53.883776,72,45,18, +78,2014-01-19 05:58:05.093502,213,376,322, +12,2014-01-13 20:02:53.3266,370,755,177, +29,2014-01-13 00:54:57.454628,859,402,84, +11,2014-01-12 12:07:47.793311,274,900,859, +69,2014-01-13 09:23:17.702424,726,535,100, +12,2014-01-14 05:08:48.237197,334,319,805, +69,2014-01-21 01:08:38.122718,163,341,544, +11,2014-01-11 05:16:20.959555,218,770,192, +69,2014-01-13 09:55:32.837857,13,681,805, +78,2014-01-19 21:41:31.054071,308,746,275, +78,2014-01-15 21:18:55.175131,36,289,6, +69,2014-01-11 19:21:30.937721,845,338,465, +12,2014-01-17 11:30:51.809623,510,40,277, +12,2014-01-20 23:21:41.656398,686,723,901, +12,2014-01-12 22:30:13.952141,608,22,956, +78,2014-01-19 21:21:26.892258,867,784,112, +12,2014-01-19 04:41:54.396021,483,340,732, +29,2014-01-14 18:03:45.470409,656,598,149, +78,2014-01-12 22:45:20.303256,209,190,72, +29,2014-01-13 08:27:41.141697,773,573,389, +12,2014-01-20 04:27:58.14519,754,866,223, +78,2014-01-12 08:01:40.967856,447,556,572, +11,2014-01-17 17:06:49.18034,612,695,634, +69,2014-01-16 20:39:49.436157,105,801,344, +69,2014-01-17 08:42:29.328042,154,244,655, +11,2014-01-11 05:54:53.893349,777,659,974, +29,2014-01-20 12:06:06.475103,787,225,801, +69,2014-01-16 20:33:10.070742,880,629,730, +11,2014-01-14 05:39:15.526874,347,671,858, +78,2014-01-12 06:13:55.306051,143,539,620, +29,2014-01-19 22:47:03.954518,776,823,847, +11,2014-01-12 05:37:20.620375,928,146,837, +78,2014-01-15 06:16:48.63265,253,160,164, +69,2014-01-11 17:42:01.409146,832,383,653, +11,2014-01-13 21:45:08.413687,430,811,162, +69,2014-01-17 19:40:06.335074,129,693,552, +29,2014-01-15 02:50:49.646762,859,947,896, +11,2014-01-13 16:53:46.536405,958,129,961, +78,2014-01-18 04:56:27.294629,197,201,165, +12,2014-01-17 16:46:22.48462,679,599,111, +11,2014-01-12 08:35:17.590895,112,248,338, +78,2014-01-12 20:15:22.470179,235,751,925, +78,2014-01-18 16:07:53.422759,647,521,176, +12,2014-01-19 00:06:09.400518,162,729,123, +29,2014-01-12 13:37:04.126577,939,415,469, +69,2014-01-20 18:38:07.3749,992,34,551, +29,2014-01-17 15:27:36.293196,352,500,64, +69,2014-01-20 22:18:58.522598,721,677,708, +12,2014-01-14 06:41:52.845728,458,595,694, +69,2014-01-19 18:12:56.596451,503,673,890, +29,2014-01-13 00:46:39.664296,131,939,849, +78,2014-01-13 05:09:50.990917,520,436,140, +69,2014-01-10 20:14:37.564307,59,495,750, +12,2014-01-19 21:53:28.845054,554,470,704, +12,2014-01-19 05:49:40.427075,684,747,566, +78,2014-01-17 08:57:06.892768,325,862,895, +69,2014-01-20 07:48:22.738403,101,727,565, +78,2014-01-18 11:55:46.902177,300,619,836, +12,2014-01-12 23:30:16.96351,66,643,443, +11,2014-01-13 07:27:38.265276,43,1,534, +18,2014-01-19 22:09:42.208647,799,194,608, +75,2014-01-11 16:17:20.918028,31,646,972, +75,2014-01-14 17:04:58.885652,501,201,740, +18,2014-01-13 22:26:30.841298,750,897,677, +75,2014-01-12 13:59:22.327174,245,106,497, +75,2014-01-17 18:50:07.299339,307,237,958, +68,2014-01-20 22:06:37.176791,98,723,657, +18,2014-01-16 20:50:11.973936,248,359,299, +44,2014-01-20 15:43:53.835744,876,939,508, +68,2014-01-17 21:03:04.47142,522,817,959, +75,2014-01-13 07:36:34.458975,799,405,488, +68,2014-01-11 18:19:11.426639,225,58,779, +44,2014-01-19 21:18:26.941599,156,444,32, +75,2014-01-21 03:44:27.881734,640,229,817, +18,2014-01-19 22:25:20.827575,801,963,28, +67,2014-01-11 04:55:31.068176,294,859,633, +44,2014-01-20 16:22:35.256633,286,545,998, +44,2014-01-16 07:52:57.120771,216,552,464, +18,2014-01-10 21:14:29.591193,232,299,625, +44,2014-01-13 17:04:28.102361,276,804,421, +18,2014-01-14 20:05:53.717223,556,961,461, +44,2014-01-13 02:01:09.255489,320,478,101, +67,2014-01-16 02:14:19.093697,952,992,751, +67,2014-01-14 20:20:31.28153,482,760,220, +44,2014-01-11 17:54:38.100543,426,157,250, +18,2014-01-14 02:03:59.520772,558,865,623, +68,2014-01-10 23:17:38.174298,596,296,591, +44,2014-01-21 05:43:00.838945,682,641,448, +75,2014-01-11 07:59:46.423369,323,440,974, +44,2014-01-13 02:47:55.137808,215,58,908, +67,2014-01-13 07:10:39.104222,171,619,900, +75,2014-01-20 10:09:28.632016,472,421,878, +67,2014-01-13 23:05:16.055836,43,938,23, +67,2014-01-17 04:15:37.989873,347,327,505, +75,2014-01-13 02:35:59.473314,546,251,48, +68,2014-01-15 17:04:38.383429,918,31,57, +75,2014-01-13 17:05:45.289212,11,682,963, +44,2014-01-12 18:42:36.650103,717,726,444, +68,2014-01-11 07:54:50.357366,315,466,119, +67,2014-01-13 02:49:39.125375,101,484,563, +44,2014-01-19 19:45:41.121942,319,898,932, +67,2014-01-13 19:31:24.816341,488,945,219, +18,2014-01-14 01:08:50.552014,402,619,500, +18,2014-01-18 11:04:08.063541,298,76,497, +67,2014-01-13 17:15:52.698075,976,516,34, +18,2014-01-12 17:34:11.37959,148,323,490, +75,2014-01-18 19:59:39.132135,716,90,365, +68,2014-01-13 03:38:27.955127,959,665,737, +44,2014-01-18 05:27:08.50036,287,958,575, +75,2014-01-18 21:14:08.723328,23,943,721, +18,2014-01-16 00:42:56.057489,688,257,930, +67,2014-01-11 19:33:02.217582,702,17,901, +68,2014-01-21 03:15:17.978817,295,814,600, +67,2014-01-10 20:57:15.151185,320,945,245, +68,2014-01-15 19:53:33.499531,81,370,912, +18,2014-01-11 15:09:56.079778,511,476,190, +68,2014-01-14 03:01:14.672377,586,312,40, +75,2014-01-15 23:11:11.673829,772,824,884, +67,2014-01-11 14:52:56.918723,244,524,495, +18,2014-01-14 15:01:01.095746,755,748,214, +68,2014-01-18 05:59:06.812056,631,268,803, +44,2014-01-14 02:03:36.023364,682,226,521, +44,2014-01-13 19:10:29.727761,599,867,101, +18,2014-01-10 23:04:22.867893,810,456,443, +18,2014-01-20 10:19:14.013237,41,116,36, +44,2014-01-16 01:46:29.201075,994,478,771, +18,2014-01-15 20:09:01.251322,607,461,147, +67,2014-01-12 21:24:59.302868,673,105,649, +67,2014-01-18 00:29:05.851598,63,138,644, +68,2014-01-16 08:03:51.609107,285,793,516, +75,2014-01-15 04:14:38.428244,352,320,154, +44,2014-01-16 14:14:46.973541,891,474,668, +18,2014-01-19 07:35:16.425448,647,560,709, +44,2014-01-18 09:23:28.980257,888,466,39, +44,2014-01-13 19:18:55.037081,136,367,406, +68,2014-01-11 18:51:09.123942,53,926,271, +68,2014-01-20 06:57:40.360266,487,438,379, +75,2014-01-11 09:18:34.169217,281,336,999, +18,2014-01-14 02:29:37.079069,961,874,528, +44,2014-01-17 06:24:48.860626,533,71,378, +44,2014-01-19 10:32:42.892545,136,763,780, +44,2014-01-19 07:12:33.136557,614,36,580, +18,2014-01-18 05:57:51.078628,24,212,371, +75,2014-01-19 07:48:00.871781,719,857,741, +44,2014-01-19 08:09:48.288162,976,439,994, +44,2014-01-12 19:51:24.578159,270,618,506, +18,2014-01-20 02:57:56.951559,387,66,554, +44,2014-01-12 05:11:02.96054,638,204,222, +44,2014-01-17 23:02:36.251989,307,660,895, +44,2014-01-20 21:50:53.870282,448,465,471, +44,2014-01-16 00:12:04.056285,540,685,536, +18,2014-01-14 23:01:43.064046,644,460,521, +67,2014-01-13 17:54:29.893647,650,316,678, +75,2014-01-18 23:22:33.784047,357,338,287, +67,2014-01-15 02:06:05.932357,839,882,361, +18,2014-01-12 22:13:43.907303,95,162,756, +44,2014-01-13 19:09:02.985122,617,607,269, +75,2014-01-20 02:15:07.18368,388,569,342, +68,2014-01-14 23:38:43.210171,687,481,714, +75,2014-01-20 23:38:08.83672,491,78,199, +44,2014-01-15 04:18:58.792787,312,191,260, +18,2014-01-19 07:53:21.638415,405,397,400, +44,2014-01-16 07:52:55.81026,356,891,259, +44,2014-01-13 05:54:15.218654,611,838,296, +18,2014-01-16 11:16:50.618672,424,585,142, +44,2014-01-19 07:11:50.84776,394,606,626, +75,2014-01-14 04:45:24.342596,702,717,488, +67,2014-01-15 12:14:30.978938,555,500,555, +18,2014-01-19 20:30:25.016977,438,685,279, +18,2014-01-17 11:15:01.421665,798,59,895, +68,2014-01-11 12:39:19.839983,782,938,390, +75,2014-01-18 01:03:07.909941,814,337,459, +44,2014-01-15 12:27:34.558222,668,901,575, +44,2014-01-18 22:37:10.91861,850,91,965, +68,2014-01-16 02:51:08.781722,398,128,329, +67,2014-01-13 14:37:22.846384,382,202,669, +67,2014-01-20 22:28:35.49677,113,847,656, +68,2014-01-14 23:49:05.733281,221,563,444, +68,2014-01-14 23:48:25.806924,383,219,932, +68,2014-01-17 15:31:11.748759,77,633,369, +67,2014-01-14 15:39:59.603564,146,641,666, +44,2014-01-20 04:00:29.863209,495,901,118, +68,2014-01-11 08:32:54.813224,754,288,305, +75,2014-01-17 13:34:29.497629,20,650,675, +68,2014-01-17 21:23:03.647256,659,455,942, +75,2014-01-15 14:39:00.745581,778,137,115, +18,2014-01-19 15:48:13.404932,238,730,84, +68,2014-01-20 20:32:06.632797,274,295,934, +75,2014-01-14 10:54:07.929261,573,93,985, +75,2014-01-13 09:26:56.615103,464,414,543, +68,2014-01-20 14:10:15.469518,310,514,735, +44,2014-01-18 19:13:06.722468,856,833,864, +44,2014-01-11 11:20:18.253518,950,606,885, +68,2014-01-15 16:03:11.280197,263,965,8, +75,2014-01-21 05:07:21.941122,686,709,556, +18,2014-01-17 02:37:08.87219,321,404,310, +44,2014-01-13 17:15:02.127957,879,58,680, +75,2014-01-14 03:52:46.283718,760,729,563, +75,2014-01-11 08:51:39.851546,41,918,686, +67,2014-01-12 07:45:27.144934,360,419,421, +68,2014-01-20 19:07:47.705382,317,39,413, +68,2014-01-12 01:30:59.691529,790,335,281, +67,2014-01-19 12:48:35.054875,970,382,444, +67,2014-01-15 01:35:22.263604,263,550,711, +67,2014-01-20 04:08:10.61014,760,811,784, +18,2014-01-14 09:39:43.836597,39,106,278, +75,2014-01-17 20:12:45.110407,570,121,940, +18,2014-01-19 20:36:46.10691,14,249,685, +67,2014-01-18 13:28:49.569878,116,158,426, +67,2014-01-11 14:01:10.917331,372,128,939, +44,2014-01-16 06:07:57.85567,93,554,36, +44,2014-01-11 23:08:49.173861,419,471,537, +68,2014-01-20 22:01:40.780959,89,397,234, +68,2014-01-16 18:40:52.668894,367,974,382, +18,2014-01-18 16:43:18.671491,226,642,759, +18,2014-01-17 13:24:44.428216,662,646,861, +67,2014-01-11 03:19:53.414475,396,579,395, +44,2014-01-17 02:31:32.076423,278,633,265, +75,2014-01-17 03:56:51.061013,215,427,2, +68,2014-01-14 18:14:01.344156,955,780,570, +68,2014-01-19 15:58:28.691527,219,841,405, +67,2014-01-16 12:07:06.530949,387,374,220, +18,2014-01-12 07:27:08.066624,16,119,651, +75,2014-01-20 07:18:46.945044,86,387,129, +18,2014-01-10 22:10:17.811147,574,228,935, +67,2014-01-12 06:34:30.007746,991,283,147, +44,2014-01-16 03:55:55.817233,532,830,798, +18,2014-01-13 19:25:19.939104,396,718,279, +18,2014-01-15 14:27:16.291464,657,481,379, +75,2014-01-16 16:47:35.668779,841,37,201, +67,2014-01-15 07:10:47.084038,571,66,943, +67,2014-01-15 03:35:03.996846,597,905,962, +67,2014-01-17 22:18:35.360308,165,463,681, +75,2014-01-13 13:59:22.139332,175,17,234, +67,2014-01-19 09:10:26.26045,839,691,403, +18,2014-01-16 20:26:45.970448,456,958,308, +68,2014-01-17 03:39:05.975929,816,733,419, +68,2014-01-15 23:23:11.370858,248,86,745, +67,2014-01-15 11:03:32.077358,852,822,823, +44,2014-01-14 11:07:55.546227,114,265,599, +44,2014-01-16 17:24:22.288608,505,574,882, +75,2014-01-20 21:11:29.933447,999,225,28, +75,2014-01-15 14:16:44.720089,799,258,620, +44,2014-01-16 09:26:03.069568,906,188,611, +18,2014-01-16 09:52:22.602341,111,449,997, +75,2014-01-13 01:00:03.391579,97,565,186, +68,2014-01-12 16:50:47.497783,14,519,715, +75,2014-01-16 17:12:16.017234,694,487,5, +44,2014-01-19 07:31:35.468003,201,834,3, +18,2014-01-19 00:47:38.559215,58,755,317, +67,2014-01-20 15:26:17.36139,389,30,42, +44,2014-01-17 17:30:04.159529,179,27,369, +68,2014-01-14 06:54:45.090165,980,400,50, +44,2014-01-11 16:53:25.428014,528,554,918, +44,2014-01-16 18:48:51.104574,657,737,819, +75,2014-01-14 09:05:02.90131,137,623,700, +67,2014-01-13 03:27:55.435759,311,498,40, +67,2014-01-11 16:44:46.921807,930,644,726, +44,2014-01-17 08:30:22.840415,245,525,789, +18,2014-01-17 21:55:11.727223,141,622,894, +68,2014-01-17 13:32:22.591005,988,893,683, +67,2014-01-11 09:41:09.924452,852,776,348, +18,2014-01-11 19:30:15.724068,500,458,423, +68,2014-01-14 05:50:57.951314,181,141,133, +68,2014-01-14 03:40:32.063784,296,55,163, +67,2014-01-20 08:40:41.984519,118,767,192, +44,2014-01-20 06:17:43.922181,774,959,865, +44,2014-01-20 11:19:38.040133,806,810,633, +68,2014-01-15 02:03:53.355795,802,141,573, +68,2014-01-14 11:21:15.99954,30,619,574, +44,2014-01-13 16:27:33.58636,413,653,374, +44,2014-01-20 23:28:15.644403,73,915,654, +68,2014-01-14 02:32:45.932986,345,702,899, +44,2014-01-18 10:44:18.306449,722,365,48, +44,2014-01-16 02:54:18.713972,822,723,364, +67,2014-01-19 16:25:08.535746,60,578,991, +18,2014-01-20 15:44:21.698028,931,767,87, +67,2014-01-17 23:45:06.211754,327,702,298, +75,2014-01-15 03:37:24.55298,746,294,940, +67,2014-01-18 17:15:57.166031,875,818,223, +75,2014-01-15 18:32:44.77097,525,627,957, +18,2014-01-14 13:03:41.91437,999,789,447, +18,2014-01-15 04:46:01.32556,208,626,882, +18,2014-01-19 05:27:29.861134,187,240,68, +44,2014-01-15 09:57:07.342383,444,498,765, +68,2014-01-21 03:34:52.430134,305,266,888, +68,2014-01-12 08:32:32.762445,69,388,865, +67,2014-01-17 17:25:02.778143,958,819,969, +75,2014-01-11 14:19:39.351942,791,512,674, +18,2014-01-18 21:02:55.602859,654,491,133, +44,2014-01-14 09:20:14.505366,819,526,635, +67,2014-01-18 07:52:01.942947,197,597,301, +67,2014-01-19 10:44:05.527731,203,329,481, +67,2014-01-15 08:50:30.229433,742,186,579, +68,2014-01-11 07:42:59.89468,496,627,688, +18,2014-01-12 08:24:37.591516,568,104,601, +44,2014-01-14 11:31:12.213951,785,838,155, +75,2014-01-20 18:00:43.816861,612,531,63, +68,2014-01-11 13:44:15.63165,309,625,696, +67,2014-01-18 17:35:05.569747,772,789,905, +67,2014-01-13 23:21:59.816401,719,93,909, +68,2014-01-14 10:11:49.21801,946,997,553, +68,2014-01-18 11:03:21.21415,990,602,488, +68,2014-01-17 05:54:45.749807,804,872,849, +44,2014-01-11 14:56:07.524458,874,581,332, +67,2014-01-13 07:57:39.928122,252,682,199, +75,2014-01-15 16:19:54.285552,726,678,520, +75,2014-01-11 00:40:29.222487,780,465,507, +75,2014-01-20 11:42:46.140296,262,297,470, +75,2014-01-19 23:57:18.838532,140,786,173, +67,2014-01-18 21:56:26.388519,165,468,674, +68,2014-01-15 00:15:30.911266,702,256,21, +44,2014-01-13 07:01:00.752902,177,922,275, +44,2014-01-12 20:42:27.714079,249,576,5, +18,2014-01-12 23:43:00.772819,282,137,720, +44,2014-01-17 20:58:08.095286,528,686,646, +44,2014-01-12 18:17:20.144214,708,408,919, +18,2014-01-14 12:15:33.535264,870,782,611, +18,2014-01-14 08:23:10.873429,488,455,912, +68,2014-01-13 12:36:59.496575,973,645,744, +18,2014-01-12 03:18:29.138543,468,757,256, +67,2014-01-17 21:43:25.378794,293,891,664, +44,2014-01-21 00:29:01.439522,887,626,241, +68,2014-01-20 18:02:34.666274,650,504,116, +67,2014-01-12 00:33:55.608227,194,555,273, +68,2014-01-11 02:12:01.334202,506,854,908, +75,2014-01-11 20:27:12.25779,908,237,617, +75,2014-01-15 16:05:07.822179,869,30,35, +75,2014-01-21 00:12:45.151064,135,264,197, +67,2014-01-12 14:11:27.889858,686,505,213, +68,2014-01-13 03:40:13.392345,178,942,576, +44,2014-01-13 17:34:44.967883,403,693,911, +67,2014-01-16 04:23:17.107869,419,740,924, +75,2014-01-20 18:43:34.606495,698,366,768, +75,2014-01-20 03:29:30.717691,201,992,994, +18,2014-01-16 23:19:24.632746,151,127,515, +67,2014-01-12 20:41:14.535035,507,663,958, +18,2014-01-14 13:49:25.003243,412,57,488, +44,2014-01-17 03:59:53.855233,2,135,892, +18,2014-01-12 02:24:00.675331,888,329,592, +75,2014-01-13 07:46:43.841776,319,156,539, +18,2014-01-14 19:56:20.244171,281,68,532, +18,2014-01-16 06:39:31.586597,469,109,395, +44,2014-01-15 18:47:44.594678,778,948,313, +68,2014-01-16 20:38:47.958251,48,901,923, +18,2014-01-18 10:22:32.359416,751,212,141, +68,2014-01-12 09:45:52.689965,216,943,699, +18,2014-01-18 18:56:08.102884,636,411,187, +67,2014-01-11 16:38:05.895098,597,784,470, +18,2014-01-15 22:09:03.563393,392,409,965, +67,2014-01-11 01:33:07.599458,125,781,393, +67,2014-01-12 23:56:35.033641,562,329,26, +18,2014-01-12 13:52:28.942187,884,570,169, +18,2014-01-10 20:02:09.03898,951,540,758, +44,2014-01-12 11:59:09.699915,276,566,52, +67,2014-01-13 18:26:24.550415,716,984,932, +75,2014-01-11 02:14:10.373601,394,695,464, +18,2014-01-13 12:26:21.957704,26,482,698, +68,2014-01-18 14:31:32.372593,752,271,647, +75,2014-01-10 20:26:55.524665,492,821,403, +67,2014-01-15 06:37:49.847562,921,725,119, +68,2014-01-20 22:11:45.764937,65,109,332, +68,2014-01-13 18:01:40.492548,742,234,614, +68,2014-01-20 15:01:06.95585,154,97,959, +18,2014-01-20 10:55:20.371851,403,588,547, +67,2014-01-12 15:31:11.210239,995,710,934, +75,2014-01-16 08:20:31.588596,538,438,285, +67,2014-01-12 01:36:34.906887,793,129,529, +67,2014-01-16 09:20:36.213482,855,833,198, +44,2014-01-12 06:20:25.443829,712,636,689, +44,2014-01-13 08:00:35.582219,584,890,744, +75,2014-01-18 21:07:20.055257,660,244,656, +68,2014-01-16 06:16:45.688,544,501,509, +75,2014-01-18 18:40:07.168815,68,799,465, +44,2014-01-13 09:55:04.649935,159,600,44, +67,2014-01-11 20:55:33.646671,358,383,685, +67,2014-01-15 23:02:39.528649,546,432,56, +44,2014-01-14 23:40:57.3399,959,185,166, +68,2014-01-19 19:51:41.749554,829,102,508, +18,2014-01-16 19:40:45.423747,141,940,859, +18,2014-01-20 01:50:00.903293,13,777,4, +18,2014-01-20 01:24:49.349013,803,934,105, +18,2014-01-18 23:37:20.457388,463,177,29, +75,2014-01-11 09:42:29.84548,339,169,70, +18,2014-01-20 01:26:58.387993,471,805,126, +18,2014-01-20 15:36:30.157302,464,272,146, +67,2014-01-14 08:08:54.395895,136,512,896, +67,2014-01-20 07:41:08.761594,811,910,253, +67,2014-01-12 22:02:52.115005,463,514,535, +18,2014-01-11 16:40:26.768906,136,700,933, +67,2014-01-20 08:08:04.286678,505,443,118, +18,2014-01-17 08:40:41.962986,662,983,670, +44,2014-01-11 08:52:12.533844,787,441,812, +67,2014-01-12 20:09:44.779226,169,368,499, +75,2014-01-16 17:41:48.918836,181,352,902, +68,2014-01-20 23:47:32.905695,682,83,389, +67,2014-01-14 15:40:55.989883,482,325,458, +18,2014-01-11 20:02:20.507432,965,480,562, +44,2014-01-11 19:24:07.812582,807,622,594, +75,2014-01-20 05:01:32.203366,46,558,37, +18,2014-01-13 06:22:45.951261,909,354,425, +68,2014-01-14 07:24:43.3948,128,537,855, +67,2014-01-17 20:08:52.259043,240,390,983, +68,2014-01-18 16:39:31.639681,901,770,406, +18,2014-01-11 20:04:50.564034,499,818,571, +75,2014-01-20 10:03:56.908978,322,506,515, +68,2014-01-19 17:35:05.286351,859,801,909, +44,2014-01-16 23:07:30.092683,815,858,31, +67,2014-01-14 03:44:54.249297,944,232,929, +44,2014-01-18 07:26:47.035905,29,469,639, +44,2014-01-12 12:48:15.516431,983,238,347, +67,2014-01-12 23:34:55.15259,781,915,11, +67,2014-01-17 02:51:36.384919,532,970,139, +44,2014-01-20 16:25:35.973819,917,522,716, +75,2014-01-13 13:17:24.99849,865,20,442, +18,2014-01-15 22:18:34.772911,375,507,559, +18,2014-01-20 02:02:06.131121,675,170,806, +67,2014-01-17 01:26:19.394383,492,847,674, +67,2014-01-14 23:59:43.534925,891,861,513, +44,2014-01-11 18:04:58.246126,158,464,536, +67,2014-01-17 22:06:46.163291,859,306,111, +68,2014-01-14 02:07:47.821602,915,762,506, +68,2014-01-18 06:45:40.209113,479,979,993, +68,2014-01-18 10:58:58.697553,131,536,360, +44,2014-01-16 02:17:32.600828,361,40,560, +68,2014-01-13 18:27:29.127949,548,692,872, +68,2014-01-18 04:46:31.603248,36,349,559, +75,2014-01-19 21:58:28.590712,557,467,504, +68,2014-01-14 18:29:49.635381,412,971,326, +44,2014-01-19 04:10:39.416249,937,867,382, +44,2014-01-18 21:00:00.794497,495,195,170, +67,2014-01-17 04:52:35.587061,974,266,917, +75,2014-01-12 05:35:22.81105,472,436,854, +67,2014-01-15 11:08:53.05354,192,202,301, +67,2014-01-14 15:32:07.226743,12,264,345, +67,2014-01-13 05:40:13.375084,218,281,175, +44,2014-01-14 15:12:49.962517,629,232,60, +67,2014-01-13 03:07:12.513094,362,524,175, +75,2014-01-19 08:47:43.467768,796,282,386, +68,2014-01-17 22:57:44.211815,883,402,3, +68,2014-01-20 14:33:59.548999,156,484,359, +68,2014-01-21 01:35:58.984199,608,364,601, +18,2014-01-20 02:32:39.364823,773,829,347, +67,2014-01-16 11:25:35.933918,895,928,152, +68,2014-01-20 12:01:34.958018,45,971,416, +44,2014-01-12 09:50:04.363313,547,422,844, +44,2014-01-11 03:44:10.706829,601,801,568, +67,2014-01-19 08:03:41.089139,659,120,247, +67,2014-01-18 15:16:23.757696,676,753,300, +44,2014-01-15 07:43:54.241753,244,207,433, +44,2014-01-20 06:08:39.335683,505,505,666, +44,2014-01-15 07:23:09.921405,378,136,934, +44,2014-01-18 13:51:42.063356,976,118,421, +44,2014-01-17 06:54:19.544796,581,363,883, +44,2014-01-12 12:22:08.618958,358,436,993, +44,2014-01-13 10:09:14.664603,17,810,231, +18,2014-01-20 05:21:48.673164,91,187,468, +68,2014-01-19 21:08:40.222207,253,66,161, +44,2014-01-12 02:07:43.255316,639,720,626, +18,2014-01-13 17:51:38.308545,963,809,619, +44,2014-01-17 19:19:19.638456,340,861,21, +18,2014-01-20 03:07:44.049814,401,49,357, +68,2014-01-20 02:44:13.895606,959,533,669, +67,2014-01-19 04:54:42.449925,877,405,310, +75,2014-01-14 08:16:37.103352,790,304,182, +67,2014-01-13 12:16:21.122349,598,555,961, +75,2014-01-11 04:34:55.825009,156,503,508, +67,2014-01-18 03:29:27.066289,153,934,782, +67,2014-01-15 19:23:33.635443,1000,223,556, +75,2014-01-19 17:22:39.293197,866,985,306, +18,2014-01-14 20:27:11.278103,914,265,344, +68,2014-01-15 03:57:33.184442,287,843,263, +18,2014-01-19 12:58:38.277396,906,955,462, +67,2014-01-13 16:59:50.642926,378,612,636, +44,2014-01-20 19:23:09.118359,350,573,460, +44,2014-01-18 19:00:13.235833,676,830,715, +68,2014-01-15 06:49:55.006239,223,816,659, +75,2014-01-21 03:07:19.825606,151,653,578, +68,2014-01-16 21:03:54.324971,891,167,670, +68,2014-01-12 16:06:18.764354,144,501,494, +67,2014-01-15 04:51:14.06736,494,412,626, +67,2014-01-15 21:12:33.660654,684,218,676, +75,2014-01-17 03:29:28.685759,865,380,603, +68,2014-01-12 12:42:56.131135,526,321,944, +67,2014-01-11 22:06:53.205869,700,64,188, +68,2014-01-18 19:51:37.304718,2,778,885, +18,2014-01-15 02:52:10.795739,20,193,172, +44,2014-01-10 21:28:41.879033,384,335,724, +18,2014-01-17 11:00:17.526925,281,1,336, +44,2014-01-16 08:59:54.051055,338,334,317, +67,2014-01-13 19:20:20.187578,0,930,386, +68,2014-01-14 00:19:37.1658,426,697,630, +44,2014-01-15 06:07:38.101287,751,881,77, +67,2014-01-12 16:04:34.083603,326,448,831, +75,2014-01-11 23:14:19.615726,570,615,109, +68,2014-01-18 18:24:15.20464,911,223,257, +68,2014-01-15 08:20:55.205952,607,820,254, +75,2014-01-12 07:49:15.440735,935,906,770, +75,2014-01-15 15:53:42.270928,995,375,302, +68,2014-01-20 07:44:28.841814,484,342,904, +44,2014-01-21 05:11:54.733932,869,45,81, +68,2014-01-19 16:20:53.54945,966,398,246, +75,2014-01-14 05:42:02.026255,245,40,793, +68,2014-01-19 12:10:33.011748,623,865,63, +68,2014-01-12 03:20:44.192376,479,870,190, +67,2014-01-13 19:05:11.145033,522,902,794, +68,2014-01-17 01:10:46.247581,625,195,92, +68,2014-01-16 14:10:39.199034,80,524,484, +75,2014-01-13 16:12:30.97064,851,964,350, +68,2014-01-12 16:14:40.572552,408,503,222, +67,2014-01-18 10:16:57.963389,256,289,303, +75,2014-01-18 01:03:45.038,269,779,176, +75,2014-01-17 17:27:14.233626,358,156,507, +75,2014-01-14 07:46:26.649148,542,949,101, +18,2014-01-19 17:46:41.169135,846,168,437, +75,2014-01-18 19:34:07.439495,772,156,62, +68,2014-01-11 21:38:03.953866,379,485,831, +18,2014-01-13 14:38:51.964874,308,883,314, +68,2014-01-18 21:02:49.318528,85,446,626, +75,2014-01-18 12:38:21.480791,878,92,464, +68,2014-01-19 03:38:46.016348,727,775,32, +18,2014-01-11 10:23:09.506105,397,393,250, +18,2014-01-11 06:57:58.646592,158,683,478, +67,2014-01-13 03:46:24.117635,671,916,984, +18,2014-01-13 06:27:43.589709,709,972,112, +68,2014-01-12 10:12:18.262317,136,127,949, +18,2014-01-21 02:10:39.322275,411,845,716, +75,2014-01-17 18:48:38.79608,852,808,942, +18,2014-01-13 22:01:33.703472,699,994,984, +44,2014-01-15 12:04:21.593622,313,843,257, +75,2014-01-16 20:33:07.637895,537,192,113, +18,2014-01-13 21:13:28.437404,660,244,678, +75,2014-01-13 22:25:15.143073,388,316,480, +75,2014-01-20 06:15:09.66415,614,724,665, +67,2014-01-12 03:24:01.449152,679,164,212, +68,2014-01-15 05:45:59.335449,223,734,765, +67,2014-01-12 19:20:20.809183,262,262,950, +75,2014-01-18 08:34:47.696733,292,522,787, +68,2014-01-20 23:56:38.534483,683,284,564, +75,2014-01-15 15:32:51.779823,293,942,260, +68,2014-01-20 04:49:28.269704,189,458,892, +18,2014-01-18 04:13:36.497871,182,711,221, +44,2014-01-12 10:36:36.818243,153,7,992, +75,2014-01-16 16:16:42.50333,119,510,211, +18,2014-01-11 06:00:03.147019,220,708,295, +18,2014-01-10 22:23:17.987378,503,346,629, +18,2014-01-14 05:50:49.942825,106,423,774, +18,2014-01-12 07:38:07.100885,130,447,695, +68,2014-01-13 17:02:09.952672,571,983,832, +18,2014-01-11 20:53:39.261352,393,836,311, +44,2014-01-20 00:16:28.582095,406,542,666, +44,2014-01-11 14:40:55.96902,450,54,609, +44,2014-01-12 11:16:48.767458,853,765,769, +67,2014-01-20 11:14:27.228686,568,637,110, +68,2014-01-13 22:27:20.086655,282,841,883, +18,2014-01-14 21:44:32.357586,83,652,472, +68,2014-01-11 15:26:45.491423,392,831,554, +44,2014-01-13 18:37:59.40893,984,106,849, +44,2014-01-11 10:33:11.153667,302,642,24, +18,2014-01-14 17:28:19.194894,800,935,270, +18,2014-01-18 10:42:21.002552,825,741,812, +44,2014-01-17 11:06:18.791561,810,395,777, +18,2014-01-17 18:41:47.632298,51,854,699, +18,2014-01-11 03:07:36.145625,393,810,645, +67,2014-01-16 11:21:28.455711,822,334,987, diff --git a/src/test/regress/data/users_table.data b/src/test/regress/data/users_table.data new file mode 100644 index 000000000..10c6d0a10 --- /dev/null +++ b/src/test/regress/data/users_table.data @@ -0,0 +1,10001 @@ +20,2014-01-12 21:54:06.407068,694,209,469, +60,2014-01-11 22:26:06.279143,87,624,82, +8,2014-01-18 04:13:25.327728,680,744,389, +8,2014-01-19 00:13:13.75574,941,143,540, +20,2014-01-18 14:25:31.817903,11,382,36, +20,2014-01-17 12:29:23.92051,775,707,573, +60,2014-01-12 05:08:11.923195,404,258,743, +8,2014-01-19 21:32:04.142373,525,417,264, +8,2014-01-20 14:06:39.70089,76,910,863, +8,2014-01-15 10:44:00.073976,511,455,264, +8,2014-01-11 02:42:09.964504,431,536,491, +8,2014-01-12 22:21:12.195373,668,461,88, +60,2014-01-13 03:08:23.408488,586,484,29, +20,2014-01-12 23:30:58.098957,676,236,455, +20,2014-01-12 09:53:03.733107,515,588,45, +60,2014-01-13 20:18:35.657453,995,393,171, +20,2014-01-16 02:24:40.32348,705,122,660, +8,2014-01-11 08:29:01.795058,114,383,984, +60,2014-01-19 15:10:28.893394,344,893,866, +8,2014-01-12 08:44:52.480069,303,175,536, +60,2014-01-20 11:57:36.824796,607,312,906, +8,2014-01-11 15:30:29.850663,383,857,175, +60,2014-01-15 21:34:51.127834,437,459,958, +20,2014-01-13 15:52:00.487557,994,268,462, +60,2014-01-15 04:34:37.693767,26,119,136, +60,2014-01-12 18:23:34.627112,291,193,712, +60,2014-01-17 19:44:49.149707,547,875,491, +8,2014-01-18 22:57:47.284532,901,224,103, +20,2014-01-18 04:04:11.076476,6,691,656, +60,2014-01-19 23:36:51.343179,925,630,955, +60,2014-01-18 23:11:11.479107,482,942,224, +20,2014-01-20 05:58:17.483964,296,621,564, +20,2014-01-21 02:02:57.622741,966,676,665, +8,2014-01-15 21:24:36.807255,229,491,144, +20,2014-01-18 00:11:31.239703,485,468,314, +8,2014-01-18 10:28:29.440644,788,792,908, +8,2014-01-12 03:54:00.727766,302,128,180, +20,2014-01-19 09:19:43.163317,740,966,197, +20,2014-01-17 02:00:33.583017,362,297,96, +8,2014-01-11 12:00:40.428655,289,460,848, +20,2014-01-13 14:03:43.237293,80,498,505, +20,2014-01-17 08:42:43.547522,845,310,74, +60,2014-01-13 14:21:52.624027,660,404,790, +60,2014-01-15 21:12:06.64578,8,100,946, +20,2014-01-19 12:13:41.646479,59,877,160, +20,2014-01-15 04:14:56.357553,348,383,957, +60,2014-01-18 21:30:42.303234,943,992,17, +8,2014-01-14 08:38:21.970378,926,641,755, +60,2014-01-15 16:43:58.152612,976,328,962, +60,2014-01-17 06:41:11.196628,115,342,958, +60,2014-01-15 21:23:14.450446,640,448,47, +20,2014-01-14 22:41:34.977827,76,921,547, +60,2014-01-18 02:11:41.047709,237,603,288, +20,2014-01-20 22:58:05.578281,71,395,820, +60,2014-01-17 18:33:35.465384,402,38,535, +60,2014-01-12 00:46:18.741476,540,746,741, +60,2014-01-12 11:21:40.205393,214,131,73, +60,2014-01-14 08:18:24.615509,714,864,474, +8,2014-01-20 03:44:06.026008,54,811,819, +20,2014-01-19 19:25:51.282289,533,92,511, +8,2014-01-13 01:55:15.958689,438,861,888, +60,2014-01-17 20:55:17.505117,932,598,349, +8,2014-01-18 19:24:08.766252,820,637,236, +8,2014-01-12 21:58:13.581429,380,121,539, +8,2014-01-12 12:19:54.312371,719,851,875, +60,2014-01-15 13:35:40.005954,607,862,734, +60,2014-01-20 12:26:43.022074,570,396,526, +60,2014-01-13 20:13:55.040555,305,596,390, +8,2014-01-13 16:55:23.169271,491,118,836, +60,2014-01-16 08:27:16.605091,408,804,545, +60,2014-01-14 12:14:35.46921,842,536,244, +8,2014-01-16 10:59:06.406564,26,763,724, +20,2014-01-12 11:10:00.152612,975,184,211, +60,2014-01-17 06:36:28.093657,708,873,993, +8,2014-01-11 02:11:13.052764,167,137,598, +60,2014-01-21 03:23:41.79951,700,503,950, +8,2014-01-11 04:51:24.45121,351,62,449, +8,2014-01-19 03:41:55.355997,734,796,778, +20,2014-01-14 06:02:03.769888,267,69,790, +8,2014-01-16 01:35:22.603823,927,663,363, +60,2014-01-15 04:23:06.553044,698,314,415, +60,2014-01-19 07:25:18.220334,765,504,378, +8,2014-01-20 04:16:57.58165,238,550,198, +20,2014-01-12 00:34:47.600753,851,404,641, +20,2014-01-19 00:23:23.798616,783,133,739, +20,2014-01-16 16:50:33.047452,625,848,401, +60,2014-01-13 05:21:06.342229,70,374,19, +8,2014-01-20 15:45:04.004008,916,995,897, +20,2014-01-20 05:08:57.662962,624,504,179, +8,2014-01-12 03:05:12.368238,109,847,544, +20,2014-01-19 05:10:55.286297,532,542,241, +8,2014-01-12 01:04:13.621651,324,840,760, +20,2014-01-19 04:00:29.873354,960,233,133, +20,2014-01-16 18:35:04.052549,575,13,107, +60,2014-01-14 03:02:27.2035,763,624,244, +8,2014-01-20 20:20:24.186145,676,212,605, +60,2014-01-11 02:10:44.058922,766,276,633, +60,2014-01-13 09:29:10.225573,683,602,661, +60,2014-01-13 10:34:19.2267,32,462,274, +20,2014-01-13 23:06:07.228193,271,822,325, +60,2014-01-18 21:56:26.831083,160,49,798, +8,2014-01-17 02:48:54.69591,273,262,262, +8,2014-01-19 14:05:13.635176,266,618,287, +8,2014-01-20 13:06:26.983695,369,268,60, +60,2014-01-13 03:25:22.789568,228,784,224, +60,2014-01-19 20:16:26.68794,923,444,728, +8,2014-01-20 10:30:08.783205,616,174,984, +60,2014-01-13 12:16:47.240778,877,955,539, +20,2014-01-17 17:58:22.043936,999,141,755, +20,2014-01-13 10:32:12.553093,740,555,554, +20,2014-01-18 17:52:09.84502,113,466,532, +20,2014-01-11 16:21:28.59698,253,909,50, +60,2014-01-11 11:57:30.773427,757,526,821, +20,2014-01-17 16:09:07.42667,998,883,143, +60,2014-01-12 20:56:16.197733,934,834,372, +60,2014-01-19 16:20:54.572043,819,877,211, +8,2014-01-13 02:59:40.474122,520,393,210, +8,2014-01-15 06:17:22.539964,256,657,683, +20,2014-01-19 02:05:58.57647,878,217,765, +8,2014-01-12 02:08:38.137084,453,532,956, +60,2014-01-16 13:22:34.908201,803,865,572, +60,2014-01-17 01:16:53.862767,481,89,294, +8,2014-01-13 07:12:51.759154,659,979,376, +20,2014-01-14 11:23:04.781975,203,173,336, +60,2014-01-12 13:51:57.915734,671,76,830, +8,2014-01-16 14:15:18.962654,813,943,880, +60,2014-01-14 01:43:28.96812,152,445,209, +20,2014-01-12 20:02:41.974656,316,437,897, +20,2014-01-19 03:44:29.188228,584,39,290, +60,2014-01-16 16:17:48.19482,398,914,559, +8,2014-01-15 23:08:49.202849,241,896,252, +20,2014-01-16 19:40:56.019311,981,157,633, +60,2014-01-12 13:06:42.89073,417,499,746, +8,2014-01-14 07:14:02.838025,560,957,669, +20,2014-01-16 02:47:23.003425,991,760,486, +60,2014-01-14 20:32:05.680717,972,455,794, +20,2014-01-12 21:30:29.525965,128,854,953, +8,2014-01-15 07:17:31.78663,221,25,585, +20,2014-01-17 12:48:52.921495,358,447,978, +60,2014-01-19 19:28:51.57032,789,801,568, +60,2014-01-17 21:49:44.340143,773,683,323, +20,2014-01-15 00:41:02.766515,732,47,13, +20,2014-01-20 15:50:20.1673,211,547,812, +60,2014-01-18 13:47:15.11357,864,220,797, +8,2014-01-11 10:50:10.193603,767,609,17, +8,2014-01-12 06:46:36.365453,859,950,49, +60,2014-01-17 00:08:09.686031,279,106,150, +20,2014-01-13 17:49:50.667725,595,675,428, +20,2014-01-16 17:03:58.905417,376,614,729, +8,2014-01-14 20:14:08.262501,79,438,430, +8,2014-01-14 23:58:28.805229,416,234,764, +8,2014-01-12 00:26:33.814036,473,724,976, +20,2014-01-21 01:31:02.125268,942,861,526, +20,2014-01-17 11:11:20.564383,916,130,516, +60,2014-01-15 15:49:38.596011,360,521,834, +20,2014-01-12 09:23:00.041002,737,558,402, +60,2014-01-12 19:26:39.527038,693,356,419, +20,2014-01-18 21:33:07.56413,471,629,560, +8,2014-01-14 09:25:42.015658,712,716,903, +8,2014-01-21 03:11:08.715266,304,42,950, +8,2014-01-14 07:50:55.75895,339,860,658, +8,2014-01-19 12:34:31.218927,679,996,104, +60,2014-01-16 16:52:04.734996,281,514,189, +60,2014-01-16 00:57:38.64968,476,825,447, +20,2014-01-12 13:48:34.056953,247,875,750, +60,2014-01-11 13:39:27.738421,608,17,137, +20,2014-01-20 01:29:44.330398,440,59,449, +60,2014-01-14 15:19:03.583336,926,71,329, +60,2014-01-16 00:56:59.525052,26,656,813, +8,2014-01-16 08:18:37.252311,155,545,662, +8,2014-01-13 04:47:55.153656,530,134,805, +60,2014-01-12 16:46:43.865195,944,93,835, +60,2014-01-20 12:59:40.018827,912,98,446, +60,2014-01-12 14:38:15.320957,546,223,215, +8,2014-01-20 10:33:58.979184,720,645,682, +20,2014-01-21 03:49:50.21243,669,676,532, +60,2014-01-14 01:24:51.68641,708,75,63, +60,2014-01-16 04:42:08.665216,439,271,339, +20,2014-01-13 15:39:40.880575,6,929,606, +20,2014-01-19 22:28:50.592246,463,707,538, +8,2014-01-20 04:56:16.927717,134,24,801, +20,2014-01-17 19:38:09.685804,600,534,79, +8,2014-01-21 02:55:24.406282,799,848,824, +20,2014-01-20 00:27:19.052985,120,996,531, +8,2014-01-14 00:49:30.250187,987,146,853, +8,2014-01-15 12:45:03.002294,958,384,796, +20,2014-01-11 03:50:19.094407,662,673,821, +20,2014-01-16 00:16:09.777225,32,733,698, +20,2014-01-13 04:18:10.566424,871,476,379, +60,2014-01-14 17:16:01.110066,328,834,317, +60,2014-01-15 21:27:18.492491,74,287,293, +60,2014-01-16 16:09:06.325374,915,303,598, +60,2014-01-12 23:50:32.328993,241,144,914, +20,2014-01-11 08:19:23.227486,931,91,552, +60,2014-01-11 11:06:44.975055,357,269,625, +8,2014-01-14 17:39:06.386365,862,903,202, +20,2014-01-12 01:58:50.965908,237,806,22, +60,2014-01-20 16:36:29.305871,932,108,94, +8,2014-01-18 12:58:09.969701,94,38,298, +8,2014-01-17 06:55:50.491379,810,206,907, +60,2014-01-15 18:55:06.558183,532,771,510, +60,2014-01-20 21:46:05.123357,847,232,686, +60,2014-01-19 03:42:34.356574,485,123,113, +8,2014-01-15 01:54:46.57701,232,390,686, +20,2014-01-12 06:24:20.444315,173,745,978, +20,2014-01-18 08:16:33.335757,649,500,917, +60,2014-01-14 23:44:36.789859,57,308,342, +8,2014-01-15 11:49:12.131145,728,891,644, +20,2014-01-13 06:58:42.000973,833,299,981, +8,2014-01-17 19:24:17.670434,77,955,990, +20,2014-01-14 04:18:02.723391,63,101,579, +60,2014-01-12 05:54:58.92869,807,642,630, +63,2014-01-14 09:02:27.356239,820,562,544, +82,2014-01-14 01:13:27.129673,217,154,503, +63,2014-01-11 00:22:17.982095,328,66,252, +25,2014-01-17 13:51:57.606425,919,406,392, +82,2014-01-18 17:58:30.131967,272,642,874, +82,2014-01-11 08:12:37.076501,589,727,290, +1,2014-01-12 08:08:07.38365,42,776,725, +15,2014-01-21 02:16:40.698391,417,425,82, +1,2014-01-15 05:28:38.186567,269,808,235, +15,2014-01-17 09:35:25.876141,331,347,888, +15,2014-01-16 12:25:47.023766,532,446,583, +25,2014-01-17 09:19:10.515978,305,197,283, +15,2014-01-17 21:54:49.104047,78,919,641, +15,2014-01-17 03:32:31.99882,440,249,533, +15,2014-01-10 20:58:16.902343,976,818,732, +82,2014-01-19 03:53:40.069954,212,444,615, +25,2014-01-16 14:09:01.304692,951,956,928, +1,2014-01-18 13:56:26.872044,471,866,680, +1,2014-01-15 04:49:30.561333,473,83,919, +63,2014-01-11 03:04:07.862875,526,297,219, +63,2014-01-18 05:42:31.995401,789,364,132, +63,2014-01-13 02:32:04.918326,523,608,422, +63,2014-01-15 08:58:54.440304,840,331,397, +82,2014-01-19 16:06:52.439717,94,775,488, +63,2014-01-20 14:48:38.254083,890,64,578, +82,2014-01-19 12:43:31.230164,424,45,612, +82,2014-01-13 21:56:04.57086,710,215,97, +15,2014-01-12 15:47:20.255475,755,405,955, +63,2014-01-16 02:07:48.900598,307,723,822, +82,2014-01-17 06:14:07.294251,681,814,922, +82,2014-01-14 01:42:19.184166,807,876,13, +25,2014-01-19 15:10:16.256836,112,144,199, +63,2014-01-20 11:27:34.423924,188,647,673, +63,2014-01-14 06:04:37.166259,491,632,269, +15,2014-01-15 23:02:13.863261,438,207,342, +15,2014-01-17 23:26:04.555891,230,430,25, +1,2014-01-14 18:17:14.24276,472,269,323, +63,2014-01-17 11:10:21.246911,486,826,837, +15,2014-01-17 19:42:45.254281,71,945,238, +82,2014-01-19 03:45:52.429747,642,392,624, +82,2014-01-13 14:45:47.123053,100,807,928, +15,2014-01-13 02:08:32.278047,529,925,29, +82,2014-01-15 07:05:02.945725,15,297,188, +15,2014-01-20 16:40:36.2271,383,42,750, +82,2014-01-19 09:41:04.277286,907,334,773, +82,2014-01-15 08:03:19.848068,684,904,692, +15,2014-01-18 14:34:16.297473,740,851,130, +82,2014-01-14 17:50:05.581977,27,10,353, +63,2014-01-12 15:59:46.720111,168,296,713, +63,2014-01-12 13:23:46.858806,588,222,463, +1,2014-01-15 00:54:13.445272,880,0,215, +82,2014-01-20 01:42:18.715514,784,507,32, +15,2014-01-14 19:55:51.777132,425,76,524, +82,2014-01-19 13:53:07.885575,151,302,304, +63,2014-01-18 11:49:11.155229,394,821,202, +1,2014-01-14 04:44:30.031635,184,546,945, +82,2014-01-17 20:36:39.115739,761,557,60, +1,2014-01-11 03:45:15.726509,252,66,830, +1,2014-01-16 00:31:50.28711,622,891,39, +1,2014-01-12 16:44:28.016337,244,914,355, +25,2014-01-17 13:59:23.020759,672,713,509, +15,2014-01-19 06:14:09.471276,802,619,684, +15,2014-01-11 01:54:44.273174,212,960,693, +82,2014-01-16 19:26:57.445103,625,914,456, +1,2014-01-12 06:18:46.637954,800,775,548, +63,2014-01-16 04:56:58.136435,591,287,735, +82,2014-01-13 12:53:02.000993,467,252,240, +82,2014-01-16 04:36:00.880716,638,746,419, +82,2014-01-12 10:07:19.383347,863,114,501, +63,2014-01-20 12:35:47.255694,420,808,656, +1,2014-01-14 02:21:53.310461,16,838,872, +1,2014-01-15 04:53:06.5064,821,251,588, +25,2014-01-12 08:44:19.533741,362,245,841, +1,2014-01-18 13:26:56.256186,762,842,74, +82,2014-01-14 15:33:42.733919,969,780,950, +15,2014-01-20 22:25:23.811027,746,893,220, +63,2014-01-12 15:30:16.104254,622,937,65, +63,2014-01-12 00:07:59.031392,901,113,540, +25,2014-01-14 10:15:29.393423,293,528,6, +82,2014-01-14 11:30:02.824366,863,862,501, +1,2014-01-13 17:31:45.890199,599,563,66, +1,2014-01-18 15:09:42.838695,774,923,271, +82,2014-01-13 07:12:21.539879,648,649,650, +25,2014-01-17 17:27:37.66775,113,389,521, +1,2014-01-16 23:02:50.72427,701,555,218, +1,2014-01-20 23:01:32.695527,800,664,59, +82,2014-01-21 02:12:07.699385,600,972,176, +25,2014-01-13 13:39:29.840009,362,497,536, +1,2014-01-10 20:46:48.422036,946,517,463, +15,2014-01-15 20:43:57.986496,255,435,286, +25,2014-01-15 10:23:57.856347,443,483,187, +25,2014-01-17 14:46:11.442796,942,924,685, +63,2014-01-13 20:58:07.457772,232,363,888, +82,2014-01-15 16:18:42.12952,870,617,545, +25,2014-01-13 04:13:08.887899,512,976,985, +1,2014-01-15 07:16:54.095727,577,41,389, +82,2014-01-21 01:15:40.265955,443,130,979, +15,2014-01-15 21:06:10.889311,288,744,797, +63,2014-01-20 15:52:54.976861,369,8,527, +82,2014-01-12 05:22:59.649303,943,41,855, +1,2014-01-15 03:41:58.145005,667,790,153, +25,2014-01-13 12:14:48.287323,417,383,585, +82,2014-01-16 14:16:06.155703,679,41,274, +1,2014-01-16 16:26:17.678746,541,710,881, +63,2014-01-21 05:41:44.543929,214,434,526, +15,2014-01-20 09:49:48.889622,439,654,43, +82,2014-01-16 08:51:41.490192,279,252,888, +15,2014-01-12 15:12:00.648183,728,811,260, +15,2014-01-11 03:57:47.921015,561,124,116, +82,2014-01-19 23:07:10.883615,754,815,426, +25,2014-01-16 06:42:03.472969,18,670,236, +63,2014-01-14 01:29:33.811632,503,820,439, +25,2014-01-17 08:16:53.722309,343,535,968, +25,2014-01-18 17:54:25.012848,486,234,827, +1,2014-01-20 22:57:11.479382,401,450,462, +25,2014-01-13 01:19:44.446579,331,75,256, +25,2014-01-18 10:55:57.708375,438,786,567, +1,2014-01-20 19:09:19.178768,541,854,321, +82,2014-01-15 18:59:14.286589,111,686,144, +25,2014-01-18 11:42:46.130411,60,350,243, +15,2014-01-15 09:53:17.165265,926,925,344, +25,2014-01-20 09:23:12.142935,394,33,156, +15,2014-01-14 20:28:57.573627,629,905,78, +82,2014-01-18 10:51:24.623036,205,926,843, +25,2014-01-14 19:41:54.272455,320,54,323, +1,2014-01-17 04:42:06.461526,6,228,730, +1,2014-01-12 12:08:18.719182,551,600,586, +15,2014-01-14 14:57:34.53841,333,577,796, +82,2014-01-11 19:48:17.350837,431,656,527, +1,2014-01-11 22:01:13.696043,507,263,548, +1,2014-01-16 00:20:34.187714,837,439,609, +25,2014-01-16 03:30:15.495843,94,878,677, +63,2014-01-14 14:16:01.983366,488,276,391, +15,2014-01-11 08:36:40.343417,674,401,928, +25,2014-01-11 13:56:33.175007,725,247,608, +82,2014-01-14 13:57:46.527295,425,318,351, +15,2014-01-20 22:26:29.233457,988,66,331, +82,2014-01-17 02:48:14.665198,888,363,700, +1,2014-01-16 09:09:47.175897,282,881,198, +15,2014-01-10 20:24:17.154472,246,632,604, +15,2014-01-15 19:55:25.548814,926,816,241, +1,2014-01-11 09:51:50.648866,541,905,487, +15,2014-01-14 01:53:50.966103,384,705,892, +25,2014-01-11 22:12:19.271123,703,205,624, +15,2014-01-19 07:46:15.661714,627,819,45, +15,2014-01-13 18:51:02.445486,613,990,595, +82,2014-01-14 03:32:03.717702,44,848,544, +1,2014-01-16 12:42:13.370507,387,737,178, +25,2014-01-13 08:00:21.624254,914,833,481, +63,2014-01-19 02:31:18.004291,839,359,606, +15,2014-01-13 18:24:59.500919,459,921,379, +25,2014-01-17 21:53:38.789519,505,498,698, +15,2014-01-18 05:54:30.147226,239,158,115, +25,2014-01-17 18:53:57.074546,731,969,798, +63,2014-01-15 02:45:03.412974,681,290,129, +25,2014-01-11 19:36:24.419681,618,504,535, +82,2014-01-13 17:36:03.536492,34,518,137, +1,2014-01-16 18:53:22.132155,868,18,599, +63,2014-01-15 14:33:58.958092,652,885,101, +15,2014-01-14 17:24:20.887328,941,419,575, +63,2014-01-17 20:54:35.828198,840,138,871, +63,2014-01-20 18:54:33.145805,997,241,54, +1,2014-01-20 00:54:36.38359,509,971,574, +1,2014-01-11 05:10:37.811565,68,7,126, +1,2014-01-10 21:31:13.489221,27,640,285, +25,2014-01-20 18:51:09.558597,605,433,271, +25,2014-01-14 23:08:24.339278,812,321,372, +15,2014-01-20 23:57:42.722678,414,264,213, +25,2014-01-16 15:39:24.223796,779,494,81, +82,2014-01-20 12:18:11.515175,380,734,136, +63,2014-01-21 00:21:59.877569,865,504,433, +82,2014-01-11 05:34:49.772608,712,39,358, +15,2014-01-21 02:10:02.164041,911,133,606, +82,2014-01-13 20:15:50.843673,107,691,374, +63,2014-01-12 07:47:09.043731,138,509,951, +15,2014-01-19 03:56:17.825754,179,50,515, +1,2014-01-16 19:06:53.289577,756,482,461, +63,2014-01-15 15:19:12.761433,113,553,827, +63,2014-01-14 10:38:31.196261,317,801,255, +25,2014-01-19 07:07:14.913831,755,282,679, +82,2014-01-13 11:50:30.765724,545,769,351, +1,2014-01-17 09:03:30.6976,62,921,863, +15,2014-01-15 23:00:53.703769,292,964,636, +1,2014-01-20 21:45:00.91295,79,154,218, +82,2014-01-13 21:57:27.772146,560,691,442, +63,2014-01-20 05:45:57.116743,470,62,605, +25,2014-01-11 11:21:25.332631,427,671,224, +63,2014-01-16 19:33:31.308637,513,105,673, +1,2014-01-15 18:39:19.248898,136,528,604, +63,2014-01-16 05:55:24.290723,974,14,929, +82,2014-01-20 16:57:52.196384,67,839,127, +25,2014-01-12 09:33:55.077096,414,154,134, +63,2014-01-15 18:49:57.436528,455,932,923, +1,2014-01-19 11:52:28.579975,416,986,865, +25,2014-01-12 18:44:32.88866,658,27,38, +1,2014-01-15 20:21:10.925749,458,630,723, +63,2014-01-19 00:43:38.138572,372,630,755, +82,2014-01-16 21:52:57.227939,408,843,748, +25,2014-01-15 14:18:53.648847,795,163,731, +82,2014-01-14 10:23:02.362368,911,312,629, +82,2014-01-16 04:11:08.743114,454,688,429, +1,2014-01-15 08:40:53.526416,488,764,344, +63,2014-01-14 19:57:52.134976,189,406,279, +63,2014-01-16 00:21:10.907154,612,452,757, +1,2014-01-18 08:56:44.370089,438,852,281, +1,2014-01-16 07:45:01.178707,683,395,225, +82,2014-01-13 22:17:28.733328,597,430,695, +63,2014-01-13 22:03:37.659666,672,702,858, +63,2014-01-21 03:04:13.94014,295,997,748, +1,2014-01-17 12:55:59.92959,857,674,729, +1,2014-01-11 23:10:52.573917,29,795,351, +15,2014-01-13 08:54:44.705865,29,866,98, +15,2014-01-13 15:59:30.62719,594,931,711, +15,2014-01-17 02:11:46.277685,80,432,65, +63,2014-01-13 00:39:45.618815,74,999,38, +82,2014-01-16 17:56:58.399754,543,762,342, +15,2014-01-16 01:57:43.394428,745,652,232, +25,2014-01-13 16:01:10.951446,864,871,84, +25,2014-01-12 07:30:29.708392,841,141,417, +15,2014-01-21 00:37:02.643325,490,911,862, +25,2014-01-19 01:56:35.242169,251,21,535, +82,2014-01-11 18:28:21.904777,517,184,337, +1,2014-01-12 04:10:57.720422,626,933,851, +1,2014-01-13 14:46:32.678697,988,146,62, +1,2014-01-20 10:20:50.484751,484,107,187, +63,2014-01-14 02:55:30.609082,495,213,854, +1,2014-01-18 15:07:43.604446,102,99,663, +63,2014-01-18 05:04:28.623323,365,40,493, +25,2014-01-20 04:48:27.83744,697,969,272, +15,2014-01-12 23:26:37.253293,501,528,684, +1,2014-01-11 09:27:30.985691,918,422,892, +82,2014-01-15 02:59:36.580553,533,152,978, +63,2014-01-17 12:07:30.779708,112,297,29, +82,2014-01-15 09:25:23.120667,753,948,310, +1,2014-01-20 07:20:47.488127,502,824,656, +25,2014-01-14 15:04:15.150216,705,398,923, +25,2014-01-20 21:10:24.299373,4,540,452, +15,2014-01-12 23:38:16.221455,798,21,697, +25,2014-01-17 17:07:52.809881,342,90,878, +15,2014-01-20 18:14:38.239514,570,633,284, +25,2014-01-19 16:34:16.151045,966,920,179, +82,2014-01-18 20:18:45.383797,324,62,600, +25,2014-01-12 21:09:22.945377,438,754,578, +82,2014-01-12 02:33:46.778653,85,724,692, +63,2014-01-14 16:30:31.661482,838,9,84, +15,2014-01-15 01:49:08.564192,861,771,704, +15,2014-01-18 00:30:45.178407,426,146,786, +82,2014-01-19 22:28:15.05591,250,625,601, +1,2014-01-17 21:50:19.515638,823,77,197, +1,2014-01-19 12:01:14.8868,922,842,282, +63,2014-01-19 17:05:17.699235,702,424,633, +82,2014-01-15 17:46:54.757806,344,448,544, +82,2014-01-20 10:29:36.791996,785,967,951, +15,2014-01-21 01:16:15.419657,208,516,567, +25,2014-01-18 12:33:27.436503,812,36,486, +82,2014-01-19 14:50:27.276747,532,468,941, +25,2014-01-13 22:11:46.029158,766,301,343, +25,2014-01-15 21:41:11.041368,392,117,502, +1,2014-01-16 13:54:55.90049,890,200,944, +82,2014-01-12 21:00:13.866598,408,715,352, +15,2014-01-18 01:07:48.29466,852,329,41, +15,2014-01-17 03:22:26.88618,183,686,307, +25,2014-01-17 03:59:50.447152,331,857,635, +82,2014-01-14 07:15:19.074788,62,223,534, +1,2014-01-11 06:47:50.007266,187,188,905, +82,2014-01-16 05:20:37.935279,324,327,707, +25,2014-01-18 02:19:34.225003,313,916,876, +15,2014-01-10 21:58:14.306639,332,802,796, +63,2014-01-18 08:58:54.156734,159,613,188, +15,2014-01-14 13:27:27.034884,689,180,509, +15,2014-01-20 20:12:52.546571,327,753,713, +15,2014-01-16 19:33:10.308198,260,77,818, +25,2014-01-12 03:46:12.4191,993,999,804, +25,2014-01-12 11:22:15.491948,811,295,965, +25,2014-01-18 02:06:57.086851,31,949,431, +1,2014-01-16 00:16:44.080582,770,740,54, +25,2014-01-16 17:11:24.056559,435,316,758, +25,2014-01-14 20:37:42.265259,227,316,360, +63,2014-01-14 16:44:59.136912,330,259,720, +15,2014-01-13 09:01:43.572197,826,270,388, +63,2014-01-13 02:38:57.152058,213,438,975, +63,2014-01-13 03:50:16.836148,413,228,814, +25,2014-01-18 06:48:38.330423,781,664,763, +25,2014-01-12 07:08:33.944054,996,340,863, +1,2014-01-12 23:06:32.256224,789,912,404, +1,2014-01-15 13:22:05.766925,835,858,495, +1,2014-01-21 01:59:01.22122,750,348,393, +25,2014-01-16 01:18:18.285382,969,595,237, +82,2014-01-20 15:03:16.808294,560,697,209, +1,2014-01-16 09:53:57.121709,791,92,590, +25,2014-01-18 02:18:32.151981,392,797,460, +1,2014-01-17 10:11:05.103373,674,347,948, +25,2014-01-12 07:16:24.00789,264,18,867, +82,2014-01-14 00:18:22.599132,707,779,441, +1,2014-01-20 21:26:24.17816,723,344,386, +63,2014-01-12 18:04:14.015155,19,977,759, +82,2014-01-19 09:39:00.53483,574,912,794, +25,2014-01-17 17:45:58.403164,139,580,770, +1,2014-01-12 20:02:28.322212,735,283,981, +15,2014-01-16 12:37:54.691565,992,43,344, +63,2014-01-11 01:13:25.438047,902,83,120, +82,2014-01-12 10:15:20.868783,950,80,438, +25,2014-01-12 02:11:04.999763,906,633,783, +25,2014-01-12 08:59:37.857148,150,354,29, +63,2014-01-14 01:37:36.360731,608,802,350, +25,2014-01-19 08:18:02.086614,489,933,193, +15,2014-01-17 13:16:21.938149,828,627,574, +1,2014-01-19 22:49:00.417291,287,873,683, +63,2014-01-12 22:55:44.351873,613,779,265, +15,2014-01-11 00:01:21.075061,567,695,81, +25,2014-01-12 01:50:43.989906,711,941,536, +1,2014-01-15 05:34:41.504351,950,598,696, +25,2014-01-13 07:51:37.911209,538,797,209, +15,2014-01-19 12:39:22.320329,503,97,406, +15,2014-01-16 16:43:15.448404,872,90,285, +1,2014-01-15 10:58:10.167433,171,680,95, +1,2014-01-13 20:01:28.087254,620,303,106, +25,2014-01-16 12:42:16.669625,395,520,940, +63,2014-01-20 16:16:28.452816,586,697,380, +63,2014-01-13 05:04:44.895967,157,786,823, +63,2014-01-11 16:36:13.791334,894,669,248, +1,2014-01-17 12:35:00.604797,50,333,855, +63,2014-01-19 19:15:49.99934,687,30,205, +15,2014-01-13 03:52:37.799643,415,787,988, +1,2014-01-20 16:53:23.204348,531,886,630, +25,2014-01-19 10:42:14.1775,372,93,543, +15,2014-01-15 01:56:51.814797,206,212,437, +63,2014-01-18 20:32:23.739179,164,737,650, +25,2014-01-15 22:28:12.580664,846,84,789, +82,2014-01-17 01:59:20.137009,634,473,316, +82,2014-01-14 03:10:18.430744,330,632,417, +1,2014-01-16 03:41:38.018711,257,133,836, +25,2014-01-18 16:14:41.005793,210,615,621, +25,2014-01-15 09:21:23.430925,573,706,218, +82,2014-01-17 16:41:15.876278,670,253,509, +1,2014-01-11 11:52:17.366943,620,125,225, +63,2014-01-13 11:39:25.517539,711,679,102, +1,2014-01-13 23:57:37.814427,867,465,749, +82,2014-01-20 14:41:17.784233,599,640,829, +82,2014-01-15 14:35:09.86983,977,854,492, +15,2014-01-14 03:58:58.889489,68,813,407, +1,2014-01-11 10:32:01.77414,961,673,399, +25,2014-01-20 00:09:51.374181,468,893,837, +63,2014-01-16 15:50:36.800698,873,709,550, +63,2014-01-20 03:11:24.094469,377,973,949, +63,2014-01-15 10:53:06.822585,854,320,772, +82,2014-01-10 20:48:46.96855,778,722,99, +1,2014-01-12 17:12:52.182143,321,124,239, +1,2014-01-21 03:35:23.492629,828,241,377, +82,2014-01-20 17:05:15.421367,44,736,501, +15,2014-01-15 02:17:37.078109,490,663,190, +82,2014-01-11 14:11:37.283964,826,119,424, +25,2014-01-16 23:40:16.026582,261,642,129, +1,2014-01-13 15:33:27.077449,914,29,256, +25,2014-01-13 22:04:15.083606,269,134,776, +63,2014-01-16 10:33:39.23093,316,480,570, +63,2014-01-11 20:15:41.25495,427,729,283, +82,2014-01-18 04:01:06.898823,488,455,67, +63,2014-01-14 01:06:02.970109,746,816,74, +63,2014-01-16 22:43:53.835614,358,993,113, +82,2014-01-14 00:00:27.035832,64,660,222, +25,2014-01-17 08:16:21.400853,411,852,784, +25,2014-01-11 20:25:31.854324,530,982,815, +63,2014-01-11 10:15:08.042044,155,674,463, +82,2014-01-11 11:37:44.831778,417,703,78, +63,2014-01-18 17:06:47.730602,695,634,936, +1,2014-01-12 02:07:25.408986,538,409,212, +82,2014-01-14 03:17:10.349735,880,566,732, +63,2014-01-11 11:04:25.545029,115,551,547, +1,2014-01-11 10:48:43.193221,196,997,573, +25,2014-01-18 21:52:20.219567,653,364,576, +15,2014-01-14 19:03:24.434518,529,350,606, +1,2014-01-12 01:20:44.967779,647,836,73, +15,2014-01-17 16:02:11.593748,6,766,57, +25,2014-01-20 14:54:01.235634,756,994,809, +82,2014-01-10 22:32:09.062248,816,379,300, +82,2014-01-11 20:55:18.416333,698,277,666, +63,2014-01-20 15:42:48.204185,422,887,185, +1,2014-01-12 19:45:01.244391,464,602,141, +63,2014-01-11 18:30:41.908963,968,248,792, +82,2014-01-20 02:48:03.625551,166,413,199, +15,2014-01-17 02:02:38.3225,972,612,665, +82,2014-01-12 12:42:19.193345,110,323,812, +82,2014-01-15 20:28:19.652133,40,715,193, +15,2014-01-19 21:36:05.399949,109,718,456, +15,2014-01-15 14:46:34.276951,393,467,637, +1,2014-01-11 01:01:58.883064,101,181,873, +25,2014-01-20 21:51:46.654899,864,162,128, +63,2014-01-12 12:47:41.175774,992,753,955, +25,2014-01-14 06:08:01.853173,742,409,381, +25,2014-01-16 14:35:40.490512,843,105,524, +1,2014-01-15 16:48:08.212025,510,241,49, +82,2014-01-20 18:24:23.254445,840,209,880, +15,2014-01-17 15:01:12.345255,982,216,767, +15,2014-01-16 07:03:16.254069,463,489,265, +63,2014-01-11 00:02:08.086223,912,209,737, +1,2014-01-15 02:08:00.075857,441,836,735, +25,2014-01-17 13:10:41.663055,647,539,862, +63,2014-01-14 07:19:18.435958,922,740,64, +15,2014-01-15 17:12:25.621306,250,164,334, +25,2014-01-18 03:59:24.856276,492,472,208, +25,2014-01-11 23:11:38.655524,246,678,947, +82,2014-01-19 16:15:50.055824,667,303,470, +82,2014-01-19 09:20:09.824055,124,519,168, +1,2014-01-18 19:13:50.249272,314,767,437, +25,2014-01-19 01:09:51.291458,625,4,415, +25,2014-01-19 11:52:18.886723,823,82,136, +63,2014-01-19 20:09:08.666024,17,742,203, +1,2014-01-18 10:52:39.495644,600,655,939, +1,2014-01-11 01:37:20.131114,387,938,555, +1,2014-01-20 18:39:50.574986,539,433,249, +25,2014-01-17 07:40:43.121614,518,774,124, +82,2014-01-17 07:39:58.454033,482,139,622, +25,2014-01-12 01:22:09.768332,608,273,428, +82,2014-01-11 22:09:02.773748,93,960,65, +1,2014-01-15 23:16:03.853982,130,343,234, +25,2014-01-16 20:08:44.045702,72,592,759, +25,2014-01-12 03:11:01.65723,191,647,139, +82,2014-01-15 15:07:50.5093,908,773,812, +25,2014-01-18 12:56:25.221476,880,471,148, +1,2014-01-15 13:19:03.510404,920,434,130, +15,2014-01-10 23:43:30.999812,212,577,20, +25,2014-01-12 23:44:33.433501,812,90,254, +63,2014-01-15 01:43:26.764849,521,341,792, +63,2014-01-17 18:44:43.345068,918,640,754, +15,2014-01-18 10:47:49.68757,251,494,146, +63,2014-01-15 05:45:34.851491,207,382,567, +63,2014-01-11 14:52:43.421345,660,531,67, +82,2014-01-14 17:58:31.350625,255,570,53, +15,2014-01-18 17:04:53.287449,413,68,805, +82,2014-01-16 12:05:09.042651,760,364,627, +1,2014-01-11 15:57:56.20732,584,126,660, +25,2014-01-19 20:16:31.943393,672,925,272, +25,2014-01-14 22:20:59.098475,720,600,899, +1,2014-01-20 05:18:06.031375,486,288,164, +1,2014-01-17 09:30:22.192665,84,853,607, +1,2014-01-12 17:30:50.390352,920,204,916, +15,2014-01-18 11:10:24.918098,966,562,924, +1,2014-01-15 23:39:30.858689,78,72,489, +25,2014-01-20 08:23:29.885996,880,517,39, +82,2014-01-18 16:47:45.049631,694,798,846, +25,2014-01-15 12:19:21.434095,209,69,992, +82,2014-01-16 10:04:13.007609,797,354,89, +25,2014-01-14 18:27:43.503664,314,490,844, +25,2014-01-16 17:41:31.202427,237,397,340, +15,2014-01-17 12:13:15.781776,879,655,407, +82,2014-01-19 21:43:47.357646,76,869,239, +63,2014-01-12 07:50:15.248129,989,772,302, +82,2014-01-18 19:24:17.439007,754,454,630, +82,2014-01-14 06:51:37.866946,920,393,549, +82,2014-01-20 00:46:40.470024,867,994,923, +63,2014-01-13 02:43:20.94941,416,998,140, +25,2014-01-14 10:35:08.867177,328,102,86, +1,2014-01-11 18:31:13.903525,57,495,60, +63,2014-01-17 08:26:47.714679,98,633,153, +15,2014-01-10 23:19:52.212245,417,766,640, +82,2014-01-19 09:19:03.591514,227,227,842, +25,2014-01-11 08:12:22.56617,679,391,533, +82,2014-01-11 18:12:35.63359,956,354,508, +1,2014-01-12 21:17:34.942139,34,191,575, +15,2014-01-19 05:17:15.853619,960,647,452, +25,2014-01-17 10:17:44.676241,191,606,982, +15,2014-01-13 17:15:31.149459,545,283,425, +63,2014-01-17 19:33:47.79701,483,726,791, +82,2014-01-11 02:38:43.775134,426,539,413, +82,2014-01-12 16:33:37.181253,111,787,722, +63,2014-01-13 23:04:09.990095,703,66,455, +82,2014-01-13 00:09:34.165486,995,807,884, +63,2014-01-20 07:44:02.099352,538,724,976, +15,2014-01-19 02:43:40.848783,947,683,602, +25,2014-01-12 02:33:04.051482,107,123,146, +1,2014-01-17 18:31:47.148983,945,62,396, +1,2014-01-13 09:03:02.282878,965,324,781, +25,2014-01-17 16:37:17.059511,341,233,820, +15,2014-01-11 06:59:30.652647,230,308,871, +25,2014-01-19 06:44:33.485724,252,268,241, +25,2014-01-13 22:50:32.841288,121,586,849, +88,2014-01-20 08:43:18.010712,595,274,653, +88,2014-01-20 18:34:48.733853,178,876,877, +88,2014-01-11 12:14:50.280295,623,85,229, +31,2014-01-13 09:34:55.877658,261,334,825, +88,2014-01-19 13:21:29.203877,55,635,851, +88,2014-01-13 18:58:11.229705,37,39,576, +31,2014-01-17 00:10:04.744835,179,481,325, +31,2014-01-20 11:52:43.107821,848,193,282, +88,2014-01-20 07:24:58.944384,740,469,381, +88,2014-01-17 03:29:56.9575,593,506,99, +31,2014-01-18 15:11:46.699335,158,748,735, +88,2014-01-20 19:37:21.510554,600,847,462, +31,2014-01-18 01:42:32.59109,281,934,586, +88,2014-01-20 16:29:21.641474,425,133,557, +31,2014-01-18 18:54:37.364591,241,162,680, +31,2014-01-14 06:00:17.26775,904,722,180, +88,2014-01-13 03:44:52.791352,264,973,24, +88,2014-01-15 08:28:25.161602,504,674,101, +88,2014-01-14 12:39:01.042884,339,399,415, +31,2014-01-15 00:18:29.972605,322,575,825, +31,2014-01-18 11:32:35.151697,80,32,483, +88,2014-01-16 16:48:35.208372,450,382,725, +88,2014-01-14 02:02:32.071957,905,35,989, +31,2014-01-16 08:16:16.000899,314,58,180, +88,2014-01-17 23:21:39.259854,645,434,62, +88,2014-01-21 00:34:19.221359,677,175,655, +31,2014-01-18 21:19:18.283776,303,835,320, +88,2014-01-14 09:58:56.319366,283,695,131, +31,2014-01-11 01:33:49.874006,420,391,290, +31,2014-01-16 22:03:51.7695,561,432,313, +31,2014-01-17 12:49:29.160654,946,496,680, +31,2014-01-20 14:17:07.884719,401,454,449, +88,2014-01-16 10:38:40.503772,678,493,187, +31,2014-01-18 05:04:19.440949,190,84,546, +31,2014-01-12 17:52:03.762796,442,442,517, +88,2014-01-14 18:00:09.707649,183,175,663, +31,2014-01-21 04:02:30.671073,621,48,584, +31,2014-01-18 22:02:08.507631,532,724,118, +31,2014-01-13 23:52:52.81547,229,861,908, +31,2014-01-20 05:27:29.615457,84,660,529, +88,2014-01-14 19:32:05.465131,375,383,475, +31,2014-01-11 09:04:39.514805,64,221,249, +88,2014-01-19 19:04:51.12643,883,939,215, +88,2014-01-11 15:14:38.056641,930,460,610, +31,2014-01-21 05:34:01.156698,968,955,183, +31,2014-01-17 07:59:28.491021,205,933,733, +88,2014-01-15 01:14:55.32439,481,750,158, +88,2014-01-13 03:18:53.94805,534,22,115, +31,2014-01-11 10:27:53.652623,97,513,882, +88,2014-01-18 17:53:56.367274,301,909,745, +31,2014-01-17 07:37:23.920656,559,977,608, +31,2014-01-19 02:00:28.804739,26,42,534, +31,2014-01-14 04:42:31.575646,317,702,473, +31,2014-01-20 13:39:55.992614,573,955,266, +31,2014-01-14 04:16:44.805638,572,53,380, +31,2014-01-10 22:04:10.8355,879,178,377, +88,2014-01-20 08:14:15.213973,373,134,376, +88,2014-01-11 19:36:03.089414,521,238,345, +88,2014-01-14 12:03:07.155284,406,880,492, +31,2014-01-20 13:48:05.088398,383,433,183, +88,2014-01-17 21:39:54.859333,763,75,212, +88,2014-01-21 04:52:36.315939,955,559,736, +31,2014-01-19 22:05:12.973117,237,85,968, +88,2014-01-13 02:18:35.363104,611,882,965, +31,2014-01-18 03:56:55.757306,552,666,182, +31,2014-01-11 09:57:16.735912,955,320,182, +31,2014-01-17 00:18:45.070753,511,980,875, +31,2014-01-18 01:59:26.428379,711,461,914, +88,2014-01-19 11:59:25.243962,941,859,166, +88,2014-01-20 04:11:37.886643,992,417,597, +31,2014-01-17 01:26:56.043836,909,411,239, +31,2014-01-13 01:31:30.709094,809,119,162, +88,2014-01-20 17:16:17.401448,322,812,317, +31,2014-01-15 14:31:47.170267,195,237,733, +31,2014-01-13 20:46:08.765733,654,568,521, +88,2014-01-20 16:50:18.558146,2,97,945, +31,2014-01-11 16:31:15.661287,993,833,628, +31,2014-01-18 02:01:04.090124,245,409,999, +31,2014-01-12 14:09:12.506197,721,686,55, +31,2014-01-12 06:59:09.31433,45,1,639, +88,2014-01-15 13:55:00.457398,192,608,697, +88,2014-01-19 01:46:36.426852,122,610,251, +88,2014-01-20 12:59:38.119069,456,847,136, +31,2014-01-18 22:37:32.033044,601,370,711, +88,2014-01-18 09:26:32.419884,485,103,912, +31,2014-01-13 11:16:22.924706,184,891,357, +88,2014-01-19 00:41:42.868964,362,955,32, +31,2014-01-17 11:40:47.633857,172,973,715, +88,2014-01-14 10:52:26.01412,796,150,27, +31,2014-01-12 06:44:50.024248,40,422,741, +88,2014-01-16 19:28:52.722255,839,567,915, +88,2014-01-11 02:32:20.873453,261,250,172, +31,2014-01-12 05:37:26.340186,591,988,62, +31,2014-01-15 11:34:05.695791,775,518,446, +31,2014-01-13 08:50:56.236557,883,449,735, +88,2014-01-19 13:34:22.097492,793,963,731, +31,2014-01-16 01:31:22.431703,792,45,6, +88,2014-01-19 13:09:41.30773,252,426,206, +31,2014-01-16 09:33:48.525871,815,211,149, +88,2014-01-14 07:30:47.675665,743,187,369, +31,2014-01-18 11:21:19.194373,998,697,283, +31,2014-01-12 05:00:44.570126,738,413,881, +88,2014-01-16 13:02:18.385178,208,320,765, +88,2014-01-17 22:37:36.59582,995,724,165, +88,2014-01-16 23:32:31.740393,255,209,919, +31,2014-01-19 13:48:27.150911,273,761,329, +88,2014-01-17 09:27:55.154385,527,842,841, +31,2014-01-17 20:03:47.402099,516,40,209, +31,2014-01-16 09:49:31.241454,681,727,665, +31,2014-01-19 03:37:07.660582,255,234,297, +31,2014-01-19 07:02:56.716429,26,742,774, +31,2014-01-21 03:44:31.698853,87,858,761, +88,2014-01-16 23:23:44.087853,300,524,862, +31,2014-01-18 14:02:34.835498,314,94,394, +88,2014-01-18 20:22:03.732316,937,493,420, +31,2014-01-14 02:50:16.507739,788,621,880, +31,2014-01-21 05:18:57.760204,71,216,605, +31,2014-01-16 15:03:46.601279,40,643,483, +88,2014-01-20 18:31:04.141596,328,184,140, +88,2014-01-14 10:11:23.774324,376,586,117, +88,2014-01-18 01:48:36.625526,677,244,45, +88,2014-01-16 07:59:56.86427,874,975,850, +31,2014-01-14 16:43:44.648196,398,863,851, +31,2014-01-19 11:26:02.965713,454,36,295, +88,2014-01-20 23:34:02.56006,300,14,505, +88,2014-01-17 05:34:40.884753,89,363,849, +88,2014-01-17 19:00:25.063624,146,363,806, +31,2014-01-15 19:05:24.991763,857,630,743, +31,2014-01-15 12:44:22.192483,42,956,431, +31,2014-01-12 22:34:13.589495,343,473,38, +88,2014-01-19 06:36:12.667847,888,610,263, +31,2014-01-12 18:05:41.386856,158,873,198, +31,2014-01-14 07:34:58.159621,512,513,655, +88,2014-01-14 13:38:31.053025,602,682,392, +31,2014-01-19 20:43:17.983096,948,485,492, +88,2014-01-20 11:07:29.900433,546,64,964, +88,2014-01-12 21:26:58.203936,198,641,884, +31,2014-01-16 00:11:13.137481,68,20,684, +31,2014-01-17 01:11:17.302532,816,225,913, +88,2014-01-18 11:16:29.445391,916,320,66, +88,2014-01-13 21:48:20.798063,873,765,982, +31,2014-01-15 02:14:14.018961,473,450,796, +31,2014-01-18 09:01:01.144663,23,378,830, +88,2014-01-20 01:12:04.885916,45,557,425, +31,2014-01-12 10:16:48.854458,290,614,32, +88,2014-01-15 23:23:04.876978,744,637,509, +31,2014-01-12 22:02:21.393654,289,639,515, +31,2014-01-12 09:35:46.614663,37,607,662, +31,2014-01-11 08:26:51.478257,142,27,309, +88,2014-01-12 10:33:25.535669,902,531,0, +88,2014-01-15 23:47:10.388986,5,540,611, +88,2014-01-18 14:15:28.103783,946,314,256, +31,2014-01-17 22:33:22.399939,191,864,510, +31,2014-01-19 20:30:55.037182,350,259,583, +31,2014-01-16 19:41:31.069497,604,551,244, +88,2014-01-17 16:07:24.959999,298,899,983, +31,2014-01-15 20:05:35.922355,324,964,571, +88,2014-01-13 08:41:56.13312,233,25,166, +31,2014-01-12 05:12:49.951761,290,994,870, +88,2014-01-20 12:49:58.114839,611,109,334, +31,2014-01-15 11:16:09.723034,479,276,981, +31,2014-01-20 15:49:02.619608,912,66,677, +88,2014-01-12 00:55:39.502114,367,641,294, +88,2014-01-18 22:51:07.882655,642,833,33, +31,2014-01-13 23:27:33.672633,770,562,283, +88,2014-01-21 01:38:57.485209,723,906,633, +88,2014-01-18 03:58:37.783089,426,821,618, +88,2014-01-16 00:54:31.87699,804,891,102, +88,2014-01-15 19:50:10.62269,362,803,406, +31,2014-01-13 23:09:55.085621,884,673,233, +88,2014-01-13 06:11:01.32238,720,561,376, +31,2014-01-18 21:38:31.420752,134,360,65, +31,2014-01-18 05:24:09.104582,985,144,553, +88,2014-01-20 19:12:02.467043,521,349,502, +31,2014-01-17 16:50:36.307088,489,301,768, +31,2014-01-19 19:40:57.959041,654,983,467, +31,2014-01-15 12:35:07.344021,483,269,485, +88,2014-01-19 18:52:57.700742,344,708,237, +88,2014-01-10 23:16:44.573703,472,886,693, +88,2014-01-16 01:01:58.822278,293,776,832, +88,2014-01-10 23:26:23.23641,15,741,541, +88,2014-01-16 03:03:54.963109,637,683,812, +88,2014-01-13 09:17:26.926062,954,612,361, +88,2014-01-18 01:59:45.636348,429,543,25, +31,2014-01-14 17:34:50.000292,781,392,912, +88,2014-01-19 08:58:57.995978,419,993,684, +88,2014-01-14 12:07:10.596347,829,416,371, +88,2014-01-19 17:40:25.922646,442,543,986, +31,2014-01-11 11:40:54.129098,107,335,121, +88,2014-01-15 21:20:00.548527,531,642,578, +88,2014-01-19 00:30:24.037903,615,857,99, +31,2014-01-16 02:57:03.852132,170,267,863, +31,2014-01-15 07:09:03.168136,151,637,944, +31,2014-01-20 05:26:03.540018,895,526,986, +88,2014-01-13 19:48:11.735207,694,943,906, +31,2014-01-18 10:36:36.841189,664,747,163, +31,2014-01-20 01:05:01.025226,720,573,941, +31,2014-01-21 03:46:49.518296,280,152,906, +31,2014-01-13 05:31:08.718178,494,567,64, +31,2014-01-14 14:55:11.647917,820,572,925, +31,2014-01-13 20:56:44.604335,972,651,944, +31,2014-01-15 15:42:10.040558,207,130,794, +31,2014-01-12 06:33:43.068669,617,116,968, +31,2014-01-10 20:20:53.708918,625,470,514, +88,2014-01-15 04:54:12.508021,208,108,728, +88,2014-01-19 03:24:19.375756,211,560,597, +88,2014-01-19 20:01:51.668378,822,49,160, +79,2014-01-19 21:29:19.852042,674,904,611, +33,2014-01-17 16:17:17.076917,684,698,261, +26,2014-01-19 23:18:36.242081,5,598,968, +26,2014-01-14 16:31:18.67474,297,219,448, +26,2014-01-17 19:43:40.313327,472,237,843, +87,2014-01-14 20:22:31.205191,54,741,999, +24,2014-01-17 05:48:45.600801,674,95,504, +24,2014-01-14 15:43:25.950095,447,192,110, +79,2014-01-18 17:57:21.205901,709,83,469, +33,2014-01-15 08:47:43.596779,36,89,519, +24,2014-01-18 07:50:36.546442,587,779,702, +94,2014-01-17 05:37:47.128547,960,819,240, +87,2014-01-16 00:28:37.726296,658,517,788, +33,2014-01-12 23:10:37.094969,792,914,729, +79,2014-01-15 00:08:11.16645,893,62,458, +94,2014-01-10 21:25:41.578428,442,375,713, +33,2014-01-17 10:19:40.263524,891,141,383, +79,2014-01-13 23:34:14.706468,324,130,677, +94,2014-01-13 21:13:53.313635,779,321,712, +94,2014-01-14 14:56:17.104713,106,796,573, +79,2014-01-12 18:39:15.731694,334,931,296, +79,2014-01-13 19:00:42.83235,892,948,479, +33,2014-01-17 00:27:25.822891,684,450,972, +24,2014-01-16 13:34:27.379609,777,801,906, +26,2014-01-16 19:57:27.436685,274,386,503, +79,2014-01-11 10:09:35.863449,521,179,674, +94,2014-01-18 00:08:10.448698,282,633,883, +79,2014-01-16 20:18:21.145603,425,445,86, +94,2014-01-15 19:03:48.37147,531,257,647, +87,2014-01-15 21:32:29.824454,913,959,634, +79,2014-01-15 10:20:12.813981,434,524,219, +26,2014-01-14 10:33:08.22393,258,379,51, +79,2014-01-12 07:49:46.901371,297,729,827, +26,2014-01-14 03:38:49.056481,51,351,854, +94,2014-01-18 07:04:26.89867,819,337,424, +87,2014-01-19 07:33:27.215117,401,324,569, +87,2014-01-18 04:01:20.261672,332,170,901, +24,2014-01-14 06:53:12.499471,879,916,117, +94,2014-01-12 17:16:53.165211,274,96,150, +87,2014-01-15 15:58:41.467572,560,265,498, +24,2014-01-18 19:40:56.09667,940,186,684, +26,2014-01-20 05:07:29.711652,154,46,625, +79,2014-01-11 15:36:28.596538,726,458,49, +33,2014-01-13 14:09:33.822966,543,79,599, +87,2014-01-11 22:18:06.807041,175,846,726, +24,2014-01-15 19:44:39.762988,755,103,330, +94,2014-01-13 15:35:15.401394,463,768,433, +79,2014-01-18 12:37:47.070564,714,331,176, +24,2014-01-18 23:18:54.469874,51,370,679, +79,2014-01-16 16:49:08.715448,37,817,86, +87,2014-01-11 21:34:04.175276,218,811,670, +94,2014-01-20 21:58:10.201568,449,142,740, +79,2014-01-19 15:49:51.547798,776,94,89, +33,2014-01-18 02:01:29.998168,562,543,717, +87,2014-01-16 05:32:37.581597,826,156,828, +94,2014-01-15 05:47:18.984483,621,889,655, +26,2014-01-18 16:11:05.861617,917,510,445, +87,2014-01-12 23:40:48.030295,684,357,902, +87,2014-01-10 20:05:40.130087,647,603,252, +26,2014-01-13 05:14:54.233505,433,42,752, +24,2014-01-18 01:13:17.854748,312,528,925, +24,2014-01-15 10:25:52.944486,107,500,482, +26,2014-01-16 19:48:02.457435,741,161,796, +24,2014-01-19 13:03:04.756539,371,48,697, +26,2014-01-18 18:04:42.000969,304,967,900, +33,2014-01-13 20:52:29.356105,314,151,427, +79,2014-01-17 14:36:31.971655,441,128,465, +94,2014-01-15 16:06:02.26264,95,227,711, +24,2014-01-17 07:45:41.855577,843,474,117, +94,2014-01-19 11:53:25.136867,413,42,435, +94,2014-01-20 12:04:43.730631,478,755,28, +79,2014-01-14 21:26:37.952246,448,140,131, +87,2014-01-18 11:00:54.848519,30,520,268, +24,2014-01-10 21:41:12.327169,264,355,725, +79,2014-01-17 15:36:11.775211,886,332,522, +26,2014-01-19 13:19:01.655559,824,188,272, +24,2014-01-15 21:25:52.090156,779,157,700, +33,2014-01-20 11:11:27.177024,636,369,340, +24,2014-01-16 19:56:48.726123,526,334,544, +87,2014-01-13 14:44:46.56003,396,599,292, +79,2014-01-15 22:00:35.892473,216,526,542, +79,2014-01-17 21:30:52.9014,481,367,7, +79,2014-01-13 06:42:56.762018,74,241,997, +79,2014-01-14 07:50:27.440271,112,400,759, +87,2014-01-14 17:32:22.899567,664,910,456, +24,2014-01-18 16:15:34.343615,862,755,809, +26,2014-01-18 17:37:46.424755,784,706,372, +26,2014-01-12 03:43:28.761603,836,88,9, +87,2014-01-20 19:56:22.373909,369,316,926, +24,2014-01-18 17:43:26.554842,268,738,121, +94,2014-01-14 12:58:22.995108,167,720,588, +26,2014-01-17 15:09:40.228657,553,718,758, +87,2014-01-12 22:09:19.499329,58,502,673, +79,2014-01-20 12:46:25.452544,375,989,886, +24,2014-01-15 22:12:44.985196,503,625,135, +26,2014-01-20 20:14:01.500297,898,668,856, +94,2014-01-13 03:38:54.80865,448,220,161, +33,2014-01-12 06:49:16.956851,861,425,75, +87,2014-01-15 06:20:03.763356,173,123,509, +24,2014-01-19 15:24:36.664226,614,12,977, +79,2014-01-20 22:42:42.093718,938,143,677, +33,2014-01-14 12:24:47.493987,205,864,15, +87,2014-01-13 06:51:14.616891,157,842,586, +26,2014-01-18 03:43:36.942655,693,607,482, +26,2014-01-14 14:05:59.821155,288,895,727, +79,2014-01-20 02:27:26.392102,824,380,707, +87,2014-01-16 11:02:38.598215,267,66,483, +94,2014-01-19 15:31:51.911312,790,397,257, +79,2014-01-19 07:38:53.569127,148,314,544, +24,2014-01-12 00:59:27.324756,610,191,724, +87,2014-01-12 00:16:38.471761,902,331,136, +87,2014-01-13 23:39:29.4616,553,29,102, +33,2014-01-19 02:30:20.226156,591,518,407, +24,2014-01-14 10:59:35.233779,340,661,54, +94,2014-01-17 11:29:56.901871,633,230,474, +24,2014-01-12 14:02:43.126142,184,311,819, +94,2014-01-11 21:15:09.577394,701,957,84, +79,2014-01-14 23:07:43.326626,788,340,92, +87,2014-01-13 21:46:11.887745,981,167,430, +87,2014-01-11 11:11:31.951303,309,196,188, +24,2014-01-12 10:51:09.881887,179,32,745, +94,2014-01-17 14:44:34.882853,988,779,669, +87,2014-01-18 06:21:12.17996,37,819,420, +94,2014-01-14 13:00:29.381216,397,226,326, +94,2014-01-16 21:31:00.335397,490,640,484, +94,2014-01-12 22:33:57.165575,939,536,874, +24,2014-01-14 03:14:30.881932,88,24,522, +26,2014-01-19 05:09:55.144046,486,266,935, +79,2014-01-14 09:23:14.122425,922,97,783, +33,2014-01-18 13:34:34.645289,572,848,301, +26,2014-01-17 14:34:31.808272,651,957,635, +33,2014-01-14 02:05:56.216561,300,630,319, +79,2014-01-11 19:59:22.139275,443,153,990, +33,2014-01-20 01:25:46.425164,94,714,857, +26,2014-01-10 23:49:33.159217,470,948,591, +33,2014-01-15 14:05:21.960431,119,312,504, +94,2014-01-18 21:53:12.817685,443,231,106, +79,2014-01-16 14:52:11.757431,706,911,56, +87,2014-01-13 23:37:13.871743,57,855,158, +26,2014-01-16 23:32:06.386811,569,166,573, +24,2014-01-17 19:51:39.082188,623,468,812, +79,2014-01-15 03:53:52.343505,329,355,982, +26,2014-01-20 03:11:35.848831,376,85,922, +24,2014-01-15 16:21:59.308763,637,812,775, +79,2014-01-18 18:53:27.577284,425,478,566, +26,2014-01-16 08:41:32.750702,884,181,689, +33,2014-01-17 10:24:42.434905,496,240,793, +26,2014-01-19 20:08:37.154678,337,809,471, +79,2014-01-20 11:49:16.077747,343,476,628, +87,2014-01-20 12:10:54.32265,953,435,790, +87,2014-01-20 11:20:09.105981,752,729,783, +79,2014-01-11 16:40:25.959633,245,480,634, +94,2014-01-16 20:55:29.205502,801,115,113, +26,2014-01-17 11:41:21.28636,75,518,887, +87,2014-01-15 09:40:55.34085,428,792,252, +94,2014-01-12 12:26:29.540899,233,922,349, +33,2014-01-19 14:15:18.451935,102,819,716, +87,2014-01-18 16:55:26.222782,628,609,287, +87,2014-01-20 21:36:24.684945,614,115,209, +33,2014-01-12 17:38:32.57436,782,893,991, +24,2014-01-16 00:30:00.86807,557,310,649, +24,2014-01-17 06:10:56.493217,186,421,485, +24,2014-01-15 23:44:28.790922,841,118,637, +26,2014-01-17 00:29:23.007346,540,817,503, +87,2014-01-16 01:36:42.9188,586,746,785, +33,2014-01-16 03:34:01.95014,77,512,294, +26,2014-01-11 08:34:44.967776,734,371,921, +24,2014-01-13 17:29:55.736484,653,158,499, +33,2014-01-11 12:26:13.70799,433,515,415, +33,2014-01-14 12:11:58.839939,234,728,652, +94,2014-01-19 21:02:02.123297,87,533,258, +94,2014-01-18 12:17:52.790178,774,389,791, +87,2014-01-18 20:05:51.183444,740,358,356, +87,2014-01-18 18:13:37.972127,540,19,220, +24,2014-01-12 22:39:52.098941,864,900,772, +94,2014-01-16 08:59:18.761147,274,875,703, +79,2014-01-13 20:55:10.723248,339,990,195, +94,2014-01-19 13:04:34.533846,204,945,817, +26,2014-01-14 23:07:55.915825,548,607,257, +79,2014-01-13 02:44:26.800995,313,675,12, +26,2014-01-18 19:15:28.856496,417,655,270, +87,2014-01-14 04:28:05.022226,165,29,72, +79,2014-01-13 23:24:52.760628,828,758,248, +33,2014-01-14 10:10:58.061998,836,920,182, +24,2014-01-20 20:09:26.308585,276,879,1, +79,2014-01-18 13:05:48.101478,881,562,388, +94,2014-01-16 02:37:27.602897,637,807,924, +26,2014-01-19 04:24:44.760521,235,826,148, +87,2014-01-16 00:01:14.324679,150,385,541, +87,2014-01-15 18:13:52.287842,264,925,308, +94,2014-01-21 02:03:17.334881,444,713,432, +33,2014-01-21 04:31:15.192749,917,634,970, +26,2014-01-11 18:24:48.781477,84,358,309, +33,2014-01-15 19:47:46.126223,116,170,889, +87,2014-01-16 23:00:38.200514,720,399,782, +94,2014-01-17 00:01:31.700277,430,532,618, +24,2014-01-21 03:21:48.076362,987,683,593, +33,2014-01-17 11:35:23.16829,506,957,171, +94,2014-01-19 21:31:27.436761,801,585,60, +94,2014-01-11 09:48:01.784352,17,943,363, +26,2014-01-21 03:47:22.008228,933,321,920, +26,2014-01-18 12:33:29.560058,800,626,17, +26,2014-01-19 02:05:54.574949,968,312,948, +33,2014-01-18 17:53:13.192092,704,822,127, +87,2014-01-16 00:47:07.532605,550,684,828, +94,2014-01-21 04:45:46.673891,690,314,861, +24,2014-01-13 20:52:31.953239,460,568,935, +26,2014-01-19 01:42:18.255853,129,819,614, +94,2014-01-19 11:50:21.208155,522,860,257, +26,2014-01-18 00:00:27.869064,407,473,705, +94,2014-01-10 22:26:45.056848,666,590,158, +24,2014-01-17 01:05:50.064651,558,322,177, +33,2014-01-10 22:28:32.89129,43,166,917, +87,2014-01-14 01:51:37.817476,536,12,18, +26,2014-01-20 15:16:48.127068,601,207,865, +79,2014-01-20 22:37:59.199875,895,951,11, +24,2014-01-11 08:57:25.918954,631,481,584, +26,2014-01-15 11:54:15.729964,88,974,90, +33,2014-01-18 21:02:43.960396,377,155,485, +79,2014-01-16 12:58:40.243633,420,698,773, +33,2014-01-20 10:08:08.018224,978,566,315, +87,2014-01-18 17:06:01.295697,206,533,285, +24,2014-01-16 11:29:55.436801,505,781,307, +33,2014-01-10 22:32:56.799701,936,731,739, +79,2014-01-13 06:53:47.42192,97,40,467, +33,2014-01-12 04:30:33.637315,488,527,527, +26,2014-01-17 02:34:28.499978,941,984,10, +26,2014-01-13 04:15:35.498282,698,208,817, +26,2014-01-18 20:05:56.805605,40,193,356, +26,2014-01-15 18:05:55.936741,405,22,59, +94,2014-01-13 18:03:37.283053,311,818,678, +24,2014-01-18 17:53:18.814253,248,417,228, +24,2014-01-13 00:39:25.496799,513,887,215, +79,2014-01-11 14:09:31.858003,483,337,164, +94,2014-01-16 05:46:32.006344,725,814,839, +79,2014-01-18 05:26:33.029403,913,854,980, +24,2014-01-11 12:55:18.531893,600,672,52, +87,2014-01-19 06:39:03.959582,58,232,536, +24,2014-01-16 01:08:51.285256,776,185,469, +24,2014-01-20 04:45:39.740048,669,146,440, +94,2014-01-16 00:39:31.828646,139,567,841, +94,2014-01-16 03:35:36.342104,289,823,525, +24,2014-01-15 23:51:29.805118,708,351,593, +26,2014-01-16 03:08:04.720354,996,92,674, +26,2014-01-19 09:27:14.15958,595,644,360, +26,2014-01-15 09:08:17.932184,679,221,317, +79,2014-01-15 19:46:03.920229,85,616,978, +94,2014-01-19 22:24:40.078953,801,725,796, +94,2014-01-20 01:02:33.662149,169,289,79, +33,2014-01-13 10:48:47.881045,857,750,269, +94,2014-01-15 05:23:20.322586,596,988,307, +33,2014-01-19 05:10:41.680373,632,23,497, +79,2014-01-10 21:54:49.176742,536,834,96, +94,2014-01-20 20:53:15.759388,171,480,2, +26,2014-01-19 07:43:38.480074,426,508,694, +26,2014-01-13 08:48:36.59866,789,216,574, +87,2014-01-11 19:23:49.396703,847,265,452, +94,2014-01-15 04:18:06.980053,214,190,616, +33,2014-01-15 17:04:12.096943,670,140,369, +87,2014-01-19 19:29:46.202727,537,860,201, +26,2014-01-20 02:24:02.916793,172,350,989, +94,2014-01-18 15:07:49.379996,490,321,340, +94,2014-01-17 07:23:05.016979,512,446,86, +33,2014-01-11 21:03:28.41401,738,162,384, +26,2014-01-19 09:17:21.237999,797,295,458, +94,2014-01-12 07:09:37.023324,25,753,659, +87,2014-01-19 06:30:01.443414,814,80,725, +33,2014-01-20 02:12:39.77031,618,51,437, +79,2014-01-20 17:48:40.982906,43,480,290, +87,2014-01-14 01:38:52.72909,267,443,649, +94,2014-01-19 00:58:19.510358,910,988,164, +94,2014-01-15 12:28:12.811552,853,865,19, +24,2014-01-19 09:14:29.071193,131,978,13, +87,2014-01-13 18:49:49.315476,302,431,757, +24,2014-01-20 19:36:17.531906,220,309,361, +79,2014-01-17 12:41:43.231192,696,789,390, +94,2014-01-18 07:58:07.247661,187,629,147, +26,2014-01-15 09:22:21.452554,24,966,760, +94,2014-01-16 05:06:23.310145,533,975,430, +87,2014-01-17 03:00:40.910229,714,871,131, +24,2014-01-18 00:11:09.333599,455,572,214, +87,2014-01-20 14:29:43.632731,833,231,467, +24,2014-01-15 02:11:22.590601,268,2,171, +33,2014-01-18 02:05:58.51034,92,679,388, +33,2014-01-20 05:22:59.392539,309,602,829, +24,2014-01-13 03:55:01.071095,166,697,566, +33,2014-01-20 14:54:35.109001,432,517,565, +87,2014-01-21 04:46:48.789241,55,881,460, +26,2014-01-17 12:13:08.051147,192,13,492, +94,2014-01-15 01:58:47.205944,250,821,398, +33,2014-01-19 18:16:34.991968,412,457,19, +79,2014-01-16 08:37:10.968359,326,369,889, +87,2014-01-12 11:06:36.586359,951,564,869, +87,2014-01-15 19:39:40.008948,443,515,599, +79,2014-01-17 09:40:39.38237,703,917,232, +87,2014-01-21 00:23:57.824357,322,62,776, +33,2014-01-17 06:49:17.032271,155,444,220, +26,2014-01-15 10:10:40.825783,412,399,301, +79,2014-01-19 20:36:37.594669,348,337,99, +87,2014-01-16 18:37:58.015177,883,504,235, +24,2014-01-18 15:49:33.554873,659,249,164, +94,2014-01-17 15:34:57.105446,972,471,55, +33,2014-01-11 01:06:10.827148,495,388,33, +87,2014-01-16 19:04:02.626485,812,975,441, +94,2014-01-20 14:24:46.420922,589,16,809, +94,2014-01-21 00:42:28.359053,693,59,254, +26,2014-01-13 01:45:45.857677,870,752,821, +94,2014-01-17 16:22:53.669002,772,550,201, +79,2014-01-15 04:04:49.811608,532,56,214, +87,2014-01-18 10:52:09.167822,841,536,856, +87,2014-01-13 13:23:34.579231,866,495,973, +33,2014-01-11 22:15:59.145206,120,416,691, +24,2014-01-17 19:21:52.800554,275,402,672, +24,2014-01-17 19:34:57.169832,903,717,34, +33,2014-01-19 04:21:57.655547,335,733,555, +87,2014-01-16 18:44:52.193092,694,203,890, +94,2014-01-20 03:29:58.240927,321,268,237, +94,2014-01-18 13:16:32.764548,249,917,294, +33,2014-01-16 17:31:40.982752,652,935,265, +79,2014-01-16 09:43:06.292493,665,67,300, +87,2014-01-12 09:15:19.97091,186,352,382, +33,2014-01-15 05:48:15.97472,344,405,310, +87,2014-01-11 12:20:17.260852,744,319,508, +79,2014-01-14 00:21:56.557269,949,157,532, +87,2014-01-20 05:27:55.984086,62,744,881, +24,2014-01-18 02:00:56.643222,107,833,404, +33,2014-01-13 18:45:54.381627,697,37,575, +26,2014-01-16 06:17:13.016357,71,63,145, +94,2014-01-12 06:11:37.469006,804,463,664, +26,2014-01-12 09:22:31.976715,843,109,521, +33,2014-01-11 18:55:11.031953,580,685,3, +24,2014-01-20 02:01:11.024298,504,656,339, +79,2014-01-19 04:57:29.08216,218,546,385, +24,2014-01-12 00:01:21.859101,384,792,578, +24,2014-01-15 15:05:13.650783,9,77,475, +26,2014-01-18 13:22:15.503082,634,779,468, +26,2014-01-11 18:43:50.218155,283,648,727, +24,2014-01-17 20:50:59.50846,942,312,831, +26,2014-01-14 23:45:09.172085,911,495,414, +87,2014-01-16 02:48:40.030182,646,47,595, +33,2014-01-15 01:43:08.676282,512,551,738, +26,2014-01-17 17:08:43.751317,143,117,849, +33,2014-01-17 05:04:39.175389,327,218,515, +94,2014-01-11 15:05:01.476836,476,999,354, +87,2014-01-14 06:43:40.921568,511,207,678, +33,2014-01-15 03:26:36.831354,658,248,192, +87,2014-01-17 13:49:53.670348,329,851,66, +33,2014-01-13 04:13:39.162495,592,484,642, +94,2014-01-12 10:43:09.595902,635,654,158, +87,2014-01-13 01:21:34.6531,492,678,766, +26,2014-01-18 17:56:45.454989,94,79,837, +24,2014-01-13 23:58:29.566811,897,721,105, +79,2014-01-17 11:09:50.62782,508,290,409, +33,2014-01-19 10:17:02.715841,676,725,763, +24,2014-01-17 04:20:26.124081,350,824,168, +79,2014-01-16 10:37:46.611906,829,5,29, +24,2014-01-16 06:17:59.359062,764,652,639, +79,2014-01-20 03:06:20.506127,964,113,82, +94,2014-01-11 10:54:59.628682,487,806,373, +26,2014-01-17 16:29:36.828486,519,57,720, +87,2014-01-11 06:28:52.482842,573,39,13, +94,2014-01-12 09:50:10.660636,705,213,139, +24,2014-01-16 12:30:47.852784,827,61,928, +87,2014-01-19 15:26:21.565002,555,201,867, +94,2014-01-13 13:51:32.519738,310,421,767, +26,2014-01-10 21:36:01.503568,478,500,198, +79,2014-01-16 22:48:37.068084,921,965,528, +94,2014-01-14 12:35:22.737893,421,332,194, +26,2014-01-17 22:27:01.012028,665,796,485, +87,2014-01-21 02:33:46.240589,62,784,512, +33,2014-01-19 19:24:02.768075,996,266,534, +24,2014-01-11 18:10:09.688311,353,584,102, +94,2014-01-17 13:42:29.991905,702,976,695, +94,2014-01-15 18:28:41.943882,259,955,852, +94,2014-01-12 13:15:11.165148,702,682,224, +24,2014-01-21 00:26:10.913474,762,921,66, +33,2014-01-20 01:55:18.775236,861,521,255, +79,2014-01-19 07:05:04.835496,935,797,335, +33,2014-01-12 22:39:50.076388,628,888,658, +94,2014-01-11 06:38:28.371138,870,256,665, +79,2014-01-11 02:26:39.488595,79,958,822, +24,2014-01-20 20:36:35.531376,889,219,648, +94,2014-01-14 10:36:57.938369,177,645,692, +24,2014-01-17 17:36:30.116834,373,691,836, +33,2014-01-19 00:53:38.247635,675,431,602, +33,2014-01-20 18:57:24.06245,735,234,806, +87,2014-01-12 22:14:16.72874,852,788,195, +26,2014-01-14 01:11:37.606697,973,833,67, +94,2014-01-19 16:03:44.568577,192,146,958, +33,2014-01-13 13:09:16.357423,774,410,241, +26,2014-01-20 21:41:14.435183,305,69,117, +87,2014-01-20 02:32:37.051418,415,900,596, +94,2014-01-15 02:59:27.018059,75,820,915, +26,2014-01-16 04:12:02.287969,79,882,607, +24,2014-01-18 11:58:58.61642,343,761,244, +79,2014-01-17 20:50:59.537797,815,562,250, +87,2014-01-16 05:48:03.791536,523,923,270, +33,2014-01-14 04:47:35.684923,733,534,581, +26,2014-01-11 03:26:22.276109,806,940,480, +94,2014-01-12 22:15:04.803565,3,555,614, +94,2014-01-14 01:21:21.925511,72,245,934, +24,2014-01-20 02:50:25.044183,249,424,314, +26,2014-01-13 20:25:14.491876,173,737,46, +24,2014-01-20 19:03:51.917417,970,404,410, +94,2014-01-14 15:19:06.988066,882,327,363, +94,2014-01-15 13:40:25.657443,98,758,736, +79,2014-01-20 13:30:02.831309,217,306,147, +94,2014-01-13 11:14:25.763302,318,53,993, +79,2014-01-13 14:45:30.492938,366,4,917, +24,2014-01-12 06:09:52.907697,482,441,625, +87,2014-01-13 21:52:54.134858,982,881,147, +87,2014-01-13 21:12:09.981952,761,515,929, +87,2014-01-11 20:46:28.439073,2,528,311, +24,2014-01-17 12:29:52.073227,597,158,90, +33,2014-01-20 18:48:40.098786,126,675,686, +26,2014-01-20 01:40:06.686708,863,921,639, +87,2014-01-17 01:27:16.135677,15,682,103, +87,2014-01-12 11:02:56.827526,531,912,611, +87,2014-01-12 20:51:44.293824,887,651,321, +26,2014-01-15 11:31:00.704673,190,384,720, +26,2014-01-15 04:12:13.185368,5,996,791, +94,2014-01-12 12:32:58.729007,684,716,420, +79,2014-01-14 08:03:37.756091,276,1,130, +87,2014-01-19 11:11:40.203427,499,297,793, +79,2014-01-17 20:45:01.017396,455,506,98, +79,2014-01-11 14:02:36.37293,830,84,504, +79,2014-01-16 02:02:39.741644,693,373,308, +87,2014-01-12 20:33:04.808932,495,569,778, +87,2014-01-14 22:50:12.057853,766,825,605, +33,2014-01-16 09:29:02.017752,592,446,70, +79,2014-01-14 22:48:09.612916,646,762,466, +79,2014-01-18 04:11:33.983365,725,12,180, +87,2014-01-15 06:19:27.061935,295,943,12, +79,2014-01-17 23:13:24.104792,367,785,960, +79,2014-01-17 17:15:25.900781,727,853,752, +94,2014-01-19 01:38:34.050421,133,590,452, +26,2014-01-12 06:53:49.762234,518,346,242, +94,2014-01-17 00:45:28.732092,623,749,335, +94,2014-01-11 06:52:59.813722,322,825,298, +33,2014-01-15 01:39:20.255592,490,228,271, +87,2014-01-18 10:55:21.639789,167,75,653, +26,2014-01-14 08:45:53.948581,237,244,397, +87,2014-01-18 02:51:30.237544,299,454,910, +24,2014-01-19 11:41:50.07928,748,478,984, +33,2014-01-21 01:15:46.021808,445,771,264, +94,2014-01-17 15:40:10.336329,857,188,354, +24,2014-01-18 07:21:56.765989,230,928,359, +94,2014-01-16 20:43:02.157904,91,920,181, +79,2014-01-19 06:43:07.163855,854,461,768, +33,2014-01-20 08:13:41.059813,864,649,240, +79,2014-01-11 02:14:02.862578,478,893,500, +87,2014-01-13 04:55:20.349224,681,598,209, +26,2014-01-11 14:46:39.78924,914,669,970, +24,2014-01-14 14:17:40.618669,633,541,152, +24,2014-01-11 10:07:00.55307,823,601,474, +33,2014-01-18 15:31:40.806634,1,910,826, +26,2014-01-15 08:20:16.991599,66,956,741, +87,2014-01-16 16:09:40.294714,994,949,387, +26,2014-01-20 16:04:45.615567,983,139,968, +33,2014-01-19 11:10:29.049451,419,601,899, +24,2014-01-11 19:38:42.312466,542,294,782, +26,2014-01-14 08:52:55.228482,339,741,967, +26,2014-01-16 09:22:03.032816,457,313,223, +24,2014-01-16 05:58:09.374401,481,341,237, +24,2014-01-11 02:06:19.333693,119,344,917, +94,2014-01-12 20:37:28.934017,386,76,466, +33,2014-01-14 01:36:43.424822,423,154,429, +24,2014-01-12 13:00:09.095927,698,125,802, +24,2014-01-19 01:22:57.666107,843,154,639, +26,2014-01-14 12:29:43.238964,762,988,536, +26,2014-01-16 18:39:29.351519,355,423,327, +79,2014-01-16 06:18:19.306316,249,847,299, +26,2014-01-18 01:15:37.187544,498,736,994, +33,2014-01-13 15:30:59.589061,43,546,615, +87,2014-01-14 12:00:09.385596,573,260,766, +87,2014-01-17 20:31:23.209771,676,83,300, +94,2014-01-20 11:11:09.925392,312,823,974, +94,2014-01-11 13:22:06.151584,939,588,878, +24,2014-01-13 11:14:25.367676,713,556,807, +87,2014-01-18 11:54:17.089666,773,925,819, +94,2014-01-21 01:35:47.211817,900,116,408, +26,2014-01-13 17:28:28.230254,568,160,1000, +79,2014-01-20 20:49:37.43889,522,797,883, +24,2014-01-11 10:22:27.001055,139,585,125, +33,2014-01-17 11:46:08.848923,439,104,733, +79,2014-01-11 00:56:37.991959,431,964,886, +33,2014-01-19 05:54:07.807691,71,440,487, +79,2014-01-11 14:06:25.84094,700,387,583, +33,2014-01-16 21:06:18.286673,213,560,686, +33,2014-01-18 15:58:53.423257,84,614,534, +94,2014-01-20 05:16:54.890392,173,712,895, +87,2014-01-17 20:45:00.599139,478,28,318, +87,2014-01-11 18:51:48.652158,220,449,635, +79,2014-01-15 08:38:57.923626,647,876,616, +79,2014-01-12 20:43:09.973959,510,574,921, +24,2014-01-12 00:58:07.985852,769,348,290, +87,2014-01-17 09:16:26.857643,519,539,869, +79,2014-01-16 02:19:53.398781,371,630,597, +94,2014-01-13 17:58:17.081779,972,828,53, +87,2014-01-15 04:39:24.52375,961,584,371, +26,2014-01-19 18:49:36.637744,119,587,350, +26,2014-01-19 16:37:46.433717,944,339,608, +87,2014-01-20 14:57:43.830066,993,592,438, +24,2014-01-16 14:05:13.825706,168,740,2, +87,2014-01-12 02:08:46.022779,63,544,495, +87,2014-01-13 20:57:53.215661,803,482,191, +33,2014-01-13 04:36:37.035478,528,636,446, +79,2014-01-11 07:19:55.94859,600,157,423, +33,2014-01-14 14:19:59.367665,541,526,626, +26,2014-01-15 19:51:02.403154,766,890,374, +79,2014-01-18 23:14:13.038255,262,56,117, +79,2014-01-14 09:55:46.579481,812,341,592, +26,2014-01-18 17:19:30.633407,490,149,724, +24,2014-01-18 14:03:50.477145,497,112,797, +87,2014-01-15 00:18:13.580536,811,401,864, +33,2014-01-14 23:05:39.48233,347,116,938, +79,2014-01-18 19:00:28.469523,164,479,942, +94,2014-01-13 00:12:21.388227,563,95,799, +24,2014-01-15 17:12:05.32327,192,780,675, +79,2014-01-14 10:06:46.756196,515,290,265, +94,2014-01-20 20:11:14.811484,674,701,181, +87,2014-01-14 16:29:00.214081,481,857,705, +79,2014-01-11 00:51:47.355753,430,976,247, +24,2014-01-11 09:03:03.463643,723,869,492, +26,2014-01-19 05:07:58.137707,190,221,879, +79,2014-01-13 01:34:57.329712,740,185,848, +94,2014-01-12 14:01:11.449495,436,984,724, +33,2014-01-15 08:24:24.99535,752,193,271, +33,2014-01-18 07:54:50.728493,883,758,899, +24,2014-01-15 11:59:28.531694,982,948,363, +24,2014-01-19 17:03:49.5191,965,814,697, +87,2014-01-16 20:44:27.366656,511,854,326, +33,2014-01-13 22:37:14.96541,7,971,19, +33,2014-01-19 02:01:33.349584,55,304,738, +79,2014-01-12 04:49:41.192363,113,66,393, +79,2014-01-15 04:46:00.98819,526,785,708, +94,2014-01-11 16:59:26.565246,504,322,34, +87,2014-01-14 13:26:18.227841,252,237,506, +26,2014-01-15 16:05:56.936778,763,462,23, +24,2014-01-15 11:19:25.93291,264,654,976, +87,2014-01-19 13:17:20.630995,567,80,645, +26,2014-01-13 09:20:09.975033,177,730,855, +24,2014-01-19 01:15:12.512391,315,804,159, +33,2014-01-17 00:36:51.264402,941,885,111, +79,2014-01-21 03:24:00.452597,951,872,708, +87,2014-01-12 19:33:26.092928,493,529,883, +24,2014-01-21 03:42:30.746732,405,951,27, +87,2014-01-18 16:24:28.922121,242,793,178, +26,2014-01-14 23:45:47.481154,336,423,875, +33,2014-01-15 14:54:36.070422,180,964,641, +33,2014-01-11 20:31:15.678316,631,893,253, +24,2014-01-14 13:57:02.293058,969,590,987, +94,2014-01-19 11:23:36.284503,853,984,42, +26,2014-01-12 01:23:03.03407,58,317,201, +24,2014-01-15 03:00:05.756701,397,547,520, +87,2014-01-17 10:31:34.422209,629,698,412, +33,2014-01-14 06:58:00.363781,597,443,496, +24,2014-01-16 21:01:17.206616,483,197,45, +26,2014-01-11 12:55:59.417559,354,273,704, +33,2014-01-11 08:52:51.092694,993,76,343, +24,2014-01-11 03:00:45.738309,350,812,143, +79,2014-01-20 09:59:48.936659,767,860,365, +87,2014-01-17 09:37:18.45935,624,602,878, +94,2014-01-14 05:38:00.70372,302,971,296, +24,2014-01-18 06:01:22.286243,649,536,265, +24,2014-01-18 18:26:59.651712,771,861,961, +79,2014-01-18 14:24:01.691908,594,143,765, +24,2014-01-19 03:00:48.851907,494,109,106, +94,2014-01-12 01:53:17.879553,611,18,996, +33,2014-01-13 00:29:58.629106,465,56,47, +26,2014-01-13 08:20:14.784818,399,312,63, +33,2014-01-20 19:10:38.510548,471,883,440, +87,2014-01-15 13:50:08.60414,668,292,16, +87,2014-01-11 03:35:27.297628,886,39,516, +33,2014-01-16 13:47:29.77495,234,471,828, +26,2014-01-15 11:14:09.056737,492,32,461, +33,2014-01-13 03:08:53.390555,980,600,420, +87,2014-01-16 11:30:00.521683,18,60,949, +26,2014-01-12 21:38:37.978857,343,940,641, +87,2014-01-17 06:54:40.872129,295,119,53, +33,2014-01-10 20:24:36.592105,115,811,583, +87,2014-01-13 22:09:53.657593,918,148,748, +26,2014-01-21 00:51:43.165187,499,680,681, +79,2014-01-19 11:48:12.876607,690,125,965, +24,2014-01-15 03:32:56.691662,30,523,827, +26,2014-01-14 21:51:48.921889,695,185,462, +26,2014-01-15 16:19:47.298818,492,525,938, +26,2014-01-18 14:30:57.055863,923,955,892, +24,2014-01-20 22:53:06.128504,191,544,308, +26,2014-01-16 09:15:46.716376,569,433,518, +33,2014-01-19 03:23:48.148557,368,995,751, +87,2014-01-21 05:53:51.866813,850,180,199, +94,2014-01-15 13:15:35.653454,159,426,643, +33,2014-01-15 07:01:06.607906,817,659,532, +94,2014-01-14 05:31:52.570532,355,752,738, +33,2014-01-12 13:16:57.939698,413,206,577, +87,2014-01-12 19:28:06.259619,566,911,8, +24,2014-01-11 13:55:54.262859,631,959,890, +26,2014-01-20 20:17:46.791605,352,269,864, +87,2014-01-14 01:21:24.139172,898,844,324, +79,2014-01-13 18:25:52.891966,456,215,949, +24,2014-01-12 22:38:01.576842,701,579,713, +33,2014-01-13 14:32:02.64972,240,436,244, +94,2014-01-18 12:16:01.496106,543,629,600, +94,2014-01-13 06:13:28.87447,691,38,412, +33,2014-01-19 08:19:32.424671,702,357,890, +87,2014-01-12 17:30:10.553262,217,175,417, +26,2014-01-15 13:22:22.265026,864,716,516, +33,2014-01-14 13:49:32.946353,920,863,830, +24,2014-01-14 19:08:48.53212,829,908,186, +24,2014-01-11 14:17:03.137155,331,942,533, +79,2014-01-14 14:14:09.538878,719,875,14, +26,2014-01-17 21:18:42.189712,891,106,753, +94,2014-01-11 09:08:46.302342,191,411,924, +33,2014-01-12 20:02:22.415485,665,928,252, +94,2014-01-11 18:51:38.881794,975,995,540, +24,2014-01-15 11:00:35.22465,980,886,297, +26,2014-01-17 16:22:09.714722,741,763,375, +26,2014-01-19 13:22:35.937656,190,495,277, +26,2014-01-15 03:53:41.353153,49,46,179, +26,2014-01-12 19:37:56.431098,654,198,514, +24,2014-01-17 10:46:24.086214,554,930,979, +33,2014-01-15 03:47:33.220385,377,296,231, +79,2014-01-17 12:53:32.084552,672,135,119, +94,2014-01-11 11:47:30.69412,281,721,861, +87,2014-01-18 13:19:25.790918,641,45,141, +87,2014-01-19 06:10:30.024669,372,894,722, +87,2014-01-13 11:15:36.95374,35,583,544, +79,2014-01-19 07:15:20.053777,928,804,479, +87,2014-01-18 20:28:16.816274,604,97,960, +87,2014-01-16 16:37:01.092911,62,561,596, +10,2014-01-11 19:41:12.945743,648,942,487, +35,2014-01-20 23:06:18.393117,824,879,49, +92,2014-01-19 11:09:03.742631,705,625,307, +92,2014-01-19 11:57:14.442268,96,574,335, +35,2014-01-12 23:19:47.267586,189,720,645, +92,2014-01-17 13:28:36.167302,146,10,210, +35,2014-01-10 23:27:24.99553,822,627,475, +35,2014-01-17 16:42:09.533031,582,758,511, +35,2014-01-10 21:18:09.113656,332,788,707, +10,2014-01-14 22:36:13.527649,614,594,478, +92,2014-01-18 10:59:12.670185,914,536,249, +92,2014-01-14 15:32:18.652533,340,247,469, +10,2014-01-11 13:54:55.71778,506,73,911, +92,2014-01-19 00:07:58.972947,430,223,369, +35,2014-01-16 15:34:41.068438,236,112,462, +10,2014-01-12 12:46:34.599574,377,157,887, +92,2014-01-13 05:08:34.197597,972,462,474, +92,2014-01-13 01:56:50.783159,264,95,925, +35,2014-01-10 20:09:10.53723,881,585,910, +10,2014-01-17 13:02:15.55075,982,517,432, +10,2014-01-15 01:34:47.214257,294,206,538, +10,2014-01-17 10:55:34.623444,613,376,901, +35,2014-01-11 10:49:48.771135,824,218,853, +35,2014-01-11 08:28:19.299228,884,935,291, +10,2014-01-18 02:43:05.317564,660,568,699, +92,2014-01-19 04:09:14.562472,865,412,221, +92,2014-01-19 18:38:49.323898,313,771,652, +92,2014-01-20 17:58:42.271303,965,862,616, +92,2014-01-17 05:24:34.616249,888,549,62, +35,2014-01-17 09:07:06.140172,409,312,413, +10,2014-01-16 04:35:43.364215,161,169,442, +92,2014-01-18 05:05:47.562411,362,489,142, +35,2014-01-17 02:13:24.533707,817,288,580, +10,2014-01-14 09:44:47.106846,161,314,264, +35,2014-01-16 11:03:02.004679,13,800,379, +10,2014-01-19 05:33:11.801293,877,448,568, +35,2014-01-21 03:13:23.274148,951,582,371, +10,2014-01-16 14:30:27.000209,134,760,463, +10,2014-01-15 16:15:21.334324,792,525,431, +35,2014-01-21 04:31:32.387804,800,489,780, +10,2014-01-20 17:06:40.527858,325,298,699, +35,2014-01-12 21:14:34.004929,563,707,739, +92,2014-01-14 14:03:51.040757,552,616,508, +35,2014-01-11 01:01:36.245639,6,758,358, +92,2014-01-21 01:22:32.977876,348,602,433, +10,2014-01-20 09:38:32.109195,277,793,872, +35,2014-01-12 17:48:10.845214,267,838,570, +10,2014-01-13 00:31:07.175472,342,732,413, +35,2014-01-12 05:35:22.892354,202,173,416, +10,2014-01-12 17:57:21.382444,53,749,772, +92,2014-01-19 17:33:22.726222,432,587,734, +10,2014-01-16 11:10:10.106611,575,62,558, +10,2014-01-19 08:52:56.005887,303,113,20, +10,2014-01-20 08:23:11.497777,508,422,302, +10,2014-01-16 23:38:29.405841,654,254,215, +92,2014-01-16 05:36:01.323451,479,68,324, +35,2014-01-18 06:32:26.060249,995,828,797, +10,2014-01-15 12:17:18.729738,289,187,569, +10,2014-01-15 17:34:43.594753,700,123,267, +92,2014-01-14 05:57:00.676497,229,466,373, +35,2014-01-11 15:24:24.870328,84,447,896, +92,2014-01-21 02:10:26.958968,94,920,263, +92,2014-01-11 05:02:48.238908,530,992,934, +35,2014-01-17 21:37:49.404035,372,642,829, +35,2014-01-14 05:55:14.065814,4,510,177, +10,2014-01-16 20:05:50.243587,215,699,919, +10,2014-01-15 21:11:01.205328,767,854,469, +92,2014-01-14 03:08:37.339961,49,834,470, +35,2014-01-12 04:36:17.243797,473,430,778, +35,2014-01-20 17:26:22.540072,4,475,82, +10,2014-01-14 01:40:09.728185,117,829,362, +10,2014-01-11 15:42:57.772074,410,780,663, +35,2014-01-12 08:40:56.545001,423,338,671, +92,2014-01-17 19:44:00.768943,137,457,614, +92,2014-01-11 20:44:34.017713,234,9,879, +92,2014-01-12 04:03:29.522876,918,373,478, +10,2014-01-16 23:22:32.878138,719,976,537, +92,2014-01-13 18:32:44.863345,114,696,500, +92,2014-01-14 08:34:36.698348,762,907,781, +35,2014-01-18 08:57:55.770492,432,203,945, +35,2014-01-15 16:30:06.245789,589,2,66, +10,2014-01-12 20:07:59.424571,939,152,43, +35,2014-01-13 14:08:05.877104,856,652,257, +92,2014-01-13 19:23:02.252095,427,358,107, +92,2014-01-11 22:31:10.922347,768,530,782, +92,2014-01-19 17:46:35.283363,379,652,409, +35,2014-01-19 04:59:03.575546,275,567,507, +10,2014-01-19 09:03:36.982596,304,280,828, +35,2014-01-14 00:03:54.013101,961,67,177, +10,2014-01-13 16:33:47.170719,833,206,322, +92,2014-01-12 09:00:37.659512,808,934,689, +10,2014-01-14 19:28:18.883429,778,81,529, +35,2014-01-13 12:44:14.129686,930,356,201, +92,2014-01-12 18:03:25.898421,936,958,738, +10,2014-01-11 11:06:08.287465,536,747,939, +35,2014-01-16 22:39:28.195919,823,307,560, +10,2014-01-18 18:09:16.142427,699,593,528, +35,2014-01-16 12:17:09.493212,634,494,325, +92,2014-01-20 05:48:05.535881,166,567,500, +92,2014-01-20 02:45:33.386223,559,444,395, +92,2014-01-15 23:43:32.033284,366,544,323, +35,2014-01-13 01:28:15.264067,397,325,713, +92,2014-01-20 22:28:31.158297,953,767,607, +35,2014-01-17 12:24:28.578284,680,267,500, +92,2014-01-20 01:12:16.033009,425,615,945, +35,2014-01-11 13:13:05.176429,753,504,198, +92,2014-01-18 20:27:58.10116,647,625,171, +10,2014-01-15 18:34:48.911147,734,400,487, +10,2014-01-14 11:45:50.039774,51,289,409, +35,2014-01-11 23:02:34.799509,612,449,401, +10,2014-01-12 21:32:44.681639,443,596,887, +92,2014-01-19 08:15:56.285563,833,792,807, +35,2014-01-13 23:10:34.224079,194,838,244, +35,2014-01-15 15:40:50.559161,595,643,249, +35,2014-01-11 21:38:58.537657,575,965,90, +10,2014-01-15 01:41:45.146846,870,230,420, +35,2014-01-14 03:27:25.842525,230,457,45, +10,2014-01-20 06:38:02.113623,196,364,383, +10,2014-01-13 04:45:22.129442,239,388,843, +10,2014-01-17 07:31:19.855625,694,828,284, +10,2014-01-12 17:11:49.284341,145,619,997, +92,2014-01-14 17:45:59.788953,334,715,127, +92,2014-01-10 20:59:38.739474,719,855,747, +10,2014-01-15 09:56:03.414027,417,760,972, +10,2014-01-16 15:49:25.687793,732,875,895, +10,2014-01-11 12:05:47.026939,370,772,975, +35,2014-01-11 02:35:31.609946,42,280,128, +35,2014-01-14 03:58:41.83022,375,281,565, +35,2014-01-17 04:22:56.520151,490,9,630, +92,2014-01-20 12:23:37.146246,210,168,797, +92,2014-01-13 00:44:15.216444,287,61,835, +10,2014-01-11 22:06:28.553434,787,334,52, +10,2014-01-12 07:51:52.410313,713,945,206, +10,2014-01-12 17:12:46.375159,955,898,612, +35,2014-01-18 14:30:57.131719,218,934,230, +35,2014-01-11 03:04:08.443741,860,609,731, +92,2014-01-13 10:25:51.551589,136,282,532, +35,2014-01-16 04:58:55.23288,597,601,494, +92,2014-01-16 01:38:57.354887,299,487,978, +10,2014-01-17 02:11:41.591364,62,584,428, +10,2014-01-17 08:01:30.032389,547,936,512, +35,2014-01-18 03:11:42.036945,999,368,963, +35,2014-01-15 04:27:37.876926,986,261,163, +35,2014-01-20 11:12:04.256888,254,115,914, +10,2014-01-12 12:52:32.596106,973,91,905, +10,2014-01-16 06:06:36.415003,257,593,140, +92,2014-01-14 06:53:49.403733,46,404,906, +35,2014-01-15 20:19:58.438631,360,954,266, +10,2014-01-15 06:44:38.528625,998,394,796, +10,2014-01-16 15:39:11.533175,668,386,934, +92,2014-01-11 21:51:18.294256,428,736,781, +92,2014-01-17 03:56:27.812966,992,445,163, +35,2014-01-20 13:25:11.322548,891,557,958, +92,2014-01-11 22:50:57.03373,27,226,375, +10,2014-01-11 07:52:31.226994,204,5,13, +92,2014-01-15 23:14:37.010341,420,657,556, +92,2014-01-12 14:56:44.061088,336,481,138, +92,2014-01-11 14:28:02.837358,156,494,342, +92,2014-01-19 07:13:18.84056,902,760,908, +92,2014-01-18 23:19:40.581239,495,983,355, +10,2014-01-10 20:51:39.983604,458,286,740, +10,2014-01-11 01:57:34.057004,401,170,779, +92,2014-01-20 01:26:09.135092,849,384,760, +35,2014-01-12 08:43:32.393917,602,215,530, +92,2014-01-12 23:10:20.432165,397,998,93, +35,2014-01-17 09:57:06.266811,210,325,183, +92,2014-01-12 15:47:40.837657,695,789,171, +35,2014-01-15 13:36:11.983753,686,829,540, +10,2014-01-12 08:56:01.50011,501,52,962, +35,2014-01-17 21:26:38.192965,779,3,472, +35,2014-01-11 09:47:53.575117,989,862,711, +92,2014-01-18 20:57:31.532499,456,828,928, +92,2014-01-14 18:38:20.229909,646,157,576, +10,2014-01-15 18:15:31.452461,410,592,129, +10,2014-01-18 02:09:35.789386,579,826,204, +92,2014-01-16 11:30:52.826016,943,451,52, +10,2014-01-21 04:22:07.867464,823,991,999, +10,2014-01-11 03:03:25.19312,780,825,372, +10,2014-01-11 01:50:51.264647,990,475,361, +35,2014-01-15 05:06:46.39609,567,49,475, +92,2014-01-16 22:42:36.726715,518,228,278, +92,2014-01-12 03:42:09.558904,988,857,401, +35,2014-01-11 03:03:14.209055,569,997,264, +10,2014-01-16 06:07:48.049261,322,262,97, +35,2014-01-13 06:33:06.593053,260,958,143, +92,2014-01-11 14:55:45.436049,427,999,727, +10,2014-01-10 23:22:25.059602,86,918,594, +35,2014-01-15 01:29:50.654141,679,712,397, +92,2014-01-12 09:23:48.273407,752,975,816, +10,2014-01-19 10:35:43.900164,357,363,676, +35,2014-01-12 18:49:31.235379,720,712,495, +35,2014-01-12 10:15:28.257011,381,259,837, +10,2014-01-19 16:33:17.957168,529,999,446, +10,2014-01-11 14:15:40.370471,6,91,222, +10,2014-01-13 22:59:00.651348,718,839,852, +35,2014-01-11 09:43:38.389751,984,942,859, +35,2014-01-18 04:12:46.637701,569,510,80, +35,2014-01-15 18:46:41.489005,396,349,65, +10,2014-01-16 03:19:50.373504,811,402,836, +35,2014-01-19 17:08:48.137811,234,936,658, +92,2014-01-12 10:13:19.68197,939,342,443, +10,2014-01-16 17:07:43.94904,690,817,729, +10,2014-01-17 08:06:19.67031,821,336,53, +92,2014-01-16 08:51:39.911879,812,726,585, +92,2014-01-11 05:23:15.401501,410,698,196, +35,2014-01-14 04:15:55.460117,864,614,891, +10,2014-01-11 14:22:32.737895,566,130,578, +10,2014-01-11 03:45:23.268965,357,296,684, +35,2014-01-14 11:19:20.653236,335,913,713, +35,2014-01-11 20:13:24.002543,493,481,599, +10,2014-01-15 12:52:09.665053,723,495,163, +10,2014-01-20 14:01:57.379951,186,542,911, +35,2014-01-13 03:55:33.561866,404,957,377, +92,2014-01-15 19:55:23.874109,911,133,128, +35,2014-01-15 14:09:45.429212,592,644,60, +10,2014-01-15 14:28:40.154919,974,589,107, +35,2014-01-16 14:51:09.310157,936,365,194, +35,2014-01-15 17:32:10.488815,341,538,386, +92,2014-01-19 19:58:30.80906,65,149,638, +92,2014-01-18 04:14:57.583983,443,513,831, +10,2014-01-13 22:07:54.388978,219,331,319, +10,2014-01-11 08:48:02.04444,931,276,477, +10,2014-01-19 18:30:25.840995,555,416,733, +35,2014-01-12 08:41:12.346565,235,333,216, +92,2014-01-12 03:03:42.415329,931,425,779, +10,2014-01-12 11:29:26.492343,18,190,673, +92,2014-01-12 22:24:50.736315,25,74,478, +35,2014-01-19 11:16:29.05303,50,808,643, +10,2014-01-17 10:16:07.981768,192,970,271, +10,2014-01-18 05:44:41.109819,891,325,846, +10,2014-01-17 22:25:17.190842,765,992,914, +92,2014-01-19 00:29:27.663737,158,932,898, +92,2014-01-13 16:52:25.058858,518,538,394, +10,2014-01-14 00:31:36.861152,193,341,469, +35,2014-01-14 03:21:07.576035,276,807,519, +10,2014-01-14 02:15:40.460358,996,718,593, +92,2014-01-17 08:47:32.321269,404,51,261, +35,2014-01-14 21:43:40.31393,270,261,675, +35,2014-01-14 10:01:03.729323,186,824,136, +92,2014-01-21 00:06:52.974924,839,741,630, +10,2014-01-15 21:57:04.316892,119,94,409, +35,2014-01-19 02:53:13.394377,22,559,314, +35,2014-01-20 08:08:50.354875,766,966,743, +35,2014-01-18 05:52:37.878757,77,101,242, +10,2014-01-13 16:48:37.268485,288,781,176, +92,2014-01-14 16:18:35.784506,197,39,483, +92,2014-01-12 14:21:18.033677,844,254,113, +35,2014-01-19 11:39:46.579062,962,93,866, +10,2014-01-19 13:50:46.273321,550,605,438, +10,2014-01-11 04:19:48.842736,648,573,158, +92,2014-01-16 09:54:44.163046,78,823,309, +10,2014-01-12 05:58:40.662719,801,184,976, +10,2014-01-11 17:07:50.887176,867,223,399, +10,2014-01-14 22:25:10.004041,456,182,354, +92,2014-01-13 18:39:53.009282,359,171,631, +35,2014-01-13 00:11:33.302506,997,134,82, +92,2014-01-16 13:54:36.496803,939,705,891, +92,2014-01-15 21:04:43.745598,298,775,830, +92,2014-01-11 05:28:02.355536,920,971,316, +10,2014-01-12 18:10:44.47857,39,678,645, +92,2014-01-12 20:49:24.855417,488,428,537, +35,2014-01-18 07:53:19.546378,472,209,832, +10,2014-01-20 22:40:12.142307,96,667,906, +35,2014-01-15 17:41:49.914694,540,537,975, +92,2014-01-11 02:24:56.40795,839,920,34, +35,2014-01-13 20:01:19.718343,705,706,164, +10,2014-01-18 23:57:30.375052,379,799,873, +35,2014-01-17 15:12:28.729219,865,735,520, +10,2014-01-17 21:45:00.032693,754,510,914, +10,2014-01-12 03:58:34.104795,445,10,619, +35,2014-01-17 09:19:21.704143,207,616,147, +10,2014-01-12 13:42:04.349584,558,449,651, +92,2014-01-20 10:51:47.499171,354,641,147, +92,2014-01-16 11:28:12.059436,337,212,880, +35,2014-01-19 23:34:42.228343,716,450,182, +10,2014-01-12 21:40:24.768076,596,951,650, +10,2014-01-20 07:46:47.843944,516,387,886, +35,2014-01-11 07:56:00.262019,574,181,313, +10,2014-01-11 03:20:11.347138,824,942,390, +35,2014-01-18 15:37:34.117265,930,179,911, +10,2014-01-11 16:15:49.104756,347,911,305, +10,2014-01-16 17:14:55.510183,486,568,622, +35,2014-01-20 01:36:14.779983,551,723,61, +35,2014-01-12 13:23:39.991932,979,553,947, +10,2014-01-20 19:40:05.514224,435,241,116, +10,2014-01-12 14:16:07.789266,217,546,612, +10,2014-01-14 17:35:13.294857,861,544,689, +35,2014-01-16 03:34:42.011026,73,240,213, +92,2014-01-17 15:20:51.534864,718,500,768, +92,2014-01-15 03:03:15.650394,866,585,774, +35,2014-01-18 01:45:26.489597,517,351,167, +10,2014-01-19 16:10:16.390699,881,590,675, +10,2014-01-12 04:56:35.197192,506,31,535, +10,2014-01-17 18:25:38.632324,242,227,948, +92,2014-01-14 03:52:06.305393,492,88,42, +35,2014-01-12 11:21:31.605142,454,178,372, +10,2014-01-20 18:26:58.350667,837,933,786, +35,2014-01-11 21:49:36.680445,522,150,864, +92,2014-01-19 06:34:00.33436,494,364,163, +92,2014-01-17 10:11:58.383359,570,544,283, +92,2014-01-13 05:48:10.785239,779,642,52, +35,2014-01-15 09:53:22.038922,818,252,606, +10,2014-01-19 03:54:02.732945,517,927,807, +35,2014-01-12 10:39:58.284829,15,504,446, +10,2014-01-21 01:21:34.098358,255,14,280, +10,2014-01-17 21:28:44.961286,28,963,975, +48,2014-01-14 12:20:23.052905,547,931,259, +48,2014-01-20 03:08:21.942302,41,768,0, +48,2014-01-18 09:24:45.223306,768,496,251, +48,2014-01-14 19:40:34.400043,310,660,696, +48,2014-01-17 12:45:56.059567,661,245,108, +48,2014-01-19 05:40:34.328062,42,724,862, +48,2014-01-20 16:55:29.910226,623,688,173, +48,2014-01-16 08:22:10.839969,101,861,818, +48,2014-01-20 23:04:14.320414,140,635,276, +48,2014-01-20 06:35:35.42445,388,643,492, +48,2014-01-18 02:38:18.629234,729,684,654, +48,2014-01-14 10:39:27.615271,806,661,911, +48,2014-01-15 04:10:17.435895,144,40,16, +48,2014-01-14 11:59:10.164517,856,242,810, +48,2014-01-18 17:42:43.265665,945,407,876, +48,2014-01-11 23:55:43.925492,857,344,767, +48,2014-01-12 22:09:26.555215,172,744,842, +48,2014-01-20 02:39:18.462856,811,458,737, +48,2014-01-18 22:21:22.557816,605,633,434, +48,2014-01-16 06:01:32.860607,424,367,620, +48,2014-01-11 08:00:50.067998,206,424,344, +48,2014-01-18 10:48:20.908901,463,110,758, +48,2014-01-17 07:51:09.541052,258,966,920, +48,2014-01-19 18:34:50.402777,300,567,456, +48,2014-01-14 15:00:19.292261,776,156,542, +48,2014-01-19 17:39:20.32671,963,999,735, +48,2014-01-13 22:28:12.441699,415,931,684, +48,2014-01-12 12:54:22.025625,129,182,663, +48,2014-01-10 22:19:18.611539,600,74,789, +48,2014-01-13 17:49:46.540057,445,826,498, +48,2014-01-19 14:23:06.986911,497,880,736, +48,2014-01-14 14:39:41.664444,432,592,229, +48,2014-01-12 14:58:08.482359,370,244,746, +48,2014-01-16 17:47:52.210636,542,562,354, +48,2014-01-18 14:20:16.064486,870,316,296, +48,2014-01-19 07:44:04.541926,511,275,958, +48,2014-01-14 17:28:26.538699,349,597,597, +48,2014-01-18 01:15:45.974712,486,771,8, +48,2014-01-14 10:06:15.381894,318,474,565, +48,2014-01-14 10:32:40.859112,163,661,217, +48,2014-01-17 01:51:21.399161,894,291,572, +48,2014-01-11 06:44:34.011547,435,529,77, +48,2014-01-18 01:12:08.474383,894,58,910, +48,2014-01-11 00:01:38.835057,565,794,504, +48,2014-01-14 22:43:44.176064,571,995,611, +48,2014-01-15 12:54:51.740467,705,490,23, +48,2014-01-12 03:57:22.760968,571,821,226, +48,2014-01-17 00:53:10.731278,85,982,309, +48,2014-01-14 09:34:10.203323,53,508,198, +48,2014-01-20 06:18:45.318784,840,991,176, +48,2014-01-12 00:54:43.591885,201,111,512, +48,2014-01-14 21:35:00.271741,343,243,928, +48,2014-01-17 11:07:06.227685,413,406,367, +48,2014-01-18 12:45:53.132938,492,388,347, +48,2014-01-13 10:09:50.674517,96,559,134, +48,2014-01-10 20:07:25.520366,851,918,115, +48,2014-01-17 00:25:13.459648,367,882,60, +48,2014-01-16 12:38:03.116216,168,438,243, +48,2014-01-12 13:01:47.545991,268,550,957, +48,2014-01-17 02:44:32.071186,484,261,409, +48,2014-01-19 10:27:49.656273,820,851,673, +48,2014-01-10 21:24:54.532901,184,544,656, +48,2014-01-20 21:24:13.73563,963,688,733, +48,2014-01-21 05:25:58.138631,772,690,839, +48,2014-01-16 19:12:46.743538,573,787,514, +48,2014-01-18 05:44:29.800117,721,160,733, +48,2014-01-19 07:10:02.680557,884,927,660, +48,2014-01-20 16:41:13.282655,48,782,687, +48,2014-01-15 01:00:15.774829,216,892,104, +48,2014-01-12 11:16:18.062871,114,373,219, +48,2014-01-13 21:13:54.141768,315,970,593, +48,2014-01-10 20:51:37.174409,203,28,940, +48,2014-01-12 22:00:52.074418,946,708,773, +48,2014-01-21 02:26:02.61657,617,57,786, +48,2014-01-11 00:53:16.009467,162,558,647, +48,2014-01-17 00:44:36.250481,251,351,816, +48,2014-01-15 09:20:54.357036,331,903,801, +48,2014-01-12 08:50:38.770435,286,463,32, +48,2014-01-12 19:37:46.981759,821,361,653, +48,2014-01-18 22:55:04.56036,561,883,220, +48,2014-01-11 09:09:24.089638,79,223,268, +48,2014-01-14 00:32:30.573645,138,25,185, +48,2014-01-12 14:30:04.8321,27,458,700, +48,2014-01-18 00:16:30.317323,961,295,767, +48,2014-01-11 07:18:23.706583,159,306,597, +48,2014-01-15 04:39:55.506617,573,325,932, +48,2014-01-18 00:23:55.837689,584,193,907, +48,2014-01-17 11:43:37.16665,497,583,216, +48,2014-01-20 21:17:58.622832,413,198,232, +48,2014-01-19 17:25:43.383679,157,627,967, +48,2014-01-13 08:28:09.237836,387,905,817, +48,2014-01-19 01:45:48.279105,482,884,443, +48,2014-01-19 18:50:37.917,428,850,753, +48,2014-01-12 23:52:22.973886,405,472,93, +48,2014-01-19 01:11:46.417736,699,133,434, +48,2014-01-15 08:03:24.660537,271,542,331, +48,2014-01-20 09:36:52.774003,139,529,509, +48,2014-01-17 02:21:49.098714,177,830,704, +48,2014-01-14 18:44:37.943193,458,17,105, +48,2014-01-14 04:37:08.549251,62,294,940, +48,2014-01-18 17:38:07.161583,78,474,644, +48,2014-01-17 19:58:32.085379,83,970,841, +48,2014-01-14 05:28:45.723661,524,285,780, +48,2014-01-20 19:38:59.236001,421,547,470, +48,2014-01-17 16:24:34.701949,636,377,943, +48,2014-01-14 10:22:01.733128,847,755,637, +48,2014-01-16 14:23:35.486482,457,797,328, +48,2014-01-11 19:45:29.058985,452,663,442, +48,2014-01-15 23:12:40.503982,843,568,269, +48,2014-01-18 14:01:22.468241,7,990,1000, +5,2014-01-19 22:40:33.619346,539,324,73, +53,2014-01-16 12:22:04.59362,793,146,992, +5,2014-01-11 08:33:53.041886,598,903,207, +5,2014-01-11 07:10:38.451865,837,421,414, +5,2014-01-13 06:38:34.910944,980,28,125, +53,2014-01-11 19:52:16.748469,500,245,424, +5,2014-01-15 15:50:33.958481,187,409,796, +5,2014-01-20 11:02:30.749052,767,824,530, +5,2014-01-18 11:35:53.915119,809,573,838, +53,2014-01-15 07:08:32.581733,814,79,630, +5,2014-01-18 22:28:14.132731,420,863,415, +5,2014-01-21 00:04:03.153375,176,540,436, +5,2014-01-13 02:54:20.860839,290,575,475, +5,2014-01-17 11:18:52.04973,762,162,413, +53,2014-01-12 17:56:26.127261,677,342,117, +53,2014-01-10 22:06:07.278994,930,869,243, +5,2014-01-11 13:22:16.710687,610,68,348, +53,2014-01-11 21:33:18.901265,496,156,622, +53,2014-01-17 04:27:56.377707,835,515,250, +53,2014-01-15 12:06:54.65388,867,725,257, +53,2014-01-15 06:10:27.450516,463,966,229, +53,2014-01-14 16:06:03.539291,725,995,533, +53,2014-01-12 02:05:26.739259,353,845,877, +53,2014-01-18 15:39:13.174177,676,709,66, +5,2014-01-14 05:45:02.775292,611,32,129, +53,2014-01-18 22:30:01.441208,935,104,103, +53,2014-01-11 20:01:14.907724,71,398,122, +53,2014-01-20 00:08:38.261774,577,511,743, +53,2014-01-19 22:15:30.500194,126,274,898, +5,2014-01-16 23:13:55.411706,268,68,97, +5,2014-01-17 08:10:00.730015,24,791,404, +53,2014-01-18 14:56:04.119957,700,503,820, +5,2014-01-12 05:36:00.005326,195,525,336, +5,2014-01-17 20:43:53.771901,114,603,253, +5,2014-01-19 02:06:42.571822,130,257,356, +5,2014-01-14 16:14:34.91627,965,594,848, +5,2014-01-18 20:36:10.52037,531,926,459, +53,2014-01-13 11:57:16.530304,298,313,408, +53,2014-01-13 21:17:05.665321,421,299,172, +5,2014-01-16 02:12:04.435908,371,26,604, +53,2014-01-17 23:05:49.112037,584,66,604, +5,2014-01-11 13:45:19.798471,90,485,496, +53,2014-01-15 20:16:07.589283,564,964,262, +53,2014-01-20 06:00:09.973295,582,933,306, +5,2014-01-18 05:04:11.848201,172,302,867, +53,2014-01-17 18:12:33.716545,657,890,788, +5,2014-01-20 08:06:17.252289,492,944,81, +53,2014-01-18 22:26:28.558889,754,493,145, +53,2014-01-18 19:45:52.617809,736,31,321, +53,2014-01-16 06:34:13.629996,639,547,710, +5,2014-01-13 04:33:23.213187,512,452,401, +5,2014-01-12 19:56:20.068745,171,486,688, +53,2014-01-20 02:40:17.169287,482,308,818, +5,2014-01-14 10:38:49.952447,946,460,5, +53,2014-01-20 15:35:33.242922,577,915,872, +53,2014-01-13 02:25:19.944579,239,290,54, +53,2014-01-12 03:08:51.394073,440,50,818, +53,2014-01-11 05:36:48.150646,600,418,771, +53,2014-01-11 20:33:58.206352,432,941,397, +53,2014-01-21 05:24:21.894267,697,740,396, +53,2014-01-17 08:50:43.562352,829,420,541, +5,2014-01-18 08:43:58.936367,635,192,789, +5,2014-01-18 14:20:26.014224,945,13,935, +5,2014-01-18 18:26:43.567678,661,791,837, +5,2014-01-14 23:27:52.708268,973,853,156, +53,2014-01-16 10:27:08.586047,940,530,323, +5,2014-01-12 04:41:18.484368,541,561,821, +53,2014-01-12 14:04:03.228638,430,856,39, +5,2014-01-19 02:24:25.11677,136,773,513, +53,2014-01-15 05:58:24.149689,528,166,26, +53,2014-01-17 20:16:07.664546,158,591,258, +53,2014-01-15 19:30:14.228807,15,448,319, +5,2014-01-15 23:43:43.948159,55,127,576, +5,2014-01-12 10:32:15.253829,753,250,638, +53,2014-01-14 19:30:24.202102,595,948,777, +5,2014-01-12 22:47:55.79678,947,263,551, +53,2014-01-19 08:44:48.970374,210,401,142, +5,2014-01-13 21:36:41.454391,638,712,999, +5,2014-01-21 01:14:24.355669,567,197,455, +53,2014-01-16 22:30:41.588603,509,327,1, +53,2014-01-19 08:10:55.084386,352,308,614, +53,2014-01-12 23:47:47.568856,823,175,808, +53,2014-01-18 22:27:01.657348,612,629,272, +53,2014-01-18 04:51:12.253674,282,918,291, +5,2014-01-16 14:26:37.521721,724,436,675, +53,2014-01-18 08:02:34.90027,673,938,995, +5,2014-01-20 11:16:32.198253,102,884,290, +5,2014-01-17 21:35:28.915795,389,625,312, +53,2014-01-18 17:39:23.051334,602,992,91, +5,2014-01-11 01:50:30.404605,363,72,872, +5,2014-01-17 20:59:50.810061,816,274,56, +5,2014-01-14 20:30:06.613687,67,746,40, +53,2014-01-18 14:34:29.340972,448,951,568, +5,2014-01-15 05:20:16.824705,335,95,216, +53,2014-01-12 08:56:50.181784,25,758,313, +5,2014-01-12 08:02:22.04924,978,832,614, +53,2014-01-20 19:47:25.410751,554,837,797, +53,2014-01-13 17:38:08.666152,611,547,642, +53,2014-01-14 02:06:25.278297,960,988,554, +5,2014-01-18 16:11:50.527522,42,340,359, +53,2014-01-18 03:36:32.815841,26,252,824, +5,2014-01-21 02:22:32.942843,948,216,419, +5,2014-01-13 05:42:04.756748,274,238,607, +5,2014-01-12 21:20:16.764419,478,904,639, +53,2014-01-12 06:54:48.197092,497,778,13, +5,2014-01-17 05:12:28.958849,285,374,575, +5,2014-01-15 00:08:12.561199,957,973,363, +53,2014-01-20 19:39:37.167466,864,110,782, +5,2014-01-20 06:49:10.413658,672,420,631, +5,2014-01-14 19:22:36.916868,589,214,275, +5,2014-01-16 12:10:18.756069,856,349,874, +53,2014-01-18 09:00:05.498046,640,682,631, +5,2014-01-16 23:10:24.486142,313,839,436, +53,2014-01-14 04:37:20.413417,993,712,559, +5,2014-01-15 07:51:17.752139,876,114,128, +53,2014-01-12 07:37:02.007864,54,480,695, +5,2014-01-11 06:39:55.314105,745,319,357, +5,2014-01-14 13:07:49.950392,215,347,23, +5,2014-01-19 09:12:30.923657,842,162,243, +5,2014-01-19 04:19:18.36544,935,148,77, +53,2014-01-14 18:58:20.355416,707,503,107, +5,2014-01-16 00:12:21.733719,162,571,537, +53,2014-01-12 18:49:24.979127,495,461,506, +53,2014-01-12 03:32:49.696387,891,494,604, +53,2014-01-20 09:32:38.558424,308,772,877, +53,2014-01-14 07:46:15.160911,85,588,94, +5,2014-01-13 15:35:11.746046,760,982,157, +5,2014-01-19 23:20:03.969595,538,11,879, +53,2014-01-17 05:24:23.827064,884,347,32, +5,2014-01-16 21:41:37.024343,743,324,543, +5,2014-01-17 09:31:54.497116,764,63,525, +53,2014-01-14 03:00:56.643323,382,595,478, +5,2014-01-16 18:04:09.967185,134,953,842, +53,2014-01-19 19:13:59.253864,90,454,913, +53,2014-01-16 04:21:13.407742,444,843,928, +53,2014-01-18 04:58:58.164276,788,159,81, +53,2014-01-15 18:26:28.213131,735,806,22, +5,2014-01-20 08:29:25.96894,826,234,807, +5,2014-01-17 18:38:35.33216,972,967,701, +53,2014-01-14 19:15:38.626791,703,221,590, +5,2014-01-13 21:52:02.885807,379,312,937, +53,2014-01-13 00:48:54.088229,260,834,405, +53,2014-01-11 22:15:44.124836,705,29,205, +53,2014-01-20 01:02:27.371949,158,319,447, +5,2014-01-16 09:26:14.502065,18,954,762, +5,2014-01-16 10:07:01.876975,146,470,533, +5,2014-01-11 02:39:29.379812,711,30,220, +53,2014-01-16 20:06:09.81617,662,88,33, +5,2014-01-20 03:14:51.827785,997,500,745, +5,2014-01-19 15:52:00.30347,494,241,483, +53,2014-01-14 18:25:28.181609,613,437,836, +53,2014-01-13 16:13:12.183201,184,575,249, +5,2014-01-14 10:04:22.037608,991,699,40, +5,2014-01-16 17:14:53.160735,63,661,459, +53,2014-01-14 23:46:01.879588,287,188,558, +5,2014-01-13 13:37:00.596032,896,512,392, +53,2014-01-20 05:01:08.322067,418,432,244, +53,2014-01-17 19:21:13.625634,399,493,104, +5,2014-01-12 06:57:04.565627,299,376,447, +5,2014-01-16 04:25:32.149129,828,565,148, +5,2014-01-13 11:02:50.649976,61,971,945, +5,2014-01-18 20:28:59.063161,524,200,546, +5,2014-01-19 11:26:28.792452,995,334,929, +53,2014-01-19 09:07:00.61758,96,576,327, +5,2014-01-17 09:42:58.317025,268,811,421, +53,2014-01-14 09:47:42.200193,43,482,797, +53,2014-01-16 08:05:58.781856,515,259,626, +53,2014-01-11 22:09:26.530156,5,848,679, +5,2014-01-13 12:17:08.169133,504,928,735, +5,2014-01-12 20:44:34.114018,902,786,28, +53,2014-01-15 21:25:05.156947,553,850,208, +5,2014-01-16 14:09:11.055359,363,877,508, +53,2014-01-15 01:33:28.202666,717,474,527, +53,2014-01-16 23:40:49.282202,82,169,312, +53,2014-01-15 09:11:38.427308,415,204,720, +53,2014-01-20 14:59:42.70473,20,758,621, +53,2014-01-12 03:47:51.159177,371,291,12, +53,2014-01-15 15:51:07.807541,736,840,502, +5,2014-01-16 05:05:52.5209,699,107,385, +5,2014-01-11 01:02:42.986962,921,591,541, +5,2014-01-14 01:43:08.11101,20,599,979, +53,2014-01-20 03:31:20.702509,435,20,841, +53,2014-01-13 21:15:55.170163,202,918,968, +5,2014-01-17 15:47:30.148619,885,431,446, +53,2014-01-15 14:46:13.863245,447,376,982, +53,2014-01-18 01:01:57.05017,352,135,507, +5,2014-01-20 09:24:30.74507,431,350,632, +53,2014-01-14 13:47:22.185311,456,782,155, +53,2014-01-14 14:23:10.675804,431,252,710, +53,2014-01-11 10:21:35.310697,647,879,718, +77,2014-01-19 22:12:54.334859,241,680,678, +77,2014-01-17 05:26:01.326199,196,579,118, +77,2014-01-19 10:50:34.373858,485,364,439, +77,2014-01-18 03:39:23.127311,626,479,674, +50,2014-01-15 08:33:01.943779,136,736,109, +50,2014-01-15 14:33:32.691302,933,109,386, +77,2014-01-11 07:27:05.327924,575,809,950, +50,2014-01-20 20:39:00.725636,641,401,506, +77,2014-01-16 16:42:59.221459,944,626,118, +50,2014-01-13 23:44:13.497057,274,994,423, +77,2014-01-12 11:23:34.840073,465,195,24, +50,2014-01-11 08:08:04.378825,887,57,916, +77,2014-01-19 17:53:24.552417,700,226,219, +50,2014-01-16 16:57:03.042739,563,871,980, +77,2014-01-17 11:48:53.661027,380,491,936, +77,2014-01-13 21:05:02.980145,495,401,968, +77,2014-01-16 01:56:45.74747,265,414,593, +77,2014-01-18 19:36:44.820204,597,445,544, +77,2014-01-18 16:56:10.787684,22,121,162, +50,2014-01-11 01:02:38.26837,705,792,266, +77,2014-01-19 00:39:27.807585,192,99,928, +77,2014-01-11 12:39:18.898695,501,186,165, +50,2014-01-20 08:33:58.970879,316,211,879, +77,2014-01-11 15:55:22.977748,241,681,19, +77,2014-01-18 08:26:49.047733,108,238,601, +50,2014-01-14 17:20:12.834124,313,873,456, +77,2014-01-18 20:57:20.027918,466,89,843, +77,2014-01-17 11:51:19.792803,638,624,137, +50,2014-01-18 11:07:35.019855,616,568,316, +50,2014-01-12 05:20:30.704141,205,513,461, +50,2014-01-18 02:12:55.1035,603,919,8, +77,2014-01-17 03:20:29.354715,444,778,847, +77,2014-01-18 14:46:32.03034,459,131,961, +50,2014-01-16 07:03:29.477778,822,624,720, +50,2014-01-14 00:59:52.482026,902,780,941, +50,2014-01-12 17:19:33.974119,243,109,738, +77,2014-01-21 01:37:02.169081,443,282,240, +50,2014-01-14 12:26:57.80995,933,752,689, +77,2014-01-12 07:58:34.699755,555,187,943, +50,2014-01-16 12:20:01.39054,305,451,907, +77,2014-01-17 16:11:11.307426,196,69,223, +50,2014-01-13 23:22:09.539828,361,592,138, +50,2014-01-17 00:28:05.769365,47,218,773, +77,2014-01-16 04:04:35.859843,886,173,331, +50,2014-01-19 20:19:12.582567,378,713,919, +50,2014-01-13 06:16:59.430393,851,411,495, +77,2014-01-19 05:09:38.839987,986,972,481, +77,2014-01-14 16:15:58.330036,154,398,298, +50,2014-01-21 05:53:44.251016,246,262,21, +50,2014-01-16 16:05:49.627672,491,4,802, +50,2014-01-14 21:18:36.598406,52,806,745, +77,2014-01-19 00:33:12.058601,786,997,598, +77,2014-01-17 08:45:08.526786,897,249,4, +77,2014-01-13 23:52:35.569285,851,537,531, +77,2014-01-19 20:28:35.036349,615,700,676, +50,2014-01-14 11:11:57.57452,203,943,317, +50,2014-01-17 21:12:48.403828,875,727,62, +77,2014-01-17 11:25:55.064686,400,678,422, +50,2014-01-21 03:03:17.367323,172,30,67, +50,2014-01-15 02:20:23.423683,253,920,612, +77,2014-01-18 20:46:25.768827,533,948,441, +77,2014-01-17 23:16:12.470823,130,141,347, +77,2014-01-10 23:40:52.778398,527,267,734, +50,2014-01-16 05:32:57.799167,981,811,665, +50,2014-01-13 00:19:41.948601,86,397,0, +50,2014-01-14 04:40:45.260424,593,619,622, +77,2014-01-18 02:52:31.773285,954,166,258, +77,2014-01-12 19:56:44.117682,114,132,787, +77,2014-01-17 21:07:43.070794,55,170,921, +50,2014-01-19 14:51:06.473041,862,510,141, +77,2014-01-18 12:16:45.508642,454,519,220, +77,2014-01-14 07:18:54.37822,445,228,257, +77,2014-01-12 08:13:16.013288,334,309,538, +50,2014-01-14 06:44:51.278006,159,136,976, +50,2014-01-19 15:23:30.238063,785,782,779, +77,2014-01-10 22:32:28.595854,905,242,509, +50,2014-01-16 17:01:50.708818,99,581,776, +77,2014-01-17 14:33:09.078469,743,990,180, +77,2014-01-14 18:48:26.92631,970,778,196, +50,2014-01-16 16:55:34.959833,600,750,279, +50,2014-01-13 00:38:58.706141,343,318,249, +77,2014-01-18 20:07:03.524716,549,750,490, +50,2014-01-14 11:28:47.018433,464,371,110, +77,2014-01-19 13:24:07.232927,195,495,11, +77,2014-01-11 13:59:39.094421,970,428,256, +50,2014-01-13 01:57:22.054782,759,364,326, +77,2014-01-12 18:36:04.807446,914,169,344, +77,2014-01-18 15:12:27.498249,883,770,363, +77,2014-01-19 17:23:17.119469,134,923,127, +77,2014-01-12 15:39:22.174769,964,28,32, +50,2014-01-12 11:32:50.921932,28,736,833, +50,2014-01-17 08:09:42.888296,725,128,126, +77,2014-01-19 18:55:34.646011,585,549,399, +77,2014-01-12 15:13:43.70033,446,142,64, +50,2014-01-12 07:42:40.687461,956,578,243, +77,2014-01-11 13:15:16.594613,355,185,773, +50,2014-01-15 23:54:28.960754,448,146,891, +77,2014-01-19 14:35:12.460747,231,491,112, +50,2014-01-13 13:12:00.712714,668,758,79, +77,2014-01-12 15:02:12.031548,874,65,962, +50,2014-01-17 23:26:18.934207,228,632,450, +50,2014-01-21 05:28:46.221355,162,191,222, +77,2014-01-16 02:21:06.409768,640,529,374, +77,2014-01-19 11:39:34.947495,745,934,536, +50,2014-01-14 06:13:37.499361,279,258,429, +77,2014-01-14 11:44:36.648249,248,824,494, +50,2014-01-19 14:12:03.54335,885,783,372, +77,2014-01-20 03:15:28.208179,287,607,883, +50,2014-01-10 20:17:45.726718,557,440,263, +50,2014-01-13 03:00:30.469659,50,998,662, +77,2014-01-15 14:11:03.168011,488,133,765, +50,2014-01-13 00:56:44.432858,363,469,50, +77,2014-01-21 03:07:33.994795,448,430,635, +77,2014-01-19 05:39:50.186446,632,273,404, +50,2014-01-11 08:20:51.666204,388,726,283, +50,2014-01-11 11:07:13.089216,6,292,425, +50,2014-01-11 01:37:12.241647,202,258,763, +77,2014-01-13 06:56:56.47365,610,509,105, +50,2014-01-19 06:19:40.587465,463,37,916, +50,2014-01-19 23:00:29.361116,748,172,413, +50,2014-01-15 02:36:18.648839,769,216,962, +77,2014-01-20 21:52:31.509397,805,292,148, +77,2014-01-16 01:10:12.249831,328,338,120, +50,2014-01-13 15:31:53.294849,925,139,847, +50,2014-01-12 07:06:15.209726,733,310,696, +77,2014-01-17 12:52:52.937293,11,774,556, +77,2014-01-14 08:47:09.889461,962,53,971, +77,2014-01-17 11:00:44.17048,439,515,448, +50,2014-01-15 21:28:05.398459,120,823,751, +77,2014-01-17 01:59:10.602176,833,891,316, +77,2014-01-19 06:02:56.202447,371,393,243, +50,2014-01-12 14:54:24.332667,712,795,825, +77,2014-01-17 01:27:56.82353,933,275,481, +50,2014-01-14 02:24:02.612215,717,552,581, +50,2014-01-10 20:33:59.280161,458,297,800, +50,2014-01-20 11:41:34.323311,720,389,767, +50,2014-01-17 18:08:39.260464,56,118,81, +77,2014-01-19 14:46:02.82351,114,227,600, +77,2014-01-19 08:57:02.53149,560,881,782, +50,2014-01-17 18:26:24.987182,468,885,979, +77,2014-01-11 11:46:33.29359,355,350,559, +50,2014-01-13 17:08:05.699921,95,288,360, +50,2014-01-19 23:23:09.420459,375,697,682, +50,2014-01-11 08:54:07.288384,334,273,994, +77,2014-01-11 16:47:55.886366,693,852,559, +50,2014-01-20 11:44:01.086664,544,522,394, +77,2014-01-12 00:01:20.3776,600,285,81, +77,2014-01-11 22:25:08.128014,893,468,324, +50,2014-01-12 12:40:57.560314,889,400,549, +77,2014-01-20 10:21:00.965065,661,124,575, +50,2014-01-21 01:25:37.489548,186,234,744, +77,2014-01-16 19:17:16.209152,214,421,602, +50,2014-01-20 02:13:32.47446,928,218,76, +50,2014-01-15 20:35:49.739379,189,932,167, +50,2014-01-19 14:49:09.504001,989,246,876, +77,2014-01-11 03:19:47.684186,891,870,640, +50,2014-01-12 03:28:42.676672,987,378,463, +77,2014-01-12 17:36:19.393882,280,258,326, +77,2014-01-17 18:20:31.854668,848,35,889, +50,2014-01-17 04:56:48.075131,433,437,494, +50,2014-01-18 23:35:29.996057,163,202,395, +50,2014-01-15 18:23:28.057115,658,636,670, +77,2014-01-18 23:51:12.407797,446,73,399, +77,2014-01-14 19:03:26.820007,974,720,890, +50,2014-01-19 00:47:30.669749,784,570,823, +50,2014-01-19 00:25:11.687958,776,784,242, +77,2014-01-14 00:45:01.143319,849,404,273, +50,2014-01-15 12:56:09.930213,357,117,620, +50,2014-01-17 09:11:14.511889,561,25,116, +77,2014-01-12 03:42:03.674808,572,223,71, +50,2014-01-12 01:22:34.917814,975,689,105, +77,2014-01-18 00:57:47.805478,997,383,202, +77,2014-01-15 00:50:09.374728,194,220,922, +50,2014-01-21 04:45:44.338273,124,596,871, +50,2014-01-18 13:51:55.093863,78,712,552, +77,2014-01-15 21:38:05.261514,866,826,131, +77,2014-01-20 10:29:45.424936,832,484,492, +77,2014-01-19 17:53:15.471463,401,639,321, +50,2014-01-17 00:03:13.389526,219,217,387, +77,2014-01-11 17:10:42.98525,408,559,103, +50,2014-01-18 22:14:16.436527,840,818,950, +77,2014-01-16 19:28:50.879075,85,256,875, +50,2014-01-17 16:27:59.194822,182,384,635, +77,2014-01-17 18:27:48.910987,88,590,267, +50,2014-01-11 10:04:40.618454,901,970,520, +50,2014-01-16 01:17:08.698823,305,371,72, +77,2014-01-18 01:47:36.595174,55,780,35, +77,2014-01-12 17:33:23.295545,697,961,563, +77,2014-01-17 22:53:28.092704,579,265,777, +50,2014-01-14 14:08:08.449842,470,693,63, +50,2014-01-19 02:30:11.370675,991,930,873, +50,2014-01-15 16:28:58.089181,170,387,490, +77,2014-01-19 12:31:36.507376,53,459,57, +50,2014-01-16 20:21:23.778892,319,101,975, +50,2014-01-19 15:32:24.909189,79,642,607, +50,2014-01-17 07:19:07.177124,620,441,536, +77,2014-01-14 14:46:35.46685,356,898,844, +50,2014-01-12 10:17:26.052507,994,634,617, +50,2014-01-11 14:15:17.107336,807,666,65, +77,2014-01-21 03:57:49.978738,1,389,894, +77,2014-01-13 17:59:29.727315,360,148,718, +77,2014-01-12 19:37:52.02515,722,681,468, +50,2014-01-17 22:55:37.784216,704,208,271, +54,2014-01-17 22:49:39.102463,361,295,694, +61,2014-01-12 18:23:36.363423,176,59,50, +14,2014-01-15 06:47:32.878078,929,416,312, +14,2014-01-12 14:27:44.363976,550,402,929, +93,2014-01-11 22:53:21.788359,510,862,783, +54,2014-01-13 18:40:48.349541,703,715,7, +7,2014-01-18 18:30:57.753502,84,275,289, +93,2014-01-12 20:04:04.774029,396,53,771, +93,2014-01-11 10:55:04.786068,440,855,688, +61,2014-01-14 07:59:48.632996,30,379,780, +14,2014-01-19 16:32:03.968851,252,421,387, +4,2014-01-18 09:22:53.697055,991,612,532, +14,2014-01-14 22:04:29.25145,361,728,495, +93,2014-01-14 11:49:12.667673,779,176,278, +54,2014-01-15 05:10:30.292229,205,789,116, +61,2014-01-16 19:37:52.546995,262,519,336, +4,2014-01-11 04:42:40.760797,748,640,138, +7,2014-01-18 23:18:38.742491,37,285,238, +7,2014-01-14 16:08:03.918089,471,640,719, +93,2014-01-16 01:11:38.849978,997,801,296, +4,2014-01-17 05:50:15.249866,352,974,182, +93,2014-01-20 16:29:27.69698,459,552,270, +14,2014-01-14 10:44:03.759167,370,404,144, +54,2014-01-13 07:09:22.426991,575,606,679, +4,2014-01-14 01:16:03.163829,351,993,363, +14,2014-01-16 01:01:29.811673,685,541,971, +61,2014-01-14 01:24:39.534327,680,169,274, +93,2014-01-13 23:13:53.142986,355,171,702, +54,2014-01-18 23:00:59.538989,206,271,292, +61,2014-01-16 01:02:31.559897,563,709,472, +14,2014-01-21 02:09:30.927202,193,718,982, +61,2014-01-15 15:50:38.641451,436,588,741, +4,2014-01-17 23:26:07.92332,311,839,708, +61,2014-01-15 02:57:03.8057,683,147,806, +54,2014-01-17 10:18:23.005427,520,428,852, +4,2014-01-19 02:19:29.712099,782,415,648, +14,2014-01-18 01:37:52.155241,803,16,208, +7,2014-01-14 22:49:20.759348,989,233,323, +4,2014-01-21 02:23:34.486128,583,177,601, +14,2014-01-18 16:32:56.941728,429,733,860, +54,2014-01-18 10:49:09.392344,509,644,998, +4,2014-01-19 12:55:38.454979,898,882,909, +54,2014-01-15 19:55:50.638783,685,482,641, +54,2014-01-12 02:53:38.643794,999,320,803, +54,2014-01-12 18:44:51.122652,484,852,868, +93,2014-01-20 05:06:20.931431,956,226,86, +93,2014-01-18 02:31:31.191207,862,895,853, +93,2014-01-13 03:27:31.883449,685,105,864, +14,2014-01-17 22:24:59.673922,582,992,166, +54,2014-01-11 12:39:35.109296,512,228,979, +7,2014-01-18 08:39:10.733427,57,816,998, +93,2014-01-13 22:15:14.923787,632,466,948, +54,2014-01-10 23:09:02.806276,706,682,848, +93,2014-01-11 13:23:14.492594,604,794,815, +7,2014-01-16 09:24:37.350778,304,549,780, +54,2014-01-14 04:25:05.970105,210,104,452, +4,2014-01-16 18:24:44.304267,498,451,59, +93,2014-01-19 14:49:16.885105,735,499,311, +7,2014-01-17 07:38:59.113092,955,51,485, +54,2014-01-14 11:25:43.843675,161,960,905, +54,2014-01-14 09:51:48.445002,488,1,72, +14,2014-01-17 03:48:30.040714,860,768,423, +4,2014-01-19 07:16:22.485126,857,84,345, +54,2014-01-11 03:17:56.368741,5,558,3, +14,2014-01-11 00:45:33.846414,989,318,682, +14,2014-01-15 11:34:45.490972,301,687,279, +4,2014-01-19 09:37:26.08084,533,813,326, +4,2014-01-18 06:23:26.001654,378,61,464, +14,2014-01-19 14:24:06.25032,198,775,159, +61,2014-01-19 06:01:00.566969,526,179,140, +4,2014-01-15 16:56:22.943382,874,381,420, +4,2014-01-16 19:13:15.642664,636,869,472, +93,2014-01-17 12:56:39.021948,171,602,515, +61,2014-01-20 16:52:13.582584,454,435,65, +4,2014-01-18 02:06:54.286457,577,926,478, +14,2014-01-19 11:41:30.1446,220,559,996, +93,2014-01-19 15:58:34.514016,687,676,384, +54,2014-01-14 22:38:25.477665,740,524,440, +7,2014-01-11 09:09:02.028469,532,357,55, +14,2014-01-16 08:23:34.187937,501,922,720, +7,2014-01-15 15:18:00.58696,466,298,379, +93,2014-01-18 21:48:12.761896,9,421,43, +54,2014-01-19 10:38:49.111725,197,723,985, +93,2014-01-15 18:27:03.393236,404,935,80, +7,2014-01-19 15:11:27.254909,199,463,623, +4,2014-01-14 14:03:26.462502,224,675,190, +54,2014-01-19 02:52:09.363761,304,528,566, +61,2014-01-15 03:36:11.559176,679,164,180, +7,2014-01-12 22:52:43.347607,357,183,469, +93,2014-01-15 04:31:08.476853,645,143,522, +54,2014-01-18 19:01:55.402851,545,634,805, +4,2014-01-16 12:44:31.793028,752,966,768, +14,2014-01-11 02:19:38.517567,514,462,375, +61,2014-01-16 20:18:17.888396,356,732,253, +7,2014-01-16 20:02:28.16177,112,153,199, +54,2014-01-11 07:05:12.36398,46,127,618, +93,2014-01-11 01:53:03.379367,37,667,176, +54,2014-01-14 23:39:54.242609,292,311,996, +93,2014-01-18 17:28:38.366053,438,477,864, +61,2014-01-19 20:17:09.629686,131,74,81, +14,2014-01-12 23:40:54.809578,939,158,230, +4,2014-01-13 04:25:01.309435,871,888,98, +7,2014-01-15 09:30:25.27235,413,433,428, +14,2014-01-19 16:37:33.831525,781,685,300, +93,2014-01-12 15:17:14.89202,727,774,70, +7,2014-01-12 05:37:19.558807,734,963,22, +7,2014-01-17 22:19:03.976126,697,626,777, +7,2014-01-11 01:15:49.406035,41,197,142, +61,2014-01-16 08:15:45.036891,927,697,938, +61,2014-01-18 11:28:06.004595,486,365,624, +61,2014-01-16 13:39:23.593973,974,672,48, +14,2014-01-21 03:33:45.623852,266,565,516, +93,2014-01-16 03:16:18.76691,513,696,351, +7,2014-01-14 18:18:12.705697,850,889,641, +4,2014-01-15 16:00:49.017507,204,175,762, +14,2014-01-14 12:27:46.021819,766,826,964, +14,2014-01-18 12:21:39.1682,23,540,259, +93,2014-01-13 12:52:58.381269,543,882,783, +7,2014-01-18 20:03:57.580995,325,515,6, +4,2014-01-20 15:14:22.516226,238,153,691, +54,2014-01-17 21:24:06.858122,690,488,185, +7,2014-01-16 09:05:52.984266,746,796,757, +14,2014-01-15 21:58:54.309254,29,190,215, +93,2014-01-18 03:43:45.376107,988,330,384, +93,2014-01-11 23:24:10.87266,500,50,872, +14,2014-01-11 12:01:22.471024,824,774,626, +93,2014-01-18 14:48:57.740087,184,896,564, +61,2014-01-12 05:17:14.252028,230,146,25, +93,2014-01-15 15:41:16.713633,765,774,582, +14,2014-01-16 02:17:36.106141,258,184,712, +93,2014-01-21 05:34:23.881715,788,592,962, +14,2014-01-17 19:22:11.52321,561,484,609, +93,2014-01-18 10:42:37.415995,497,296,493, +93,2014-01-15 09:04:49.154065,407,721,370, +61,2014-01-16 05:59:45.354736,384,263,422, +4,2014-01-20 05:59:52.308015,63,627,935, +93,2014-01-16 18:42:08.712872,369,695,150, +7,2014-01-12 22:18:49.330862,525,334,364, +54,2014-01-20 11:15:41.714469,799,564,359, +93,2014-01-11 20:57:53.749763,578,411,884, +7,2014-01-20 13:46:55.335876,908,718,237, +7,2014-01-15 18:55:05.308442,525,381,528, +14,2014-01-11 18:31:39.374033,909,752,692, +93,2014-01-15 11:03:14.102786,629,462,189, +7,2014-01-19 17:13:18.014557,229,517,845, +7,2014-01-16 14:32:28.391541,526,164,503, +93,2014-01-19 03:31:00.124605,794,669,378, +7,2014-01-16 23:34:57.182757,178,683,193, +61,2014-01-19 07:25:26.772809,179,713,526, +93,2014-01-16 17:34:57.7056,527,952,249, +61,2014-01-16 08:49:19.698983,171,288,272, +54,2014-01-15 22:49:33.63093,121,757,562, +93,2014-01-11 20:40:50.689866,98,144,884, +61,2014-01-11 00:48:14.008239,913,845,876, +93,2014-01-12 20:33:19.007038,1,778,178, +61,2014-01-13 00:05:01.562526,576,122,198, +93,2014-01-11 16:49:36.479262,514,298,918, +14,2014-01-20 15:22:16.747544,354,937,985, +14,2014-01-14 09:22:15.814554,570,895,905, +14,2014-01-16 12:30:53.192895,635,692,279, +4,2014-01-15 11:39:52.853684,884,642,293, +61,2014-01-14 08:56:39.696269,989,658,408, +4,2014-01-13 01:53:04.716106,852,883,284, +61,2014-01-12 16:22:30.269679,196,414,726, +14,2014-01-18 22:01:28.850332,595,621,598, +7,2014-01-18 11:52:50.070843,67,919,902, +93,2014-01-11 16:22:22.578114,132,737,233, +54,2014-01-14 10:43:37.563624,751,834,119, +4,2014-01-20 14:11:39.402124,538,90,681, +93,2014-01-10 21:38:04.292582,916,626,305, +54,2014-01-15 11:41:31.313386,531,384,395, +61,2014-01-19 21:58:34.738,430,229,48, +14,2014-01-15 20:33:09.601024,69,678,688, +14,2014-01-16 10:13:10.68742,784,299,915, +7,2014-01-14 03:01:48.840786,673,267,674, +4,2014-01-14 07:46:27.615581,820,531,171, +7,2014-01-11 18:45:39.07896,208,665,5, +4,2014-01-12 00:32:48.965392,435,372,119, +7,2014-01-20 11:21:24.798757,703,147,15, +7,2014-01-20 06:11:05.85177,271,155,200, +61,2014-01-17 22:07:46.670992,818,71,251, +61,2014-01-15 14:10:44.497742,695,244,336, +61,2014-01-14 23:00:39.483119,188,539,398, +7,2014-01-18 22:48:37.361277,447,447,979, +7,2014-01-15 18:58:58.506399,748,581,729, +4,2014-01-16 23:33:58.490157,765,340,539, +14,2014-01-21 02:53:38.923803,979,276,696, +7,2014-01-16 15:48:34.98566,26,125,787, +93,2014-01-16 08:56:15.237701,394,537,885, +4,2014-01-14 06:15:54.738776,412,479,704, +4,2014-01-11 22:19:28.178975,284,726,370, +93,2014-01-21 00:36:08.091804,218,808,225, +54,2014-01-17 19:12:34.435045,417,762,256, +93,2014-01-14 04:12:32.895081,900,999,837, +4,2014-01-12 10:58:38.361483,5,112,978, +93,2014-01-15 11:14:03.285797,351,756,231, +4,2014-01-11 10:05:22.966343,79,510,305, +54,2014-01-13 07:21:00.939597,168,417,255, +54,2014-01-19 01:57:40.849421,808,373,626, +61,2014-01-21 04:17:02.368468,248,507,446, +4,2014-01-13 08:59:05.232178,121,36,137, +93,2014-01-13 07:39:12.162806,9,168,318, +7,2014-01-19 20:15:37.106468,272,938,981, +14,2014-01-18 09:32:14.833621,8,703,319, +7,2014-01-18 21:52:22.850646,265,811,207, +54,2014-01-12 17:17:25.947254,437,872,774, +61,2014-01-11 11:18:42.449202,641,596,240, +54,2014-01-19 20:38:01.929606,987,266,975, +7,2014-01-13 21:50:14.912645,963,746,531, +14,2014-01-21 02:40:07.24796,355,758,305, +93,2014-01-18 20:49:07.781795,302,299,82, +7,2014-01-20 23:58:01.583637,294,575,131, +93,2014-01-15 10:50:51.746121,482,497,483, +4,2014-01-12 13:49:47.264915,534,345,341, +4,2014-01-18 16:46:38.944914,102,934,897, +93,2014-01-20 09:49:50.25252,322,988,255, +54,2014-01-18 17:23:45.755071,983,260,226, +93,2014-01-18 13:40:17.869135,835,147,860, +4,2014-01-15 19:38:25.23818,418,384,764, +61,2014-01-13 20:20:00.993191,26,964,720, +93,2014-01-11 13:56:12.607912,154,274,808, +61,2014-01-16 21:57:53.417155,121,944,63, +14,2014-01-13 14:56:09.084995,717,128,490, +7,2014-01-18 13:08:47.042957,591,410,874, +54,2014-01-20 06:10:26.312656,516,22,224, +54,2014-01-15 05:54:47.446478,1000,191,992, +14,2014-01-12 18:22:50.328754,148,64,162, +54,2014-01-20 20:15:49.278999,854,435,488, +7,2014-01-17 17:15:48.386494,294,164,985, +93,2014-01-21 00:20:31.178174,63,839,263, +14,2014-01-20 18:32:51.647467,338,847,307, +7,2014-01-20 06:14:53.618673,15,338,467, +7,2014-01-13 01:59:43.3414,137,967,456, +4,2014-01-19 08:48:28.753933,481,323,299, +14,2014-01-17 09:47:08.452294,220,431,872, +7,2014-01-21 03:52:06.192046,432,623,181, +93,2014-01-10 20:05:54.701187,397,275,641, +54,2014-01-18 01:05:50.901916,98,76,426, +7,2014-01-19 18:30:08.121652,613,741,284, +14,2014-01-13 21:56:09.613832,533,364,3, +93,2014-01-17 21:45:58.149876,866,268,784, +54,2014-01-17 09:19:15.903447,26,205,12, +7,2014-01-13 15:54:11.19747,770,959,303, +54,2014-01-12 02:36:49.895997,390,899,728, +93,2014-01-19 03:09:03.16836,2,739,62, +7,2014-01-11 02:40:50.142802,566,217,667, +7,2014-01-11 06:26:40.148516,245,558,497, +93,2014-01-16 14:32:48.923851,799,903,529, +4,2014-01-18 20:21:08.011939,404,177,29, +4,2014-01-16 06:05:05.387116,707,543,817, +93,2014-01-19 14:52:49.917042,392,678,879, +61,2014-01-19 14:17:20.61985,103,836,853, +93,2014-01-11 22:02:58.804271,260,245,438, +4,2014-01-11 23:48:59.002036,186,141,21, +93,2014-01-16 21:26:07.662807,13,965,717, +14,2014-01-10 22:13:25.116926,619,465,562, +93,2014-01-16 09:43:46.448515,964,641,883, +93,2014-01-18 19:48:57.99198,748,604,779, +14,2014-01-20 22:29:14.395926,873,469,621, +14,2014-01-12 20:59:34.835008,458,850,467, +7,2014-01-18 14:09:29.170154,161,198,383, +61,2014-01-20 11:02:06.043392,818,978,198, +93,2014-01-11 21:14:28.454101,18,32,237, +4,2014-01-20 20:09:12.511554,831,615,91, +4,2014-01-18 13:50:34.797326,253,963,205, +4,2014-01-18 11:01:36.906395,34,121,46, +14,2014-01-20 18:01:18.7036,220,708,306, +93,2014-01-18 13:56:29.498514,394,402,241, +61,2014-01-15 06:07:27.80831,993,691,697, +54,2014-01-19 06:31:26.825671,336,395,213, +14,2014-01-11 05:52:39.112346,816,867,831, +4,2014-01-11 21:53:25.958605,886,236,265, +7,2014-01-15 09:50:42.729118,375,728,676, +54,2014-01-14 01:46:50.310234,580,951,800, +93,2014-01-13 04:30:15.854601,373,378,176, +7,2014-01-13 06:59:45.897897,347,448,833, +93,2014-01-14 08:27:40.453036,175,437,855, +4,2014-01-13 14:56:56.003536,487,21,903, +61,2014-01-19 01:32:34.821748,678,433,699, +61,2014-01-11 22:48:48.464975,492,825,166, +61,2014-01-19 01:02:01.390651,910,675,510, +61,2014-01-17 10:25:24.73879,84,621,420, +14,2014-01-20 17:06:09.084825,460,345,31, +4,2014-01-20 03:05:00.194922,332,433,25, +93,2014-01-18 14:14:23.740826,756,629,581, +93,2014-01-16 08:32:16.747632,110,6,484, +4,2014-01-20 05:18:25.312268,661,452,264, +14,2014-01-13 17:58:10.189341,504,82,546, +7,2014-01-13 22:21:14.739612,218,626,538, +14,2014-01-19 21:47:39.708193,209,388,144, +4,2014-01-15 18:57:45.024768,499,426,191, +54,2014-01-11 06:30:43.910185,137,359,582, +4,2014-01-19 02:49:45.752004,780,417,657, +7,2014-01-16 20:12:13.478869,852,2,709, +54,2014-01-10 20:39:56.42174,218,478,981, +14,2014-01-16 10:40:20.54933,255,875,906, +54,2014-01-14 01:13:50.385264,261,563,19, +93,2014-01-20 18:41:15.125758,261,647,953, +14,2014-01-13 18:36:50.048262,93,228,864, +14,2014-01-18 11:21:18.193993,402,865,419, +4,2014-01-18 19:12:41.951429,252,706,965, +7,2014-01-14 04:29:29.160608,808,384,304, +93,2014-01-19 13:14:44.152597,779,979,728, +61,2014-01-12 23:03:24.680547,999,92,737, +7,2014-01-17 10:16:19.470843,371,726,906, +61,2014-01-11 11:45:00.007198,832,866,444, +54,2014-01-15 10:03:10.578444,287,470,991, +54,2014-01-20 22:43:59.923879,19,707,418, +93,2014-01-14 06:41:56.010734,610,791,158, +93,2014-01-13 05:35:45.400192,51,807,23, +4,2014-01-11 15:32:48.388854,424,378,480, +54,2014-01-12 01:43:57.401385,750,580,473, +61,2014-01-19 20:01:10.138981,53,116,571, +7,2014-01-11 02:38:57.473679,904,414,501, +93,2014-01-10 22:48:57.596726,440,504,620, +14,2014-01-17 04:15:33.879807,568,410,47, +93,2014-01-16 15:11:14.22173,194,476,268, +4,2014-01-20 08:07:22.908994,689,533,2, +54,2014-01-20 02:13:44.069567,328,221,707, +4,2014-01-19 17:32:28.961343,150,692,718, +7,2014-01-18 23:55:02.617186,678,74,663, +14,2014-01-14 15:11:29.094334,677,827,192, +54,2014-01-20 04:03:12.871528,910,457,748, +61,2014-01-16 20:44:48.369191,704,626,302, +14,2014-01-20 15:23:42.573203,687,758,862, +54,2014-01-20 04:43:09.293687,871,301,680, +4,2014-01-12 01:25:08.91894,356,810,878, +4,2014-01-13 10:37:32.958467,50,690,665, +14,2014-01-19 17:24:24.419446,750,98,189, +93,2014-01-15 00:01:58.967201,131,463,967, +61,2014-01-21 01:58:51.152459,466,6,210, +61,2014-01-17 06:37:06.370875,838,310,689, +61,2014-01-18 08:31:28.127809,380,635,9, +54,2014-01-19 09:13:35.305056,663,303,961, +61,2014-01-19 09:40:31.051422,469,254,388, +4,2014-01-14 12:47:47.599071,484,696,262, +93,2014-01-20 00:58:35.312674,714,156,518, +4,2014-01-13 13:43:41.630285,757,124,56, +93,2014-01-14 05:31:47.52295,379,610,332, +7,2014-01-13 01:40:31.323408,855,12,179, +93,2014-01-15 23:19:27.030477,686,198,78, +61,2014-01-15 01:04:35.912223,954,311,545, +61,2014-01-14 07:24:28.725213,427,817,218, +54,2014-01-14 13:20:37.169877,701,570,733, +61,2014-01-15 07:43:33.385902,263,137,638, +93,2014-01-14 10:13:26.32194,298,170,608, +93,2014-01-20 21:36:11.049684,222,448,87, +4,2014-01-21 02:54:47.607632,3,919,896, +93,2014-01-13 12:20:49.230933,285,826,193, +93,2014-01-19 17:49:55.11925,795,557,550, +93,2014-01-19 14:27:16.569394,286,119,375, +4,2014-01-11 06:15:51.84812,762,629,308, +54,2014-01-13 03:01:24.213584,688,13,550, +61,2014-01-18 12:30:29.440922,769,179,930, +7,2014-01-17 07:00:40.217729,4,958,435, +61,2014-01-12 12:25:06.786788,496,561,372, +14,2014-01-17 11:13:38.734609,771,822,617, +61,2014-01-18 12:25:49.136669,749,755,579, +7,2014-01-15 03:02:39.745674,534,894,642, +93,2014-01-15 22:38:03.154055,326,707,821, +4,2014-01-12 06:27:48.103871,879,221,345, +54,2014-01-14 23:01:30.898132,939,939,936, +7,2014-01-11 23:15:09.52493,2,64,620, +4,2014-01-19 18:59:16.23168,831,965,953, +14,2014-01-13 02:15:06.203607,153,976,777, +14,2014-01-20 12:55:40.576771,232,538,375, +14,2014-01-13 01:47:03.830751,157,901,274, +14,2014-01-11 21:13:41.516281,83,82,832, +7,2014-01-12 20:39:22.207056,130,10,673, +93,2014-01-16 11:18:51.35412,874,245,723, +93,2014-01-14 02:54:12.839689,458,423,553, +7,2014-01-17 23:58:49.237532,202,818,729, +54,2014-01-20 16:23:27.266343,60,219,65, +93,2014-01-17 14:18:41.564902,355,766,800, +54,2014-01-11 07:19:26.407409,416,543,978, +61,2014-01-14 18:07:00.652245,590,748,972, +61,2014-01-21 04:32:07.886841,792,713,297, +54,2014-01-10 22:55:37.457513,826,396,205, +61,2014-01-14 15:01:48.260296,199,610,456, +54,2014-01-13 10:52:57.117774,747,394,371, +7,2014-01-19 20:45:32.576763,484,324,607, +4,2014-01-12 23:29:04.82969,561,881,844, +61,2014-01-13 21:08:48.966312,802,694,206, +61,2014-01-11 17:46:56.790767,564,159,962, +61,2014-01-20 15:59:34.270611,728,472,111, +7,2014-01-20 08:09:29.184042,522,569,991, +14,2014-01-13 10:12:03.577554,283,633,716, +93,2014-01-16 21:13:13.00564,783,39,564, +93,2014-01-17 14:35:18.32071,122,453,608, +54,2014-01-17 17:14:43.323228,528,176,490, +61,2014-01-11 13:51:16.159695,95,399,386, +93,2014-01-19 01:03:06.42458,680,113,241, +54,2014-01-11 10:16:14.221779,652,852,630, +93,2014-01-12 17:06:25.685044,361,483,44, +14,2014-01-17 14:02:22.65626,576,881,770, +7,2014-01-13 16:31:20.425386,79,294,355, +54,2014-01-12 00:02:06.261815,832,173,11, +4,2014-01-19 19:49:26.48743,704,356,750, +61,2014-01-14 17:45:01.941668,903,132,258, +61,2014-01-14 00:41:28.46887,494,878,775, +54,2014-01-15 01:08:17.84155,596,373,642, +7,2014-01-18 00:39:14.781357,187,817,876, +54,2014-01-21 04:40:17.706403,603,242,896, +4,2014-01-14 11:31:45.107893,939,304,91, +14,2014-01-14 08:57:56.346677,48,807,143, +14,2014-01-11 05:59:44.114231,48,627,504, +61,2014-01-18 09:38:45.760136,552,405,783, +61,2014-01-14 07:30:04.233519,91,614,544, +7,2014-01-11 08:55:21.571744,34,947,784, +4,2014-01-11 18:40:34.020433,979,812,462, +93,2014-01-16 22:23:01.35171,442,979,325, +14,2014-01-20 09:40:54.148507,731,428,439, +4,2014-01-13 22:09:38.850123,322,558,143, +61,2014-01-19 23:31:50.318023,951,490,120, +93,2014-01-10 21:27:50.939274,273,579,802, +54,2014-01-13 08:09:13.121153,544,954,250, +7,2014-01-19 01:41:19.502065,116,153,63, +14,2014-01-13 11:39:54.517247,961,458,949, +14,2014-01-19 09:22:26.126793,790,690,978, +93,2014-01-15 10:16:37.822775,90,187,450, +93,2014-01-20 08:54:37.840475,668,990,609, +4,2014-01-20 03:13:42.286487,273,320,844, +4,2014-01-13 05:19:44.247355,813,771,141, +61,2014-01-20 23:10:52.062255,673,425,97, +7,2014-01-11 14:20:07.971531,932,688,774, +54,2014-01-19 23:22:06.903616,457,915,795, +54,2014-01-13 09:42:12.487642,785,992,539, +7,2014-01-12 18:22:14.233345,130,908,576, +93,2014-01-18 13:11:33.391046,367,593,264, +7,2014-01-17 07:27:14.429309,241,712,864, +4,2014-01-15 23:03:42.702216,828,461,99, +93,2014-01-12 08:19:51.232595,526,217,773, +4,2014-01-14 02:06:29.211085,929,180,356, +7,2014-01-15 21:44:00.409037,749,704,459, +14,2014-01-15 23:51:36.340488,807,917,104, +4,2014-01-17 15:04:25.557763,55,535,974, +4,2014-01-16 07:43:44.523269,851,213,946, +61,2014-01-13 03:30:22.101044,731,353,304, +61,2014-01-21 02:34:29.791281,975,593,607, +61,2014-01-16 20:39:06.095013,899,976,625, +4,2014-01-14 02:10:56.121476,594,179,975, +61,2014-01-16 18:57:31.142992,464,158,654, +93,2014-01-16 00:20:00.24352,593,115,140, +61,2014-01-17 04:20:34.972018,456,384,374, +93,2014-01-15 12:29:21.461015,806,633,304, +93,2014-01-16 01:47:51.183213,688,474,433, +7,2014-01-19 16:29:48.093171,915,793,638, +14,2014-01-13 08:10:40.963079,306,844,933, +54,2014-01-18 17:27:45.70046,281,53,238, +4,2014-01-17 19:52:14.219965,375,189,766, +93,2014-01-17 22:27:18.785854,896,553,924, +7,2014-01-17 20:22:23.540935,744,772,277, +54,2014-01-16 17:05:56.506452,493,693,48, +61,2014-01-20 07:47:03.033209,237,685,512, +4,2014-01-17 13:33:15.603609,532,391,131, +54,2014-01-17 11:26:04.478401,329,541,347, +61,2014-01-19 01:09:09.937244,934,468,529, +61,2014-01-20 03:15:28.091251,315,325,686, +54,2014-01-19 09:48:18.711747,13,658,130, +54,2014-01-16 08:20:43.32829,526,844,94, +61,2014-01-16 04:42:42.52098,409,667,593, +93,2014-01-14 02:52:01.414381,733,220,374, +54,2014-01-17 20:40:34.561303,601,149,650, +54,2014-01-19 10:49:11.732066,781,176,864, +7,2014-01-19 04:36:01.823418,532,580,715, +4,2014-01-12 14:32:10.901792,71,261,573, +14,2014-01-15 19:53:37.289828,228,733,353, +61,2014-01-14 06:19:46.346686,603,763,748, +61,2014-01-14 22:02:33.002834,258,633,902, +93,2014-01-15 16:28:07.081109,365,617,773, +54,2014-01-20 06:58:52.4417,701,854,984, +61,2014-01-18 04:13:29.12473,895,20,339, +4,2014-01-11 05:25:38.224521,774,120,133, +61,2014-01-15 01:18:52.68522,115,839,294, +61,2014-01-14 02:34:04.096748,804,972,161, +4,2014-01-15 21:54:59.685535,241,121,449, +54,2014-01-20 07:06:43.868432,994,633,670, +61,2014-01-12 13:03:52.18992,94,373,66, +54,2014-01-18 10:05:40.649034,704,899,31, +14,2014-01-17 18:34:29.568893,23,193,19, +54,2014-01-19 12:56:06.409883,868,469,437, +4,2014-01-15 02:32:59.434889,27,331,180, +54,2014-01-14 08:56:53.110247,248,380,253, +61,2014-01-15 00:02:02.916335,330,792,526, +93,2014-01-14 04:20:02.468517,933,34,207, +93,2014-01-21 02:30:08.713856,180,98,192, +93,2014-01-11 05:28:07.394736,524,928,837, +14,2014-01-11 23:29:12.40576,375,2,153, +4,2014-01-19 23:45:36.805108,382,204,482, +4,2014-01-19 19:16:26.106902,149,385,802, +7,2014-01-17 11:49:55.734049,974,442,253, +54,2014-01-14 22:28:19.326088,283,33,764, +14,2014-01-12 16:08:27.521283,203,594,23, +7,2014-01-14 02:30:30.295353,544,270,193, +7,2014-01-13 03:17:31.058153,290,779,148, +7,2014-01-21 00:44:29.344701,403,728,754, +61,2014-01-15 21:02:41.197564,252,349,628, +14,2014-01-18 03:11:08.347981,563,691,966, +93,2014-01-14 01:04:15.691388,194,907,276, +61,2014-01-19 23:05:14.200398,723,435,241, +93,2014-01-12 13:39:15.429509,601,521,165, +7,2014-01-13 02:03:08.133087,77,498,58, +4,2014-01-16 21:18:43.325128,230,980,284, +54,2014-01-12 23:04:53.65403,997,733,69, +4,2014-01-17 07:22:00.818307,623,168,22, +4,2014-01-20 03:52:47.421876,534,810,79, +61,2014-01-18 00:59:53.339566,934,93,734, +61,2014-01-16 08:28:44.687158,884,347,518, +14,2014-01-11 10:56:39.611796,287,888,700, +61,2014-01-15 05:05:33.9886,351,282,489, +4,2014-01-12 21:03:14.256051,226,395,708, +14,2014-01-20 03:52:46.021679,665,952,76, +7,2014-01-19 11:38:33.423906,399,165,459, +54,2014-01-16 10:00:07.366298,645,173,493, +14,2014-01-13 21:54:48.938433,882,909,676, +14,2014-01-12 09:58:35.892423,593,247,303, +14,2014-01-16 06:30:16.080155,761,462,395, +61,2014-01-14 07:22:56.333171,690,423,717, +14,2014-01-13 13:27:48.298183,810,257,500, +93,2014-01-15 00:15:52.885681,479,20,984, +7,2014-01-12 20:39:22.440073,582,650,1, +93,2014-01-20 05:17:44.032232,604,868,227, +7,2014-01-19 02:44:12.21177,785,508,931, +7,2014-01-14 16:47:49.961356,911,147,898, +54,2014-01-13 01:48:14.328004,797,961,223, +4,2014-01-11 00:01:43.270341,314,559,99, +4,2014-01-14 11:32:19.306057,982,100,227, +14,2014-01-18 02:50:55.525568,19,17,979, +14,2014-01-18 07:12:51.618322,618,847,129, +4,2014-01-17 16:36:34.997445,993,418,180, +61,2014-01-16 19:56:09.725966,265,309,433, +7,2014-01-20 00:52:07.047831,576,227,891, +61,2014-01-19 22:39:43.130532,858,716,224, +14,2014-01-12 11:14:53.051513,681,664,215, +93,2014-01-11 17:57:00.701861,721,169,558, +14,2014-01-16 00:01:43.949258,167,698,100, +93,2014-01-11 09:07:40.47339,201,530,42, +7,2014-01-18 22:56:54.041846,856,278,574, +93,2014-01-11 02:30:28.636417,20,595,621, +61,2014-01-12 00:04:20.085604,653,453,909, +4,2014-01-12 22:02:28.030445,841,492,844, +61,2014-01-13 03:33:42.892468,744,735,465, +54,2014-01-10 21:57:06.107283,459,503,365, +54,2014-01-11 03:41:01.454352,547,1000,657, +4,2014-01-18 17:33:50.259185,431,500,431, +54,2014-01-13 23:51:55.045717,668,749,816, +93,2014-01-12 17:39:37.346775,411,406,618, +7,2014-01-13 18:04:06.33934,533,533,620, +7,2014-01-17 11:14:51.379306,366,676,55, +61,2014-01-15 11:07:25.644957,612,729,945, +93,2014-01-17 22:19:59.225022,228,479,537, +17,2014-01-19 11:54:13.819379,282,110,808, +51,2014-01-14 10:25:09.677609,406,590,490, +51,2014-01-15 19:04:11.43721,345,146,371, +51,2014-01-12 22:42:03.781154,432,568,970, +17,2014-01-16 16:13:24.005614,957,880,919, +17,2014-01-15 23:05:54.707551,114,889,153, +51,2014-01-16 14:14:23.087211,999,137,412, +51,2014-01-13 13:04:19.531181,625,616,652, +17,2014-01-13 00:18:46.325873,406,847,314, +17,2014-01-13 00:50:58.085076,540,47,347, +51,2014-01-19 13:00:29.257147,932,999,935, +17,2014-01-11 19:10:53.374123,615,805,883, +51,2014-01-11 17:30:41.215608,32,289,840, +51,2014-01-21 04:15:22.30866,869,741,202, +17,2014-01-12 17:07:54.075984,702,797,308, +51,2014-01-16 21:32:25.164867,699,863,113, +17,2014-01-11 07:23:02.782468,415,103,959, +17,2014-01-20 20:04:48.11783,713,538,840, +51,2014-01-17 04:02:53.801283,112,987,4, +17,2014-01-12 11:27:22.868072,310,617,829, +17,2014-01-12 12:07:16.148694,233,17,925, +17,2014-01-19 11:36:36.69417,385,989,232, +17,2014-01-12 13:24:28.975355,186,48,212, +17,2014-01-12 19:48:17.603046,13,371,406, +51,2014-01-16 23:10:26.953355,524,268,811, +51,2014-01-15 17:16:24.021492,326,208,287, +51,2014-01-14 17:27:54.950239,344,484,511, +51,2014-01-19 21:14:33.292695,366,265,683, +51,2014-01-11 22:31:15.400798,312,26,622, +17,2014-01-19 08:35:20.595197,924,542,742, +17,2014-01-16 13:34:32.518135,350,492,277, +17,2014-01-20 14:25:29.220177,885,831,63, +51,2014-01-12 13:00:30.272805,436,478,618, +17,2014-01-11 02:38:43.955346,424,177,26, +51,2014-01-12 07:07:33.001331,458,370,555, +17,2014-01-18 09:13:54.278419,746,688,620, +51,2014-01-16 05:44:38.662897,395,106,170, +51,2014-01-18 01:21:56.088962,879,745,116, +17,2014-01-21 02:18:13.809601,694,591,868, +17,2014-01-18 10:03:24.98877,287,573,929, +17,2014-01-20 06:12:54.174038,683,752,3, +51,2014-01-19 09:18:43.067167,555,923,60, +51,2014-01-19 09:14:18.362893,404,410,778, +51,2014-01-21 03:43:35.389646,397,538,243, +17,2014-01-19 07:34:05.375827,832,798,133, +17,2014-01-10 20:22:12.439296,349,933,720, +17,2014-01-16 19:16:00.554932,813,317,958, +17,2014-01-19 18:57:08.158295,6,2,238, +51,2014-01-20 20:27:00.557126,769,733,633, +17,2014-01-12 17:18:54.356216,782,136,539, +17,2014-01-11 00:24:31.026367,272,606,361, +17,2014-01-12 02:34:16.70582,375,689,10, +51,2014-01-10 22:55:31.050385,53,658,879, +51,2014-01-12 17:49:00.002142,369,561,415, +17,2014-01-14 02:22:34.309284,75,392,580, +17,2014-01-17 02:05:58.003741,20,160,643, +51,2014-01-17 15:05:24.023633,680,57,839, +17,2014-01-17 23:50:29.259523,70,91,728, +51,2014-01-15 17:20:31.296855,838,683,180, +17,2014-01-18 17:36:39.424431,957,964,724, +51,2014-01-16 02:25:49.85472,244,151,290, +51,2014-01-11 00:55:03.814991,1,548,470, +51,2014-01-18 02:02:08.644608,612,31,859, +17,2014-01-17 19:26:20.127945,738,678,22, +51,2014-01-11 07:33:47.770336,439,560,435, +17,2014-01-19 13:09:41.646359,3,103,33, +51,2014-01-14 22:40:14.406364,994,326,880, +17,2014-01-16 17:18:26.433233,469,550,805, +51,2014-01-16 08:31:37.735321,307,286,397, +17,2014-01-14 18:58:28.216383,848,216,414, +17,2014-01-13 21:21:51.422002,442,468,745, +17,2014-01-15 08:44:31.909359,703,288,414, +51,2014-01-12 22:17:11.28355,989,77,436, +17,2014-01-12 00:36:09.785314,632,131,752, +51,2014-01-15 06:28:07.299005,100,673,925, +51,2014-01-10 23:51:16.659376,876,805,976, +51,2014-01-12 00:58:22.22461,510,142,592, +51,2014-01-21 05:44:07.853937,857,483,785, +17,2014-01-19 22:48:24.818091,426,698,576, +51,2014-01-11 15:25:22.781735,122,886,161, +51,2014-01-12 17:03:02.210572,298,19,300, +17,2014-01-20 03:12:55.844457,760,879,284, +17,2014-01-12 21:59:39.487974,696,967,947, +51,2014-01-12 19:58:33.260958,965,683,790, +17,2014-01-11 15:01:55.846599,543,177,287, +51,2014-01-16 04:22:13.797258,209,685,56, +17,2014-01-19 02:04:31.265118,273,949,854, +17,2014-01-18 10:07:19.870232,941,826,968, +17,2014-01-12 22:12:43.056781,147,10,28, +51,2014-01-13 13:25:02.561973,286,564,308, +51,2014-01-15 21:43:59.294664,525,18,604, +51,2014-01-18 04:38:32.911501,298,943,530, +51,2014-01-13 18:20:06.376965,692,375,549, +17,2014-01-12 17:46:07.939691,20,879,297, +51,2014-01-14 18:04:53.039445,172,124,780, +17,2014-01-14 05:53:54.147301,171,961,934, +17,2014-01-11 00:55:49.586049,220,759,364, +17,2014-01-18 20:45:07.446228,586,752,17, +17,2014-01-20 03:12:20.580533,165,418,153, +17,2014-01-16 13:27:27.321371,551,535,852, +51,2014-01-12 09:43:35.662611,419,909,805, +51,2014-01-12 18:34:12.002535,590,402,86, +17,2014-01-21 02:11:59.23073,945,875,124, +17,2014-01-14 12:00:46.946161,255,521,941, +51,2014-01-13 23:10:21.78785,662,831,746, +51,2014-01-15 02:40:06.529735,390,160,530, +51,2014-01-14 15:52:03.605538,101,1000,841, +51,2014-01-15 04:08:44.012459,741,979,106, +17,2014-01-15 02:24:14.384092,42,273,513, +51,2014-01-13 08:40:28.423628,560,315,380, +17,2014-01-15 23:34:06.794615,820,762,247, +51,2014-01-16 23:27:16.594664,106,758,694, +17,2014-01-12 05:53:24.268504,455,870,624, +17,2014-01-18 01:33:46.282589,889,413,49, +51,2014-01-18 23:25:49.855622,349,610,752, +51,2014-01-13 00:55:20.115103,868,746,240, +17,2014-01-12 23:56:00.079847,781,911,126, +51,2014-01-16 19:30:21.12074,85,137,29, +51,2014-01-20 15:02:39.985754,794,62,877, +51,2014-01-15 02:08:43.136628,467,466,166, +51,2014-01-19 12:55:23.682714,48,94,150, +51,2014-01-15 06:46:39.280418,40,627,231, +17,2014-01-12 00:47:16.048129,584,150,182, +51,2014-01-12 01:15:30.059677,895,895,395, +51,2014-01-17 04:32:47.220108,293,802,63, +17,2014-01-15 22:52:09.087993,73,159,111, +51,2014-01-15 11:09:24.206978,145,481,563, +17,2014-01-17 09:28:36.806157,106,610,703, +17,2014-01-13 13:37:16.534221,684,807,734, +17,2014-01-14 08:21:44.787511,162,135,56, +51,2014-01-12 16:56:04.127528,366,829,652, +17,2014-01-15 03:20:52.196832,575,783,571, +17,2014-01-16 06:55:56.790467,317,930,181, +51,2014-01-12 13:08:03.358258,96,717,119, +17,2014-01-18 19:21:39.142994,175,595,664, +51,2014-01-19 10:06:18.578316,398,608,517, +51,2014-01-16 19:48:09.888412,381,101,312, +17,2014-01-12 05:13:42.748531,313,696,12, +51,2014-01-13 08:15:02.591195,908,503,427, +51,2014-01-21 02:12:24.272503,38,914,13, +51,2014-01-14 17:54:11.172579,398,970,24, +17,2014-01-18 11:49:09.385809,398,814,531, +17,2014-01-16 19:39:40.867168,149,574,375, +17,2014-01-16 03:47:35.441083,146,263,218, +17,2014-01-15 07:22:55.668398,491,538,854, +17,2014-01-14 13:05:30.722789,955,445,303, +17,2014-01-18 08:42:55.556186,254,514,170, +17,2014-01-17 11:18:55.748245,71,137,799, +51,2014-01-20 12:35:51.843948,223,850,853, +51,2014-01-17 17:45:35.541942,592,856,996, +17,2014-01-11 07:27:38.884873,56,687,831, +17,2014-01-18 19:31:15.52666,810,360,733, +51,2014-01-11 18:32:14.822778,506,439,973, +51,2014-01-12 12:14:54.933002,931,284,705, +17,2014-01-20 00:46:45.586757,745,58,619, +17,2014-01-18 03:05:02.042886,993,359,166, +17,2014-01-17 15:07:04.020995,165,386,30, +17,2014-01-14 05:56:09.793735,819,945,758, +51,2014-01-14 06:33:38.849464,867,697,272, +51,2014-01-20 08:44:20.555217,980,222,941, +51,2014-01-17 18:17:54.581666,857,912,40, +17,2014-01-16 03:29:42.976992,544,73,48, +51,2014-01-14 06:05:12.752049,870,69,760, +17,2014-01-12 19:13:51.372132,506,723,961, +17,2014-01-17 20:37:46.335669,745,631,59, +17,2014-01-11 19:26:51.895043,183,638,537, +17,2014-01-10 23:20:09.950448,923,35,957, +51,2014-01-13 10:25:56.224081,298,757,180, +51,2014-01-13 04:40:34.643993,993,341,738, +17,2014-01-13 11:35:12.541643,317,885,272, +51,2014-01-13 06:38:20.496584,470,759,71, +51,2014-01-17 02:34:45.816572,662,743,355, +17,2014-01-21 03:24:21.927452,402,738,395, +17,2014-01-19 06:18:01.363752,72,511,190, +17,2014-01-12 00:22:21.257655,786,575,710, +17,2014-01-15 04:47:17.595851,275,302,434, +17,2014-01-12 13:23:32.086541,247,289,726, +17,2014-01-19 13:05:16.813842,544,248,742, +17,2014-01-11 10:06:13.344096,254,663,222, +17,2014-01-11 19:59:23.930488,825,758,169, +17,2014-01-16 00:50:52.356202,866,497,199, +17,2014-01-11 21:33:52.228969,365,655,419, +17,2014-01-19 19:30:39.457568,706,815,397, +51,2014-01-16 23:23:07.178981,158,698,456, +17,2014-01-13 13:48:47.162391,360,351,85, +51,2014-01-18 14:17:25.044325,696,73,776, +51,2014-01-13 20:28:09.221868,617,44,301, +17,2014-01-20 08:55:51.183385,612,101,946, +17,2014-01-11 14:13:34.83806,981,994,644, +17,2014-01-17 07:01:48.071331,910,602,821, +51,2014-01-19 11:40:11.739021,395,143,811, +51,2014-01-18 12:31:29.419726,313,604,116, +17,2014-01-12 04:31:31.048742,594,149,484, +17,2014-01-12 11:45:24.49107,967,551,416, +17,2014-01-20 11:45:20.791857,507,855,10, +17,2014-01-19 05:09:17.38441,102,130,237, +51,2014-01-13 11:12:16.386531,547,289,124, +17,2014-01-20 15:05:30.742724,934,381,530, +51,2014-01-11 09:35:13.608492,663,837,534, +17,2014-01-15 19:52:51.030524,756,397,994, +51,2014-01-12 20:40:43.284367,296,276,675, +51,2014-01-13 20:13:34.105076,761,102,675, +17,2014-01-11 16:27:36.847095,277,389,277, +16,2014-01-12 18:05:05.212239,72,680,870, +16,2014-01-11 20:31:35.468828,634,285,538, +96,2014-01-12 20:49:58.10475,984,340,270, +16,2014-01-17 02:52:22.808089,712,717,401, +16,2014-01-13 13:55:07.555368,985,979,320, +16,2014-01-11 03:55:14.918592,132,291,445, +16,2014-01-17 16:58:36.152604,753,473,911, +96,2014-01-14 13:54:31.486275,775,551,560, +16,2014-01-16 08:46:07.274795,854,250,198, +96,2014-01-18 18:32:28.381573,143,340,125, +16,2014-01-13 03:25:10.943843,257,265,331, +16,2014-01-12 02:09:14.453775,383,76,396, +96,2014-01-11 02:21:15.543964,143,989,640, +16,2014-01-20 21:42:35.988168,818,467,117, +96,2014-01-15 02:37:23.676061,194,544,685, +16,2014-01-20 15:17:06.727768,59,432,848, +96,2014-01-11 05:56:10.826228,254,642,440, +96,2014-01-11 03:39:11.747393,494,299,252, +96,2014-01-18 20:57:18.466789,506,843,859, +16,2014-01-18 22:27:40.246373,10,438,290, +16,2014-01-12 12:10:42.796134,4,871,784, +96,2014-01-20 12:42:42.957858,200,37,544, +16,2014-01-18 04:13:01.03823,727,46,157, +16,2014-01-20 21:20:00.180545,903,826,458, +96,2014-01-12 17:54:59.344389,879,595,558, +96,2014-01-17 13:18:31.780954,135,969,863, +16,2014-01-11 00:55:13.789036,69,811,786, +96,2014-01-17 17:47:50.374912,154,40,343, +16,2014-01-19 13:59:15.065741,306,269,184, +96,2014-01-14 01:08:47.894112,961,954,405, +16,2014-01-18 14:15:27.222007,339,484,13, +96,2014-01-11 02:04:20.277979,80,17,865, +96,2014-01-15 01:40:23.362941,413,106,23, +16,2014-01-20 15:05:25.326757,286,69,441, +16,2014-01-17 08:56:43.086068,732,171,151, +96,2014-01-17 19:35:30.918727,466,927,846, +16,2014-01-20 23:00:40.245769,281,816,572, +16,2014-01-13 19:55:19.238672,266,429,303, +16,2014-01-11 03:30:02.405003,637,207,672, +96,2014-01-16 01:46:47.520563,471,507,910, +96,2014-01-11 08:27:47.620664,523,82,830, +96,2014-01-13 10:55:13.348846,902,748,40, +96,2014-01-17 07:56:01.974757,744,480,890, +96,2014-01-11 14:49:03.164627,235,601,97, +96,2014-01-13 02:37:49.337014,517,719,112, +96,2014-01-11 04:33:25.650819,602,764,536, +16,2014-01-11 00:06:09.892395,239,59,90, +16,2014-01-13 12:34:00.163242,495,360,661, +16,2014-01-11 12:12:37.398211,405,917,587, +96,2014-01-19 01:03:28.359183,384,864,199, +16,2014-01-11 05:01:40.409615,186,815,436, +96,2014-01-13 04:23:20.194766,535,950,586, +96,2014-01-18 07:46:11.31746,861,995,207, +96,2014-01-18 13:14:41.448264,178,77,707, +96,2014-01-12 19:43:20.37531,609,3,467, +96,2014-01-20 05:41:10.661849,424,413,448, +16,2014-01-14 20:33:13.229218,862,289,917, +96,2014-01-13 00:38:34.164767,843,120,842, +16,2014-01-16 17:29:01.03718,378,523,709, +96,2014-01-13 04:32:28.294957,758,743,889, +16,2014-01-16 05:47:22.058879,813,37,665, +16,2014-01-14 01:44:28.259188,73,588,539, +96,2014-01-13 10:36:48.572936,604,899,751, +96,2014-01-20 11:27:45.422239,661,253,686, +16,2014-01-13 10:49:53.586365,688,118,919, +16,2014-01-19 23:33:31.659423,649,564,817, +96,2014-01-17 01:03:16.340966,705,212,84, +16,2014-01-13 03:50:33.832133,97,841,673, +16,2014-01-12 13:28:50.898095,85,816,532, +96,2014-01-17 08:33:18.745968,449,972,595, +96,2014-01-18 09:37:21.352696,45,327,821, +96,2014-01-13 01:56:38.518758,452,66,621, +96,2014-01-19 23:28:32.094814,927,758,287, +16,2014-01-14 11:33:23.327453,486,939,827, +96,2014-01-13 20:45:41.683804,407,313,196, +96,2014-01-11 20:06:21.431828,772,240,203, +16,2014-01-14 20:06:48.978272,485,297,441, +96,2014-01-14 00:51:51.576199,83,155,531, +16,2014-01-14 12:40:21.59507,717,128,898, +16,2014-01-15 12:19:26.376903,102,80,51, +96,2014-01-11 19:55:19.935801,92,528,220, +96,2014-01-14 21:42:02.005103,631,803,364, +96,2014-01-17 20:42:46.571669,295,777,609, +96,2014-01-19 07:41:31.253261,191,715,14, +96,2014-01-12 04:56:43.453366,457,508,250, +96,2014-01-19 20:26:06.946979,219,893,257, +16,2014-01-18 07:22:41.91511,762,368,836, +96,2014-01-16 05:29:56.682583,767,4,315, +16,2014-01-11 15:04:41.111746,136,116,385, +96,2014-01-13 18:51:42.952291,932,420,244, +96,2014-01-18 14:02:24.97796,108,95,760, +96,2014-01-17 00:52:03.171044,189,289,607, +16,2014-01-17 00:36:11.211897,260,883,189, +96,2014-01-21 04:39:13.550897,786,745,525, +96,2014-01-16 06:19:48.593281,823,947,13, +96,2014-01-19 15:26:04.798261,237,687,967, +96,2014-01-19 22:12:45.21032,564,472,942, +16,2014-01-12 01:23:04.934247,903,38,438, +16,2014-01-11 13:16:38.630395,758,1000,588, +96,2014-01-11 05:41:36.108834,945,960,963, +16,2014-01-18 13:56:23.680216,692,475,974, +16,2014-01-19 02:53:59.98309,592,583,903, +16,2014-01-13 11:38:14.627593,896,666,432, +16,2014-01-17 07:24:55.775029,604,507,537, +16,2014-01-12 08:27:23.310961,982,834,929, +16,2014-01-16 12:23:56.311397,305,348,494, +96,2014-01-18 07:31:17.206856,701,740,766, +16,2014-01-16 08:34:12.289233,80,886,758, +16,2014-01-19 17:15:47.888016,479,450,289, +96,2014-01-11 14:11:38.801926,95,880,120, +16,2014-01-21 00:53:38.666136,672,823,207, +96,2014-01-20 17:11:07.823817,212,19,280, +96,2014-01-15 15:53:40.807029,15,979,233, +16,2014-01-17 15:36:25.237805,531,601,571, +96,2014-01-18 18:52:39.077078,716,69,495, +96,2014-01-17 00:50:24.260395,974,332,54, +16,2014-01-16 06:02:32.185203,700,361,503, +96,2014-01-15 20:15:20.992189,920,720,623, +96,2014-01-12 00:20:20.943398,52,28,764, +16,2014-01-17 01:07:13.296949,418,845,535, +96,2014-01-18 19:07:03.944898,636,125,246, +96,2014-01-19 18:22:45.921358,146,188,821, +96,2014-01-12 19:59:16.467993,588,563,895, +96,2014-01-14 13:43:15.156795,951,186,650, +16,2014-01-19 17:01:59.472255,629,967,429, +16,2014-01-18 06:19:05.061274,171,132,276, +96,2014-01-12 23:09:19.955056,284,475,552, +16,2014-01-18 09:14:44.682994,776,195,215, +16,2014-01-19 11:42:09.995521,414,91,534, +96,2014-01-13 16:25:58.585451,116,806,254, +96,2014-01-18 18:56:20.791828,935,113,136, +96,2014-01-16 19:38:33.675735,308,428,698, +96,2014-01-11 13:19:58.568541,790,149,766, +96,2014-01-11 00:34:35.419421,113,478,698, +96,2014-01-12 21:03:29.450765,53,195,215, +96,2014-01-13 01:47:21.879503,529,796,67, +96,2014-01-16 16:58:31.731237,283,646,789, +16,2014-01-20 08:34:46.657622,188,628,732, +96,2014-01-18 14:21:34.169155,995,41,54, +96,2014-01-15 04:14:19.619253,573,332,857, +16,2014-01-21 02:46:25.459967,148,721,118, +96,2014-01-18 09:15:12.835292,955,528,658, +16,2014-01-14 15:25:27.44307,449,310,805, +96,2014-01-15 12:40:06.266996,737,683,830, +96,2014-01-14 18:51:38.073517,703,264,583, +96,2014-01-12 04:18:06.520148,149,84,890, +16,2014-01-11 07:30:30.52781,895,242,889, +96,2014-01-20 04:54:10.25872,48,973,95, +16,2014-01-17 04:33:27.512335,574,143,779, +16,2014-01-12 11:50:51.471207,330,452,857, +16,2014-01-16 00:01:23.555669,941,370,750, +96,2014-01-14 17:40:31.457233,215,280,838, +96,2014-01-11 00:13:37.392566,824,200,268, +16,2014-01-18 00:00:40.02408,594,901,121, +16,2014-01-18 11:23:46.614028,714,47,792, +16,2014-01-19 21:15:36.864821,793,571,944, +96,2014-01-15 00:19:45.085354,69,862,998, +96,2014-01-20 14:33:06.569084,680,117,173, +16,2014-01-17 00:30:21.547815,573,648,841, +16,2014-01-13 06:01:55.081294,708,736,347, +16,2014-01-13 00:59:05.154535,255,746,946, +96,2014-01-14 13:26:42.339643,161,539,652, +96,2014-01-19 05:40:28.75703,291,848,887, +16,2014-01-13 18:19:03.723495,954,125,736, +96,2014-01-14 18:01:17.759482,553,209,486, +16,2014-01-10 20:43:58.208215,459,887,981, +16,2014-01-16 00:06:25.602998,717,170,771, +96,2014-01-20 14:59:49.49072,220,350,632, +16,2014-01-20 09:18:44.865835,339,542,70, +96,2014-01-13 08:27:59.772153,700,766,133, +96,2014-01-14 13:14:09.109972,363,808,361, +96,2014-01-20 06:05:10.325803,287,227,505, +16,2014-01-20 21:43:12.607865,794,560,875, +16,2014-01-18 08:39:36.553042,730,562,981, +16,2014-01-14 12:45:16.593218,233,504,815, +16,2014-01-14 10:34:50.681381,659,665,930, +16,2014-01-19 16:57:43.07319,94,166,135, +16,2014-01-15 00:15:47.121028,253,556,889, +96,2014-01-13 09:29:00.940101,820,808,345, +16,2014-01-15 15:31:10.585525,439,117,540, +96,2014-01-16 16:06:38.592235,184,704,263, +96,2014-01-18 13:30:24.49577,714,156,534, +96,2014-01-19 13:11:42.043178,970,775,338, +96,2014-01-16 20:20:15.984801,333,413,896, +96,2014-01-15 07:31:04.519851,639,163,682, +96,2014-01-16 18:35:28.657206,28,699,278, +16,2014-01-15 11:35:52.849622,706,8,775, +96,2014-01-19 11:50:49.605624,435,500,479, +96,2014-01-16 03:08:35.226709,769,62,730, +16,2014-01-11 06:06:14.397855,48,654,178, +96,2014-01-11 11:52:44.686919,731,639,723, +96,2014-01-18 08:07:40.381245,725,493,877, +16,2014-01-14 23:32:56.737498,677,263,151, +96,2014-01-19 21:33:13.443948,946,971,427, +16,2014-01-10 20:26:44.104741,282,543,620, +16,2014-01-18 21:34:14.49698,836,128,654, +96,2014-01-19 22:17:11.652163,924,0,71, +16,2014-01-16 00:33:09.708157,228,634,991, +16,2014-01-18 06:34:03.9877,978,101,935, +16,2014-01-19 01:35:56.518418,952,319,834, +16,2014-01-18 13:01:09.480311,928,384,262, +96,2014-01-11 13:48:13.097672,140,245,643, +16,2014-01-18 01:41:06.844221,56,491,390, +16,2014-01-18 04:44:22.088176,658,474,297, +16,2014-01-19 02:27:49.650714,280,416,580, +16,2014-01-11 08:26:23.437439,697,751,613, +16,2014-01-11 09:19:12.769557,903,396,842, +96,2014-01-17 13:25:32.723903,855,200,284, +96,2014-01-15 12:42:10.558467,287,264,368, +16,2014-01-13 22:48:13.709658,16,294,566, +16,2014-01-11 22:56:43.309848,299,781,633, +16,2014-01-10 22:48:49.150702,866,796,359, +96,2014-01-11 06:18:38.205847,182,467,727, +16,2014-01-20 16:08:25.353026,485,426,441, +96,2014-01-16 23:09:05.135503,982,195,331, +16,2014-01-15 17:49:42.725698,926,34,124, +98,2014-01-16 04:43:54.010232,288,27,757, +85,2014-01-11 04:44:57.985544,822,704,58, +85,2014-01-13 23:40:32.331322,755,543,100, +85,2014-01-11 01:52:29.236942,25,931,363, +98,2014-01-11 14:51:12.383399,88,767,537, +98,2014-01-14 15:33:17.01824,54,304,459, +85,2014-01-18 14:00:09.618606,838,476,37, +98,2014-01-15 18:24:09.120897,744,912,716, +85,2014-01-13 07:06:30.462607,42,377,739, +85,2014-01-18 14:26:53.723347,924,647,73, +85,2014-01-13 09:58:23.618296,418,843,731, +85,2014-01-11 23:23:42.11477,572,669,539, +85,2014-01-13 09:00:03.431504,0,196,110, +85,2014-01-20 20:32:27.605996,623,502,433, +85,2014-01-20 04:59:38.633188,250,900,212, +98,2014-01-21 02:01:12.912234,11,254,834, +85,2014-01-11 04:20:40.704086,778,811,145, +85,2014-01-17 00:40:45.477827,724,800,389, +98,2014-01-18 00:45:35.00041,516,257,539, +85,2014-01-19 10:48:30.3548,832,348,822, +98,2014-01-17 13:07:08.915266,519,643,682, +98,2014-01-18 14:04:47.770386,140,393,434, +98,2014-01-15 18:14:03.079123,971,821,145, +98,2014-01-11 19:49:19.474151,157,695,947, +98,2014-01-11 06:53:01.480045,802,482,501, +98,2014-01-16 21:10:46.388971,573,545,57, +98,2014-01-11 22:38:08.624852,940,857,920, +85,2014-01-11 17:11:39.685892,879,746,169, +98,2014-01-16 07:19:11.741996,91,921,736, +85,2014-01-18 01:47:13.760775,269,899,731, +98,2014-01-16 15:01:22.412008,792,45,250, +85,2014-01-11 06:03:05.752228,720,686,329, +98,2014-01-18 10:32:11.746318,901,880,333, +98,2014-01-19 18:41:54.74333,346,761,877, +85,2014-01-11 11:55:34.989589,397,229,906, +85,2014-01-19 05:23:24.129717,598,857,258, +85,2014-01-13 04:15:11.76199,810,60,598, +98,2014-01-19 05:55:44.608195,24,378,590, +85,2014-01-13 17:47:33.250614,343,510,508, +85,2014-01-15 15:21:42.224597,980,135,678, +98,2014-01-16 14:22:38.331542,766,959,936, +98,2014-01-16 07:45:56.868909,590,723,592, +98,2014-01-16 18:45:24.339367,159,889,917, +98,2014-01-19 03:22:41.763465,771,895,63, +85,2014-01-15 22:18:24.475324,405,815,778, +85,2014-01-15 17:45:02.972974,87,589,796, +85,2014-01-18 23:23:54.675699,863,41,533, +98,2014-01-16 06:39:05.17941,760,823,76, +85,2014-01-11 12:25:48.450801,765,832,711, +85,2014-01-15 18:09:29.676109,471,587,928, +85,2014-01-14 11:27:35.53421,661,677,192, +98,2014-01-18 05:32:57.366067,54,797,418, +85,2014-01-13 02:14:17.446496,654,830,746, +98,2014-01-19 09:41:38.613333,22,718,352, +85,2014-01-19 05:22:16.840218,94,581,764, +85,2014-01-13 13:07:18.926959,736,944,542, +85,2014-01-15 00:52:25.002303,790,48,622, +98,2014-01-20 08:00:25.46549,867,352,212, +85,2014-01-14 10:18:58.612851,708,113,571, +98,2014-01-20 12:11:36.7443,988,473,806, +85,2014-01-17 03:47:39.226264,235,693,627, +85,2014-01-20 05:20:21.024859,683,197,202, +98,2014-01-20 22:14:42.496947,487,610,634, +85,2014-01-14 08:19:50.972582,994,981,559, +98,2014-01-18 18:02:15.768609,913,280,792, +98,2014-01-11 04:10:17.486535,988,869,35, +85,2014-01-12 07:43:15.102299,436,689,155, +98,2014-01-21 02:17:27.530599,250,532,111, +98,2014-01-19 14:06:02.09473,614,535,112, +98,2014-01-15 05:30:48.352913,7,670,273, +98,2014-01-15 11:39:09.755196,543,791,564, +85,2014-01-14 22:28:40.426272,584,72,385, +85,2014-01-20 17:16:45.222242,842,97,789, +98,2014-01-11 00:24:34.094563,664,630,193, +85,2014-01-12 19:51:22.189736,669,507,36, +98,2014-01-15 09:35:09.697566,658,987,232, +85,2014-01-15 22:09:37.067536,914,351,62, +98,2014-01-20 23:15:16.865435,399,975,805, +98,2014-01-20 20:14:14.876976,500,379,133, +85,2014-01-16 14:35:25.518338,798,108,925, +98,2014-01-15 11:24:46.541964,621,775,840, +85,2014-01-14 01:41:50.411187,16,951,162, +98,2014-01-13 14:08:22.884824,136,263,257, +85,2014-01-17 17:39:03.988459,694,223,31, +85,2014-01-12 05:23:29.02494,156,283,28, +85,2014-01-11 13:30:39.725041,489,40,516, +98,2014-01-20 10:46:22.915419,311,65,200, +98,2014-01-16 10:15:54.027244,751,392,954, +98,2014-01-21 01:31:05.19053,413,261,17, +85,2014-01-13 15:05:21.52869,211,505,174, +85,2014-01-15 16:27:30.771962,348,631,870, +98,2014-01-16 23:18:44.416794,274,214,130, +85,2014-01-12 14:25:42.553549,251,554,30, +85,2014-01-15 08:42:13.268908,790,59,262, +98,2014-01-20 11:38:35.389376,603,50,397, +98,2014-01-20 12:27:58.322158,590,410,562, +98,2014-01-15 16:52:30.755444,667,65,190, +98,2014-01-11 13:21:50.491675,50,345,594, +98,2014-01-20 08:45:25.852756,915,952,285, +98,2014-01-14 00:58:32.850174,854,622,633, +98,2014-01-15 22:52:38.845006,743,168,431, +98,2014-01-14 14:24:35.607952,245,172,854, +98,2014-01-18 03:27:13.276446,891,893,570, +85,2014-01-15 10:09:24.067248,605,161,559, +98,2014-01-14 18:49:09.702933,200,732,49, +98,2014-01-20 03:18:35.466601,667,860,541, +98,2014-01-19 23:44:33.764815,350,744,742, +98,2014-01-19 20:58:46.77047,585,163,988, +85,2014-01-19 20:33:52.332036,611,978,972, +85,2014-01-19 13:58:48.641791,424,276,431, +98,2014-01-15 05:34:12.289227,472,993,254, +98,2014-01-14 01:58:38.874,118,758,737, +98,2014-01-12 09:40:39.052978,845,45,86, +85,2014-01-17 23:42:35.17405,585,114,773, +98,2014-01-20 23:37:42.862879,339,927,849, +85,2014-01-13 19:04:08.077918,740,546,306, +85,2014-01-18 17:13:14.899092,178,986,460, +98,2014-01-20 04:24:05.778298,243,543,775, +98,2014-01-19 09:20:02.10558,89,318,775, +85,2014-01-18 12:44:20.090041,776,227,956, +85,2014-01-12 13:29:27.306986,575,918,779, +98,2014-01-13 19:47:32.877542,194,692,798, +85,2014-01-14 06:03:04.506834,967,437,462, +98,2014-01-14 07:55:09.860955,404,1000,935, +85,2014-01-18 08:29:46.146451,541,823,170, +85,2014-01-13 11:41:39.896629,183,911,228, +98,2014-01-13 14:23:08.183113,804,895,501, +85,2014-01-12 19:22:16.901895,983,540,987, +98,2014-01-14 05:03:30.388304,300,458,954, +98,2014-01-12 17:08:34.036289,52,577,770, +85,2014-01-16 00:20:49.752069,618,968,652, +98,2014-01-19 07:56:09.233311,690,991,797, +98,2014-01-16 11:33:09.644241,132,864,207, +98,2014-01-12 21:48:03.028515,339,752,983, +98,2014-01-13 12:05:33.300559,48,918,753, +85,2014-01-20 10:22:19.347174,673,253,670, +85,2014-01-11 19:06:38.495116,880,289,809, +98,2014-01-12 05:50:07.065373,618,349,125, +98,2014-01-19 01:21:06.118064,257,327,958, +98,2014-01-20 19:40:30.827572,594,656,309, +85,2014-01-20 23:48:55.707164,398,938,34, +98,2014-01-13 00:55:18.407291,465,898,211, +98,2014-01-13 15:39:09.701572,150,277,459, +85,2014-01-12 03:29:34.76056,839,108,94, +85,2014-01-20 04:37:53.581342,195,819,706, +85,2014-01-13 09:16:52.56445,403,173,438, +85,2014-01-15 02:33:42.838478,966,971,85, +98,2014-01-17 15:51:08.480432,728,99,18, +98,2014-01-12 07:40:58.343167,974,158,987, +85,2014-01-13 05:53:44.944058,211,997,796, +98,2014-01-14 22:35:28.570474,262,867,180, +85,2014-01-14 01:10:25.650154,350,445,392, +85,2014-01-16 05:41:17.8216,749,366,630, +98,2014-01-18 08:38:33.077727,903,419,623, +98,2014-01-17 13:05:35.511108,883,712,197, +98,2014-01-13 08:11:03.968051,155,400,548, +98,2014-01-21 00:20:12.974357,581,522,662, +85,2014-01-20 07:28:43.694641,367,569,59, +98,2014-01-15 07:33:20.869946,329,411,617, +85,2014-01-13 23:23:43.362661,760,797,316, +98,2014-01-11 18:37:17.730929,155,917,203, +98,2014-01-20 11:54:10.622015,707,755,576, +98,2014-01-12 01:19:52.596392,155,199,886, +98,2014-01-17 10:10:27.37517,427,867,123, +85,2014-01-12 03:42:13.650949,863,668,41, +98,2014-01-14 17:25:25.89695,944,997,160, +98,2014-01-16 14:32:46.722763,437,754,647, +98,2014-01-13 02:48:52.146066,412,464,49, +98,2014-01-16 03:15:32.962743,817,452,847, +98,2014-01-14 09:53:52.840827,590,175,115, +85,2014-01-12 16:29:22.973636,912,191,819, +85,2014-01-15 21:04:28.669906,113,308,600, +85,2014-01-16 14:49:11.248118,362,197,479, +85,2014-01-15 12:08:32.675627,451,799,581, +98,2014-01-17 04:34:03.430468,543,763,822, +85,2014-01-15 13:27:04.829458,651,200,566, +85,2014-01-18 01:25:25.240077,891,409,199, +85,2014-01-11 01:07:46.269365,304,272,759, +98,2014-01-11 23:18:13.309892,661,127,915, +84,2014-01-19 13:06:23.583245,602,51,294, +36,2014-01-13 11:01:31.213423,87,158,14, +36,2014-01-16 01:53:41.880784,934,788,928, +84,2014-01-12 08:16:49.233817,704,878,112, +36,2014-01-18 20:42:49.035442,234,616,870, +84,2014-01-13 04:32:14.958511,953,352,441, +84,2014-01-19 01:22:24.744926,487,64,268, +89,2014-01-10 22:53:53.003493,142,385,599, +89,2014-01-12 22:52:27.932869,160,705,247, +36,2014-01-18 02:51:08.439566,989,324,675, +89,2014-01-15 10:27:13.873857,983,421,716, +36,2014-01-16 02:16:11.295529,114,166,528, +36,2014-01-19 01:28:26.170495,67,740,191, +89,2014-01-14 16:21:24.495873,54,592,297, +84,2014-01-17 07:36:03.891921,62,710,723, +89,2014-01-15 05:38:53.546083,707,927,474, +36,2014-01-16 00:03:38.146822,642,967,324, +84,2014-01-21 05:01:29.789291,932,546,897, +36,2014-01-21 00:11:40.268847,168,573,85, +84,2014-01-18 06:52:30.293306,321,716,5, +36,2014-01-16 02:17:02.752033,791,470,677, +84,2014-01-14 04:05:33.109673,373,809,591, +36,2014-01-20 03:21:53.266943,820,11,916, +36,2014-01-21 03:21:31.42194,681,60,559, +89,2014-01-19 22:54:44.357791,659,633,97, +89,2014-01-14 09:30:25.942571,991,453,835, +36,2014-01-17 01:55:34.852826,695,389,870, +36,2014-01-14 06:21:49.187249,148,460,152, +89,2014-01-11 04:55:51.183067,279,528,924, +84,2014-01-17 07:03:21.122191,504,3,869, +89,2014-01-15 09:40:02.497141,610,636,420, +84,2014-01-19 22:02:14.766311,666,762,218, +36,2014-01-19 22:04:52.335614,303,562,124, +36,2014-01-20 15:33:44.377925,756,157,217, +89,2014-01-11 00:19:04.000128,400,755,629, +89,2014-01-17 12:47:41.371055,999,355,511, +84,2014-01-12 14:05:59.336436,581,70,930, +84,2014-01-19 05:41:28.745473,377,229,645, +89,2014-01-17 15:41:34.374967,44,849,456, +89,2014-01-14 16:58:27.269305,98,97,726, +89,2014-01-16 02:32:37.185039,61,816,467, +89,2014-01-11 20:08:48.248825,953,5,783, +84,2014-01-19 23:14:38.565254,958,864,567, +36,2014-01-13 22:01:03.355953,178,546,967, +84,2014-01-15 16:30:12.744697,181,836,639, +89,2014-01-16 00:50:42.457175,624,497,111, +89,2014-01-18 07:39:56.902036,498,410,137, +36,2014-01-20 20:33:50.891939,248,591,692, +84,2014-01-15 23:52:12.246466,102,179,315, +84,2014-01-18 01:51:37.170882,76,820,415, +36,2014-01-17 21:26:21.185245,20,460,858, +84,2014-01-10 20:09:14.998498,473,473,822, +89,2014-01-10 23:57:10.280556,525,508,824, +36,2014-01-16 18:48:14.452187,934,326,138, +84,2014-01-21 03:30:46.420857,342,930,152, +89,2014-01-20 02:51:54.638347,392,291,334, +89,2014-01-20 08:18:40.395177,676,713,873, +84,2014-01-16 23:26:21.273683,158,932,886, +36,2014-01-13 03:13:43.825596,504,17,804, +89,2014-01-20 17:14:31.578244,865,253,257, +89,2014-01-13 00:29:42.395874,311,318,812, +89,2014-01-17 16:53:46.322736,729,696,891, +84,2014-01-19 09:16:46.344555,683,366,504, +84,2014-01-11 16:34:34.731488,845,290,370, +36,2014-01-17 02:27:30.701081,69,496,753, +36,2014-01-19 13:35:50.345102,299,198,523, +84,2014-01-18 09:22:16.102962,436,392,370, +84,2014-01-18 20:33:30.037519,120,644,872, +36,2014-01-17 13:17:19.090575,67,91,204, +84,2014-01-14 19:03:50.477929,987,985,159, +89,2014-01-12 07:31:57.307243,893,967,420, +84,2014-01-12 09:49:56.275615,186,876,85, +84,2014-01-15 19:12:38.726754,34,584,226, +89,2014-01-11 00:46:35.872497,160,386,166, +89,2014-01-15 11:50:59.631567,880,769,672, +36,2014-01-20 15:42:51.471451,437,703,209, +84,2014-01-16 05:37:18.329672,410,13,635, +36,2014-01-12 13:30:56.533603,87,143,63, +84,2014-01-20 06:16:42.363389,265,527,611, +36,2014-01-10 23:29:30.576556,808,450,132, +36,2014-01-19 19:22:33.704486,275,89,482, +84,2014-01-16 21:43:03.548633,923,436,915, +89,2014-01-10 23:38:45.575054,976,489,954, +36,2014-01-19 23:19:43.985042,368,236,467, +84,2014-01-12 10:31:18.00124,280,395,944, +89,2014-01-10 21:09:31.995911,674,897,198, +84,2014-01-18 20:11:38.623389,808,545,148, +36,2014-01-11 12:49:58.396417,331,545,230, +36,2014-01-17 00:35:53.269595,162,931,397, +84,2014-01-21 03:25:22.448984,891,109,986, +36,2014-01-11 00:04:29.97466,622,802,276, +89,2014-01-19 05:05:35.66547,501,701,287, +89,2014-01-17 14:19:08.772141,587,110,320, +89,2014-01-19 13:21:16.319216,396,716,384, +89,2014-01-20 01:40:10.397376,407,272,394, +36,2014-01-13 10:46:39.473222,412,57,77, +36,2014-01-17 20:57:06.664318,463,702,281, +89,2014-01-17 05:02:26.500339,317,226,54, +36,2014-01-11 01:20:09.51074,695,392,142, +89,2014-01-14 04:14:25.754893,400,577,239, +89,2014-01-21 04:06:16.978268,491,834,907, +36,2014-01-12 12:52:06.817982,858,163,390, +84,2014-01-15 18:04:22.030926,924,719,319, +36,2014-01-15 17:18:55.705022,711,586,985, +36,2014-01-12 17:38:42.690479,936,320,732, +36,2014-01-20 09:55:21.662494,55,974,79, +36,2014-01-15 03:01:47.176472,796,559,370, +36,2014-01-18 03:16:01.02057,646,564,437, +36,2014-01-11 17:26:18.196516,222,971,396, +84,2014-01-14 03:18:29.54028,840,210,880, +89,2014-01-18 06:45:31.597126,417,569,833, +84,2014-01-20 16:48:51.901002,960,729,283, +89,2014-01-20 05:01:33.088914,554,569,736, +89,2014-01-18 10:24:17.17218,752,888,971, +84,2014-01-19 10:08:35.886463,889,814,249, +89,2014-01-11 09:32:51.090153,996,565,75, +89,2014-01-18 11:33:49.168511,92,580,367, +89,2014-01-17 00:20:14.509851,687,15,819, +36,2014-01-12 02:22:49.486571,560,289,849, +36,2014-01-14 06:09:42.438107,441,266,99, +89,2014-01-16 21:45:36.959254,512,722,422, +89,2014-01-12 06:27:19.461231,563,158,476, +36,2014-01-12 05:15:18.103996,361,480,952, +36,2014-01-13 06:04:45.731395,469,125,402, +36,2014-01-20 23:48:35.780866,315,114,582, +84,2014-01-11 00:55:28.501372,513,544,665, +84,2014-01-15 20:51:25.204617,813,461,553, +89,2014-01-17 14:45:42.445183,433,936,261, +89,2014-01-17 09:57:55.00171,684,645,344, +89,2014-01-16 02:11:34.715356,756,795,835, +84,2014-01-20 23:00:08.200496,578,102,599, +89,2014-01-17 08:04:11.979978,690,899,80, +84,2014-01-17 19:03:41.533758,172,683,282, +89,2014-01-15 11:04:30.231422,367,32,488, +84,2014-01-11 19:23:07.685,752,390,478, +84,2014-01-19 16:42:24.224237,225,715,605, +89,2014-01-14 14:59:51.893915,625,917,320, +84,2014-01-16 02:24:54.861472,227,318,704, +89,2014-01-16 13:58:25.244807,472,920,820, +89,2014-01-15 12:26:10.090431,554,922,376, +84,2014-01-19 09:43:24.401752,47,146,653, +89,2014-01-13 14:43:56.841933,57,429,337, +89,2014-01-14 23:15:01.991852,630,68,66, +89,2014-01-18 08:44:57.491085,606,103,440, +84,2014-01-21 05:08:14.014533,902,403,638, +36,2014-01-13 03:23:37.878315,324,556,596, +84,2014-01-18 22:17:48.581239,586,878,449, +36,2014-01-18 10:42:03.183045,542,606,617, +36,2014-01-19 07:43:52.388166,619,483,491, +36,2014-01-20 04:40:38.068228,882,342,640, +89,2014-01-11 10:51:45.621152,239,363,857, +36,2014-01-14 23:29:29.347421,334,807,107, +36,2014-01-11 05:07:57.529459,264,746,537, +36,2014-01-12 20:07:03.725148,197,895,864, +36,2014-01-17 09:34:15.078815,567,973,356, +36,2014-01-10 22:56:33.310324,298,424,437, +89,2014-01-13 01:02:32.22652,148,310,222, +84,2014-01-12 00:25:40.283431,348,796,649, +84,2014-01-17 17:42:15.755927,872,283,171, +84,2014-01-19 15:00:27.22823,112,554,76, +84,2014-01-17 06:37:14.999206,392,642,980, +84,2014-01-17 10:42:23.956422,453,678,273, +89,2014-01-15 17:04:39.208208,192,361,492, +36,2014-01-13 19:40:56.532965,107,427,280, +84,2014-01-11 15:46:54.187844,807,523,209, +89,2014-01-16 16:27:46.893208,151,933,342, +84,2014-01-12 06:23:20.757201,34,414,244, +84,2014-01-15 10:46:46.081758,272,982,513, +84,2014-01-11 12:52:41.7551,494,775,235, +36,2014-01-18 00:21:46.002428,277,191,757, +84,2014-01-20 03:12:56.172609,289,504,552, +84,2014-01-20 02:36:06.156852,213,723,225, +89,2014-01-20 19:05:42.844361,154,859,888, +36,2014-01-13 20:27:58.16446,567,818,940, +36,2014-01-17 05:21:03.647937,455,606,703, +36,2014-01-20 18:13:56.858896,400,584,559, +89,2014-01-16 03:51:36.042776,491,137,7, +89,2014-01-14 21:38:52.229595,677,747,830, +89,2014-01-17 22:56:00.041941,91,551,220, +36,2014-01-14 05:35:28.430942,828,963,918, +84,2014-01-13 20:19:30.297823,113,18,462, +36,2014-01-18 13:47:45.663511,920,560,793, +89,2014-01-18 09:04:57.778781,861,713,889, +89,2014-01-14 05:27:27.827282,901,734,807, +36,2014-01-20 13:54:49.388659,645,756,354, +36,2014-01-14 12:39:12.857596,918,376,907, +36,2014-01-14 08:24:01.138026,745,977,499, +89,2014-01-12 08:57:21.615598,959,551,824, +36,2014-01-15 17:04:53.141446,535,511,434, +36,2014-01-10 20:06:16.893952,463,196,631, +36,2014-01-21 03:57:48.843828,294,112,667, +84,2014-01-11 17:42:08.140652,469,511,258, +84,2014-01-17 10:48:40.850375,602,667,449, +89,2014-01-15 15:02:28.052456,670,246,768, +89,2014-01-14 17:23:04.673617,563,582,403, +84,2014-01-18 06:35:35.038219,288,158,713, +36,2014-01-11 01:30:14.945665,487,312,581, +89,2014-01-16 03:46:25.430818,126,111,978, +84,2014-01-12 11:22:21.119977,894,503,626, +84,2014-01-11 18:22:56.700764,320,792,954, +36,2014-01-12 22:08:11.433246,496,937,515, +36,2014-01-11 08:35:17.292586,901,615,28, +36,2014-01-21 00:59:02.858034,626,764,535, +84,2014-01-12 11:13:54.278027,556,219,818, +36,2014-01-14 09:03:15.457047,636,380,944, +84,2014-01-17 00:20:06.505972,790,971,149, +36,2014-01-11 23:27:51.136922,440,306,149, +36,2014-01-19 16:54:51.499823,702,419,277, +36,2014-01-21 01:58:58.735567,582,478,398, +36,2014-01-19 02:23:51.179282,311,830,265, +84,2014-01-12 16:30:19.931183,936,933,259, +36,2014-01-13 16:18:29.03339,850,462,471, +89,2014-01-16 10:11:36.842794,763,930,935, +84,2014-01-20 05:35:17.709965,662,761,346, +89,2014-01-17 01:45:56.861091,985,354,33, +84,2014-01-15 18:06:26.231453,310,742,186, +36,2014-01-13 12:14:30.56756,8,726,31, +36,2014-01-20 14:09:57.999117,954,393,820, +36,2014-01-17 07:03:47.847051,608,158,757, +36,2014-01-18 09:19:23.709007,484,549,317, +89,2014-01-20 14:16:14.893069,138,982,259, +89,2014-01-17 05:01:36.691298,280,952,345, +89,2014-01-19 07:01:31.849659,309,479,239, +36,2014-01-16 19:04:55.743444,287,882,317, +89,2014-01-11 14:04:04.743754,590,190,167, +89,2014-01-12 18:24:36.523276,805,304,178, +84,2014-01-13 19:40:30.781662,58,188,531, +84,2014-01-11 19:34:19.689418,931,110,895, +84,2014-01-18 02:11:01.954514,733,580,915, +89,2014-01-15 11:02:51.90164,577,3,895, +36,2014-01-12 17:57:16.390601,146,763,407, +89,2014-01-20 04:19:13.387759,942,734,409, +89,2014-01-15 23:38:09.194644,904,250,575, +89,2014-01-12 12:56:19.248635,669,757,13, +36,2014-01-11 09:33:07.665786,387,494,792, +84,2014-01-19 12:41:24.651691,104,156,287, +89,2014-01-18 17:16:25.754607,656,692,808, +84,2014-01-12 13:00:58.803128,765,432,422, +84,2014-01-17 23:36:16.151932,809,193,94, +89,2014-01-18 13:15:24.490594,117,215,432, +89,2014-01-20 19:24:49.982409,899,645,534, +89,2014-01-19 20:06:36.083117,193,430,149, +36,2014-01-10 23:33:53.523983,448,568,479, +84,2014-01-15 23:36:26.825203,168,746,486, +84,2014-01-18 19:41:53.79308,882,750,778, +36,2014-01-17 05:19:50.385074,607,483,808, +89,2014-01-20 21:42:53.056656,219,442,317, +36,2014-01-11 01:56:24.360642,801,996,130, +36,2014-01-16 13:29:48.384191,481,439,736, +89,2014-01-16 22:46:40.904126,972,827,748, +84,2014-01-18 15:15:48.070067,871,787,178, +36,2014-01-15 21:46:03.27726,430,10,912, +36,2014-01-12 21:48:17.595425,823,735,604, +84,2014-01-16 16:17:19.919726,52,725,148, +36,2014-01-11 10:50:59.020704,896,261,353, +84,2014-01-13 15:52:22.339178,445,206,553, +36,2014-01-18 14:41:56.443422,304,999,626, +89,2014-01-14 10:31:29.802366,245,392,917, +36,2014-01-14 15:26:42.028597,49,886,757, +84,2014-01-15 10:52:58.397934,13,574,35, +36,2014-01-19 01:34:21.704424,642,681,113, +89,2014-01-16 13:23:58.419198,363,759,143, +89,2014-01-14 09:12:11.785694,274,422,802, +84,2014-01-13 19:12:30.899069,781,942,710, +36,2014-01-18 06:20:17.667833,714,236,428, +36,2014-01-14 22:45:19.451899,468,446,612, +89,2014-01-12 01:53:55.550759,140,568,16, +84,2014-01-15 17:36:43.42286,288,168,286, +36,2014-01-16 15:46:18.255027,780,889,938, +89,2014-01-19 05:30:11.702693,587,440,458, +89,2014-01-13 00:52:07.913454,952,255,377, +89,2014-01-16 05:11:08.237436,193,968,54, +36,2014-01-17 19:36:47.785808,796,932,521, +89,2014-01-13 04:26:01.437436,446,629,672, +36,2014-01-10 22:47:35.062641,333,807,377, +36,2014-01-15 09:18:41.57889,889,225,381, +84,2014-01-19 13:45:51.82293,405,610,325, +36,2014-01-21 00:30:28.119297,523,983,937, +36,2014-01-15 15:15:05.93995,322,813,882, +36,2014-01-14 21:15:40.207121,83,706,338, +84,2014-01-16 17:17:09.023423,778,819,333, +84,2014-01-13 00:30:54.010017,494,289,891, +84,2014-01-19 23:01:43.4848,971,187,928, +36,2014-01-18 19:05:26.618848,861,642,984, +36,2014-01-18 20:48:13.929744,628,116,315, +84,2014-01-20 13:52:42.505504,684,955,409, +84,2014-01-11 04:57:48.958026,694,791,108, +89,2014-01-16 05:30:10.373165,422,520,897, +89,2014-01-13 18:24:12.30829,139,907,776, +84,2014-01-15 00:24:30.987043,209,482,956, +89,2014-01-20 20:23:08.7711,274,167,317, +55,2014-01-11 13:58:34.012715,970,581,237, +0,2014-01-20 17:48:29.406241,750,260,587, +0,2014-01-13 23:35:20.557214,965,312,437, +19,2014-01-14 13:11:04.911782,560,44,729, +64,2014-01-17 18:08:47.074493,820,80,369, +0,2014-01-18 02:20:40.009113,325,260,858, +55,2014-01-15 19:05:00.462543,607,585,533, +0,2014-01-12 05:45:30.497353,633,630,652, +19,2014-01-13 12:06:58.26414,826,41,365, +19,2014-01-13 18:35:12.165654,124,663,954, +19,2014-01-14 10:37:38.410807,529,672,138, +55,2014-01-18 21:18:06.501577,575,844,53, +19,2014-01-20 18:11:59.951463,343,414,655, +0,2014-01-16 19:03:39.848244,2,979,333, +64,2014-01-19 00:05:41.564218,359,59,205, +0,2014-01-14 21:30:41.530771,613,505,922, +19,2014-01-15 02:49:31.671174,459,337,101, +55,2014-01-18 18:36:09.683515,918,773,853, +64,2014-01-19 16:45:47.470721,347,160,190, +19,2014-01-19 04:05:11.878715,915,92,467, +19,2014-01-14 05:53:18.707356,353,810,239, +19,2014-01-11 11:16:41.480738,857,374,622, +19,2014-01-17 21:06:55.363516,230,906,402, +64,2014-01-11 18:58:45.326204,389,100,936, +64,2014-01-19 12:04:55.410481,355,851,74, +64,2014-01-17 04:59:37.86902,572,756,799, +64,2014-01-12 03:56:34.28465,777,472,624, +19,2014-01-14 11:35:05.784066,715,23,87, +19,2014-01-20 03:23:50.177309,799,456,13, +55,2014-01-16 08:21:05.271693,930,40,737, +19,2014-01-14 01:58:14.555166,656,111,591, +64,2014-01-20 21:22:24.190024,331,951,827, +55,2014-01-15 20:09:34.677933,140,616,371, +64,2014-01-17 05:33:35.112378,675,986,69, +55,2014-01-14 04:33:29.101806,381,979,141, +19,2014-01-12 08:18:21.752426,86,767,707, +19,2014-01-14 01:54:15.121491,954,173,912, +19,2014-01-19 03:38:29.564768,321,965,450, +64,2014-01-13 18:03:52.249779,274,862,228, +19,2014-01-16 18:01:13.385631,274,93,482, +19,2014-01-11 16:13:41.730422,521,743,623, +0,2014-01-17 08:41:30.660586,794,777,568, +19,2014-01-14 09:19:19.887207,947,647,775, +19,2014-01-11 04:25:41.681884,784,34,593, +0,2014-01-12 21:45:10.50925,36,522,786, +64,2014-01-12 03:25:01.451425,32,770,726, +0,2014-01-15 05:56:23.212656,668,35,612, +55,2014-01-17 04:34:42.180425,183,190,977, +55,2014-01-20 02:01:11.135358,594,862,507, +0,2014-01-13 16:42:10.683377,502,957,312, +55,2014-01-15 02:39:54.05914,861,168,55, +19,2014-01-13 01:54:29.842715,693,575,537, +64,2014-01-14 07:58:52.164115,508,4,800, +64,2014-01-11 17:46:49.422654,312,309,706, +19,2014-01-14 00:53:15.16892,337,489,715, +0,2014-01-12 14:03:47.575015,155,813,174, +55,2014-01-18 02:46:27.292094,500,834,331, +55,2014-01-15 08:49:49.45357,843,761,53, +64,2014-01-16 05:38:53.35908,691,686,929, +64,2014-01-17 00:10:17.469403,510,777,178, +55,2014-01-20 21:10:54.725263,678,880,214, +0,2014-01-19 11:37:07.914245,691,129,37, +55,2014-01-16 15:32:41.659846,266,118,330, +64,2014-01-15 11:20:29.403615,192,606,106, +55,2014-01-15 11:10:43.027043,338,359,964, +0,2014-01-20 00:06:10.761651,345,918,570, +55,2014-01-16 23:38:51.156041,35,940,661, +55,2014-01-18 17:04:58.148533,261,741,856, +0,2014-01-17 21:44:40.32642,628,758,554, +19,2014-01-19 21:42:43.40624,562,336,373, +19,2014-01-14 05:06:11.534583,204,700,591, +55,2014-01-18 17:58:22.056842,26,519,329, +55,2014-01-16 00:24:14.066826,19,896,277, +0,2014-01-17 18:25:31.421792,834,672,108, +19,2014-01-19 02:24:03.739145,579,865,120, +55,2014-01-18 02:09:24.576077,523,903,734, +55,2014-01-19 01:50:32.873635,166,406,777, +0,2014-01-13 02:20:26.951801,896,678,876, +55,2014-01-14 00:44:06.756921,861,733,211, +19,2014-01-17 21:51:44.008994,856,967,937, +0,2014-01-15 23:02:37.635597,824,332,355, +55,2014-01-18 07:24:00.81606,28,246,380, +55,2014-01-20 03:46:13.851708,262,62,625, +55,2014-01-19 11:01:29.79971,228,655,4, +0,2014-01-19 05:10:50.239133,61,38,66, +19,2014-01-12 22:39:29.020628,179,34,996, +19,2014-01-21 05:05:17.374725,432,500,252, +19,2014-01-16 01:57:17.531227,884,515,91, +55,2014-01-17 11:29:18.474617,232,311,833, +19,2014-01-16 04:44:10.733805,82,917,221, +19,2014-01-11 20:07:35.00063,320,450,969, +55,2014-01-17 02:40:13.199879,326,342,987, +19,2014-01-14 10:21:18.648469,222,747,993, +64,2014-01-17 15:40:16.660475,152,569,646, +19,2014-01-11 08:00:42.603494,473,233,394, +19,2014-01-19 01:32:01.675511,212,441,135, +64,2014-01-16 09:46:27.422546,799,243,501, +64,2014-01-17 11:39:33.759954,503,706,511, +64,2014-01-16 12:36:59.824046,143,896,127, +0,2014-01-13 01:31:07.748966,969,844,299, +55,2014-01-16 03:22:17.166193,406,559,125, +55,2014-01-19 21:43:11.358629,542,22,216, +55,2014-01-20 23:29:29.806226,665,93,76, +19,2014-01-10 21:46:31.23302,557,659,646, +55,2014-01-16 10:08:42.78084,498,791,590, +64,2014-01-18 19:53:33.545371,453,827,646, +64,2014-01-18 03:55:55.809516,602,984,844, +0,2014-01-14 05:59:15.654475,641,374,887, +19,2014-01-21 02:14:00.497171,980,144,202, +19,2014-01-10 22:40:02.566435,901,420,538, +19,2014-01-10 21:50:59.663469,783,379,898, +19,2014-01-15 19:16:38.132768,942,326,975, +19,2014-01-18 10:04:03.382496,781,75,878, +55,2014-01-20 05:37:13.515177,122,319,741, +55,2014-01-14 00:18:07.932897,259,233,65, +19,2014-01-16 09:14:53.62163,800,638,748, +64,2014-01-11 22:16:42.535805,460,594,227, +55,2014-01-13 23:23:25.307623,678,689,257, +19,2014-01-11 05:12:11.152857,877,72,997, +64,2014-01-18 13:46:01.010422,234,317,523, +64,2014-01-19 08:07:36.041847,918,174,575, +0,2014-01-12 05:19:46.153906,271,894,329, +19,2014-01-14 10:26:14.21072,528,299,24, +0,2014-01-12 12:28:54.690316,655,376,766, +55,2014-01-19 01:00:02.814381,644,973,631, +55,2014-01-14 22:26:56.814214,26,980,895, +64,2014-01-20 18:00:56.365828,81,468,948, +55,2014-01-14 04:46:30.236927,234,348,590, +64,2014-01-11 04:06:30.574168,826,40,275, +64,2014-01-16 00:37:56.189873,194,687,12, +55,2014-01-16 10:17:37.986312,189,222,946, +64,2014-01-16 11:28:47.74036,27,563,191, +0,2014-01-14 16:21:07.548922,241,420,642, +19,2014-01-16 03:47:07.792538,69,592,963, +55,2014-01-16 13:15:18.973799,504,8,408, +0,2014-01-20 06:29:50.329761,132,223,550, +64,2014-01-13 17:40:41.337908,232,959,434, +55,2014-01-13 11:11:14.783315,873,838,233, +19,2014-01-13 06:29:05.984236,689,951,41, +19,2014-01-13 13:54:41.835079,754,981,300, +64,2014-01-13 13:51:17.34975,525,662,406, +19,2014-01-13 08:20:05.647705,240,325,70, +55,2014-01-18 13:11:19.968266,42,832,902, +55,2014-01-21 03:55:20.732246,122,881,708, +55,2014-01-12 07:57:19.162882,174,578,135, +55,2014-01-11 07:29:27.901164,137,735,158, +55,2014-01-16 07:10:14.354295,949,699,775, +19,2014-01-13 10:14:01.698686,905,970,732, +0,2014-01-14 10:52:53.208785,104,92,188, +64,2014-01-16 16:22:25.507152,906,65,617, +55,2014-01-21 04:00:02.709527,925,61,846, +19,2014-01-12 13:00:29.250632,929,498,764, +64,2014-01-18 01:42:11.661058,272,805,448, +19,2014-01-14 08:26:16.920247,699,156,499, +64,2014-01-14 05:29:23.940949,396,759,288, +19,2014-01-15 20:42:14.475859,348,347,637, +55,2014-01-18 10:53:13.73446,908,881,447, +55,2014-01-13 17:30:20.306776,862,561,502, +19,2014-01-19 05:28:44.712786,573,185,90, +64,2014-01-18 18:59:44.309047,216,624,163, +64,2014-01-18 22:08:16.497069,229,696,771, +55,2014-01-14 09:46:22.699099,54,551,285, +55,2014-01-14 00:28:32.049407,857,964,303, +0,2014-01-12 08:29:24.045991,402,415,317, +0,2014-01-19 17:33:30.491636,747,410,299, +64,2014-01-19 17:43:51.023206,236,379,389, +55,2014-01-11 08:59:14.375752,809,747,606, +19,2014-01-12 05:14:11.829545,73,987,31, +64,2014-01-11 22:55:05.806521,256,281,793, +55,2014-01-13 19:28:20.359989,221,872,417, +19,2014-01-14 23:08:53.665043,563,678,565, +0,2014-01-14 16:46:23.156271,7,16,890, +64,2014-01-16 07:48:26.007694,650,19,333, +0,2014-01-12 06:20:13.633308,575,38,123, +64,2014-01-14 14:41:43.888936,53,384,111, +55,2014-01-17 19:45:45.170576,19,459,495, +55,2014-01-12 17:49:41.534472,579,473,103, +19,2014-01-20 01:51:58.243232,860,621,757, +55,2014-01-20 09:59:46.869263,815,31,617, +55,2014-01-16 08:42:34.743257,590,363,433, +55,2014-01-15 12:14:23.750384,490,958,144, +55,2014-01-20 07:59:49.57879,38,96,488, +64,2014-01-18 01:43:03.994309,302,22,188, +64,2014-01-12 07:56:35.411862,189,672,163, +19,2014-01-13 10:26:06.499036,525,745,364, +64,2014-01-11 01:12:27.935258,18,645,661, +55,2014-01-17 08:38:49.887721,696,715,656, +0,2014-01-21 01:19:20.233917,758,331,735, +19,2014-01-13 22:42:48.242453,170,380,789, +55,2014-01-15 08:07:34.600508,605,933,540, +55,2014-01-18 14:19:04.542964,644,592,765, +55,2014-01-11 14:51:04.739522,506,717,302, +55,2014-01-18 21:53:57.300026,266,810,836, +64,2014-01-11 08:47:36.592371,785,773,995, +64,2014-01-13 03:20:28.785513,774,705,618, +64,2014-01-17 09:27:27.791662,169,321,401, +64,2014-01-20 06:31:27.615997,827,897,7, +19,2014-01-13 16:19:43.161265,749,143,104, +0,2014-01-18 18:41:39.621626,611,720,683, +0,2014-01-10 23:26:33.422518,48,539,436, +64,2014-01-16 15:48:03.521253,434,974,151, +55,2014-01-12 11:50:33.286669,32,196,267, +19,2014-01-14 20:12:56.579208,908,207,132, +55,2014-01-11 17:36:29.528947,139,342,259, +19,2014-01-13 22:10:46.919977,406,401,202, +19,2014-01-18 14:54:40.468145,832,370,659, +0,2014-01-18 17:22:14.699523,522,639,666, +64,2014-01-15 20:00:28.454449,927,100,99, +0,2014-01-17 10:46:38.711377,364,252,672, +55,2014-01-17 21:22:01.568785,553,775,554, +19,2014-01-10 22:43:03.197706,802,477,43, +64,2014-01-11 17:01:02.461761,532,681,915, +64,2014-01-16 23:21:51.147995,229,906,840, +0,2014-01-18 04:26:07.192016,388,215,484, +19,2014-01-13 04:57:37.873624,712,298,626, +64,2014-01-19 13:47:57.647031,45,778,689, +55,2014-01-18 09:38:35.127693,193,726,383, +64,2014-01-19 17:36:27.761345,719,233,551, +55,2014-01-19 09:07:17.880948,607,319,794, +64,2014-01-11 02:21:23.370146,374,527,297, +55,2014-01-13 19:44:02.362272,743,667,144, +19,2014-01-16 17:26:22.423912,183,904,11, +19,2014-01-11 21:12:28.109669,189,70,799, +19,2014-01-11 11:37:59.662298,967,170,852, +19,2014-01-17 06:13:59.016702,489,831,383, +19,2014-01-14 04:32:56.895181,44,522,649, +64,2014-01-18 01:05:27.45396,93,740,744, +55,2014-01-16 06:45:26.632699,891,487,567, +64,2014-01-17 00:52:40.056447,201,602,186, +19,2014-01-15 13:47:07.075586,828,961,492, +19,2014-01-16 10:12:00.055218,128,971,239, +64,2014-01-12 10:40:43.5777,509,623,153, +64,2014-01-17 05:37:40.362255,387,173,613, +19,2014-01-20 10:24:56.634426,68,620,640, +19,2014-01-13 08:17:13.106648,269,65,564, +19,2014-01-20 07:48:27.282232,828,292,615, +64,2014-01-17 19:19:37.102571,947,810,141, +64,2014-01-21 05:39:27.806171,869,438,937, +55,2014-01-14 21:48:55.736681,354,499,666, +55,2014-01-14 00:06:15.813948,153,311,793, +55,2014-01-17 21:01:29.374956,598,666,976, +55,2014-01-15 00:31:58.934807,276,240,780, +64,2014-01-14 21:07:18.276128,710,539,878, +0,2014-01-13 14:23:20.522951,784,763,438, +19,2014-01-11 22:58:06.126823,346,108,314, +19,2014-01-17 06:04:56.149751,297,436,473, +0,2014-01-11 22:11:18.170401,489,687,87, +19,2014-01-19 12:36:41.254516,149,702,383, +0,2014-01-15 17:41:23.911516,710,552,595, +19,2014-01-20 11:18:36.051349,126,523,449, +19,2014-01-19 18:58:04.624661,225,52,614, +55,2014-01-18 17:25:26.273787,305,267,585, +55,2014-01-15 22:44:58.47568,186,980,457, +64,2014-01-20 20:10:32.73433,46,972,935, +19,2014-01-19 09:03:25.936085,425,501,682, +0,2014-01-11 22:58:57.492383,965,720,209, +0,2014-01-13 18:43:29.629511,680,993,839, +19,2014-01-16 04:08:53.390046,102,493,342, +64,2014-01-17 09:44:24.125082,408,730,551, +19,2014-01-19 23:36:09.685958,414,422,799, +0,2014-01-20 21:56:00.466051,388,691,75, +64,2014-01-12 13:56:24.1803,555,946,724, +0,2014-01-11 04:16:53.263658,256,529,218, +0,2014-01-16 21:33:40.828306,697,356,863, +19,2014-01-11 18:21:20.815144,768,911,0, +55,2014-01-13 16:34:06.370306,181,563,19, +55,2014-01-15 23:22:08.110958,998,449,478, +64,2014-01-18 17:40:57.917715,710,782,525, +64,2014-01-13 16:13:34.176476,158,397,217, +64,2014-01-20 01:11:03.84764,171,537,461, +55,2014-01-11 11:47:13.732081,954,658,647, +0,2014-01-20 17:15:03.551852,112,26,800, +0,2014-01-13 19:43:02.782447,253,446,671, +19,2014-01-15 12:54:32.008209,814,904,955, +64,2014-01-13 01:38:24.074802,156,853,774, +0,2014-01-14 22:41:08.909689,69,390,705, +55,2014-01-11 12:59:28.157961,42,106,910, +64,2014-01-14 03:49:42.245203,895,11,793, +64,2014-01-13 05:17:50.164205,657,915,651, +55,2014-01-16 10:40:52.069477,475,294,885, +64,2014-01-13 09:08:18.296972,148,374,824, +64,2014-01-11 18:15:54.789285,858,973,195, +19,2014-01-13 22:06:18.343264,701,377,508, +55,2014-01-18 11:53:16.772652,311,488,953, +19,2014-01-11 08:26:27.523616,616,202,427, +64,2014-01-12 01:09:44.279349,796,819,600, +55,2014-01-19 14:52:14.265035,75,403,462, +64,2014-01-14 07:09:57.153547,968,576,996, +55,2014-01-17 09:18:37.669815,632,619,792, +0,2014-01-15 18:36:38.390118,940,798,105, +19,2014-01-13 00:46:06.839505,580,869,675, +64,2014-01-17 01:14:38.135866,185,447,537, +55,2014-01-17 12:33:02.570418,415,649,183, +64,2014-01-13 09:03:00.103583,461,265,48, +19,2014-01-12 16:48:18.964173,361,152,483, +64,2014-01-18 10:54:23.385561,158,684,829, +0,2014-01-16 05:37:06.473889,128,402,110, +19,2014-01-17 20:10:27.075131,159,871,657, +0,2014-01-15 22:35:21.303696,536,198,16, +55,2014-01-19 01:50:40.650784,202,303,556, +55,2014-01-16 15:21:30.92319,722,703,596, +0,2014-01-16 14:22:35.035777,808,746,217, +55,2014-01-18 13:05:44.202635,442,447,546, +0,2014-01-19 15:04:33.705636,642,256,691, +55,2014-01-10 21:17:07.043986,941,281,500, +19,2014-01-20 18:44:08.277439,397,555,327, +19,2014-01-13 07:45:42.615326,317,675,593, +19,2014-01-11 14:16:35.201948,831,486,57, +64,2014-01-13 16:33:50.52306,998,975,113, +55,2014-01-15 17:03:32.77995,640,120,448, +64,2014-01-17 04:57:27.271844,292,460,20, +19,2014-01-16 05:42:08.820032,75,876,846, +64,2014-01-16 15:19:27.569235,61,753,96, +19,2014-01-20 07:03:45.615107,177,995,504, +55,2014-01-13 11:35:25.592685,894,58,206, +55,2014-01-17 03:45:55.092851,56,33,600, +19,2014-01-11 02:13:29.894876,976,190,981, +64,2014-01-11 20:27:39.857721,18,875,338, +55,2014-01-20 14:55:52.246399,272,812,655, +55,2014-01-17 15:32:07.564691,91,666,382, +55,2014-01-16 19:04:18.247839,371,843,894, +55,2014-01-12 09:41:59.086323,520,306,901, +64,2014-01-13 10:46:45.700556,960,947,878, +64,2014-01-13 01:37:20.818255,75,465,88, +64,2014-01-14 22:44:59.189906,235,612,419, +55,2014-01-15 07:35:04.664729,851,412,256, +55,2014-01-20 16:31:44.204236,43,333,340, +19,2014-01-20 08:22:05.663795,588,865,236, +64,2014-01-11 21:45:31.740279,210,71,816, +55,2014-01-15 09:07:05.507931,406,282,989, +64,2014-01-18 04:12:46.314579,687,251,441, +19,2014-01-17 17:07:02.663469,34,632,416, +55,2014-01-21 03:29:40.543708,317,860,835, +55,2014-01-15 11:18:30.517215,717,726,611, +0,2014-01-16 02:11:36.369105,945,485,18, +64,2014-01-21 04:46:47.587695,404,367,765, +64,2014-01-15 00:02:38.795072,75,995,641, +64,2014-01-18 13:57:18.98485,620,488,562, +55,2014-01-11 13:03:22.789643,762,846,759, +64,2014-01-17 20:36:29.318132,844,130,853, +64,2014-01-13 01:00:51.7648,523,487,705, +19,2014-01-17 22:00:50.061486,329,518,670, +19,2014-01-12 20:18:38.138165,185,711,583, +64,2014-01-18 20:20:19.334035,883,668,202, +19,2014-01-16 23:04:35.677014,454,504,430, +55,2014-01-15 11:54:03.73085,827,701,44, +55,2014-01-14 18:06:14.426886,753,215,479, +0,2014-01-17 05:18:05.57189,144,901,416, +19,2014-01-16 12:21:43.588571,838,976,642, +55,2014-01-14 03:02:06.673704,558,83,297, +19,2014-01-13 14:50:13.13658,536,232,732, +19,2014-01-12 01:26:01.836408,217,682,640, +64,2014-01-15 16:44:05.760027,719,647,121, +64,2014-01-16 05:36:58.837136,869,579,700, +55,2014-01-14 07:03:22.654665,205,213,913, +64,2014-01-19 19:29:04.949933,867,616,28, +19,2014-01-20 17:12:03.501866,225,183,843, +0,2014-01-13 17:35:06.8589,265,533,406, +37,2014-01-18 21:51:10.613728,182,898,190, +74,2014-01-11 08:57:35.242145,473,810,622, +74,2014-01-18 06:42:12.366831,308,125,679, +65,2014-01-15 20:03:56.928726,938,426,886, +37,2014-01-18 06:04:37.905614,587,404,638, +74,2014-01-18 04:11:52.91054,913,100,304, +65,2014-01-20 11:22:27.445941,537,776,195, +37,2014-01-13 02:16:14.275139,88,712,869, +65,2014-01-18 02:58:40.498235,841,95,259, +40,2014-01-14 05:25:06.241012,488,151,445, +65,2014-01-20 20:13:33.259989,90,121,370, +40,2014-01-18 20:02:03.288297,483,41,195, +65,2014-01-10 20:01:35.559145,514,415,585, +37,2014-01-12 15:14:25.024789,148,176,522, +40,2014-01-15 12:02:53.349784,872,1000,95, +40,2014-01-12 20:20:13.697309,747,364,511, +74,2014-01-20 15:34:44.358824,584,979,425, +45,2014-01-11 05:07:29.026797,262,381,443, +74,2014-01-17 12:14:17.428159,874,916,681, +45,2014-01-14 03:40:58.785711,80,647,372, +74,2014-01-17 14:25:34.598686,332,492,215, +40,2014-01-12 18:36:01.01673,817,709,434, +40,2014-01-17 10:43:05.459416,835,344,722, +45,2014-01-20 09:15:47.735267,701,334,935, +74,2014-01-14 00:02:02.853139,206,603,323, +65,2014-01-11 21:27:11.219443,923,492,244, +40,2014-01-15 08:52:46.572404,940,955,454, +37,2014-01-17 11:05:25.508222,514,445,713, +40,2014-01-20 20:56:16.169376,1,576,803, +74,2014-01-14 20:04:50.074689,377,602,971, +74,2014-01-20 08:40:32.367123,914,433,959, +40,2014-01-18 12:47:26.783523,43,67,270, +65,2014-01-15 09:02:25.316834,971,654,477, +37,2014-01-17 09:22:44.734373,833,733,829, +40,2014-01-13 02:51:23.712249,108,138,740, +40,2014-01-12 09:07:03.222867,276,751,304, +65,2014-01-14 07:34:37.644914,562,394,199, +40,2014-01-12 08:13:51.158189,363,136,25, +45,2014-01-14 15:23:17.498005,167,717,393, +40,2014-01-11 04:33:18.143568,313,943,852, +65,2014-01-15 17:38:57.39962,406,273,525, +37,2014-01-14 05:36:50.757995,731,904,776, +37,2014-01-19 04:35:21.431865,528,913,916, +74,2014-01-15 17:40:32.958765,934,877,564, +37,2014-01-16 00:51:15.782783,261,595,345, +40,2014-01-13 10:38:14.781649,987,779,946, +74,2014-01-17 18:00:46.656493,68,29,802, +45,2014-01-15 10:26:00.141608,911,891,262, +40,2014-01-13 19:45:43.808866,36,734,793, +40,2014-01-14 00:15:04.084652,495,270,67, +40,2014-01-18 18:06:58.92732,937,641,236, +37,2014-01-20 14:11:18.407552,770,976,490, +37,2014-01-15 22:51:05.101802,417,65,894, +45,2014-01-14 22:50:04.387154,510,474,528, +40,2014-01-19 17:27:06.143239,784,176,605, +74,2014-01-19 02:53:07.954941,949,757,782, +65,2014-01-16 00:17:15.606597,620,568,174, +40,2014-01-13 20:19:52.715643,871,599,79, +45,2014-01-15 07:58:33.463163,79,310,980, +37,2014-01-15 15:13:31.776392,717,699,925, +74,2014-01-17 20:24:42.790331,228,418,396, +40,2014-01-14 10:39:05.830704,30,398,806, +45,2014-01-12 22:00:58.559915,127,385,8, +65,2014-01-11 23:27:08.107584,103,895,461, +65,2014-01-21 00:01:50.565078,987,707,440, +45,2014-01-15 04:52:22.272164,2,150,478, +37,2014-01-13 12:34:11.330451,32,102,163, +45,2014-01-14 01:36:28.209992,572,831,202, +40,2014-01-16 17:06:13.430352,241,49,927, +65,2014-01-17 07:57:28.828457,138,380,577, +37,2014-01-14 10:09:46.353558,856,805,446, +40,2014-01-11 04:45:10.829972,678,173,343, +74,2014-01-20 17:34:19.586452,701,753,792, +45,2014-01-12 08:45:07.785424,588,606,969, +40,2014-01-16 02:25:43.789155,759,62,6, +40,2014-01-15 12:25:35.369235,112,637,528, +45,2014-01-14 23:23:22.567492,323,92,546, +65,2014-01-12 14:26:30.445648,807,146,284, +45,2014-01-20 02:51:35.510844,913,784,933, +40,2014-01-17 23:09:06.376356,243,411,398, +65,2014-01-15 18:41:34.5303,424,716,927, +65,2014-01-17 14:58:34.438163,343,393,771, +40,2014-01-17 07:20:24.783908,389,743,52, +45,2014-01-20 21:32:39.632102,169,57,241, +40,2014-01-11 07:48:38.825317,523,614,941, +74,2014-01-15 18:47:30.927147,145,294,200, +45,2014-01-18 18:25:47.587461,149,238,140, +74,2014-01-16 12:05:54.432333,135,543,662, +74,2014-01-18 19:07:23.643208,823,919,423, +74,2014-01-12 20:24:21.050625,492,928,955, +37,2014-01-10 21:19:26.208725,769,40,423, +45,2014-01-15 09:32:06.43354,455,707,548, +45,2014-01-16 11:03:26.881329,302,391,254, +40,2014-01-12 23:20:24.76864,660,21,276, +65,2014-01-16 12:59:14.541124,391,187,442, +45,2014-01-16 05:05:17.446407,871,785,292, +40,2014-01-17 08:12:47.040804,173,778,77, +74,2014-01-19 05:33:25.871575,233,615,990, +45,2014-01-19 10:41:45.656818,68,405,338, +45,2014-01-12 19:19:00.471156,978,36,456, +37,2014-01-15 07:30:54.700032,327,790,149, +65,2014-01-12 14:51:32.010376,504,882,606, +74,2014-01-13 04:04:11.301547,35,297,991, +40,2014-01-14 19:05:14.286483,794,526,122, +45,2014-01-14 03:36:39.796219,206,523,964, +65,2014-01-18 10:29:55.090702,140,215,116, +45,2014-01-19 11:30:49.655719,19,616,133, +65,2014-01-18 07:00:02.36371,369,489,168, +65,2014-01-20 04:56:25.536351,340,441,118, +65,2014-01-18 08:22:25.166562,576,905,145, +37,2014-01-15 00:09:08.740067,222,66,794, +40,2014-01-14 17:38:00.066651,683,574,399, +74,2014-01-14 17:20:59.605144,675,603,880, +40,2014-01-11 01:29:33.523975,732,905,895, +37,2014-01-14 09:10:39.699172,456,82,797, +65,2014-01-15 05:09:38.43046,343,625,211, +45,2014-01-16 00:17:04.451542,247,167,646, +45,2014-01-11 21:36:27.286634,278,137,803, +74,2014-01-20 21:15:32.862794,479,346,696, +74,2014-01-13 13:24:28.094749,657,248,233, +37,2014-01-13 22:00:48.337258,389,761,702, +37,2014-01-20 22:34:59.071519,269,60,673, +74,2014-01-18 02:56:34.528289,771,337,369, +45,2014-01-19 13:04:15.219007,683,891,930, +45,2014-01-12 15:55:23.840158,554,754,960, +40,2014-01-13 09:55:49.069831,80,65,371, +45,2014-01-14 12:09:32.665415,905,260,233, +65,2014-01-19 04:08:10.880962,27,400,151, +74,2014-01-11 09:29:14.941406,907,527,511, +40,2014-01-12 16:51:18.322232,354,921,104, +45,2014-01-21 03:27:11.352537,625,546,736, +37,2014-01-15 21:00:09.641857,512,95,982, +45,2014-01-14 11:42:50.333027,298,89,479, +45,2014-01-13 01:31:22.654084,701,554,628, +65,2014-01-19 20:05:23.928341,125,258,233, +37,2014-01-17 19:19:30.129246,843,97,438, +65,2014-01-20 16:01:17.744787,572,547,788, +37,2014-01-18 01:36:13.584479,924,722,865, +37,2014-01-14 20:19:32.492956,691,789,21, +37,2014-01-19 14:57:43.281138,813,503,744, +45,2014-01-15 03:58:38.751041,919,461,283, +74,2014-01-19 00:28:41.233023,487,482,552, +40,2014-01-13 02:35:43.347789,979,398,608, +37,2014-01-19 01:19:38.356184,124,507,107, +45,2014-01-19 05:58:14.756998,35,88,790, +45,2014-01-16 15:46:23.046961,761,906,611, +65,2014-01-13 00:29:16.787065,38,875,317, +37,2014-01-14 00:15:19.20854,633,305,604, +65,2014-01-17 17:22:50.333595,601,767,708, +40,2014-01-12 15:44:49.649858,174,353,115, +65,2014-01-16 17:39:47.303289,905,473,193, +37,2014-01-20 19:23:38.671273,104,658,701, +37,2014-01-12 08:19:48.721796,652,633,415, +45,2014-01-13 14:36:21.831997,209,448,311, +45,2014-01-19 02:27:53.89028,735,541,167, +40,2014-01-14 04:15:12.561955,864,601,360, +37,2014-01-16 04:32:10.901828,275,238,887, +74,2014-01-12 08:37:26.555695,731,134,163, +65,2014-01-12 02:23:23.443336,425,738,671, +37,2014-01-16 18:01:25.843234,83,100,12, +65,2014-01-14 05:28:44.878346,127,382,213, +40,2014-01-11 23:50:34.795874,442,296,944, +37,2014-01-11 09:01:35.485092,127,383,605, +37,2014-01-17 21:11:35.211374,106,482,95, +45,2014-01-14 05:21:57.449958,177,346,822, +40,2014-01-20 09:06:59.413852,19,448,508, +37,2014-01-14 10:31:05.34062,822,692,661, +65,2014-01-13 15:23:15.194746,552,797,338, +37,2014-01-17 04:43:12.99833,9,698,859, +65,2014-01-18 10:50:37.833576,40,486,516, +45,2014-01-12 00:20:58.475883,5,573,957, +40,2014-01-11 02:41:51.749372,682,220,416, +37,2014-01-16 05:19:19.066599,883,894,752, +40,2014-01-14 06:56:41.823673,853,145,906, +45,2014-01-19 08:01:30.105975,54,96,339, +65,2014-01-14 05:17:33.823597,976,241,651, +37,2014-01-20 02:43:04.871053,246,470,12, +37,2014-01-11 02:30:46.89304,951,166,335, +37,2014-01-17 09:32:53.032555,325,28,512, +74,2014-01-16 14:05:55.204648,928,806,88, +45,2014-01-12 22:15:36.542898,137,265,311, +74,2014-01-12 21:12:40.335845,853,405,741, +74,2014-01-16 03:29:33.875921,712,689,860, +40,2014-01-14 10:35:25.264695,675,740,403, +40,2014-01-15 15:49:02.167841,896,259,134, +45,2014-01-13 23:57:27.766202,657,767,846, +40,2014-01-17 18:50:37.827069,67,157,902, +40,2014-01-21 00:21:13.069669,727,504,839, +45,2014-01-15 12:34:54.322316,299,419,568, +37,2014-01-19 01:14:01.270405,661,993,802, +74,2014-01-16 12:22:38.913323,66,934,176, +37,2014-01-18 22:03:39.200661,433,408,679, +45,2014-01-20 05:04:36.066279,45,737,650, +65,2014-01-17 01:24:14.398415,730,406,674, +40,2014-01-15 13:15:14.412035,52,778,224, +74,2014-01-13 04:26:33.516238,268,385,966, +40,2014-01-16 04:31:13.812267,461,48,623, +37,2014-01-19 03:46:19.752655,383,623,871, +40,2014-01-15 23:49:48.710983,996,194,878, +65,2014-01-12 03:14:26.810597,11,216,224, +45,2014-01-16 08:36:57.586231,246,699,173, +74,2014-01-17 04:10:47.186867,645,897,448, +40,2014-01-12 09:56:18.560388,729,820,196, +37,2014-01-11 07:56:16.652831,825,821,431, +65,2014-01-20 15:07:29.01054,167,693,596, +37,2014-01-20 21:57:48.666364,249,247,912, +37,2014-01-14 17:13:50.476428,857,162,605, +37,2014-01-19 11:50:33.881593,49,821,427, +65,2014-01-21 04:28:35.559403,542,307,794, +37,2014-01-10 20:46:43.508984,399,418,20, +74,2014-01-14 19:56:29.08666,663,643,501, +45,2014-01-12 20:44:12.102302,593,711,376, +74,2014-01-12 21:59:23.845248,624,1,586, +74,2014-01-20 03:26:02.962581,633,736,18, +45,2014-01-16 11:19:37.367416,939,810,656, +40,2014-01-17 17:48:26.013089,945,579,988, +37,2014-01-12 21:23:30.729202,571,438,392, +65,2014-01-13 00:10:15.194483,318,941,646, +65,2014-01-17 12:09:39.083176,918,669,432, +65,2014-01-17 13:58:25.051518,313,148,983, +74,2014-01-21 05:24:16.464889,443,76,793, +65,2014-01-12 18:32:17.996499,198,229,812, +45,2014-01-15 06:02:04.252179,672,923,407, +65,2014-01-20 04:28:52.531168,47,546,188, +74,2014-01-18 23:56:32.394914,566,379,840, +65,2014-01-19 23:17:18.664215,673,289,727, +37,2014-01-12 02:55:26.047405,161,87,802, +40,2014-01-13 22:27:46.207599,290,290,167, +45,2014-01-17 21:03:38.41687,74,571,772, +45,2014-01-17 06:45:14.75839,877,464,865, +37,2014-01-15 05:42:13.018196,399,135,381, +37,2014-01-12 23:40:36.003102,338,521,349, +65,2014-01-13 04:56:01.945256,509,322,414, +65,2014-01-16 19:38:31.578583,545,764,826, +65,2014-01-13 11:36:52.655932,106,974,386, +45,2014-01-12 14:03:30.955796,416,147,54, +74,2014-01-16 11:36:20.244947,691,283,944, +74,2014-01-17 08:50:43.13236,194,7,942, +74,2014-01-21 05:54:04.837808,246,365,502, +74,2014-01-16 10:04:55.80435,56,690,479, +40,2014-01-17 09:37:26.641764,787,944,531, +37,2014-01-14 19:50:33.924468,98,431,85, +74,2014-01-18 10:49:07.907071,470,194,675, +65,2014-01-19 11:36:50.487011,748,226,195, +40,2014-01-13 17:16:36.887049,780,306,927, +37,2014-01-13 16:08:45.274486,14,106,155, +45,2014-01-15 23:25:16.500099,42,416,42, +74,2014-01-15 18:40:07.616251,704,257,368, +45,2014-01-15 20:19:00.46897,202,111,451, +40,2014-01-12 05:34:55.583276,307,963,872, +65,2014-01-12 02:38:32.667769,88,630,445, +74,2014-01-15 19:43:16.933858,837,891,430, +37,2014-01-14 04:07:13.579775,886,460,651, +45,2014-01-16 12:40:36.919948,139,217,302, +37,2014-01-14 18:12:09.465027,493,899,865, +37,2014-01-11 22:03:45.975107,199,64,92, +45,2014-01-15 05:57:55.584162,624,581,124, +37,2014-01-16 01:07:35.512432,48,378,956, +65,2014-01-15 00:31:32.182706,885,493,863, +37,2014-01-11 21:01:34.001032,889,935,197, +40,2014-01-12 01:52:50.270822,409,811,868, +74,2014-01-19 10:13:45.200902,280,775,577, +37,2014-01-14 00:42:10.004134,669,368,106, +74,2014-01-14 10:48:52.216078,784,413,896, +40,2014-01-14 23:52:16.779905,232,277,25, +45,2014-01-16 16:19:02.660067,445,957,322, +37,2014-01-16 04:52:23.171874,233,17,37, +65,2014-01-20 15:28:37.024852,933,489,257, +37,2014-01-12 19:09:45.792846,105,503,866, +45,2014-01-16 04:46:28.009681,724,939,565, +65,2014-01-15 19:33:32.829621,860,592,14, +65,2014-01-19 08:47:12.43461,792,770,428, +65,2014-01-20 04:37:01.934149,688,732,724, +45,2014-01-13 00:22:40.736692,370,486,95, +40,2014-01-17 14:24:02.921621,991,250,907, +45,2014-01-12 15:53:38.821618,932,910,423, +74,2014-01-15 20:31:26.011178,210,473,580, +74,2014-01-12 07:49:19.421721,749,325,556, +65,2014-01-17 14:33:46.437869,60,109,754, +65,2014-01-20 20:50:26.480148,847,542,970, +40,2014-01-13 17:24:15.005416,765,986,814, +45,2014-01-18 21:12:19.106056,849,430,459, +40,2014-01-15 10:33:43.414006,643,397,70, +37,2014-01-17 01:31:28.58519,130,620,788, +65,2014-01-14 03:52:56.026004,486,646,822, +74,2014-01-19 08:45:52.879033,654,706,935, +74,2014-01-18 03:35:14.560297,855,93,431, +40,2014-01-18 13:50:51.610585,946,318,311, +74,2014-01-14 03:53:28.391466,666,763,64, +65,2014-01-11 22:06:46.743003,578,614,350, +74,2014-01-19 14:52:25.611618,925,119,128, +45,2014-01-15 09:46:18.662287,248,549,716, +74,2014-01-20 12:20:31.944324,132,196,649, +65,2014-01-12 09:34:35.616171,540,581,809, +65,2014-01-19 00:35:10.878365,290,586,456, +40,2014-01-14 06:12:48.724228,737,753,575, +40,2014-01-18 05:53:38.276237,937,133,261, +45,2014-01-13 23:27:34.050239,760,864,265, +74,2014-01-13 15:41:25.74908,721,85,387, +45,2014-01-20 05:03:24.069083,254,520,696, +65,2014-01-19 08:14:02.06034,637,198,805, +65,2014-01-18 15:14:58.578701,562,396,453, +40,2014-01-18 07:50:36.503694,821,48,455, +37,2014-01-18 06:51:03.994489,996,41,483, +37,2014-01-20 19:37:39.315393,54,759,229, +40,2014-01-14 16:14:39.425315,572,56,702, +37,2014-01-20 02:44:42.816106,236,226,159, +74,2014-01-15 10:09:05.32657,515,568,259, +40,2014-01-16 04:03:58.847454,300,998,350, +37,2014-01-16 11:18:29.254394,797,767,394, +45,2014-01-15 00:59:31.806718,254,268,233, +45,2014-01-19 01:28:13.852869,756,824,33, +37,2014-01-14 02:30:48.36045,971,433,435, +37,2014-01-19 15:33:15.220724,382,652,196, +65,2014-01-14 20:59:42.438058,127,221,874, +40,2014-01-17 10:23:44.386453,330,458,650, +37,2014-01-17 18:19:08.099757,955,627,519, +37,2014-01-11 18:34:56.998775,474,21,445, +40,2014-01-14 18:14:35.997039,66,843,985, +45,2014-01-21 02:12:36.491223,484,673,500, +37,2014-01-12 20:41:43.741777,950,591,958, +40,2014-01-13 03:07:01.609076,512,518,850, +37,2014-01-15 05:58:55.15351,956,138,245, +40,2014-01-12 03:02:15.686101,304,990,733, +65,2014-01-14 16:41:37.225247,789,330,274, +65,2014-01-13 00:34:06.031875,331,316,71, +45,2014-01-15 13:15:04.410329,126,649,425, +37,2014-01-11 16:35:15.501484,192,200,4, +74,2014-01-16 04:01:40.082532,471,80,930, +37,2014-01-18 08:56:30.159828,67,173,339, +74,2014-01-21 01:38:39.570986,9,334,642, +65,2014-01-14 06:15:42.142872,384,292,783, +40,2014-01-15 18:11:28.738529,726,314,361, +37,2014-01-18 03:29:16.07468,62,585,786, +74,2014-01-11 07:06:46.137359,821,88,465, +45,2014-01-15 07:49:08.054341,113,856,953, +65,2014-01-11 13:43:55.500414,924,712,328, +65,2014-01-20 13:51:28.953885,575,182,690, +65,2014-01-19 21:58:13.38091,206,475,621, +40,2014-01-16 21:47:54.347868,948,878,963, +74,2014-01-15 19:09:58.208279,195,928,372, +40,2014-01-13 16:57:45.188048,80,699,137, +74,2014-01-14 17:16:08.200736,861,644,461, +74,2014-01-19 01:40:46.568728,616,392,145, +45,2014-01-12 02:31:00.408772,138,856,692, +65,2014-01-18 18:15:50.638795,879,871,205, +40,2014-01-15 06:04:30.955182,508,338,477, +74,2014-01-19 00:50:08.508948,287,429,45, +74,2014-01-19 16:50:47.63757,998,409,795, +40,2014-01-19 04:19:06.952641,907,743,30, +65,2014-01-18 21:02:45.000171,748,328,394, +37,2014-01-11 07:32:31.379767,125,968,857, +45,2014-01-11 01:26:08.561716,621,926,943, +40,2014-01-12 21:01:40.1541,337,603,853, +74,2014-01-12 14:34:47.065868,681,476,513, +74,2014-01-14 22:07:45.786963,330,163,690, +40,2014-01-15 01:35:46.185975,645,221,872, +40,2014-01-17 07:49:51.476616,473,855,401, +37,2014-01-15 18:43:01.288447,673,802,954, +74,2014-01-20 09:37:26.268507,67,560,142, +37,2014-01-14 10:46:21.636445,18,44,741, +65,2014-01-15 14:21:40.859433,512,110,654, +74,2014-01-13 09:53:08.411379,472,785,745, +45,2014-01-19 08:57:50.374974,170,101,633, +37,2014-01-12 11:50:56.934532,674,20,999, +74,2014-01-13 20:59:54.549158,467,241,456, +74,2014-01-13 10:46:58.429315,40,683,750, +37,2014-01-13 05:34:52.434946,763,480,111, +40,2014-01-13 04:51:23.503043,876,153,316, +65,2014-01-12 02:45:11.810645,42,719,924, +74,2014-01-19 07:22:46.782814,184,802,42, +37,2014-01-18 04:01:21.711322,198,963,176, +65,2014-01-14 23:42:56.998693,479,903,392, +45,2014-01-12 18:38:54.98355,91,832,957, +40,2014-01-15 23:42:08.28005,961,413,74, +74,2014-01-16 06:13:57.407465,950,78,903, +74,2014-01-20 16:54:45.622345,618,420,540, +40,2014-01-20 09:46:39.235232,660,400,885, +45,2014-01-14 01:04:05.916412,359,260,158, +74,2014-01-19 03:45:33.260334,578,392,708, +37,2014-01-18 08:05:46.187873,351,83,816, +74,2014-01-11 16:06:50.917003,499,530,913, +65,2014-01-19 15:18:04.6401,793,131,495, +74,2014-01-18 13:31:54.749589,518,379,358, +45,2014-01-13 17:08:31.071103,128,979,282, +45,2014-01-10 23:52:51.705968,838,294,39, +37,2014-01-12 05:39:40.536551,520,375,343, +37,2014-01-17 22:44:17.257078,852,985,852, +37,2014-01-17 11:42:43.182583,540,970,51, +40,2014-01-17 04:22:41.825417,643,698,703, +74,2014-01-17 02:21:43.526005,659,419,598, +40,2014-01-21 02:29:04.819028,719,132,388, +40,2014-01-11 12:44:22.68485,282,159,66, +65,2014-01-19 16:14:51.937383,724,497,468, +40,2014-01-19 05:26:55.194421,825,402,668, +65,2014-01-13 04:35:19.619382,248,35,812, +74,2014-01-12 07:14:46.486542,861,473,506, +37,2014-01-11 10:13:53.623735,29,417,964, +37,2014-01-15 14:10:12.054328,729,209,185, +45,2014-01-14 16:06:09.989584,452,324,46, +40,2014-01-12 16:59:05.43438,457,205,899, +45,2014-01-13 15:32:58.837141,569,291,640, +40,2014-01-11 14:07:31.700906,513,426,876, +37,2014-01-16 20:42:02.433073,171,440,856, +40,2014-01-15 14:11:53.820691,144,771,664, +45,2014-01-16 17:49:39.980956,837,220,155, +45,2014-01-11 20:55:59.840956,329,490,336, +40,2014-01-15 01:06:39.443454,370,493,391, +37,2014-01-15 21:36:19.216608,392,198,504, +40,2014-01-15 02:00:05.757369,176,934,558, +65,2014-01-12 22:52:12.703789,771,432,711, +45,2014-01-12 23:42:05.404481,541,855,150, +74,2014-01-15 22:06:56.674371,399,412,519, +40,2014-01-11 08:10:17.343889,4,518,614, +74,2014-01-20 17:14:00.154489,531,503,901, +74,2014-01-18 19:15:27.745474,97,367,121, +37,2014-01-11 12:03:09.049856,659,205,361, +37,2014-01-11 16:53:40.691041,788,481,755, +74,2014-01-15 11:59:45.002972,745,305,692, +74,2014-01-18 03:45:52.232859,270,772,111, +37,2014-01-18 01:16:22.516457,451,817,215, +37,2014-01-11 08:21:28.528976,2,595,276, +40,2014-01-18 00:14:57.051886,784,754,30, +40,2014-01-18 18:00:45.201726,161,401,533, +37,2014-01-20 04:36:20.466359,71,26,275, +45,2014-01-15 23:41:52.246307,837,586,784, +37,2014-01-21 02:36:04.821108,936,389,416, +37,2014-01-11 05:51:06.953321,898,958,243, +40,2014-01-16 13:55:45.870462,423,839,515, +45,2014-01-15 10:46:16.875855,451,46,16, +74,2014-01-15 01:57:16.942905,501,573,921, +65,2014-01-18 10:54:51.304843,466,496,999, +65,2014-01-18 06:19:15.712997,320,135,484, +45,2014-01-15 20:04:48.64423,902,831,466, +37,2014-01-14 01:36:53.738334,541,390,255, +45,2014-01-12 14:31:09.534106,237,317,676, +37,2014-01-11 07:54:28.625186,600,49,587, +45,2014-01-15 02:32:53.579291,853,865,842, +45,2014-01-16 19:37:48.97756,684,588,869, +40,2014-01-16 09:30:47.841795,826,204,222, +37,2014-01-19 08:32:59.336659,490,328,418, +37,2014-01-18 22:30:01.681349,549,474,103, +40,2014-01-18 13:12:53.246695,268,670,593, +65,2014-01-14 00:39:56.011449,781,564,912, +65,2014-01-19 10:40:19.025239,688,918,382, +74,2014-01-18 00:26:53.401183,285,545,942, +37,2014-01-11 13:55:23.756923,646,837,331, +65,2014-01-20 02:43:28.075095,174,651,316, +37,2014-01-18 21:20:34.092223,828,96,208, +65,2014-01-16 05:55:08.759895,95,200,891, +45,2014-01-17 00:29:20.307953,845,577,109, +45,2014-01-15 16:36:56.6091,60,918,69, +45,2014-01-16 18:16:37.288871,901,855,107, +40,2014-01-13 18:44:17.360259,499,764,363, +45,2014-01-13 04:37:41.810826,578,787,452, +45,2014-01-15 16:52:57.75565,855,489,733, +37,2014-01-18 22:26:09.606567,344,59,608, +65,2014-01-13 01:13:46.631934,433,913,37, +45,2014-01-16 02:44:04.70897,343,753,891, +37,2014-01-14 06:21:55.477029,219,201,853, +37,2014-01-17 16:00:03.50779,263,621,932, +37,2014-01-20 08:41:21.651875,755,926,479, +45,2014-01-11 11:16:46.782292,231,849,801, +40,2014-01-14 16:19:19.221205,775,185,358, +40,2014-01-14 22:46:10.296105,248,896,365, +65,2014-01-14 16:53:40.520626,434,794,197, +45,2014-01-16 10:50:28.755311,529,256,406, +65,2014-01-15 10:40:38.92171,69,99,953, +45,2014-01-18 23:26:34.099917,762,585,878, +40,2014-01-12 00:28:17.732872,428,842,376, +45,2014-01-21 00:11:26.763505,353,781,561, +45,2014-01-17 01:59:33.436575,195,577,708, +45,2014-01-20 02:58:19.414222,560,98,489, +74,2014-01-18 07:24:20.010199,946,138,846, +74,2014-01-20 06:39:29.448024,250,38,842, +37,2014-01-18 07:38:38.439459,224,865,382, +65,2014-01-15 01:51:13.411382,137,9,534, +45,2014-01-21 00:34:53.205367,234,726,320, +74,2014-01-17 04:22:06.514554,197,446,524, +65,2014-01-12 17:11:47.504025,299,684,6, +74,2014-01-16 00:30:01.965261,75,601,914, +40,2014-01-12 22:51:26.822927,753,767,450, +45,2014-01-17 13:48:44.113124,196,531,847, +45,2014-01-11 12:46:39.254551,33,815,493, +65,2014-01-15 21:35:44.183186,286,234,114, +37,2014-01-19 22:26:25.92395,279,170,183, +45,2014-01-16 09:39:37.010201,666,776,737, +65,2014-01-13 14:01:53.789753,278,648,108, +40,2014-01-11 17:40:12.555884,996,774,55, +40,2014-01-11 06:23:41.719171,429,548,9, +65,2014-01-17 00:23:49.267202,443,843,637, +74,2014-01-18 13:40:16.064093,830,865,149, +37,2014-01-20 19:05:03.371046,753,536,572, +65,2014-01-17 15:40:36.049494,738,693,358, +45,2014-01-11 23:59:35.285298,820,684,975, +65,2014-01-14 11:51:13.66757,136,738,71, +45,2014-01-11 02:34:16.57012,821,647,989, +45,2014-01-17 14:50:04.040609,260,853,427, +45,2014-01-19 02:31:52.58928,75,829,652, +65,2014-01-19 06:00:50.670036,215,699,965, +45,2014-01-18 19:18:21.773481,63,284,77, +74,2014-01-18 20:43:19.352785,648,445,719, +45,2014-01-15 02:00:24.106611,84,813,157, +45,2014-01-17 16:16:41.187703,581,899,485, +65,2014-01-15 22:07:39.363404,10,213,690, +40,2014-01-14 02:39:53.555055,5,348,528, +45,2014-01-14 17:55:19.627163,962,468,744, +37,2014-01-20 03:58:52.774786,36,944,390, +45,2014-01-13 21:14:46.760422,936,142,673, +37,2014-01-21 02:17:26.141718,77,313,368, +40,2014-01-11 15:10:40.278811,990,110,986, +37,2014-01-19 01:44:48.725683,311,70,307, +74,2014-01-12 19:08:52.964644,57,455,79, +45,2014-01-18 08:59:24.391935,532,160,377, +37,2014-01-19 18:31:27.980234,557,274,140, +74,2014-01-17 20:44:37.14783,838,287,362, +45,2014-01-17 01:25:50.315885,259,111,843, +40,2014-01-14 22:11:04.990435,958,495,820, +37,2014-01-20 14:46:30.938003,548,261,452, +37,2014-01-17 23:06:02.872189,253,32,51, +74,2014-01-15 08:34:46.709606,746,533,195, +40,2014-01-16 09:10:20.205205,157,573,650, +40,2014-01-15 06:46:18.936281,271,168,631, +91,2014-01-14 21:39:50.081072,790,876,200, +3,2014-01-12 18:50:56.254699,91,648,379, +3,2014-01-16 10:45:54.221579,584,900,178, +3,2014-01-18 13:31:03.748642,257,18,276, +91,2014-01-13 01:25:12.824819,91,522,764, +3,2014-01-12 19:35:58.262189,907,530,156, +91,2014-01-16 10:02:56.337922,952,850,722, +91,2014-01-11 01:26:03.494855,570,737,323, +3,2014-01-20 18:54:20.03567,794,409,763, +3,2014-01-14 00:46:15.690708,67,14,897, +3,2014-01-15 07:26:27.601468,788,322,344, +91,2014-01-17 05:11:01.223373,333,555,847, +3,2014-01-19 02:53:55.054111,611,162,297, +3,2014-01-18 14:06:21.156523,239,327,644, +3,2014-01-21 03:06:20.850536,889,749,864, +3,2014-01-18 00:52:47.829318,474,911,794, +3,2014-01-11 05:21:07.916944,931,467,675, +91,2014-01-20 23:23:46.992253,892,57,862, +3,2014-01-18 20:03:28.108128,193,372,410, +3,2014-01-19 11:05:56.643047,294,783,490, +91,2014-01-12 12:32:39.957317,591,442,110, +3,2014-01-15 23:02:52.500482,681,691,754, +91,2014-01-17 23:37:24.62328,272,302,300, +3,2014-01-19 13:17:17.105147,424,546,65, +91,2014-01-11 18:28:42.816368,328,984,547, +3,2014-01-11 15:48:29.614135,912,785,670, +3,2014-01-18 22:03:48.043151,554,943,945, +3,2014-01-18 21:34:45.688556,905,203,259, +3,2014-01-16 04:23:16.323742,829,108,781, +91,2014-01-14 01:14:08.248356,472,845,303, +91,2014-01-12 22:21:04.624838,343,908,497, +3,2014-01-20 06:03:06.404813,215,929,577, +3,2014-01-16 00:05:04.503055,23,423,641, +91,2014-01-18 13:06:58.846418,1,458,570, +3,2014-01-17 13:34:10.153454,450,435,275, +3,2014-01-18 05:30:17.327875,612,904,21, +3,2014-01-20 12:42:57.108606,406,587,53, +91,2014-01-12 17:37:06.491377,365,322,848, +91,2014-01-18 10:56:20.82273,173,584,86, +3,2014-01-20 01:37:17.144276,168,928,657, +3,2014-01-15 22:23:22.182504,306,258,318, +91,2014-01-12 12:22:48.424617,267,610,991, +3,2014-01-16 00:48:18.367649,643,242,402, +91,2014-01-13 19:17:17.236616,994,871,847, +91,2014-01-20 06:29:09.58114,567,682,816, +91,2014-01-15 21:54:39.218185,207,31,706, +91,2014-01-21 00:10:05.065933,931,528,979, +3,2014-01-20 15:50:17.498502,138,559,739, +3,2014-01-15 15:18:26.210857,869,692,656, +3,2014-01-18 14:13:33.17448,184,100,886, +3,2014-01-18 20:56:14.141549,377,316,254, +91,2014-01-17 07:51:06.168174,880,710,668, +91,2014-01-13 07:16:25.674963,700,190,678, +3,2014-01-15 14:33:38.764829,621,843,610, +91,2014-01-15 15:08:23.273321,170,761,559, +91,2014-01-14 05:45:08.49133,477,450,561, +91,2014-01-16 10:22:08.378965,437,468,551, +3,2014-01-13 07:12:11.316891,440,500,895, +3,2014-01-11 21:19:54.180306,245,680,380, +91,2014-01-11 08:45:24.703125,205,78,133, +91,2014-01-16 12:26:19.565247,970,978,133, +91,2014-01-13 23:40:58.805144,936,333,142, +3,2014-01-20 18:48:31.107938,585,293,755, +3,2014-01-11 06:31:24.068722,110,738,339, +91,2014-01-11 06:47:57.65198,213,721,93, +3,2014-01-17 02:22:41.261811,830,806,284, +91,2014-01-18 16:01:41.396597,164,593,634, +91,2014-01-20 23:30:54.760586,792,323,729, +91,2014-01-18 23:59:47.753188,263,718,291, +3,2014-01-15 20:58:02.219746,742,233,271, +3,2014-01-19 19:08:11.905281,589,891,255, +91,2014-01-13 16:23:09.935692,723,619,158, +91,2014-01-17 13:20:50.644364,62,439,175, +91,2014-01-14 13:56:30.27293,392,116,759, +3,2014-01-16 15:40:27.172726,122,330,987, +3,2014-01-16 13:50:00.225502,62,670,402, +3,2014-01-19 15:51:09.491535,690,517,336, +91,2014-01-16 09:50:32.238659,433,706,906, +3,2014-01-15 23:40:17.724005,39,349,913, +3,2014-01-14 01:09:35.702393,723,643,444, +3,2014-01-13 18:04:05.41314,831,586,759, +91,2014-01-13 14:36:31.865554,692,101,753, +3,2014-01-20 13:00:41.870567,815,254,778, +91,2014-01-16 05:20:31.088102,81,702,209, +3,2014-01-18 09:10:10.630802,812,409,265, +3,2014-01-14 22:09:05.143889,113,76,764, +91,2014-01-19 15:05:39.579852,114,486,515, +3,2014-01-13 13:32:19.009767,821,487,472, +91,2014-01-17 09:21:16.460779,97,421,654, +3,2014-01-20 16:25:33.760158,165,55,433, +3,2014-01-14 02:17:43.712892,925,456,285, +3,2014-01-12 15:47:36.026446,482,867,424, +3,2014-01-13 10:06:32.565302,426,608,229, +91,2014-01-13 15:06:14.821249,442,450,949, +3,2014-01-13 02:19:00.095168,454,779,200, +3,2014-01-13 20:54:30.217282,600,509,233, +3,2014-01-19 21:28:56.083059,291,276,210, +91,2014-01-20 22:20:41.491764,43,474,684, +91,2014-01-13 14:25:24.978287,387,291,780, +91,2014-01-17 15:28:43.836248,928,133,328, +91,2014-01-15 13:18:43.71151,172,399,747, +3,2014-01-12 03:33:36.883569,978,315,728, +3,2014-01-20 11:51:53.772358,774,969,581, +91,2014-01-11 20:39:34.355874,471,36,721, +3,2014-01-15 21:30:07.156499,701,611,719, +91,2014-01-15 21:32:20.945084,640,909,677, +91,2014-01-17 14:29:34.581795,851,257,930, +91,2014-01-14 07:21:16.648034,172,666,132, +91,2014-01-11 01:22:53.183744,652,917,601, +91,2014-01-12 08:09:52.3058,871,351,45, +3,2014-01-17 12:30:52.350427,2,513,992, +3,2014-01-13 23:26:58.597302,905,954,518, +3,2014-01-15 02:46:24.171772,241,62,757, +3,2014-01-16 19:31:34.220994,799,141,117, +91,2014-01-19 08:47:29.685405,236,737,500, +91,2014-01-12 05:56:34.802575,411,515,200, +3,2014-01-20 21:40:39.365301,523,954,752, +3,2014-01-17 17:53:09.265256,678,853,975, +3,2014-01-14 23:28:53.812342,14,348,78, +3,2014-01-17 01:01:55.82608,92,997,827, +91,2014-01-17 04:18:43.025415,950,489,922, +3,2014-01-18 05:46:37.525653,789,372,934, +91,2014-01-18 20:49:31.852525,463,660,370, +3,2014-01-19 18:25:15.591135,569,566,381, +91,2014-01-21 00:52:52.346901,184,379,411, +3,2014-01-21 03:08:31.947693,471,764,816, +3,2014-01-12 09:19:45.808418,683,205,263, +3,2014-01-19 16:21:48.429961,137,6,538, +91,2014-01-20 19:29:13.439876,28,590,858, +3,2014-01-15 03:45:10.786705,209,59,259, +91,2014-01-16 01:50:32.266209,803,451,777, +3,2014-01-15 02:47:57.151386,5,455,826, +3,2014-01-16 11:18:47.670273,260,747,795, +3,2014-01-15 07:42:26.038568,456,533,986, +3,2014-01-16 03:27:31.507678,780,994,835, +91,2014-01-11 02:48:54.827192,408,284,471, +91,2014-01-20 09:14:46.983652,385,424,869, +91,2014-01-12 11:57:06.089474,220,937,175, +3,2014-01-14 14:10:11.475226,906,112,958, +3,2014-01-20 14:37:40.167816,331,209,249, +91,2014-01-14 00:06:58.395273,255,574,453, +3,2014-01-10 20:41:03.826072,292,490,915, +91,2014-01-13 08:04:38.765118,544,453,415, +91,2014-01-18 06:53:22.567046,582,712,565, +3,2014-01-16 20:12:38.047066,325,286,472, +3,2014-01-11 10:52:08.450523,98,176,449, +3,2014-01-19 16:49:57.36962,731,802,497, +91,2014-01-16 11:53:17.412366,312,39,139, +3,2014-01-18 08:45:17.716198,852,560,969, +91,2014-01-13 10:18:51.182381,859,980,94, +3,2014-01-12 06:55:13.238866,994,908,385, +3,2014-01-14 07:04:00.741614,132,961,754, +91,2014-01-20 20:05:28.708034,679,141,187, +91,2014-01-20 07:44:45.091391,30,336,114, +91,2014-01-12 19:29:16.332749,617,266,220, +91,2014-01-20 14:58:21.054935,281,894,9, +91,2014-01-20 04:53:17.039502,435,160,750, +3,2014-01-14 08:49:02.141585,230,307,412, +91,2014-01-19 01:20:09.484897,976,32,795, +91,2014-01-19 18:22:30.479378,719,224,80, +91,2014-01-18 16:34:12.928291,34,52,164, +3,2014-01-13 21:10:41.751105,502,963,211, +3,2014-01-13 15:10:27.630764,388,383,876, +3,2014-01-13 21:53:00.598982,239,896,815, +3,2014-01-18 08:53:07.790092,221,437,860, +91,2014-01-18 22:37:59.138443,660,49,93, +91,2014-01-14 04:41:55.426174,763,518,408, +91,2014-01-17 12:07:54.773744,356,572,382, +3,2014-01-20 14:35:05.227916,638,759,288, +91,2014-01-17 22:52:06.901399,714,341,702, +91,2014-01-16 20:45:34.941559,463,518,70, +91,2014-01-13 08:42:03.623608,956,625,74, +91,2014-01-17 23:33:10.727471,385,796,273, +91,2014-01-19 08:50:13.706677,800,829,109, +3,2014-01-20 19:35:26.190653,927,800,642, +91,2014-01-13 13:45:48.774955,271,844,110, +3,2014-01-19 23:42:22.157619,941,469,984, +91,2014-01-19 06:25:23.560693,578,760,29, +91,2014-01-19 05:39:06.187321,959,114,101, +3,2014-01-17 02:27:39.873817,42,589,849, +3,2014-01-11 10:44:14.743074,282,188,600, +3,2014-01-20 16:34:19.426186,496,967,639, +91,2014-01-20 13:31:40.61543,634,232,288, +91,2014-01-11 00:49:43.451108,317,483,803, +91,2014-01-19 18:19:04.517996,172,765,473, +91,2014-01-12 03:00:56.948598,751,13,366, +91,2014-01-20 19:48:04.506044,301,243,860, +91,2014-01-18 17:12:21.557498,335,123,667, +3,2014-01-15 15:49:59.090183,552,981,230, +3,2014-01-18 15:08:13.990941,908,903,440, +91,2014-01-17 05:34:52.036876,436,403,803, +3,2014-01-13 02:24:12.018474,317,341,10, +3,2014-01-11 06:18:55.742046,436,93,101, +91,2014-01-20 00:45:19.66764,440,980,452, +91,2014-01-16 04:17:12.617456,787,484,109, +91,2014-01-18 19:12:03.532138,811,485,398, +91,2014-01-17 17:23:18.806501,981,919,878, +91,2014-01-19 12:59:08.04363,308,464,799, +91,2014-01-15 01:19:58.306301,708,771,41, +3,2014-01-17 01:58:24.034417,339,647,321, +91,2014-01-16 05:51:14.945448,789,779,948, +3,2014-01-21 02:05:33.24786,970,297,15, +91,2014-01-19 14:40:27.658025,644,500,302, +91,2014-01-12 23:24:25.672919,421,123,988, +3,2014-01-19 04:55:46.954956,602,579,697, +3,2014-01-19 04:15:53.849098,627,264,6, +3,2014-01-15 17:10:14.447874,127,144,253, +91,2014-01-17 22:38:09.112575,787,966,539, +3,2014-01-17 04:41:17.409791,672,916,751, +3,2014-01-13 16:49:20.635615,5,670,816, +91,2014-01-13 19:05:48.986393,759,193,487, +91,2014-01-17 19:25:32.152865,580,203,430, +91,2014-01-13 03:23:40.061801,629,137,665, +3,2014-01-13 02:37:29.601823,524,540,500, +91,2014-01-18 00:15:15.603972,778,696,210, +91,2014-01-11 15:42:44.579797,229,454,438, +91,2014-01-14 09:38:26.550421,577,939,801, +3,2014-01-17 14:03:20.110016,803,970,99, +100,2014-01-19 12:55:06.137295,492,95,206, +100,2014-01-19 05:28:25.640604,104,65,641, +57,2014-01-14 23:11:34.100956,737,831,264, +100,2014-01-15 12:29:58.17417,975,466,832, +57,2014-01-11 01:52:37.659497,691,369,593, +57,2014-01-15 09:30:29.843002,597,622,386, +57,2014-01-14 07:15:17.842229,74,825,962, +100,2014-01-16 10:09:50.276953,495,711,904, +52,2014-01-12 22:42:33.375559,745,544,229, +57,2014-01-21 04:38:36.64873,243,162,586, +100,2014-01-14 17:08:58.321002,589,323,918, +52,2014-01-17 04:02:31.68186,82,984,248, +52,2014-01-17 00:37:00.683147,14,411,455, +100,2014-01-20 03:00:13.266451,637,121,415, +57,2014-01-17 00:08:04.929721,698,777,928, +57,2014-01-15 09:17:28.341592,484,487,139, +52,2014-01-11 20:24:38.93937,102,188,466, +52,2014-01-14 23:03:51.884677,297,652,259, +57,2014-01-13 07:33:22.190689,625,313,970, +52,2014-01-16 17:34:53.387663,998,681,227, +57,2014-01-11 15:42:00.997253,63,727,851, +52,2014-01-19 16:14:39.600479,484,395,988, +57,2014-01-19 14:24:14.023277,988,730,680, +57,2014-01-14 14:47:49.983645,372,758,203, +57,2014-01-16 05:40:11.753344,921,796,150, +57,2014-01-11 11:47:54.085078,252,730,729, +52,2014-01-16 21:25:19.585886,544,98,377, +100,2014-01-12 23:55:27.357316,343,670,767, +100,2014-01-12 07:30:38.665294,205,721,893, +57,2014-01-20 11:03:46.136307,52,667,635, +52,2014-01-19 17:58:47.467331,228,861,283, +57,2014-01-21 00:25:44.802588,307,639,569, +100,2014-01-18 10:32:11.777331,767,606,440, +52,2014-01-13 11:10:21.568288,320,769,917, +57,2014-01-15 06:55:42.977177,969,124,401, +57,2014-01-18 16:24:49.436828,742,559,728, +57,2014-01-18 00:40:51.41129,974,808,273, +100,2014-01-18 18:11:00.819405,968,737,225, +100,2014-01-13 20:34:39.713781,839,967,479, +57,2014-01-20 03:23:24.786848,669,898,805, +57,2014-01-18 16:49:37.468135,505,273,159, +100,2014-01-17 17:43:38.034783,50,638,490, +57,2014-01-16 01:25:56.468708,975,611,683, +52,2014-01-14 11:26:38.151282,257,346,530, +57,2014-01-16 14:43:51.301234,792,60,714, +52,2014-01-11 19:34:01.398848,932,977,936, +57,2014-01-19 00:44:06.492874,819,337,555, +57,2014-01-17 15:08:30.241023,771,459,531, +52,2014-01-15 22:37:53.283526,246,507,566, +52,2014-01-11 02:17:28.683563,326,565,717, +52,2014-01-13 02:43:23.628686,631,255,675, +52,2014-01-16 18:19:54.281197,196,399,592, +100,2014-01-19 22:32:08.284043,2,384,149, +57,2014-01-11 11:07:37.651964,189,880,871, +52,2014-01-20 13:07:44.264843,638,491,333, +57,2014-01-14 22:12:20.037386,169,110,655, +52,2014-01-12 02:55:31.737042,52,792,139, +57,2014-01-16 04:33:03.850729,889,154,128, +57,2014-01-17 02:07:47.394702,925,815,980, +100,2014-01-13 14:26:10.402335,367,195,711, +52,2014-01-15 09:36:49.987456,247,887,425, +52,2014-01-15 14:06:34.862033,727,139,994, +52,2014-01-13 08:51:55.205342,661,140,653, +52,2014-01-12 14:09:01.764788,927,854,368, +52,2014-01-18 05:16:56.430321,741,618,393, +57,2014-01-17 19:47:38.182519,678,116,99, +57,2014-01-20 10:33:51.201616,452,349,467, +57,2014-01-14 23:57:47.84203,864,724,717, +100,2014-01-15 07:58:39.001925,67,525,689, +52,2014-01-13 01:08:30.915398,5,62,838, +57,2014-01-13 21:21:12.628878,891,938,10, +57,2014-01-12 18:48:16.47006,268,305,790, +57,2014-01-19 22:52:08.9506,941,809,520, +100,2014-01-19 02:47:09.098005,245,754,384, +52,2014-01-16 10:14:54.621343,112,272,159, +57,2014-01-15 07:36:00.251834,46,50,549, +52,2014-01-20 02:21:10.496854,329,385,759, +100,2014-01-14 04:59:01.114635,531,199,963, +100,2014-01-11 16:44:30.492857,394,863,927, +100,2014-01-14 18:59:03.780379,794,541,729, +52,2014-01-14 11:16:29.798199,451,825,980, +100,2014-01-13 23:27:54.121544,159,205,541, +100,2014-01-20 17:18:58.061577,656,435,292, +52,2014-01-13 03:48:38.08266,528,731,886, +100,2014-01-14 14:35:31.773507,58,533,928, +52,2014-01-20 00:26:42.326839,745,960,903, +52,2014-01-17 06:00:58.120046,440,228,449, +100,2014-01-15 21:31:03.510968,254,116,958, +100,2014-01-14 22:59:46.177568,80,797,457, +57,2014-01-13 02:08:45.515168,425,251,555, +57,2014-01-18 15:57:13.913303,784,46,349, +52,2014-01-19 12:36:36.165024,749,557,956, +57,2014-01-17 20:15:20.377201,831,267,974, +57,2014-01-21 04:49:09.118645,866,301,983, +52,2014-01-10 20:45:37.929811,990,640,743, +52,2014-01-14 19:32:16.807942,523,69,625, +52,2014-01-17 18:36:47.301164,802,978,826, +57,2014-01-20 11:19:29.131428,693,444,468, +52,2014-01-18 23:30:04.649972,932,845,226, +57,2014-01-11 20:35:26.303089,873,648,106, +52,2014-01-12 06:28:00.047244,249,176,704, +52,2014-01-11 14:51:17.27885,915,113,752, +52,2014-01-13 19:23:42.773149,260,177,268, +52,2014-01-10 23:20:08.997845,641,611,981, +100,2014-01-19 21:38:26.376855,176,354,140, +57,2014-01-19 09:38:37.39491,221,301,961, +100,2014-01-15 10:56:09.249679,538,683,200, +57,2014-01-18 17:59:36.873709,858,946,867, +52,2014-01-12 08:37:38.509546,581,208,932, +52,2014-01-16 07:40:39.742956,613,442,543, +100,2014-01-12 06:58:40.654507,526,112,615, +57,2014-01-15 23:54:08.307745,770,549,366, +57,2014-01-19 11:08:33.8645,905,710,113, +52,2014-01-11 18:17:38.716084,694,784,436, +52,2014-01-18 07:42:46.390405,899,274,651, +52,2014-01-12 19:44:05.638426,602,593,73, +57,2014-01-20 22:44:21.042922,674,968,405, +57,2014-01-14 07:43:44.51087,168,860,492, +57,2014-01-17 21:15:09.149394,857,586,744, +100,2014-01-14 15:44:07.220909,192,350,437, +52,2014-01-16 13:52:30.026038,300,41,801, +52,2014-01-15 07:12:23.062697,844,129,441, +100,2014-01-12 22:20:43.385933,674,401,988, +57,2014-01-13 04:07:50.403239,448,714,11, +57,2014-01-15 06:01:32.18176,869,904,288, +52,2014-01-12 23:06:21.316165,772,744,762, +52,2014-01-17 03:40:07.21118,616,901,755, +100,2014-01-11 18:38:19.482924,167,385,237, +57,2014-01-12 04:25:50.447592,633,790,164, +57,2014-01-14 21:10:11.861152,624,537,739, +100,2014-01-12 19:13:45.786431,236,373,28, +57,2014-01-13 14:53:50.494836,11,684,969, +57,2014-01-15 16:01:29.140421,270,653,930, +52,2014-01-15 18:37:28.55958,730,926,912, +57,2014-01-13 18:13:59.49268,404,326,486, +100,2014-01-14 07:39:55.517275,86,258,724, +57,2014-01-13 22:16:05.954491,38,257,933, +57,2014-01-18 09:10:08.742779,768,366,310, +52,2014-01-11 19:39:32.391403,41,500,774, +52,2014-01-15 10:53:44.464036,399,911,396, +100,2014-01-13 10:50:48.485734,249,203,999, +52,2014-01-13 06:38:13.04591,950,222,139, +57,2014-01-20 14:47:52.7722,339,75,454, +52,2014-01-11 15:59:22.350234,600,636,385, +52,2014-01-14 04:55:51.761995,159,670,26, +57,2014-01-17 16:30:39.162605,733,915,175, +57,2014-01-13 15:43:27.98866,880,920,554, +52,2014-01-13 21:40:12.805336,466,521,934, +57,2014-01-21 04:14:23.673475,396,526,279, +57,2014-01-20 16:58:37.138054,837,987,116, +57,2014-01-17 17:24:20.026246,367,844,370, +100,2014-01-16 12:06:53.699513,767,261,213, +57,2014-01-14 18:11:00.20117,33,711,192, +52,2014-01-19 19:45:03.412179,776,933,127, +52,2014-01-18 20:14:44.103171,217,4,414, +100,2014-01-19 04:12:32.38293,681,233,881, +57,2014-01-11 12:51:24.728343,552,783,847, +52,2014-01-14 17:54:51.314351,188,357,304, +57,2014-01-20 02:50:51.865854,199,698,61, +100,2014-01-12 21:17:15.176354,209,577,438, +100,2014-01-18 19:05:03.175922,180,138,228, +52,2014-01-11 16:04:37.652286,87,116,275, +57,2014-01-15 16:11:05.67119,820,298,819, +57,2014-01-13 05:06:32.316343,242,669,905, +57,2014-01-16 14:42:06.212285,272,38,849, +57,2014-01-18 14:25:05.16429,323,646,879, +57,2014-01-16 16:46:27.833618,707,477,558, +57,2014-01-19 16:58:12.166775,163,598,481, +52,2014-01-15 17:35:13.907068,602,808,377, +52,2014-01-17 16:26:00.225022,433,337,617, +57,2014-01-13 21:51:56.631231,550,489,182, +100,2014-01-18 08:26:02.392803,420,401,614, +100,2014-01-20 03:04:13.270932,263,764,828, +57,2014-01-13 06:39:49.403431,137,197,60, +52,2014-01-19 04:25:24.743037,697,57,525, +57,2014-01-13 02:00:05.033346,105,696,344, +57,2014-01-20 03:10:28.566036,4,32,374, +100,2014-01-11 14:08:52.732117,975,511,621, +52,2014-01-16 03:40:17.838682,467,359,726, +57,2014-01-20 01:24:52.239931,405,215,790, +52,2014-01-11 01:07:29.870171,698,767,948, +100,2014-01-12 15:04:37.864928,842,694,337, +52,2014-01-15 07:31:45.939444,185,299,601, +57,2014-01-14 23:18:30.071341,20,674,759, +57,2014-01-11 04:49:41.277107,740,422,252, +100,2014-01-12 21:46:30.042615,529,242,391, +100,2014-01-12 21:31:02.454271,297,40,654, +57,2014-01-11 21:41:06.005869,568,97,590, +57,2014-01-16 19:41:21.357385,642,578,158, +57,2014-01-11 18:21:54.320545,404,392,761, +57,2014-01-13 22:58:21.182223,501,446,874, +57,2014-01-14 08:46:24.533307,238,165,370, +57,2014-01-12 14:26:31.972831,184,665,537, +100,2014-01-18 19:09:26.853413,927,971,654, +57,2014-01-16 17:52:56.84965,797,358,477, +57,2014-01-18 09:08:38.185116,350,645,384, +57,2014-01-16 03:34:32.017702,978,16,447, +52,2014-01-12 04:39:24.683268,369,57,351, +100,2014-01-16 20:06:50.35231,603,362,539, +52,2014-01-21 01:09:45.924771,199,331,616, +57,2014-01-19 01:05:24.908708,112,312,841, +100,2014-01-19 21:58:46.983542,608,667,14, +57,2014-01-18 03:35:48.317574,716,19,568, +57,2014-01-17 22:09:38.179641,826,200,449, +52,2014-01-11 22:38:36.386973,298,208,358, +100,2014-01-16 02:01:13.06103,295,348,184, +52,2014-01-20 04:09:43.212986,654,89,726, +100,2014-01-21 05:49:04.953009,282,731,300, +100,2014-01-16 20:10:05.793147,560,625,848, +100,2014-01-15 01:50:01.05167,430,640,989, +57,2014-01-20 01:13:57.192941,450,117,60, +57,2014-01-17 01:17:35.663318,958,321,388, +57,2014-01-16 20:54:38.916598,128,416,631, +52,2014-01-14 02:45:43.132804,978,266,751, +52,2014-01-21 04:36:05.735078,451,787,130, +57,2014-01-17 05:44:20.194124,835,221,174, +57,2014-01-16 04:32:13.17542,426,996,545, +100,2014-01-12 20:07:08.189349,321,329,361, +52,2014-01-18 07:25:26.199993,177,737,642, +57,2014-01-11 18:13:34.532804,388,439,186, +52,2014-01-13 18:29:02.509894,704,789,697, +52,2014-01-11 00:23:47.382217,831,506,541, +100,2014-01-15 06:59:59.066111,505,437,409, +57,2014-01-15 12:55:34.483144,593,102,426, +57,2014-01-18 23:33:14.235629,738,898,302, +57,2014-01-21 04:52:55.915761,364,65,190, +52,2014-01-12 16:04:12.66826,499,607,775, +100,2014-01-13 21:07:46.253751,828,959,456, +52,2014-01-12 03:32:20.599449,67,745,287, +100,2014-01-18 16:11:03.020571,56,644,97, +52,2014-01-13 16:17:32.178522,972,223,125, +52,2014-01-20 08:37:45.508157,753,538,469, +52,2014-01-17 08:09:50.004112,30,759,698, +57,2014-01-20 23:53:20.496515,140,565,821, +57,2014-01-17 00:47:23.687798,886,540,439, +100,2014-01-18 10:48:26.391085,454,439,307, +52,2014-01-15 19:54:33.557544,703,389,565, +52,2014-01-15 22:57:06.901204,839,921,722, +57,2014-01-18 10:37:31.344515,59,967,699, +52,2014-01-11 10:04:39.350691,477,734,905, +57,2014-01-20 04:47:07.952873,941,8,892, +52,2014-01-17 05:51:28.537455,424,230,37, +52,2014-01-17 15:22:15.014008,238,131,587, +57,2014-01-15 19:41:46.869891,760,106,999, +62,2014-01-20 12:37:11.670259,112,267,95, +99,2014-01-17 13:58:20.749086,259,699,251, +99,2014-01-11 19:26:07.064015,744,237,94, +99,2014-01-15 11:09:24.846098,458,478,185, +99,2014-01-19 14:05:28.938855,892,78,761, +99,2014-01-19 06:51:33.264007,910,546,205, +62,2014-01-16 09:22:59.378902,14,593,250, +62,2014-01-12 02:34:31.448749,497,16,914, +99,2014-01-19 11:15:20.646223,412,9,148, +62,2014-01-20 20:22:58.445433,335,603,894, +99,2014-01-16 19:30:05.931893,511,20,609, +99,2014-01-17 04:48:34.881853,337,51,235, +99,2014-01-20 19:15:54.361195,62,418,918, +62,2014-01-18 15:34:18.600572,845,616,682, +62,2014-01-20 05:56:21.135603,327,959,609, +62,2014-01-11 16:48:14.960644,205,270,672, +62,2014-01-16 01:45:21.621143,84,195,259, +62,2014-01-12 16:13:53.314544,43,419,790, +99,2014-01-21 05:26:00.468801,753,658,174, +62,2014-01-12 03:55:11.625674,171,151,803, +62,2014-01-12 10:07:13.811058,675,729,788, +99,2014-01-17 00:13:24.157018,455,801,661, +62,2014-01-19 18:43:38.016759,846,533,309, +62,2014-01-17 10:01:47.368602,510,142,437, +99,2014-01-11 17:10:31.058221,961,938,133, +99,2014-01-16 23:21:09.361274,43,357,502, +99,2014-01-18 00:06:26.719293,876,685,150, +62,2014-01-21 01:57:39.011095,757,684,715, +99,2014-01-12 23:12:37.899148,751,386,547, +62,2014-01-14 09:28:41.733302,13,445,315, +62,2014-01-15 15:39:25.880984,422,579,509, +99,2014-01-12 05:49:49.569407,841,675,46, +99,2014-01-21 03:27:02.482807,618,31,22, +62,2014-01-16 15:05:32.944999,444,515,960, +62,2014-01-16 20:59:14.415506,468,166,218, +99,2014-01-19 11:32:31.421662,247,129,82, +99,2014-01-14 15:57:06.209006,749,139,556, +99,2014-01-12 00:22:13.794827,312,756,956, +62,2014-01-20 18:07:02.870411,473,912,590, +99,2014-01-12 21:12:26.855229,218,351,323, +62,2014-01-11 14:45:12.24026,533,170,399, +99,2014-01-16 07:37:08.802724,205,192,828, +99,2014-01-19 06:01:01.737501,361,699,364, +99,2014-01-11 04:01:06.601456,752,768,277, +99,2014-01-13 17:11:27.403296,64,581,216, +99,2014-01-18 05:57:22.873104,811,645,277, +99,2014-01-12 00:49:21.562519,847,907,393, +99,2014-01-18 22:56:49.024439,175,65,252, +62,2014-01-20 02:11:16.187649,146,217,137, +99,2014-01-12 00:15:22.03132,67,732,740, +62,2014-01-20 06:52:00.650112,774,283,968, +62,2014-01-11 06:18:29.998706,90,857,802, +99,2014-01-18 04:28:46.188337,137,87,441, +99,2014-01-18 19:35:38.667291,904,695,84, +99,2014-01-17 20:20:17.367309,373,49,655, +62,2014-01-19 01:39:17.246558,130,739,458, +62,2014-01-14 12:56:48.028565,837,957,926, +99,2014-01-14 14:26:44.086602,263,417,392, +62,2014-01-18 21:36:56.258072,967,131,200, +99,2014-01-16 16:09:25.927712,683,459,374, +62,2014-01-18 03:55:25.820323,387,805,520, +62,2014-01-13 07:16:22.139057,284,335,700, +62,2014-01-18 01:59:15.497539,931,368,797, +62,2014-01-18 01:22:28.30313,27,60,871, +99,2014-01-19 02:21:55.084475,403,749,464, +62,2014-01-13 16:58:29.913045,451,175,383, +62,2014-01-16 06:54:59.724793,271,483,399, +62,2014-01-12 12:19:01.293481,394,418,509, +62,2014-01-14 21:20:43.707872,840,237,570, +62,2014-01-15 19:02:02.595204,266,117,895, +99,2014-01-14 13:31:28.149129,265,738,567, +62,2014-01-15 16:05:55.948133,490,522,53, +99,2014-01-10 20:39:11.397928,695,851,216, +99,2014-01-12 13:32:29.886631,359,257,416, +99,2014-01-16 00:07:02.550008,547,545,302, +99,2014-01-13 17:50:38.801223,908,277,13, +99,2014-01-19 23:29:52.759735,690,62,545, +62,2014-01-17 04:56:24.112527,964,678,33, +62,2014-01-11 10:47:27.826081,420,137,328, +99,2014-01-18 19:41:08.947803,480,75,396, +62,2014-01-18 09:11:46.143847,89,427,837, +99,2014-01-20 21:39:28.476193,355,240,946, +99,2014-01-19 05:59:38.94651,154,325,30, +99,2014-01-15 07:40:32.332602,13,822,980, +62,2014-01-18 11:15:07.143483,432,274,939, +62,2014-01-15 20:19:56.314238,859,824,843, +62,2014-01-13 03:19:49.57916,178,806,987, +62,2014-01-11 18:11:55.172467,156,588,617, +99,2014-01-19 14:46:40.400841,350,101,289, +62,2014-01-21 04:56:45.837233,197,352,375, +62,2014-01-17 14:21:21.100179,646,700,845, +62,2014-01-16 12:42:06.221164,162,25,402, +99,2014-01-13 06:13:07.976709,504,450,406, +62,2014-01-14 10:20:36.597719,221,622,759, +99,2014-01-13 08:04:34.524294,47,333,920, +62,2014-01-11 02:35:03.061184,892,661,699, +99,2014-01-17 07:19:06.511182,705,37,615, +99,2014-01-18 18:59:34.249086,513,42,811, +99,2014-01-12 18:54:04.354665,758,370,49, +62,2014-01-10 22:39:50.219054,33,875,902, +99,2014-01-13 08:01:36.84471,788,473,255, +62,2014-01-16 12:25:32.503795,327,312,661, +62,2014-01-15 18:45:46.167606,696,440,895, +62,2014-01-13 08:40:48.242639,83,583,741, +62,2014-01-18 05:58:02.390425,379,954,897, +99,2014-01-20 22:52:48.717615,528,307,730, +62,2014-01-16 06:31:27.044281,546,380,996, +62,2014-01-16 23:27:55.15058,22,429,777, +99,2014-01-16 21:49:12.830142,347,493,715, +62,2014-01-16 21:18:54.870361,6,60,201, +99,2014-01-14 13:09:04.098383,995,107,178, +62,2014-01-14 01:00:58.973988,421,864,68, +62,2014-01-16 12:58:23.346554,342,212,345, +62,2014-01-12 13:08:43.044893,352,508,958, +62,2014-01-18 12:41:31.306591,316,158,774, +62,2014-01-13 18:13:30.490457,528,402,687, +99,2014-01-17 13:28:39.359131,441,446,284, +99,2014-01-20 20:01:20.88617,437,373,182, +99,2014-01-14 16:25:25.662924,418,333,536, +62,2014-01-15 22:15:19.760391,336,927,517, +62,2014-01-20 18:58:06.723403,8,865,709, +62,2014-01-11 00:46:46.763103,120,153,267, +62,2014-01-11 04:57:25.981553,158,634,842, +62,2014-01-12 19:11:14.700112,792,918,971, +99,2014-01-14 15:07:23.361241,912,910,364, +99,2014-01-13 17:02:00.506267,712,846,851, +62,2014-01-13 01:46:17.761296,262,661,16, +99,2014-01-21 02:26:29.872423,152,935,965, +99,2014-01-11 06:01:34.755353,554,472,588, +62,2014-01-15 00:40:22.11638,334,151,682, +62,2014-01-21 05:06:20.091477,707,170,877, +62,2014-01-13 18:03:11.600064,432,488,790, +62,2014-01-20 17:05:54.620175,132,656,38, +62,2014-01-15 17:52:06.259084,442,632,262, +62,2014-01-16 06:43:59.843121,711,182,587, +62,2014-01-17 17:03:57.011019,38,954,980, +99,2014-01-15 10:44:54.976699,513,199,442, +62,2014-01-11 07:15:26.887402,35,157,473, +99,2014-01-13 10:31:52.161599,150,421,342, +99,2014-01-11 02:34:07.80684,926,24,465, +62,2014-01-17 08:34:21.757764,584,307,185, +62,2014-01-17 03:40:56.259982,588,50,618, +62,2014-01-14 07:35:06.781247,12,53,871, +99,2014-01-12 15:32:45.104318,409,228,532, +99,2014-01-18 20:49:39.304875,112,814,676, +99,2014-01-11 14:16:38.087837,414,610,573, +62,2014-01-15 13:46:15.594775,191,52,414, +99,2014-01-15 04:18:18.664426,272,522,423, +62,2014-01-11 04:17:58.974007,531,577,3, +62,2014-01-19 10:11:41.2577,299,960,485, +99,2014-01-20 06:33:38.424816,568,978,257, +99,2014-01-21 03:16:05.69783,514,839,901, +99,2014-01-19 14:58:28.021223,2,223,22, +99,2014-01-20 15:31:04.40637,123,852,245, +99,2014-01-12 16:27:20.397942,619,848,31, +62,2014-01-13 00:05:51.382464,522,675,59, +62,2014-01-13 02:33:04.912636,820,368,733, +99,2014-01-14 22:13:38.159657,228,410,809, +62,2014-01-12 20:32:21.254886,450,697,690, +62,2014-01-13 12:34:39.668408,220,41,678, +62,2014-01-19 02:54:00.276038,649,749,190, +62,2014-01-12 19:38:41.346365,260,811,277, +62,2014-01-16 10:37:51.268473,188,514,685, +99,2014-01-18 13:59:54.896212,260,505,284, +62,2014-01-17 17:30:47.605868,386,984,786, +62,2014-01-11 11:21:51.111594,595,519,305, +62,2014-01-15 01:03:51.907231,709,495,580, +62,2014-01-11 22:15:42.582566,166,248,722, +62,2014-01-11 22:37:17.998996,547,990,274, +62,2014-01-17 15:35:44.06883,148,877,914, +62,2014-01-12 04:49:50.389825,991,758,90, +99,2014-01-18 11:11:39.756759,966,150,238, +99,2014-01-13 13:16:40.328813,362,945,252, +99,2014-01-15 16:24:57.171072,850,590,724, +62,2014-01-20 06:44:24.861496,385,302,945, +62,2014-01-11 04:06:19.634107,629,473,343, +99,2014-01-16 10:41:35.258909,910,413,269, +62,2014-01-14 14:30:40.456272,236,571,588, +62,2014-01-15 12:24:38.298533,807,415,215, +99,2014-01-16 18:59:34.233335,482,668,475, +99,2014-01-12 18:42:21.714391,287,283,831, +62,2014-01-14 12:58:16.723349,987,753,879, +99,2014-01-16 16:15:39.931166,767,797,14, +62,2014-01-11 03:40:49.735613,893,913,74, +62,2014-01-13 22:29:21.129719,990,770,23, +99,2014-01-18 12:43:00.329107,544,78,259, +99,2014-01-13 07:46:41.118076,922,896,954, +99,2014-01-16 05:02:26.042774,947,578,687, +62,2014-01-12 04:56:38.488765,459,420,712, +99,2014-01-15 08:19:02.372963,115,49,55, +99,2014-01-18 21:37:05.711182,312,947,193, +99,2014-01-20 11:50:38.764802,557,271,982, +99,2014-01-17 07:57:43.719327,840,33,754, +62,2014-01-14 02:14:56.979655,563,591,625, +62,2014-01-17 19:50:33.661433,145,990,245, +62,2014-01-13 19:28:31.325195,257,259,838, +99,2014-01-14 17:36:48.091668,204,907,326, +62,2014-01-11 14:54:25.568665,488,978,860, +99,2014-01-14 21:44:13.908179,739,310,245, +62,2014-01-15 20:14:06.090664,566,137,340, +62,2014-01-18 10:30:09.637915,590,462,746, +99,2014-01-16 06:34:04.298004,323,344,249, +99,2014-01-13 01:25:45.847842,379,577,751, +62,2014-01-21 03:46:49.966727,216,441,480, +99,2014-01-21 02:59:01.469076,496,141,861, +46,2014-01-12 02:10:10.709338,42,15,377, +97,2014-01-11 01:53:09.600834,286,374,890, +46,2014-01-16 07:40:36.727985,826,362,467, +46,2014-01-15 20:40:51.165609,499,333,930, +46,2014-01-15 18:17:47.899368,42,769,786, +28,2014-01-11 20:40:10.961321,368,24,949, +28,2014-01-17 19:23:12.879999,515,342,206, +97,2014-01-19 11:16:04.622717,50,745,132, +28,2014-01-17 16:55:50.892486,414,824,541, +28,2014-01-18 03:04:02.615612,519,550,650, +46,2014-01-12 03:45:25.752854,719,70,491, +46,2014-01-14 23:38:51.222013,335,762,582, +28,2014-01-20 14:50:43.733689,847,920,360, +97,2014-01-17 12:47:51.795628,629,690,531, +97,2014-01-16 08:35:29.710778,757,681,338, +28,2014-01-14 17:09:46.106651,925,421,32, +97,2014-01-15 04:24:57.50681,960,75,446, +97,2014-01-15 14:26:08.475999,31,568,32, +46,2014-01-21 05:07:29.826397,654,415,434, +28,2014-01-18 10:39:54.486466,236,919,968, +46,2014-01-12 04:16:42.137433,67,425,323, +46,2014-01-13 18:36:01.151592,361,471,603, +97,2014-01-11 22:16:42.578133,278,928,65, +46,2014-01-12 23:11:07.706098,163,621,278, +46,2014-01-17 20:20:15.059771,405,769,526, +46,2014-01-16 22:30:48.669216,824,272,268, +97,2014-01-20 13:41:17.344013,62,113,726, +97,2014-01-12 20:54:19.357775,146,432,165, +46,2014-01-19 03:56:34.517057,961,89,559, +28,2014-01-20 11:28:07.311159,953,766,293, +46,2014-01-12 17:53:20.826852,150,748,266, +28,2014-01-20 10:06:45.226395,790,152,895, +46,2014-01-20 17:21:16.911994,150,998,833, +46,2014-01-18 05:33:57.555256,548,52,310, +46,2014-01-15 00:47:36.392003,241,41,419, +46,2014-01-15 05:39:04.81178,629,985,811, +46,2014-01-19 06:14:08.516577,532,316,321, +46,2014-01-11 14:10:49.272422,274,533,109, +46,2014-01-13 10:55:09.434497,227,87,214, +28,2014-01-15 17:09:59.409482,547,307,233, +97,2014-01-18 21:14:51.888034,372,118,846, +28,2014-01-14 18:40:35.187351,834,721,249, +46,2014-01-19 20:48:50.631496,198,583,289, +28,2014-01-18 06:05:35.622142,917,150,339, +97,2014-01-11 01:28:26.982979,464,859,883, +46,2014-01-14 23:24:20.342274,190,134,511, +46,2014-01-11 17:15:21.728793,202,608,950, +46,2014-01-15 09:53:24.489791,306,939,246, +46,2014-01-19 17:50:28.818273,340,890,659, +46,2014-01-11 16:22:51.555191,282,357,932, +46,2014-01-12 14:33:18.976675,223,947,596, +46,2014-01-21 02:07:10.955706,630,918,470, +28,2014-01-14 14:58:52.707201,167,653,211, +97,2014-01-13 16:50:01.554808,940,210,876, +28,2014-01-12 19:18:18.662223,570,327,33, +28,2014-01-11 05:19:07.766972,910,782,719, +97,2014-01-19 19:20:50.224024,964,607,933, +46,2014-01-12 02:59:36.006235,138,62,82, +46,2014-01-13 06:13:27.125167,984,983,587, +28,2014-01-17 17:17:24.741081,677,47,55, +46,2014-01-11 08:27:43.317395,287,419,401, +28,2014-01-15 04:06:47.952019,523,360,741, +28,2014-01-16 21:24:09.967476,850,249,191, +46,2014-01-21 05:49:00.229807,777,230,729, +28,2014-01-12 03:40:45.507275,438,476,741, +28,2014-01-21 02:11:46.359898,378,792,348, +97,2014-01-15 05:28:05.041588,935,549,237, +46,2014-01-20 13:54:54.024271,678,510,413, +46,2014-01-11 10:22:35.632321,692,482,454, +97,2014-01-17 20:23:14.476084,888,674,900, +97,2014-01-15 01:04:53.433753,739,271,649, +28,2014-01-19 11:37:27.520355,88,281,894, +46,2014-01-11 09:03:49.663855,825,956,177, +28,2014-01-13 15:53:44.065249,505,61,487, +28,2014-01-16 11:43:03.142497,312,640,938, +28,2014-01-11 14:32:16.646834,277,39,766, +46,2014-01-17 19:18:04.407523,233,475,721, +97,2014-01-17 08:58:24.871709,397,285,100, +28,2014-01-16 04:25:41.137044,100,581,860, +28,2014-01-16 07:08:33.226215,170,584,544, +28,2014-01-18 05:21:16.426899,412,406,559, +28,2014-01-17 22:59:00.113719,227,987,728, +46,2014-01-16 03:15:44.18192,278,806,194, +97,2014-01-11 14:20:09.134101,729,446,882, +46,2014-01-20 19:49:01.668527,373,174,162, +28,2014-01-18 02:34:02.844143,773,897,448, +46,2014-01-11 23:39:16.901492,950,831,894, +28,2014-01-19 09:09:51.892971,394,279,928, +46,2014-01-19 09:33:38.850798,224,309,264, +46,2014-01-14 09:52:44.026659,55,377,692, +28,2014-01-15 20:27:16.634052,638,614,783, +46,2014-01-19 22:01:22.168193,791,296,854, +28,2014-01-18 17:59:31.978677,156,837,650, +28,2014-01-11 11:51:26.601947,220,255,747, +28,2014-01-19 21:50:22.398,828,917,400, +46,2014-01-20 01:40:17.486371,318,544,767, +46,2014-01-11 08:03:12.961845,93,177,709, +28,2014-01-13 21:18:27.439588,764,46,221, +46,2014-01-19 09:35:11.510642,183,854,828, +28,2014-01-11 22:25:48.594166,406,999,296, +97,2014-01-20 21:41:41.916092,62,804,239, +97,2014-01-13 04:40:04.944395,581,663,85, +97,2014-01-20 14:03:16.11452,258,886,181, +28,2014-01-11 00:45:31.579947,850,209,516, +97,2014-01-16 00:33:49.009645,599,112,742, +97,2014-01-15 19:46:19.257435,92,541,393, +97,2014-01-11 19:17:48.226781,787,584,119, +97,2014-01-12 13:51:53.417167,317,388,205, +97,2014-01-11 22:44:44.129145,848,686,924, +28,2014-01-17 03:43:29.363826,40,408,837, +28,2014-01-18 01:00:26.643381,612,950,822, +28,2014-01-19 08:06:00.556044,841,470,476, +97,2014-01-13 20:42:29.477545,435,350,494, +97,2014-01-12 22:16:10.825721,39,83,40, +46,2014-01-20 02:26:09.690564,64,234,178, +46,2014-01-13 10:31:31.146492,122,900,978, +28,2014-01-20 04:50:13.669864,711,765,108, +46,2014-01-10 20:05:26.592056,346,272,416, +46,2014-01-11 13:41:23.039462,803,137,239, +46,2014-01-18 08:23:52.520661,69,484,848, +28,2014-01-14 09:58:10.618715,603,972,333, +46,2014-01-16 14:08:39.673514,874,781,555, +28,2014-01-17 00:25:14.689273,964,62,984, +46,2014-01-11 21:57:42.597393,918,746,458, +97,2014-01-17 06:00:06.27546,998,384,859, +28,2014-01-15 16:15:37.087273,159,297,930, +46,2014-01-21 03:38:00.083764,125,503,576, +28,2014-01-17 18:03:19.237305,177,272,290, +97,2014-01-18 17:34:04.527279,56,149,796, +97,2014-01-19 07:13:11.594405,837,118,992, +46,2014-01-18 20:29:07.831471,278,124,187, +28,2014-01-18 09:15:46.443371,315,179,988, +46,2014-01-11 05:53:16.538801,298,881,761, +28,2014-01-18 04:32:23.946409,401,717,345, +97,2014-01-18 14:01:18.023318,869,43,494, +28,2014-01-16 10:27:05.548445,377,173,575, +28,2014-01-12 18:18:43.203846,2,395,60, +28,2014-01-19 13:19:06.250099,225,275,412, +46,2014-01-18 04:18:58.966031,432,401,105, +28,2014-01-13 21:03:27.33299,545,698,913, +46,2014-01-15 11:02:35.614344,603,950,352, +97,2014-01-14 23:19:25.609412,686,413,205, +97,2014-01-11 23:09:27.889034,742,858,758, +28,2014-01-18 11:45:05.091889,967,888,980, +97,2014-01-17 01:35:36.435133,275,818,594, +97,2014-01-21 05:35:37.579598,858,503,33, +46,2014-01-21 02:16:36.23838,508,572,872, +97,2014-01-16 00:25:50.105416,482,714,90, +46,2014-01-21 05:41:04.171654,182,535,959, +46,2014-01-11 09:57:59.277843,793,388,759, +28,2014-01-13 02:49:42.626077,267,501,534, +28,2014-01-14 09:39:14.790369,872,227,399, +46,2014-01-17 04:06:38.951776,35,179,40, +46,2014-01-19 07:14:57.31535,286,345,83, +97,2014-01-15 11:36:57.38818,817,202,576, +46,2014-01-13 04:06:45.227236,343,856,515, +28,2014-01-13 17:30:34.403042,422,922,462, +46,2014-01-15 09:14:57.471944,2,407,664, +28,2014-01-20 02:10:04.46496,851,274,159, +28,2014-01-11 05:04:38.930322,959,474,527, +46,2014-01-13 10:28:09.066769,219,798,826, +46,2014-01-17 16:39:12.296431,476,305,10, +28,2014-01-18 18:20:25.373693,70,894,611, +46,2014-01-13 20:21:25.60557,373,529,527, +28,2014-01-14 15:11:36.242841,218,430,457, +28,2014-01-16 02:21:43.39701,509,125,504, +46,2014-01-19 10:48:31.154433,121,668,2, +46,2014-01-16 13:30:19.446685,899,296,172, +46,2014-01-14 09:40:49.64711,635,981,479, +46,2014-01-16 09:07:30.120465,386,623,356, +97,2014-01-19 14:33:46.779676,232,710,469, +97,2014-01-19 00:43:25.261454,836,194,944, +28,2014-01-20 12:26:55.729877,129,153,861, +97,2014-01-20 17:43:14.669129,539,436,343, +46,2014-01-16 06:28:30.353761,668,914,373, +46,2014-01-16 08:02:32.165429,210,191,167, +97,2014-01-20 17:18:52.248727,376,285,374, +46,2014-01-16 02:45:06.592143,828,544,495, +97,2014-01-11 02:28:22.270845,371,266,1, +46,2014-01-20 16:59:56.4208,629,850,881, +46,2014-01-16 16:43:05.870404,806,197,360, +28,2014-01-13 09:18:04.896922,824,15,81, +46,2014-01-13 20:39:11.211169,0,235,475, +28,2014-01-12 14:49:44.822179,358,815,912, +46,2014-01-11 10:33:02.212691,264,568,66, +97,2014-01-18 12:16:08.59935,635,297,430, +97,2014-01-14 22:56:30.049416,127,386,900, +28,2014-01-14 08:03:36.615733,88,844,488, +28,2014-01-12 15:31:06.071713,627,509,489, +46,2014-01-13 19:06:34.514376,674,631,757, +97,2014-01-14 17:08:15.546055,544,571,437, +46,2014-01-15 05:59:15.138482,948,948,700, +97,2014-01-20 15:45:46.811226,658,544,309, +97,2014-01-12 05:28:40.919748,907,816,357, +28,2014-01-18 06:20:40.744051,950,703,107, +28,2014-01-14 00:57:23.054067,435,462,31, +97,2014-01-17 11:50:24.316758,553,57,414, +97,2014-01-16 11:09:11.898485,475,502,579, +97,2014-01-19 18:27:42.501172,62,951,907, +28,2014-01-21 01:31:13.963869,927,59,17, +46,2014-01-11 14:16:42.01895,293,722,474, +97,2014-01-18 03:01:29.280848,848,179,255, +46,2014-01-18 20:14:39.225742,320,999,613, +97,2014-01-10 20:43:37.749246,511,44,491, +46,2014-01-17 14:44:43.949976,970,638,160, +97,2014-01-13 20:43:09.579503,986,352,734, +28,2014-01-16 08:46:09.914675,979,74,381, +97,2014-01-17 02:03:36.199122,521,353,920, +46,2014-01-19 03:28:16.171646,887,742,4, +28,2014-01-16 15:14:32.18552,635,6,432, +28,2014-01-16 13:03:32.619922,219,453,629, +28,2014-01-14 14:11:22.042049,643,292,227, +46,2014-01-19 04:32:37.082441,314,333,832, +46,2014-01-19 13:42:43.831092,910,434,350, +28,2014-01-16 09:01:06.864228,513,109,497, +97,2014-01-19 19:05:39.295132,518,892,125, +97,2014-01-16 19:58:52.43086,726,273,847, +28,2014-01-20 11:57:36.914064,305,188,217, +97,2014-01-12 21:09:15.910866,788,959,375, +28,2014-01-18 15:29:58.502573,458,760,750, +97,2014-01-13 01:04:11.42844,236,336,294, +97,2014-01-16 18:17:31.45692,293,657,62, +46,2014-01-12 15:29:13.641055,817,272,59, +97,2014-01-12 10:49:58.239666,672,835,844, +46,2014-01-18 03:46:12.376668,392,665,928, +46,2014-01-20 01:49:54.385106,929,93,355, +97,2014-01-15 15:47:21.294151,731,220,722, +28,2014-01-14 09:36:36.693426,420,406,755, +97,2014-01-15 06:59:06.28401,525,802,984, +46,2014-01-14 04:15:03.795323,142,625,369, +97,2014-01-14 05:07:50.657714,806,318,330, +46,2014-01-16 01:15:48.30296,104,694,497, +46,2014-01-11 01:16:33.07617,432,928,165, +97,2014-01-11 19:22:29.883454,999,491,210, +46,2014-01-16 01:59:26.052206,804,433,997, +28,2014-01-17 20:01:17.026566,518,947,915, +97,2014-01-14 20:05:39.462958,502,104,76, +28,2014-01-11 04:45:35.96688,276,276,795, +28,2014-01-13 16:04:53.225688,53,391,951, +46,2014-01-12 17:33:55.634603,818,238,370, +46,2014-01-17 00:00:08.1524,697,255,307, +28,2014-01-19 09:08:25.84561,32,638,776, +46,2014-01-16 11:45:17.677072,15,873,974, +97,2014-01-14 22:32:45.23526,830,186,295, +97,2014-01-17 16:51:09.676701,211,873,918, +46,2014-01-11 14:46:24.5413,920,872,970, +97,2014-01-13 11:38:24.530393,800,952,80, +28,2014-01-13 06:50:02.107561,845,960,144, +28,2014-01-10 20:44:01.455364,710,512,622, +28,2014-01-15 12:47:40.441676,264,871,131, +97,2014-01-21 02:20:00.610134,124,12,73, +46,2014-01-13 01:48:12.884222,685,637,851, +28,2014-01-11 01:05:11.898597,364,189,665, +28,2014-01-12 11:49:14.25119,583,468,59, +46,2014-01-14 16:38:11.123886,812,747,622, +28,2014-01-18 08:51:24.275683,388,492,215, +46,2014-01-11 07:39:08.636715,782,719,652, +97,2014-01-19 12:25:32.418038,493,752,295, +28,2014-01-11 12:28:00.969109,164,973,645, +28,2014-01-15 18:38:14.920725,915,429,30, +97,2014-01-12 10:40:36.21336,785,693,143, +97,2014-01-14 21:35:51.626823,373,465,252, +97,2014-01-20 23:54:03.223684,860,288,414, +46,2014-01-12 15:57:09.289949,590,854,777, +97,2014-01-15 20:58:21.510277,365,102,842, +46,2014-01-15 19:53:29.276309,622,446,589, +46,2014-01-19 15:58:26.316515,595,459,843, +28,2014-01-19 21:04:00.973235,476,82,178, +28,2014-01-16 04:39:05.243191,64,574,461, +97,2014-01-12 02:03:19.542202,877,274,864, +46,2014-01-11 08:37:56.608257,669,752,627, +97,2014-01-11 22:39:13.396009,432,293,329, +46,2014-01-20 15:11:45.387812,615,881,277, +97,2014-01-17 00:23:14.285329,547,974,961, +97,2014-01-16 01:11:58.63127,127,293,684, +46,2014-01-17 02:02:55.064514,873,994,521, +46,2014-01-17 19:09:38.82663,344,502,991, +28,2014-01-18 16:50:23.161661,634,941,449, +46,2014-01-19 12:52:57.172494,245,330,157, +97,2014-01-17 19:53:40.282412,242,56,366, +46,2014-01-12 23:38:03.603339,293,257,783, +97,2014-01-19 09:12:57.782628,194,222,402, +28,2014-01-20 01:41:53.166634,26,190,808, +28,2014-01-13 04:43:15.502354,296,37,737, +28,2014-01-21 01:02:12.034236,436,545,70, +97,2014-01-13 12:20:04.290521,390,896,328, +46,2014-01-20 17:34:39.778037,606,912,359, +97,2014-01-11 02:41:20.670951,574,810,753, +28,2014-01-11 18:45:36.708977,704,908,651, +97,2014-01-11 00:02:40.747147,982,992,246, +28,2014-01-16 01:19:35.591676,43,109,700, +46,2014-01-13 09:26:12.922337,452,797,690, +28,2014-01-15 01:38:32.374389,9,81,794, +46,2014-01-15 19:13:38.81536,377,735,804, +97,2014-01-15 05:23:22.212286,449,655,601, +28,2014-01-20 02:36:53.884666,241,713,799, +28,2014-01-20 19:07:08.09167,177,142,593, +46,2014-01-13 15:21:48.528801,227,897,324, +46,2014-01-18 17:40:54.85832,245,964,946, +28,2014-01-15 17:46:13.335279,159,498,205, +28,2014-01-14 21:25:08.071003,677,655,48, +86,2014-01-19 06:18:51.466578,14,712,490, +86,2014-01-16 20:25:26.731289,679,737,683, +86,2014-01-14 06:36:53.458815,834,517,815, +38,2014-01-15 00:42:05.751907,948,226,489, +71,2014-01-11 15:37:25.362558,298,503,28, +71,2014-01-20 12:39:48.523748,699,697,85, +73,2014-01-11 13:51:44.578537,466,47,919, +66,2014-01-19 12:27:48.52422,895,187,360, +66,2014-01-18 19:32:45.696242,352,416,934, +86,2014-01-18 13:45:24.860949,280,770,520, +73,2014-01-11 06:05:52.127977,114,375,2, +38,2014-01-16 22:45:43.47887,894,338,521, +73,2014-01-17 09:27:18.027583,194,653,381, +38,2014-01-13 14:49:07.63033,240,21,618, +66,2014-01-16 17:47:55.513106,914,823,740, +6,2014-01-20 01:47:22.318523,555,120,998, +6,2014-01-13 02:23:47.408368,449,227,785, +71,2014-01-17 00:29:16.184057,919,407,449, +6,2014-01-21 00:32:59.027501,599,57,690, +6,2014-01-13 06:26:28.155515,793,48,854, +71,2014-01-11 19:48:51.775732,245,973,354, +73,2014-01-13 03:59:11.949839,423,704,672, +66,2014-01-17 12:05:00.529903,950,670,57, +71,2014-01-16 19:02:30.591512,88,184,743, +71,2014-01-17 13:22:34.162544,941,845,319, +86,2014-01-16 08:41:54.414988,938,599,608, +66,2014-01-16 08:09:38.683182,388,670,122, +71,2014-01-20 08:44:22.691345,92,627,170, +86,2014-01-13 20:22:49.273308,127,711,641, +71,2014-01-21 05:55:52.018461,815,573,465, +66,2014-01-14 00:09:30.762767,513,636,520, +66,2014-01-11 20:41:40.739885,217,601,895, +86,2014-01-16 20:21:18.749749,858,137,837, +73,2014-01-17 10:46:24.221581,913,428,762, +71,2014-01-16 01:23:46.491794,779,984,515, +71,2014-01-17 15:58:44.112307,930,549,789, +6,2014-01-16 17:26:12.745328,454,35,142, +38,2014-01-16 19:15:31.07033,404,335,419, +73,2014-01-15 22:26:32.636946,571,696,996, +6,2014-01-14 06:58:58.44157,318,316,904, +73,2014-01-14 03:00:55.931699,59,358,979, +86,2014-01-16 08:32:24.764923,792,270,249, +86,2014-01-20 09:44:41.920858,695,572,42, +73,2014-01-20 16:28:13.959282,496,749,884, +73,2014-01-19 03:21:32.395253,307,74,964, +6,2014-01-15 21:32:37.433965,177,294,71, +6,2014-01-19 12:15:36.277805,495,696,534, +66,2014-01-10 23:45:19.803621,91,695,115, +38,2014-01-11 16:01:53.618441,940,90,772, +6,2014-01-19 06:48:35.305306,830,739,958, +38,2014-01-13 10:11:47.959135,928,621,733, +66,2014-01-12 15:50:45.394174,872,910,438, +71,2014-01-11 04:47:47.255564,560,996,271, +38,2014-01-20 02:16:48.489457,810,108,486, +86,2014-01-18 14:53:15.985685,728,808,513, +6,2014-01-17 22:10:21.418107,428,201,925, +71,2014-01-15 04:58:42.904445,63,182,124, +6,2014-01-13 17:02:54.669286,351,97,409, +38,2014-01-17 00:54:44.109452,857,945,485, +86,2014-01-18 05:21:32.177753,553,768,976, +38,2014-01-13 16:58:46.687748,590,510,426, +38,2014-01-20 05:04:14.872218,627,293,158, +6,2014-01-19 06:03:12.917639,626,859,899, +71,2014-01-19 17:20:05.437916,577,307,917, +71,2014-01-16 09:50:39.094218,527,494,387, +38,2014-01-14 01:26:59.409432,107,427,501, +71,2014-01-16 03:18:49.550223,671,275,585, +73,2014-01-11 21:16:51.839546,603,13,133, +73,2014-01-20 00:42:30.479762,621,233,969, +73,2014-01-21 05:45:22.187169,733,451,147, +6,2014-01-15 08:15:50.281535,126,245,292, +38,2014-01-12 21:43:26.411461,419,103,579, +73,2014-01-16 08:17:46.952092,912,32,705, +66,2014-01-14 12:00:32.202394,848,23,636, +73,2014-01-12 08:11:40.371163,597,848,480, +38,2014-01-14 05:39:19.347345,328,900,862, +66,2014-01-19 13:33:09.636358,47,763,606, +66,2014-01-21 00:27:16.648969,643,928,708, +6,2014-01-14 09:24:39.150966,481,391,736, +66,2014-01-20 09:35:03.254799,738,263,612, +71,2014-01-19 01:15:51.954694,940,797,528, +73,2014-01-16 23:36:27.11052,744,801,922, +38,2014-01-11 19:25:48.649392,6,296,755, +86,2014-01-19 10:03:39.210257,454,402,320, +73,2014-01-15 19:53:15.599977,935,429,35, +66,2014-01-19 14:19:04.635077,628,55,938, +6,2014-01-16 02:14:00.628365,389,625,984, +86,2014-01-20 04:51:58.504422,473,334,31, +66,2014-01-12 01:21:59.304365,195,605,974, +71,2014-01-11 21:08:44.737817,551,355,812, +6,2014-01-17 04:13:30.682175,909,842,771, +6,2014-01-14 22:20:45.992531,380,374,344, +6,2014-01-10 20:12:59.610453,948,437,354, +66,2014-01-15 04:16:43.599814,566,914,188, +73,2014-01-13 09:40:51.430447,671,745,432, +86,2014-01-16 10:03:38.704671,46,40,356, +66,2014-01-18 09:43:43.009246,381,925,360, +71,2014-01-18 16:59:40.980671,794,24,358, +38,2014-01-17 11:20:30.544218,169,77,809, +6,2014-01-17 04:26:13.489007,956,133,140, +6,2014-01-18 16:45:03.168258,501,190,374, +73,2014-01-11 13:36:20.825752,831,816,739, +6,2014-01-19 06:09:39.900888,3,908,688, +66,2014-01-13 19:02:50.120351,630,216,258, +6,2014-01-15 05:36:53.028146,411,983,705, +73,2014-01-20 18:21:20.272051,478,51,153, +38,2014-01-17 04:42:09.468115,513,867,249, +86,2014-01-13 13:10:02.664923,411,113,973, +73,2014-01-20 12:48:36.921019,9,975,274, +86,2014-01-20 18:06:48.61908,468,921,71, +73,2014-01-12 16:45:05.919723,135,823,341, +73,2014-01-18 08:04:28.875713,31,383,561, +66,2014-01-16 11:43:15.729601,166,339,253, +73,2014-01-13 16:10:54.569115,1,590,430, +73,2014-01-16 12:08:08.08597,634,271,760, +71,2014-01-11 01:36:31.329578,526,303,151, +38,2014-01-12 00:29:59.204611,912,675,150, +6,2014-01-11 08:22:08.714334,412,211,856, +38,2014-01-20 10:28:29.834,477,668,98, +66,2014-01-13 05:51:58.508975,176,869,441, +6,2014-01-12 09:30:53.45257,461,410,961, +66,2014-01-16 08:42:00.516175,106,469,528, +38,2014-01-17 08:12:44.501506,447,280,948, +86,2014-01-12 09:43:53.063023,463,393,902, +71,2014-01-20 16:58:44.115989,895,403,902, +73,2014-01-19 21:53:35.931953,147,299,505, +38,2014-01-17 23:47:31.767694,157,471,885, +73,2014-01-17 20:42:27.125234,512,273,137, +38,2014-01-17 08:53:16.913043,358,947,390, +66,2014-01-14 05:08:02.311911,46,261,660, +66,2014-01-13 19:08:40.61466,713,383,331, +73,2014-01-14 19:38:20.081301,154,386,207, +73,2014-01-14 22:44:23.138083,783,71,96, +71,2014-01-11 19:18:20.515549,531,706,884, +66,2014-01-17 18:41:10.201652,363,159,368, +38,2014-01-19 08:21:16.166229,179,101,212, +86,2014-01-11 07:39:40.787599,467,716,272, +6,2014-01-13 17:23:19.669767,754,595,908, +38,2014-01-11 15:31:18.831152,862,944,310, +73,2014-01-21 00:28:17.708619,195,409,716, +6,2014-01-13 05:30:08.289267,12,140,618, +66,2014-01-13 12:16:24.751294,142,680,683, +73,2014-01-18 02:32:46.58475,337,612,328, +71,2014-01-18 21:13:24.018867,440,376,996, +6,2014-01-16 08:27:19.320408,305,407,275, +71,2014-01-13 08:40:54.67072,670,548,17, +66,2014-01-19 02:49:55.348864,454,823,645, +86,2014-01-17 12:57:18.525019,811,778,955, +71,2014-01-13 21:03:03.385474,727,928,182, +86,2014-01-18 07:18:25.182865,975,974,702, +38,2014-01-19 22:49:17.034414,789,480,299, +6,2014-01-15 10:33:56.838044,386,303,278, +86,2014-01-13 10:00:25.699458,68,838,765, +73,2014-01-16 01:02:01.53592,408,618,885, +73,2014-01-17 00:17:49.901067,714,514,845, +38,2014-01-12 20:59:09.815447,767,532,746, +86,2014-01-14 16:55:37.468292,707,560,816, +71,2014-01-13 18:05:21.66876,342,571,183, +73,2014-01-19 21:41:36.9411,525,718,52, +86,2014-01-21 05:48:54.381334,49,194,475, +73,2014-01-17 03:13:23.980672,100,420,51, +38,2014-01-12 10:50:17.555761,226,245,624, +66,2014-01-14 19:27:14.462636,31,191,601, +6,2014-01-21 05:57:47.118755,361,938,504, +6,2014-01-13 10:08:38.071309,198,299,224, +73,2014-01-11 08:08:24.664289,709,405,967, +38,2014-01-19 08:19:03.285403,514,860,739, +71,2014-01-13 21:48:18.858909,785,923,679, +71,2014-01-14 05:31:44.334474,491,277,899, +71,2014-01-20 03:50:22.116555,24,892,95, +66,2014-01-13 16:16:36.567527,631,13,378, +66,2014-01-16 15:01:52.623741,307,312,359, +38,2014-01-12 10:06:46.867849,923,754,39, +86,2014-01-20 22:49:23.152277,555,794,272, +6,2014-01-14 06:15:16.642607,390,532,760, +86,2014-01-17 22:34:06.188677,713,979,47, +86,2014-01-13 01:30:17.823417,66,134,683, +71,2014-01-12 03:05:11.991472,84,540,830, +86,2014-01-14 05:31:24.713696,376,184,40, +6,2014-01-16 02:33:21.20889,615,180,983, +71,2014-01-19 14:23:37.174754,367,241,905, +38,2014-01-12 22:20:41.748109,623,941,375, +66,2014-01-20 17:07:18.046933,651,561,41, +86,2014-01-11 18:24:02.874213,849,566,146, +38,2014-01-18 03:22:43.284448,934,140,526, +86,2014-01-16 11:25:07.948,64,871,562, +86,2014-01-13 19:23:12.689659,385,99,123, +66,2014-01-11 14:18:20.75274,891,384,904, +73,2014-01-19 09:30:29.61676,422,74,873, +73,2014-01-12 11:04:49.630759,7,292,225, +66,2014-01-11 14:07:15.134074,575,470,736, +71,2014-01-15 06:43:53.597433,683,537,214, +86,2014-01-14 01:55:07.186521,445,580,841, +71,2014-01-15 13:34:29.59671,205,946,457, +38,2014-01-15 06:41:40.716607,547,491,687, +38,2014-01-16 16:03:45.25783,659,399,10, +6,2014-01-16 01:42:54.260999,559,897,423, +73,2014-01-13 09:00:44.002011,571,849,827, +86,2014-01-19 17:52:04.11674,619,52,593, +71,2014-01-19 11:14:38.595473,704,942,208, +86,2014-01-12 06:51:06.118567,117,888,711, +38,2014-01-12 04:08:40.684686,780,120,595, +66,2014-01-14 20:16:31.219213,14,347,655, +66,2014-01-13 20:57:52.986835,568,788,749, +73,2014-01-11 20:58:03.836965,265,949,233, +71,2014-01-18 06:31:47.86224,65,239,550, +38,2014-01-20 23:31:59.175511,389,567,750, +71,2014-01-14 02:28:21.66038,595,262,18, +86,2014-01-19 13:36:59.85371,501,969,5, +38,2014-01-13 23:03:23.889208,320,675,467, +6,2014-01-19 09:01:42.869271,155,637,643, +71,2014-01-17 22:00:37.028466,690,842,862, +73,2014-01-16 01:24:05.637736,445,65,283, +73,2014-01-18 20:09:00.916204,870,944,778, +86,2014-01-18 20:24:39.902678,21,600,640, +6,2014-01-12 22:46:48.922184,261,235,474, +66,2014-01-14 01:34:08.864204,368,659,421, +66,2014-01-11 09:47:52.592757,752,214,546, +86,2014-01-13 17:05:09.674925,573,357,522, +73,2014-01-12 05:04:38.480965,123,52,183, +86,2014-01-13 00:52:42.223517,650,917,596, +66,2014-01-14 11:12:24.808999,319,682,517, +73,2014-01-16 15:48:32.078817,525,905,21, +86,2014-01-16 06:47:49.410457,622,784,722, +71,2014-01-19 04:46:54.405709,558,790,609, +66,2014-01-21 02:30:12.795424,912,372,587, +38,2014-01-11 16:51:34.668288,19,445,955, +6,2014-01-14 00:29:48.666708,468,187,837, +6,2014-01-13 05:30:56.797435,628,555,939, +71,2014-01-20 14:43:38.785447,878,556,453, +73,2014-01-12 05:44:27.2626,702,818,637, +38,2014-01-14 16:22:02.916002,325,283,212, +73,2014-01-11 12:52:19.470133,27,646,861, +6,2014-01-16 06:00:58.481812,569,649,66, +86,2014-01-17 17:19:55.902837,294,661,195, +66,2014-01-12 13:50:23.307098,860,732,527, +71,2014-01-13 06:32:46.344052,816,167,786, +86,2014-01-17 10:51:55.078349,373,244,628, +6,2014-01-15 20:18:44.967897,195,669,348, +73,2014-01-11 14:09:46.198181,169,51,638, +38,2014-01-20 13:55:18.967976,590,255,357, +6,2014-01-13 23:20:27.837168,677,780,131, +73,2014-01-18 16:10:23.226647,601,558,367, +86,2014-01-15 09:19:24.605713,433,145,392, +6,2014-01-11 13:29:28.753791,608,497,297, +66,2014-01-16 06:35:03.129745,579,647,430, +71,2014-01-17 12:06:13.527898,570,557,644, +38,2014-01-14 19:03:37.617994,512,335,382, +86,2014-01-16 20:22:55.722502,409,941,909, +6,2014-01-20 09:11:23.202822,50,112,828, +38,2014-01-16 04:08:16.099378,904,733,765, +38,2014-01-19 01:15:37.946019,218,542,894, +73,2014-01-13 14:23:48.011821,684,485,467, +6,2014-01-11 13:56:48.178195,754,719,483, +71,2014-01-14 02:03:27.356476,567,533,964, +86,2014-01-11 13:10:42.41753,708,131,687, +73,2014-01-11 10:27:00.973619,428,899,910, +73,2014-01-14 22:55:02.025183,434,25,841, +6,2014-01-14 17:40:31.084239,721,74,567, +38,2014-01-13 19:57:57.771054,836,429,843, +86,2014-01-14 07:38:40.81063,212,14,247, +73,2014-01-16 03:24:58.346839,432,592,358, +71,2014-01-17 16:20:00.687057,716,545,656, +73,2014-01-15 00:31:00.280764,887,954,410, +73,2014-01-11 03:25:56.82907,698,833,425, +71,2014-01-14 03:39:56.590314,998,836,839, +73,2014-01-16 18:21:23.587861,902,665,349, +38,2014-01-13 13:58:43.173122,632,618,93, +6,2014-01-20 18:31:51.668663,228,301,34, +73,2014-01-11 08:40:08.555758,680,168,487, +71,2014-01-14 08:08:29.371303,25,593,48, +73,2014-01-20 02:27:10.63664,877,959,633, +6,2014-01-14 12:00:36.393345,552,832,938, +71,2014-01-11 18:18:52.59837,368,702,55, +38,2014-01-14 05:46:35.242352,706,715,646, +86,2014-01-15 05:30:05.147135,655,627,876, +71,2014-01-17 04:53:55.728115,531,729,534, +6,2014-01-20 21:52:48.77025,157,582,602, +86,2014-01-19 04:33:42.76513,894,191,842, +86,2014-01-12 19:16:51.450616,765,104,846, +73,2014-01-20 01:04:11.973072,892,777,634, +6,2014-01-14 02:41:58.864507,437,850,282, +71,2014-01-21 00:32:29.396634,430,120,124, +86,2014-01-12 09:27:59.984893,664,814,566, +6,2014-01-14 20:38:47.042702,321,308,192, +73,2014-01-13 20:35:56.75353,988,281,562, +6,2014-01-13 02:38:42.402424,272,990,590, +71,2014-01-15 11:05:48.016321,982,495,557, +71,2014-01-17 23:30:58.778713,939,224,152, +73,2014-01-17 00:19:13.487081,181,567,10, +38,2014-01-18 11:03:45.787376,182,839,0, +86,2014-01-11 01:09:39.589343,868,847,646, +71,2014-01-11 21:44:11.83392,614,448,689, +6,2014-01-14 21:23:46.474852,384,326,380, +71,2014-01-15 05:40:39.870106,114,220,262, +71,2014-01-12 05:10:08.66299,701,167,894, +66,2014-01-18 05:03:43.065165,755,757,593, +6,2014-01-21 04:02:03.457967,282,370,436, +38,2014-01-14 23:08:51.83653,464,910,842, +86,2014-01-17 17:35:34.733828,434,419,229, +73,2014-01-11 06:42:12.014145,769,465,112, +86,2014-01-18 11:17:21.207834,668,294,716, +66,2014-01-16 14:02:45.370886,559,453,521, +86,2014-01-14 22:42:48.40749,517,695,552, +86,2014-01-19 09:36:13.806203,980,42,497, +66,2014-01-19 23:49:20.613239,69,121,96, +73,2014-01-19 08:12:53.554625,489,879,803, +38,2014-01-15 08:30:09.534318,812,278,467, +71,2014-01-19 15:42:09.383906,542,573,135, +86,2014-01-17 06:46:36.319755,632,122,517, +71,2014-01-17 07:47:00.984933,495,448,531, +6,2014-01-18 10:46:21.356978,218,819,772, +71,2014-01-20 13:28:35.184682,267,303,742, +71,2014-01-17 02:19:30.381987,649,888,682, +66,2014-01-20 00:14:21.342291,574,745,177, +73,2014-01-14 04:07:22.227384,489,106,713, +86,2014-01-20 02:55:27.135518,699,116,216, +38,2014-01-11 20:53:03.744714,437,99,328, +73,2014-01-18 19:13:10.244124,616,800,885, +71,2014-01-16 20:26:25.91423,43,325,87, +38,2014-01-18 01:12:17.231796,530,981,561, +38,2014-01-16 00:16:56.0315,709,228,427, +71,2014-01-17 01:36:05.503573,91,766,814, +86,2014-01-19 02:56:29.066134,254,44,958, +6,2014-01-20 01:40:42.506352,226,830,683, +6,2014-01-11 01:16:45.373679,838,767,377, +86,2014-01-20 12:06:37.729124,533,531,183, +86,2014-01-17 00:44:25.571517,931,569,499, +73,2014-01-10 23:18:48.831646,686,4,633, +73,2014-01-14 05:15:29.565655,860,45,42, +71,2014-01-13 12:20:00.305764,670,796,202, +6,2014-01-11 10:01:00.845791,568,821,608, +71,2014-01-11 10:32:50.773907,164,867,516, +38,2014-01-19 06:22:45.67665,901,518,971, +86,2014-01-15 12:43:49.25328,165,889,280, +66,2014-01-20 00:09:04.580111,20,583,632, +86,2014-01-18 00:12:06.289889,942,72,346, +71,2014-01-13 14:56:42.807906,671,474,377, +86,2014-01-14 02:39:14.114848,774,145,203, +6,2014-01-16 09:54:15.673795,569,41,562, +66,2014-01-20 01:43:19.12808,207,854,779, +6,2014-01-20 14:26:15.099781,825,82,624, +73,2014-01-13 14:40:37.031193,793,737,384, +38,2014-01-19 09:11:54.312762,203,159,438, +86,2014-01-16 10:45:45.481769,342,996,892, +86,2014-01-12 08:54:58.373482,790,733,980, +38,2014-01-12 07:19:16.540146,886,729,670, +38,2014-01-15 07:41:12.617286,789,947,222, +86,2014-01-13 09:48:02.118197,388,814,479, +73,2014-01-20 06:32:26.784271,458,412,329, +86,2014-01-10 22:07:38.531517,621,76,721, +38,2014-01-20 15:00:19.350411,635,58,298, +73,2014-01-15 00:49:22.81619,84,558,508, +6,2014-01-17 03:43:44.03509,714,970,395, +38,2014-01-18 11:56:48.416546,730,262,978, +73,2014-01-13 20:30:05.322542,728,285,223, +86,2014-01-17 09:00:29.408769,178,11,111, +71,2014-01-17 18:03:26.14567,536,937,514, +6,2014-01-20 01:14:30.894478,650,988,429, +71,2014-01-17 12:19:18.240834,382,649,943, +86,2014-01-21 03:18:55.711744,937,317,384, +86,2014-01-12 07:34:31.200243,470,344,249, +71,2014-01-18 02:20:19.086625,328,94,206, +86,2014-01-11 07:51:46.485651,806,762,332, +71,2014-01-20 17:57:16.876893,194,908,854, +38,2014-01-12 09:04:08.340325,241,993,226, +66,2014-01-20 12:00:51.065763,216,337,243, +71,2014-01-17 12:09:23.16678,712,5,75, +66,2014-01-15 04:00:51.14823,324,187,454, +66,2014-01-13 08:40:05.18061,53,842,683, +86,2014-01-12 16:03:38.840995,519,324,113, +73,2014-01-13 23:44:10.27631,351,190,775, +73,2014-01-12 17:06:20.280811,690,636,508, +38,2014-01-15 10:44:15.872186,414,866,569, +38,2014-01-12 02:56:04.589073,128,763,21, +73,2014-01-18 07:52:05.76258,155,201,61, +73,2014-01-16 23:39:14.24567,417,265,118, +86,2014-01-13 14:15:21.129638,535,907,35, +6,2014-01-12 09:33:18.380285,161,508,761, +38,2014-01-19 13:27:16.363867,29,172,623, +73,2014-01-12 14:47:47.913908,4,733,54, +38,2014-01-12 11:40:56.911803,220,526,870, +86,2014-01-18 22:27:35.714277,193,421,186, +73,2014-01-16 19:37:10.730099,81,548,685, +66,2014-01-18 19:24:40.947311,239,972,243, +73,2014-01-16 04:24:24.130823,395,499,552, +86,2014-01-19 20:07:16.053059,884,801,34, +73,2014-01-14 22:25:10.35608,536,234,705, +38,2014-01-12 16:27:50.276912,842,154,608, +73,2014-01-18 15:21:46.947538,147,442,829, +38,2014-01-11 04:44:28.596915,418,548,610, +71,2014-01-12 13:46:45.988656,660,342,931, +86,2014-01-20 02:56:18.14778,135,695,973, +73,2014-01-18 11:04:47.683959,391,514,967, +73,2014-01-13 01:38:32.474307,328,486,186, +6,2014-01-19 14:53:35.024673,310,560,786, +66,2014-01-20 00:08:56.024283,751,200,828, +6,2014-01-12 07:39:23.54007,955,975,782, +73,2014-01-15 21:02:58.191453,873,478,524, +38,2014-01-13 22:09:47.172515,139,45,785, +38,2014-01-14 20:19:28.7211,511,752,163, +66,2014-01-17 17:06:37.032447,304,4,333, +71,2014-01-17 01:53:57.449244,138,209,843, +73,2014-01-16 17:25:49.001911,660,613,86, +86,2014-01-11 21:50:52.904633,476,819,732, +73,2014-01-18 08:50:02.038317,457,783,410, +6,2014-01-13 19:17:54.764492,753,955,857, +71,2014-01-18 01:30:07.150303,195,584,709, +86,2014-01-21 03:05:23.167955,50,406,335, +66,2014-01-15 08:51:13.144777,706,433,85, +71,2014-01-16 08:57:23.514589,52,961,52, +73,2014-01-12 11:53:11.082282,214,637,300, +71,2014-01-17 00:32:10.056999,182,572,15, +71,2014-01-14 01:24:59.228866,99,122,848, +71,2014-01-18 11:30:21.812381,343,973,251, +38,2014-01-14 13:56:51.00431,197,28,464, +86,2014-01-19 09:49:23.360108,436,548,894, +86,2014-01-17 01:37:37.865441,847,173,258, +66,2014-01-18 16:22:01.360392,880,936,918, +71,2014-01-10 20:17:13.637021,764,58,359, +71,2014-01-14 10:59:24.812978,363,878,618, +73,2014-01-19 01:06:29.957725,640,117,304, +71,2014-01-12 14:03:59.625677,771,298,949, +73,2014-01-13 07:55:42.960758,424,248,183, +38,2014-01-16 06:11:17.641684,777,481,429, +71,2014-01-14 19:42:32.099984,532,335,698, +6,2014-01-11 16:49:17.985431,138,658,872, +86,2014-01-15 00:20:13.665968,205,625,807, +71,2014-01-16 07:21:55.640054,970,676,792, +6,2014-01-16 17:52:16.177303,420,216,534, +38,2014-01-18 02:30:00.838482,596,814,977, +86,2014-01-20 07:41:24.361154,440,746,661, +71,2014-01-13 04:58:53.20975,999,612,925, +38,2014-01-13 22:23:58.287726,846,686,566, +38,2014-01-15 19:07:13.363066,263,570,911, +71,2014-01-14 06:49:46.114803,413,839,628, +71,2014-01-11 01:14:00.326461,959,451,391, +71,2014-01-18 18:25:08.127976,879,510,102, +86,2014-01-11 02:19:53.265106,649,70,121, +86,2014-01-10 22:19:23.494417,286,451,190, +73,2014-01-12 21:16:21.272754,497,683,642, +6,2014-01-16 15:17:16.779695,6,978,430, +66,2014-01-12 14:12:34.576699,131,62,285, +86,2014-01-19 01:48:31.329753,367,250,604, +6,2014-01-19 20:42:16.00898,636,546,221, +6,2014-01-20 05:42:56.389499,453,815,177, +38,2014-01-12 09:45:22.334064,465,163,872, +71,2014-01-18 00:31:39.369089,115,287,926, +38,2014-01-16 01:20:34.25494,564,944,397, +66,2014-01-20 06:07:23.694874,115,607,47, +38,2014-01-18 00:48:53.006109,674,847,300, +38,2014-01-19 16:19:59.068336,736,788,118, +71,2014-01-18 01:13:53.6526,98,280,168, +86,2014-01-19 18:52:52.631785,266,985,970, +71,2014-01-11 18:15:42.029096,528,933,386, +38,2014-01-13 01:25:11.294283,842,854,95, +6,2014-01-13 08:35:24.73177,253,866,619, +38,2014-01-12 15:05:00.014946,358,30,932, +86,2014-01-17 05:45:24.960251,764,194,218, +73,2014-01-18 19:57:20.371824,892,455,339, +6,2014-01-18 12:57:16.192248,337,629,825, +6,2014-01-14 02:15:25.798733,456,141,596, +71,2014-01-17 21:38:44.733397,160,679,772, +6,2014-01-20 21:56:09.401999,173,728,950, +38,2014-01-17 04:39:24.086879,184,16,687, +71,2014-01-12 10:45:58.096463,211,374,388, +73,2014-01-13 22:45:55.516801,526,922,451, +71,2014-01-17 09:53:24.413341,233,381,595, +73,2014-01-20 09:11:06.22444,674,51,434, +73,2014-01-14 05:05:48.782327,510,947,893, +71,2014-01-17 12:12:47.907757,373,967,157, +6,2014-01-12 00:27:27.497611,873,141,266, +86,2014-01-20 00:23:05.562021,971,667,927, +66,2014-01-19 06:25:22.484875,662,581,817, +6,2014-01-20 06:15:58.827365,374,65,892, +73,2014-01-18 15:05:21.571001,541,691,155, +86,2014-01-18 06:08:18.874374,316,134,21, +66,2014-01-11 10:01:21.161848,225,920,446, +73,2014-01-15 09:37:00.94009,903,520,746, +73,2014-01-13 01:28:53.129314,961,131,9, +38,2014-01-20 20:08:44.856722,384,572,499, +73,2014-01-12 04:25:53.946198,637,622,144, +38,2014-01-11 11:48:52.197651,199,234,638, +6,2014-01-17 15:22:38.509322,329,183,82, +86,2014-01-21 03:18:46.577983,769,618,225, +38,2014-01-12 10:04:34.227166,30,452,703, +38,2014-01-19 20:47:49.803605,568,641,658, +73,2014-01-13 05:54:11.309753,17,241,517, +38,2014-01-14 05:09:34.24211,613,839,758, +86,2014-01-15 20:33:14.763856,101,678,10, +66,2014-01-21 05:51:31.681997,773,809,874, +66,2014-01-11 12:06:50.434359,286,220,769, +66,2014-01-19 02:48:40.562591,267,671,196, +6,2014-01-17 21:30:16.415394,332,401,1000, +38,2014-01-11 04:02:59.836357,437,603,21, +38,2014-01-15 01:28:04.649469,824,580,459, +6,2014-01-19 12:16:14.511857,145,35,594, +38,2014-01-14 06:48:55.353578,350,903,166, +66,2014-01-11 05:21:29.062809,276,529,443, +66,2014-01-18 15:27:20.736716,353,684,203, +71,2014-01-17 15:54:44.135905,83,129,781, +38,2014-01-17 21:34:16.970986,583,741,882, +71,2014-01-19 19:54:48.234327,374,151,695, +6,2014-01-16 10:17:49.697926,181,617,621, +73,2014-01-15 21:59:39.455861,39,138,2, +73,2014-01-18 20:10:47.061692,947,495,751, +66,2014-01-13 19:23:11.269346,709,187,456, +73,2014-01-12 22:07:58.330235,468,756,952, +71,2014-01-19 10:12:08.22354,393,713,82, +66,2014-01-18 09:00:12.209435,334,14,382, +86,2014-01-15 03:36:51.45955,502,833,75, +73,2014-01-19 00:20:53.080261,916,182,401, +66,2014-01-19 17:26:06.156053,859,713,220, +66,2014-01-15 19:25:43.65762,469,804,530, +73,2014-01-15 09:43:31.589583,94,946,811, +73,2014-01-19 14:44:52.734036,720,207,634, +73,2014-01-17 09:30:17.884785,757,554,421, +66,2014-01-14 00:31:21.393189,56,143,589, +6,2014-01-11 14:39:04.044209,765,732,654, +71,2014-01-20 18:39:52.126896,825,489,51, +71,2014-01-19 01:04:36.157045,523,452,231, +73,2014-01-11 14:30:35.726206,761,771,57, +71,2014-01-11 00:46:42.561255,54,266,485, +66,2014-01-16 21:53:16.720054,752,875,255, +38,2014-01-18 16:00:52.1416,242,141,544, +38,2014-01-11 08:49:42.397614,567,23,471, +38,2014-01-21 03:21:21.369523,827,689,753, +86,2014-01-16 22:17:06.653457,821,25,380, +6,2014-01-14 19:38:37.751192,918,781,376, +6,2014-01-11 02:42:50.432752,906,911,310, +6,2014-01-14 07:44:27.390172,705,757,140, +6,2014-01-11 05:33:21.887097,443,556,932, +38,2014-01-18 04:17:07.403738,835,34,603, +6,2014-01-12 21:39:15.624499,851,736,391, +6,2014-01-16 19:51:11.585442,937,497,310, +6,2014-01-12 20:16:46.859599,958,456,686, +6,2014-01-20 21:50:02.68661,785,664,931, +71,2014-01-19 19:14:22.854789,379,499,604, +73,2014-01-14 22:24:45.189835,699,895,375, +71,2014-01-19 02:02:10.91015,208,597,198, +6,2014-01-16 22:14:35.064224,325,250,145, +71,2014-01-19 06:01:36.649385,493,477,282, +66,2014-01-16 20:23:03.99083,240,920,554, +6,2014-01-15 09:40:41.220276,203,667,789, +71,2014-01-13 19:27:20.307005,899,819,780, +38,2014-01-11 00:06:35.580414,139,480,713, +71,2014-01-13 18:25:33.954732,587,720,848, +38,2014-01-20 08:57:38.191791,739,717,450, +71,2014-01-14 04:37:56.974021,463,361,792, +38,2014-01-14 13:04:37.998942,114,288,673, +66,2014-01-19 21:37:30.318686,559,232,944, +86,2014-01-11 23:42:33.131066,260,462,144, +6,2014-01-15 07:35:13.725148,670,985,239, +86,2014-01-20 02:24:12.879943,514,711,324, +71,2014-01-18 01:35:49.85112,492,41,732, +66,2014-01-12 17:36:05.866748,70,605,734, +86,2014-01-20 15:13:55.277975,113,665,154, +71,2014-01-17 22:57:11.221062,581,870,415, +71,2014-01-18 19:53:12.520204,501,987,368, +71,2014-01-14 04:52:33.029167,767,580,38, +6,2014-01-18 05:40:01.653815,850,343,296, +71,2014-01-11 21:37:39.910796,43,738,458, +86,2014-01-14 14:25:54.916681,782,425,439, +6,2014-01-15 03:57:09.057552,985,235,179, +86,2014-01-13 23:16:55.535295,950,642,510, +73,2014-01-20 14:17:06.502124,504,433,640, +73,2014-01-17 04:13:55.917152,121,600,868, +71,2014-01-13 15:06:58.221905,464,558,75, +6,2014-01-19 03:31:29.356911,401,919,626, +38,2014-01-10 20:38:41.106987,845,339,284, +38,2014-01-11 11:09:09.132474,953,28,349, +86,2014-01-14 19:46:04.421135,44,65,758, +71,2014-01-19 06:40:17.756372,751,501,140, +86,2014-01-17 11:32:13.123304,452,655,297, +73,2014-01-19 09:26:45.64183,968,259,814, +6,2014-01-11 20:07:38.063797,435,985,798, +66,2014-01-17 15:38:48.703717,569,101,715, +6,2014-01-11 21:52:19.596563,264,934,879, +73,2014-01-10 23:05:16.255586,805,391,914, +66,2014-01-21 00:16:45.677738,252,618,551, +73,2014-01-15 14:56:57.595504,467,743,391, +38,2014-01-20 00:42:46.574693,439,690,209, +6,2014-01-11 17:59:18.809222,363,913,576, +38,2014-01-20 02:32:11.320652,752,605,87, +66,2014-01-18 21:06:59.454635,943,836,565, +71,2014-01-18 23:35:08.660342,622,910,603, +73,2014-01-11 14:08:17.187399,139,240,390, +71,2014-01-18 06:20:54.732609,661,804,867, +86,2014-01-15 16:32:19.881404,680,680,615, +86,2014-01-19 14:01:29.707604,82,509,392, +6,2014-01-11 05:13:27.762195,137,661,917, +38,2014-01-12 16:12:21.535219,40,154,435, +66,2014-01-20 15:39:09.6184,500,322,356, +71,2014-01-14 23:39:22.678876,455,149,245, +21,2014-01-17 00:09:30.592771,526,120,821, +70,2014-01-13 08:56:05.154114,179,871,211, +21,2014-01-14 07:56:29.181,960,866,289, +21,2014-01-12 22:23:26.509923,428,610,419, +70,2014-01-16 04:03:03.376019,850,121,765, +70,2014-01-12 05:27:58.537911,178,450,701, +34,2014-01-12 23:02:07.616909,889,913,908, +70,2014-01-16 19:12:12.508493,613,498,200, +70,2014-01-16 05:14:02.959047,697,721,84, +34,2014-01-10 23:42:25.373701,230,920,306, +70,2014-01-13 00:44:25.631797,160,269,237, +34,2014-01-14 08:40:48.600877,778,47,507, +21,2014-01-11 23:50:03.437498,381,777,744, +21,2014-01-19 20:23:14.335932,659,300,379, +70,2014-01-15 10:33:08.197441,273,714,832, +21,2014-01-12 02:55:19.693084,86,18,17, +34,2014-01-19 14:40:00.013671,50,340,336, +34,2014-01-20 05:30:05.792945,718,218,241, +21,2014-01-10 21:38:06.267777,653,256,235, +21,2014-01-20 12:39:18.822893,605,396,100, +70,2014-01-19 02:02:17.113596,195,656,241, +34,2014-01-18 22:45:05.722831,934,146,577, +21,2014-01-18 06:14:27.483654,486,60,291, +70,2014-01-19 20:10:34.300995,597,716,296, +21,2014-01-15 23:06:00.455441,173,790,989, +34,2014-01-12 16:46:47.365058,67,409,266, +70,2014-01-18 04:12:04.009018,47,841,805, +34,2014-01-16 08:19:28.217635,609,665,676, +34,2014-01-14 12:59:08.900696,476,196,160, +70,2014-01-17 13:51:13.627418,786,918,423, +21,2014-01-20 11:58:50.896512,576,961,875, +21,2014-01-20 17:08:39.493468,838,339,501, +21,2014-01-20 02:47:18.781531,338,307,617, +34,2014-01-13 13:55:20.077512,921,277,935, +21,2014-01-12 09:32:06.003809,780,845,236, +70,2014-01-15 00:50:22.157969,152,791,455, +34,2014-01-14 23:23:18.615424,482,79,201, +21,2014-01-14 12:34:13.620719,839,94,256, +21,2014-01-21 00:02:34.666461,95,593,420, +21,2014-01-20 08:37:21.57489,891,316,403, +70,2014-01-14 16:16:38.994421,863,380,842, +70,2014-01-12 18:47:00.298677,95,463,283, +21,2014-01-13 11:18:10.175768,554,764,204, +34,2014-01-15 20:06:42.431919,408,881,269, +21,2014-01-11 09:10:14.634609,587,533,621, +70,2014-01-18 01:51:18.373627,136,874,744, +34,2014-01-17 03:02:02.125422,152,191,930, +21,2014-01-20 03:50:14.64828,437,863,137, +34,2014-01-17 01:21:24.166571,335,997,159, +70,2014-01-17 04:40:08.3932,988,232,172, +70,2014-01-19 10:29:33.471592,209,289,411, +21,2014-01-14 21:23:41.280586,879,841,85, +21,2014-01-14 21:25:14.116031,567,149,568, +21,2014-01-16 10:44:00.955246,285,200,44, +70,2014-01-13 11:34:15.581581,980,767,444, +21,2014-01-20 00:31:14.571892,382,434,559, +21,2014-01-18 07:30:48.320304,675,744,719, +34,2014-01-20 19:46:19.5906,775,446,716, +70,2014-01-15 02:50:42.789527,545,593,444, +34,2014-01-11 14:29:57.221,979,55,356, +34,2014-01-17 03:37:33.218436,653,142,749, +34,2014-01-14 08:49:33.686459,341,903,618, +34,2014-01-11 01:38:36.714886,309,328,765, +70,2014-01-16 00:24:51.999968,92,568,928, +70,2014-01-17 02:44:53.763971,867,304,891, +21,2014-01-12 15:10:42.718696,870,73,807, +70,2014-01-20 05:15:14.157936,542,309,732, +34,2014-01-10 20:08:12.379815,920,359,69, +21,2014-01-16 07:44:56.339415,588,184,166, +21,2014-01-19 23:17:48.824817,239,67,413, +21,2014-01-20 08:45:33.954704,486,913,694, +21,2014-01-20 04:01:35.334254,828,699,427, +70,2014-01-11 12:04:49.123494,776,629,785, +70,2014-01-12 14:03:44.130472,975,120,872, +21,2014-01-14 18:08:17.766173,476,417,231, +34,2014-01-12 01:15:03.758103,332,183,201, +70,2014-01-19 19:55:02.504098,632,917,752, +70,2014-01-21 01:10:19.891595,788,313,274, +34,2014-01-10 23:05:18.406383,450,525,628, +21,2014-01-15 15:16:26.671089,131,475,875, +34,2014-01-16 23:50:28.285214,994,897,278, +21,2014-01-19 13:34:51.877975,776,563,647, +70,2014-01-19 16:40:07.951675,784,22,967, +21,2014-01-21 01:15:42.401245,212,143,822, +21,2014-01-14 18:18:52.833221,326,619,256, +70,2014-01-11 22:14:23.533256,51,722,254, +34,2014-01-19 19:46:56.973136,844,172,856, +21,2014-01-11 19:49:41.153944,508,18,61, +34,2014-01-11 12:00:43.124275,324,417,430, +21,2014-01-13 16:37:39.763083,447,307,40, +34,2014-01-12 14:19:38.374944,819,918,152, +70,2014-01-17 19:38:16.342711,426,839,338, +21,2014-01-17 05:27:13.449542,329,919,89, +34,2014-01-12 19:58:15.08983,102,546,63, +70,2014-01-12 14:03:08.342678,154,981,506, +34,2014-01-13 02:12:07.213514,231,593,244, +21,2014-01-14 15:08:57.808526,169,348,76, +21,2014-01-11 13:18:22.501034,995,950,454, +70,2014-01-13 02:20:19.593328,936,457,812, +21,2014-01-20 02:53:54.14836,359,490,865, +21,2014-01-20 16:36:11.325851,811,443,326, +70,2014-01-12 05:05:53.548032,141,56,389, +21,2014-01-19 00:55:29.482615,0,570,707, +34,2014-01-10 22:41:00.449345,587,208,283, +34,2014-01-13 23:09:37.678923,916,919,397, +34,2014-01-12 13:03:47.248788,960,36,107, +21,2014-01-12 03:56:04.207448,14,134,947, +70,2014-01-12 13:04:40.183021,12,223,150, +21,2014-01-12 08:14:07.140802,95,790,445, +70,2014-01-12 07:01:22.613831,655,564,950, +34,2014-01-17 08:21:06.854109,872,12,242, +34,2014-01-18 12:04:35.426016,664,857,114, +34,2014-01-21 00:36:14.492225,808,914,65, +21,2014-01-15 19:01:14.805783,539,868,160, +34,2014-01-18 07:20:17.82726,504,145,695, +21,2014-01-14 12:55:07.325446,36,672,898, +34,2014-01-16 21:15:38.339458,88,556,124, +70,2014-01-16 21:07:14.800817,50,442,573, +34,2014-01-15 12:44:48.47939,675,195,677, +21,2014-01-17 13:16:21.463733,939,50,899, +70,2014-01-19 17:44:54.5639,816,981,859, +21,2014-01-17 07:04:26.854752,993,949,39, +34,2014-01-14 02:54:37.806445,928,882,132, +21,2014-01-15 17:12:08.013442,388,2,556, +70,2014-01-19 07:02:41.944582,128,258,666, +34,2014-01-15 20:57:46.149123,118,676,967, +70,2014-01-17 23:24:15.226955,871,914,608, +34,2014-01-12 16:11:39.753527,28,42,246, +21,2014-01-16 14:16:08.650157,16,269,657, +70,2014-01-20 05:44:34.820702,340,848,102, +70,2014-01-11 13:05:33.901887,708,888,953, +70,2014-01-16 00:52:19.976008,327,941,938, +70,2014-01-11 04:50:28.368734,109,813,866, +21,2014-01-19 18:01:03.384502,901,914,952, +34,2014-01-16 03:33:20.425353,129,54,379, +70,2014-01-14 08:00:06.047657,864,664,607, +34,2014-01-11 01:04:50.63329,774,512,454, +34,2014-01-17 11:29:24.632801,644,471,779, +70,2014-01-16 01:04:46.231097,962,848,888, +34,2014-01-12 13:18:57.774091,579,182,753, +34,2014-01-18 22:30:47.247051,360,374,757, +34,2014-01-12 03:25:53.085205,863,782,897, +21,2014-01-20 05:23:33.200106,33,810,716, +70,2014-01-18 17:07:01.739277,881,80,29, +21,2014-01-17 02:27:07.891408,115,84,239, +21,2014-01-17 06:43:51.027786,912,867,579, +70,2014-01-12 00:02:09.064723,476,471,238, +21,2014-01-12 17:42:46.230867,832,783,883, +21,2014-01-12 21:51:05.828603,304,853,427, +34,2014-01-16 16:46:57.544531,967,103,289, +34,2014-01-19 10:59:07.694601,818,404,35, +34,2014-01-11 09:36:00.392503,417,332,260, +21,2014-01-12 17:51:24.399283,568,646,591, +34,2014-01-12 07:53:45.501046,471,108,453, +70,2014-01-16 06:48:08.405945,174,815,721, +34,2014-01-21 04:54:06.343865,276,990,637, +70,2014-01-17 08:51:31.650169,471,769,601, +34,2014-01-13 00:12:23.632901,265,192,586, +70,2014-01-12 15:05:46.097392,597,990,377, +21,2014-01-12 17:07:40.300746,175,320,989, +34,2014-01-11 23:56:58.453603,847,501,542, +21,2014-01-13 08:11:19.999279,853,965,460, +21,2014-01-17 22:00:00.276754,37,116,728, +21,2014-01-12 08:47:26.822757,547,175,489, +21,2014-01-11 20:12:23.38378,905,131,193, +70,2014-01-12 19:33:20.702526,31,885,665, +34,2014-01-15 20:47:32.870414,313,363,507, +34,2014-01-12 01:17:14.017489,405,788,462, +21,2014-01-19 11:02:45.335327,405,56,854, +21,2014-01-21 01:52:19.10151,740,344,231, +70,2014-01-13 18:36:11.791579,727,250,783, +70,2014-01-17 03:33:32.582378,888,942,878, +34,2014-01-11 23:18:12.187135,978,767,229, +21,2014-01-12 17:59:44.992105,546,18,165, +70,2014-01-14 14:40:34.321655,913,234,857, +21,2014-01-18 05:45:20.078544,553,680,702, +21,2014-01-19 04:43:36.019892,135,96,845, +21,2014-01-15 18:42:43.386797,924,100,199, +21,2014-01-20 03:28:06.309411,363,846,488, +70,2014-01-10 20:34:41.848495,469,838,104, +34,2014-01-11 05:29:40.931328,992,421,764, +34,2014-01-18 08:27:14.004011,491,567,124, +21,2014-01-11 10:10:42.240998,626,985,505, +21,2014-01-13 03:21:05.33061,258,507,952, +21,2014-01-19 20:20:59.505057,585,855,53, +34,2014-01-16 20:58:50.646943,217,313,710, +70,2014-01-13 02:15:11.674476,263,753,108, +34,2014-01-15 23:12:31.155226,570,517,931, +21,2014-01-19 01:11:14.279844,258,923,559, +70,2014-01-14 21:20:57.772286,351,960,973, +21,2014-01-17 20:20:11.455972,143,598,767, +21,2014-01-20 05:08:12.733866,109,453,576, +34,2014-01-17 09:32:17.771566,182,843,538, +70,2014-01-14 12:20:11.733145,264,44,272, +21,2014-01-11 07:55:39.556623,563,425,120, +70,2014-01-18 09:44:41.155765,832,424,419, +70,2014-01-16 11:53:32.43567,52,89,323, +21,2014-01-16 08:43:12.427036,794,39,627, +70,2014-01-19 15:01:55.173254,556,36,175, +21,2014-01-14 16:56:17.770997,818,970,841, +34,2014-01-16 04:35:31.528967,282,568,631, +34,2014-01-12 03:38:06.964833,767,811,682, +21,2014-01-21 00:29:50.353794,277,477,494, +21,2014-01-17 07:53:43.716102,867,331,423, +70,2014-01-14 01:37:51.956939,112,215,272, +21,2014-01-14 09:10:24.675449,918,288,43, +34,2014-01-14 07:39:03.794647,453,712,933, +70,2014-01-12 00:21:27.97683,241,187,273, +21,2014-01-19 07:53:08.062246,111,545,338, +70,2014-01-13 05:07:10.104057,711,214,583, +21,2014-01-12 00:56:09.825325,856,336,907, +70,2014-01-19 17:22:48.993574,126,766,347, +21,2014-01-20 17:34:24.108069,212,972,78, +34,2014-01-12 15:06:52.066323,773,234,961, +70,2014-01-11 14:43:54.324184,913,344,317, +70,2014-01-19 07:55:23.613127,15,940,484, +34,2014-01-18 16:05:42.713266,371,961,102, +21,2014-01-13 20:59:05.999079,687,897,885, +21,2014-01-14 01:07:54.768353,896,226,698, +34,2014-01-16 11:16:56.993528,513,607,729, +21,2014-01-17 22:20:03.771366,323,315,69, +34,2014-01-21 01:28:06.224744,397,802,775, +21,2014-01-15 10:25:09.727394,396,466,428, +34,2014-01-14 01:52:21.542931,546,42,136, +34,2014-01-14 07:48:17.957889,651,382,666, +70,2014-01-15 22:20:49.284017,926,629,984, +70,2014-01-11 05:37:02.698696,344,822,796, +21,2014-01-19 23:41:50.393558,946,128,880, +34,2014-01-11 01:04:01.711054,920,163,694, +70,2014-01-20 00:38:57.87195,31,668,934, +70,2014-01-13 10:38:08.164555,981,101,923, +70,2014-01-16 09:39:33.240021,368,126,25, +34,2014-01-10 22:17:04.837202,640,355,214, +34,2014-01-13 05:07:58.518349,206,535,416, +34,2014-01-12 11:33:16.956123,426,656,221, +34,2014-01-14 03:54:56.794141,248,782,435, +70,2014-01-16 18:18:23.194218,563,964,758, +21,2014-01-15 23:12:20.75077,983,5,122, +21,2014-01-15 08:16:24.771391,788,220,9, +21,2014-01-14 20:11:31.256464,892,441,475, +70,2014-01-18 08:19:30.854827,302,918,859, +70,2014-01-16 13:12:34.596715,983,301,461, +70,2014-01-13 07:34:20.250456,493,139,703, +34,2014-01-17 19:53:54.962897,732,988,489, +70,2014-01-18 08:19:26.663456,550,413,243, +34,2014-01-14 02:18:14.574641,604,52,684, +34,2014-01-15 21:49:18.576023,683,565,160, +21,2014-01-15 18:25:09.376722,845,592,636, +34,2014-01-17 03:17:20.57372,419,283,722, +34,2014-01-19 02:57:13.344795,195,736,527, +34,2014-01-10 23:42:06.37025,227,216,161, +70,2014-01-13 19:37:24.345085,620,639,14, +21,2014-01-18 22:25:19.569539,793,445,681, +21,2014-01-15 14:07:16.097645,940,260,924, +70,2014-01-17 01:29:45.888435,814,454,880, +34,2014-01-12 00:13:37.527427,77,665,574, +34,2014-01-20 16:28:05.381661,504,719,73, +70,2014-01-17 11:06:48.587132,285,607,447, +70,2014-01-21 03:55:27.920985,165,593,699, +83,2014-01-20 21:32:07.093134,274,33,372, +39,2014-01-16 05:45:46.459501,476,708,295, +49,2014-01-13 08:33:36.085541,172,372,447, +39,2014-01-16 01:11:40.333155,812,905,533, +49,2014-01-16 08:02:51.296704,844,995,895, +83,2014-01-15 17:41:34.604309,800,320,133, +39,2014-01-17 16:44:57.289698,271,406,958, +83,2014-01-19 15:57:48.090845,69,917,15, +83,2014-01-11 05:59:57.798527,255,260,387, +39,2014-01-12 09:57:18.040468,338,279,140, +83,2014-01-13 18:14:12.862235,728,973,715, +49,2014-01-15 06:11:29.05499,108,847,204, +49,2014-01-19 22:16:48.895715,828,369,252, +39,2014-01-19 11:26:47.45937,12,118,165, +83,2014-01-17 17:45:49.305446,664,751,49, +83,2014-01-16 12:10:43.858611,847,164,569, +39,2014-01-16 13:46:14.122826,379,78,809, +83,2014-01-21 00:04:03.880505,704,367,47, +83,2014-01-11 04:00:02.435053,295,805,466, +39,2014-01-11 02:11:23.499548,391,572,663, +83,2014-01-16 21:21:24.454225,350,104,710, +83,2014-01-19 10:57:15.779849,355,981,194, +49,2014-01-11 05:53:29.870218,434,936,221, +49,2014-01-19 20:58:48.799729,291,377,132, +39,2014-01-17 03:22:35.349388,377,527,314, +49,2014-01-16 00:00:45.967862,745,837,963, +39,2014-01-15 16:28:34.688165,869,816,468, +39,2014-01-18 07:36:12.876815,649,311,791, +83,2014-01-15 10:28:51.349943,276,619,487, +39,2014-01-11 21:35:23.275297,615,588,187, +39,2014-01-18 05:31:40.7978,182,391,160, +49,2014-01-15 02:00:58.443078,562,634,814, +39,2014-01-17 07:21:09.734798,598,88,64, +83,2014-01-20 18:05:16.883342,421,658,537, +83,2014-01-20 07:12:38.776233,766,508,289, +39,2014-01-12 09:24:01.031502,909,361,434, +39,2014-01-15 05:46:51.48765,14,657,137, +49,2014-01-16 17:57:36.065932,250,601,493, +49,2014-01-21 05:21:49.122766,908,179,87, +83,2014-01-15 15:46:49.286177,576,684,972, +49,2014-01-18 07:54:54.106819,381,265,842, +39,2014-01-13 17:36:01.985001,30,145,516, +83,2014-01-20 01:58:18.341586,148,684,549, +83,2014-01-17 00:11:43.002533,993,110,287, +49,2014-01-11 23:02:49.44437,744,286,929, +39,2014-01-16 13:44:07.647031,491,898,56, +49,2014-01-12 06:22:26.861145,335,281,597, +83,2014-01-17 16:49:03.567196,562,20,297, +83,2014-01-16 07:48:11.527536,555,246,667, +83,2014-01-12 14:22:29.296198,127,576,722, +49,2014-01-17 23:00:27.067164,555,594,40, +83,2014-01-11 23:09:35.98218,85,705,585, +39,2014-01-21 05:19:45.076047,927,110,807, +83,2014-01-18 08:53:56.937381,144,175,730, +49,2014-01-21 00:08:24.781909,689,763,277, +49,2014-01-17 02:42:20.425434,195,972,700, +83,2014-01-13 02:54:42.905244,840,962,296, +39,2014-01-15 10:36:59.470074,944,736,229, +83,2014-01-14 04:18:33.302249,499,324,235, +83,2014-01-17 17:23:34.255186,703,302,689, +83,2014-01-16 12:12:22.745371,445,353,407, +49,2014-01-11 03:50:14.10005,761,74,910, +49,2014-01-11 13:24:32.698265,768,586,109, +49,2014-01-12 13:33:32.480589,8,131,712, +39,2014-01-21 01:55:30.98381,424,22,663, +83,2014-01-21 00:37:11.474918,265,357,787, +83,2014-01-14 02:57:33.51209,603,790,363, +49,2014-01-15 01:42:22.47146,677,324,615, +49,2014-01-16 12:34:47.54085,929,590,27, +83,2014-01-14 02:19:22.634856,807,437,986, +83,2014-01-19 21:29:11.758057,58,847,692, +49,2014-01-13 14:29:41.647669,407,499,589, +83,2014-01-16 23:55:24.620276,800,179,761, +83,2014-01-18 17:27:30.099643,251,579,19, +83,2014-01-19 18:41:24.650202,526,477,807, +49,2014-01-18 02:58:14.064646,534,825,281, +83,2014-01-14 01:11:37.746675,75,107,32, +83,2014-01-21 05:03:51.511767,331,25,951, +83,2014-01-14 13:47:17.632261,306,714,403, +39,2014-01-19 12:59:49.27463,335,524,433, +39,2014-01-12 13:26:20.807965,305,808,287, +83,2014-01-11 06:47:44.699425,501,707,412, +83,2014-01-20 16:09:25.256811,703,273,526, +49,2014-01-12 12:46:05.884431,586,800,656, +39,2014-01-18 19:41:41.636806,529,420,58, +49,2014-01-20 10:17:50.038721,751,560,967, +49,2014-01-18 19:28:26.309866,62,381,42, +83,2014-01-21 02:36:24.54205,537,914,634, +39,2014-01-14 14:54:49.508796,784,382,262, +49,2014-01-11 17:46:59.612534,274,20,764, +49,2014-01-17 13:59:58.797656,160,298,565, +49,2014-01-20 07:07:12.254167,407,750,427, +49,2014-01-12 01:37:13.712584,611,139,98, +83,2014-01-18 07:24:31.495921,776,739,855, +49,2014-01-11 14:40:44.734755,321,106,52, +83,2014-01-11 21:32:44.696395,589,928,14, +39,2014-01-18 02:01:42.970839,566,762,696, +49,2014-01-14 21:38:18.247264,551,970,27, +83,2014-01-16 03:15:07.168274,369,335,163, +49,2014-01-13 08:36:30.512107,598,530,611, +39,2014-01-18 03:57:40.88212,245,370,74, +39,2014-01-14 18:44:18.926331,240,636,547, +83,2014-01-16 03:06:12.159776,62,132,520, +39,2014-01-13 21:53:05.502396,472,349,643, +83,2014-01-12 06:11:49.025974,503,580,272, +49,2014-01-14 15:47:36.810398,993,923,862, +39,2014-01-21 04:51:19.567461,639,246,815, +49,2014-01-15 11:23:26.772649,811,161,523, +83,2014-01-14 14:51:28.322165,492,761,939, +39,2014-01-14 12:38:37.199723,768,346,32, +39,2014-01-13 18:23:16.047279,539,479,873, +83,2014-01-16 08:17:49.130129,481,335,2, +49,2014-01-14 23:26:21.899148,955,581,912, +39,2014-01-13 04:32:41.304091,376,871,770, +83,2014-01-18 01:03:55.01456,976,595,559, +39,2014-01-12 13:08:03.535954,39,88,86, +83,2014-01-12 08:50:31.342811,805,914,158, +83,2014-01-15 14:32:21.324846,860,663,734, +49,2014-01-12 09:44:28.078004,219,183,622, +39,2014-01-16 03:45:20.851607,635,250,495, +83,2014-01-16 12:19:20.937379,569,832,375, +83,2014-01-19 03:44:26.87566,853,396,554, +83,2014-01-15 04:52:33.106193,184,45,210, +39,2014-01-17 17:56:34.649964,518,418,345, +83,2014-01-16 05:08:58.372001,37,530,698, +39,2014-01-15 23:33:17.840947,187,402,499, +83,2014-01-18 19:29:19.346777,896,810,748, +49,2014-01-13 01:10:41.34284,201,505,856, +83,2014-01-20 01:11:36.088211,980,588,481, +49,2014-01-13 16:44:26.515051,213,42,563, +39,2014-01-15 13:47:11.854948,657,224,881, +49,2014-01-16 23:09:16.97075,250,712,655, +49,2014-01-17 15:28:45.441382,848,171,166, +49,2014-01-20 20:53:24.015143,588,959,861, +83,2014-01-20 01:02:22.473146,744,331,736, +83,2014-01-19 01:40:34.467356,705,739,492, +83,2014-01-14 06:41:00.825542,237,84,814, +39,2014-01-19 23:53:42.040607,569,495,648, +49,2014-01-13 07:04:01.240004,99,653,372, +83,2014-01-18 01:32:29.147706,686,19,381, +39,2014-01-13 06:32:19.24033,964,283,664, +49,2014-01-16 05:27:17.287703,88,954,93, +83,2014-01-13 03:50:18.277835,580,42,228, +83,2014-01-17 09:58:41.139477,439,659,301, +49,2014-01-18 13:59:58.591794,66,90,135, +49,2014-01-20 08:54:13.292815,737,353,857, +39,2014-01-19 03:06:44.675432,742,284,65, +39,2014-01-20 02:50:29.935024,52,781,245, +49,2014-01-14 17:26:34.61766,467,297,26, +83,2014-01-20 16:51:12.753855,674,388,579, +39,2014-01-15 00:35:50.786631,971,931,92, +83,2014-01-20 09:45:55.55504,199,558,826, +49,2014-01-18 14:35:39.629517,577,886,473, +83,2014-01-19 09:28:23.892823,913,266,753, +83,2014-01-16 21:42:30.205003,396,270,396, +83,2014-01-13 13:44:38.001518,840,412,196, +49,2014-01-14 03:01:41.73419,922,712,906, +83,2014-01-14 11:11:49.55178,406,815,34, +49,2014-01-15 18:55:19.344776,431,243,284, +39,2014-01-12 22:13:17.822401,399,871,650, +49,2014-01-17 07:56:16.066832,950,487,978, +83,2014-01-20 12:42:31.199724,295,214,154, +49,2014-01-19 01:22:34.793151,146,988,560, +49,2014-01-13 17:25:01.508214,941,537,982, +83,2014-01-20 03:35:55.214868,483,286,121, +39,2014-01-17 20:24:57.266716,928,986,209, +39,2014-01-11 13:05:35.97557,429,74,149, +39,2014-01-13 04:16:56.040408,836,245,999, +39,2014-01-16 14:18:39.307323,759,859,933, +39,2014-01-14 00:09:37.215994,409,593,933, +83,2014-01-20 09:49:25.188115,403,153,167, +39,2014-01-19 00:50:58.548072,177,830,509, +83,2014-01-19 09:36:54.503696,757,914,263, +83,2014-01-12 07:39:43.466369,430,588,567, +39,2014-01-15 04:49:39.68755,581,363,688, +39,2014-01-16 17:36:53.09549,623,437,266, +39,2014-01-11 10:33:56.759183,446,270,789, +39,2014-01-13 01:56:24.363401,32,402,933, +39,2014-01-15 14:27:23.030514,901,599,543, +39,2014-01-15 08:00:31.376843,928,773,403, +49,2014-01-12 12:47:37.117256,470,612,415, +49,2014-01-19 19:03:13.817564,502,816,421, +49,2014-01-14 11:46:26.931882,409,913,294, +83,2014-01-20 07:23:16.746773,932,709,152, +39,2014-01-17 22:31:37.710386,522,618,650, +83,2014-01-20 13:28:57.136886,687,767,100, +83,2014-01-12 15:07:54.748709,463,384,249, +49,2014-01-21 05:33:19.444576,647,334,999, +49,2014-01-13 18:40:46.689086,916,867,960, +39,2014-01-17 14:03:14.093485,734,1,581, +49,2014-01-12 21:46:37.267397,488,807,434, +39,2014-01-20 06:37:02.755918,439,649,870, +39,2014-01-16 20:45:45.293209,674,221,310, +83,2014-01-21 03:09:12.060548,59,332,978, +83,2014-01-12 18:02:04.264551,515,841,176, +49,2014-01-15 18:21:40.508496,608,405,430, +49,2014-01-17 17:34:09.327264,674,584,325, +39,2014-01-13 11:07:40.240121,922,203,596, +49,2014-01-18 02:38:36.548905,325,867,362, +83,2014-01-13 01:52:48.635006,532,241,635, +49,2014-01-16 15:17:17.456115,501,836,224, +49,2014-01-17 06:28:01.737439,301,743,796, +49,2014-01-10 20:43:47.183078,215,991,113, +49,2014-01-14 18:54:11.95981,802,981,794, +83,2014-01-18 18:07:45.203806,265,312,863, +83,2014-01-15 05:33:26.870627,182,155,946, +83,2014-01-20 16:31:05.055719,578,811,199, +39,2014-01-19 08:41:41.96299,473,979,580, +49,2014-01-17 11:29:51.234028,871,961,275, +49,2014-01-15 00:58:28.086232,75,654,311, +39,2014-01-13 10:42:13.339833,39,94,862, +83,2014-01-19 04:17:28.351284,719,11,463, +39,2014-01-13 14:01:41.903796,537,539,485, +49,2014-01-17 02:28:40.271716,777,880,125, +39,2014-01-18 05:40:45.098476,615,545,699, +49,2014-01-20 16:33:19.614602,711,858,43, +39,2014-01-16 09:57:37.408602,365,648,561, +83,2014-01-20 00:48:39.847184,961,814,636, +39,2014-01-20 16:06:39.059178,477,182,146, +49,2014-01-19 08:38:24.097689,221,713,885, +49,2014-01-16 08:51:53.940671,876,323,199, +39,2014-01-12 07:53:16.326574,852,892,469, +39,2014-01-18 09:15:26.854025,379,556,853, +49,2014-01-11 23:37:39.23388,667,296,888, +49,2014-01-12 05:02:28.387541,366,386,948, +49,2014-01-20 07:17:31.118576,692,806,821, +49,2014-01-16 21:59:19.742376,743,114,605, +83,2014-01-19 02:36:37.714804,652,136,400, +39,2014-01-12 12:25:11.358697,727,452,142, +83,2014-01-13 18:37:56.2917,94,171,210, +83,2014-01-10 22:29:26.34981,779,198,246, +39,2014-01-18 07:42:28.81523,218,708,172, +83,2014-01-20 05:05:58.029139,155,238,603, +83,2014-01-10 23:13:13.532889,502,261,416, +39,2014-01-11 20:36:40.775041,774,866,243, +49,2014-01-17 17:13:43.232945,281,315,46, +39,2014-01-15 08:46:40.403934,390,549,345, +83,2014-01-11 07:07:45.830759,717,512,879, +83,2014-01-15 19:55:25.195935,700,752,196, +83,2014-01-11 14:16:31.637963,419,758,325, +39,2014-01-15 12:06:13.917411,295,141,924, +83,2014-01-18 10:37:38.535768,340,114,663, +49,2014-01-19 22:33:59.989666,850,31,350, +39,2014-01-18 06:07:55.821207,143,798,938, +83,2014-01-14 07:06:18.807484,962,707,342, +49,2014-01-16 22:14:45.088142,565,657,371, +83,2014-01-17 16:41:15.435808,163,132,238, +49,2014-01-19 21:03:56.216086,578,321,820, +49,2014-01-15 17:03:24.935326,358,700,406, +39,2014-01-17 02:47:54.495405,84,86,627, +39,2014-01-17 23:42:20.314194,851,691,690, +39,2014-01-21 05:55:18.875997,930,387,998, +39,2014-01-18 14:41:10.82198,300,246,482, +49,2014-01-15 02:57:47.168219,341,550,604, +39,2014-01-11 23:32:58.109877,467,55,649, +39,2014-01-19 23:43:39.209521,897,142,266, +39,2014-01-14 04:15:18.286795,457,576,184, +49,2014-01-18 01:32:17.852672,693,818,989, +83,2014-01-17 20:20:16.924745,497,101,542, +83,2014-01-15 20:40:29.645492,948,108,738, +39,2014-01-21 00:10:14.144372,891,374,432, +49,2014-01-17 22:49:43.274555,833,275,437, +39,2014-01-12 22:22:58.460722,708,172,682, +83,2014-01-19 23:16:12.17351,428,836,86, +49,2014-01-18 02:02:56.807862,153,287,396, +49,2014-01-13 22:59:39.236182,459,807,977, +83,2014-01-16 10:29:55.406455,226,332,493, +83,2014-01-12 04:49:37.211797,112,528,842, +83,2014-01-14 10:07:25.066942,361,871,82, +39,2014-01-11 00:25:20.602391,713,223,715, +49,2014-01-12 23:06:08.849759,675,803,846, +39,2014-01-19 02:13:38.984353,521,179,557, +83,2014-01-18 15:02:59.138158,49,342,142, +83,2014-01-11 15:40:08.839425,705,262,479, +49,2014-01-16 02:21:34.805979,420,371,26, +83,2014-01-11 16:09:17.945643,607,921,136, +83,2014-01-17 17:54:53.927567,450,207,450, +39,2014-01-12 13:02:50.241788,292,323,195, +49,2014-01-20 17:13:14.161729,330,63,234, +39,2014-01-12 04:58:18.862894,812,610,746, +39,2014-01-18 19:50:44.737194,331,444,696, +39,2014-01-17 10:55:34.475922,651,49,742, +49,2014-01-12 04:53:37.738891,701,602,214, +49,2014-01-16 04:31:55.559593,4,127,959, +83,2014-01-11 07:53:21.644141,710,862,839, +49,2014-01-13 08:26:35.849186,723,509,69, +49,2014-01-14 22:15:34.769114,0,572,205, +49,2014-01-14 16:08:39.930935,440,877,744, +39,2014-01-20 13:58:53.701858,38,63,918, +39,2014-01-11 12:35:51.693858,217,341,819, +83,2014-01-19 16:49:09.576847,263,124,245, +39,2014-01-20 08:09:07.84623,845,678,711, +49,2014-01-18 15:25:34.968831,625,408,948, +39,2014-01-11 09:12:08.037569,223,782,139, +39,2014-01-19 01:25:20.019741,978,743,227, +43,2014-01-15 11:28:31.776694,856,960,206, +56,2014-01-14 12:11:47.27375,11,672,224, +56,2014-01-14 05:55:15.426197,954,955,437, +13,2014-01-16 20:18:08.988491,831,315,636, +43,2014-01-18 02:19:12.341111,551,348,942, +43,2014-01-14 10:20:36.028587,784,104,962, +56,2014-01-18 23:24:17.83825,216,559,614, +13,2014-01-15 22:32:51.325464,533,411,48, +43,2014-01-11 19:23:35.166746,933,641,443, +56,2014-01-19 19:04:26.678095,386,99,672, +56,2014-01-21 04:54:26.131443,629,851,341, +56,2014-01-12 15:32:53.112389,142,589,656, +13,2014-01-16 06:59:20.605661,323,627,87, +56,2014-01-12 11:57:16.37365,534,380,409, +43,2014-01-12 02:46:07.274117,389,753,84, +56,2014-01-17 15:57:39.468975,136,457,856, +43,2014-01-20 11:48:01.110843,842,987,180, +43,2014-01-18 17:41:41.750458,35,763,741, +43,2014-01-19 00:51:17.207865,455,531,99, +43,2014-01-15 10:19:56.670435,810,967,393, +56,2014-01-19 05:35:03.394599,37,158,2, +13,2014-01-11 03:17:53.057051,997,120,98, +43,2014-01-19 12:35:31.439968,561,829,837, +56,2014-01-12 15:43:43.325954,375,608,523, +43,2014-01-20 21:16:46.758909,960,18,140, +43,2014-01-20 05:11:23.133826,276,772,51, +13,2014-01-11 02:32:52.9028,82,38,757, +43,2014-01-19 23:25:54.60514,408,22,240, +56,2014-01-17 14:36:58.102657,344,892,910, +56,2014-01-11 15:45:00.940369,790,547,587, +43,2014-01-17 18:51:14.624881,374,917,11, +43,2014-01-11 20:05:29.879351,798,479,636, +43,2014-01-15 07:56:48.214539,474,591,27, +56,2014-01-21 04:46:30.051077,836,590,375, +43,2014-01-17 20:23:38.867842,53,589,180, +43,2014-01-12 04:16:00.55565,555,479,670, +43,2014-01-14 09:07:06.079665,913,802,162, +56,2014-01-15 13:47:56.706511,668,830,518, +43,2014-01-17 06:48:51.881114,836,23,296, +43,2014-01-15 08:30:41.24641,907,507,362, +13,2014-01-14 02:52:23.384606,603,105,943, +56,2014-01-17 05:43:18.012975,331,798,822, +43,2014-01-17 04:03:34.358798,620,443,511, +43,2014-01-19 13:51:43.990269,103,422,974, +43,2014-01-18 21:40:34.386625,951,844,564, +56,2014-01-18 10:49:41.633334,179,315,573, +56,2014-01-15 23:49:23.459243,293,718,278, +13,2014-01-18 03:28:35.497468,213,75,216, +56,2014-01-15 22:31:23.383793,812,619,465, +13,2014-01-13 18:40:40.667527,693,386,389, +43,2014-01-12 07:48:32.168322,663,633,262, +56,2014-01-13 22:06:26.778393,641,788,554, +56,2014-01-14 01:58:33.724578,66,202,949, +13,2014-01-21 00:24:03.60829,216,605,426, +13,2014-01-15 17:50:10.104346,958,718,370, +13,2014-01-13 17:15:20.483906,271,986,13, +43,2014-01-19 23:35:26.742116,813,571,439, +13,2014-01-16 00:23:03.007147,106,411,270, +56,2014-01-12 10:41:15.089046,411,313,206, +56,2014-01-16 08:12:24.845192,162,91,755, +43,2014-01-16 20:08:03.947935,834,365,296, +56,2014-01-19 09:32:29.714346,721,154,663, +56,2014-01-17 08:17:54.724544,553,663,494, +43,2014-01-10 22:04:52.162474,317,492,319, +13,2014-01-19 08:18:59.765423,289,611,934, +56,2014-01-13 22:41:33.592804,661,448,854, +13,2014-01-12 06:20:52.718123,766,849,299, +43,2014-01-12 11:26:05.845506,470,838,881, +56,2014-01-18 16:29:30.299317,108,80,778, +56,2014-01-18 17:09:44.599236,143,748,453, +56,2014-01-16 23:56:47.091917,851,609,550, +43,2014-01-11 13:21:53.683923,78,573,329, +56,2014-01-14 16:53:02.612211,535,925,611, +56,2014-01-12 22:00:21.451134,583,758,12, +43,2014-01-20 07:13:37.674191,876,659,153, +13,2014-01-12 08:33:36.998836,730,213,478, +13,2014-01-20 12:50:03.084469,462,422,460, +13,2014-01-15 01:03:01.133853,71,132,423, +56,2014-01-19 16:02:12.496723,20,726,582, +13,2014-01-15 05:21:26.468261,315,798,612, +43,2014-01-17 23:43:41.80138,454,33,707, +56,2014-01-21 03:50:44.665045,178,303,305, +43,2014-01-18 07:27:53.246654,436,217,897, +56,2014-01-21 05:42:15.525957,4,284,80, +13,2014-01-20 22:14:48.273335,666,292,863, +13,2014-01-12 19:18:03.35142,296,834,682, +56,2014-01-13 16:57:36.009864,897,698,954, +43,2014-01-19 15:50:15.015451,667,766,515, +43,2014-01-17 23:41:06.358567,856,413,714, +13,2014-01-15 07:38:51.099329,374,396,596, +43,2014-01-14 18:02:39.860643,669,64,577, +43,2014-01-13 13:49:10.306501,75,12,52, +56,2014-01-13 11:11:20.813675,507,913,918, +43,2014-01-10 20:20:34.585605,126,996,400, +56,2014-01-13 15:54:02.468975,394,971,774, +56,2014-01-11 13:30:20.579098,300,413,185, +56,2014-01-13 23:02:08.17841,618,275,176, +13,2014-01-15 02:14:55.187098,415,200,885, +43,2014-01-13 04:56:26.424604,200,657,115, +13,2014-01-11 09:31:38.477726,203,870,911, +43,2014-01-12 13:24:39.786753,903,883,603, +43,2014-01-19 08:53:13.516941,330,541,769, +56,2014-01-12 02:53:32.161649,890,943,919, +43,2014-01-16 10:17:42.398965,811,945,435, +43,2014-01-11 00:53:34.968075,786,107,223, +56,2014-01-11 04:07:09.83584,453,324,204, +13,2014-01-17 22:51:19.398221,612,381,702, +13,2014-01-20 17:43:38.052544,592,634,362, +13,2014-01-15 09:10:10.969693,472,170,939, +43,2014-01-16 08:53:31.894944,735,775,957, +56,2014-01-14 17:05:04.520805,189,659,814, +13,2014-01-12 02:53:52.771073,376,868,637, +43,2014-01-16 06:44:16.559989,994,277,815, +13,2014-01-11 18:32:57.767459,220,774,534, +43,2014-01-12 02:36:08.297449,577,957,171, +56,2014-01-15 22:59:04.833324,672,393,23, +43,2014-01-13 17:51:01.118879,940,800,465, +13,2014-01-14 23:33:44.307313,154,908,105, +43,2014-01-14 08:49:19.848775,617,286,240, +13,2014-01-20 21:32:07.477865,295,969,402, +13,2014-01-19 11:12:35.406642,925,662,238, +43,2014-01-18 06:51:59.709837,818,412,576, +56,2014-01-13 05:21:17.784366,504,701,250, +13,2014-01-11 16:23:56.220317,895,141,499, +13,2014-01-18 07:12:34.295443,191,228,350, +43,2014-01-16 01:15:20.253759,539,282,657, +43,2014-01-12 09:54:16.799833,555,845,942, +13,2014-01-11 00:14:42.473853,783,108,568, +13,2014-01-20 07:30:15.440857,529,543,856, +43,2014-01-14 18:50:43.224438,33,444,898, +13,2014-01-11 13:46:20.951579,267,779,905, +13,2014-01-11 14:54:55.22761,231,499,291, +13,2014-01-12 21:43:56.741378,148,823,19, +13,2014-01-12 20:39:53.113228,709,213,217, +43,2014-01-17 05:12:37.626995,456,540,280, +43,2014-01-13 02:37:31.709452,381,644,413, +56,2014-01-13 04:47:02.949069,729,278,878, +56,2014-01-13 22:03:57.025215,675,541,191, +43,2014-01-12 14:21:09.761996,697,539,723, +43,2014-01-17 17:57:13.91918,598,188,101, +43,2014-01-19 10:57:28.920158,356,357,894, +13,2014-01-16 11:26:14.282801,861,116,427, +56,2014-01-19 00:51:06.690253,419,473,597, +13,2014-01-14 11:41:45.480147,127,734,617, +56,2014-01-17 09:59:12.050679,600,413,422, +13,2014-01-20 07:27:14.987702,973,229,842, +13,2014-01-19 14:40:50.313471,559,37,732, +56,2014-01-20 07:50:13.169558,611,774,68, +56,2014-01-14 01:00:59.295433,973,462,179, +56,2014-01-12 17:30:10.162246,675,286,275, +56,2014-01-19 23:22:20.647422,840,966,504, +43,2014-01-12 06:13:34.702075,367,809,933, +13,2014-01-20 04:22:09.872083,179,786,411, +56,2014-01-11 22:43:38.432206,933,410,831, +13,2014-01-13 02:37:30.92281,141,997,724, +13,2014-01-17 05:34:44.167526,741,399,852, +56,2014-01-17 03:58:58.685966,935,765,837, +56,2014-01-14 16:31:47.722644,712,637,925, +43,2014-01-17 09:49:26.641379,521,946,577, +56,2014-01-16 05:29:14.126823,176,848,244, +56,2014-01-18 15:22:30.947081,364,914,428, +13,2014-01-18 03:35:47.592958,427,805,4, +43,2014-01-17 00:24:09.354852,951,999,247, +56,2014-01-20 17:06:27.688878,85,442,863, +13,2014-01-20 04:15:40.706186,262,949,84, +13,2014-01-12 23:36:46.981847,301,129,869, +56,2014-01-12 13:43:59.39833,598,117,398, +43,2014-01-12 03:02:43.655674,969,232,546, +43,2014-01-16 01:40:44.007061,966,176,704, +13,2014-01-14 08:05:09.160745,431,318,834, +43,2014-01-19 00:59:57.574854,51,222,605, +13,2014-01-14 06:38:12.92722,371,223,453, +43,2014-01-19 23:31:23.443546,870,123,72, +56,2014-01-16 19:51:04.265106,59,542,787, +43,2014-01-17 22:19:58.407367,498,533,554, +56,2014-01-16 03:30:35.494225,476,641,224, +13,2014-01-15 21:18:19.253227,183,33,274, +56,2014-01-16 07:00:48.720839,621,469,450, +43,2014-01-15 05:20:48.664202,267,763,910, +13,2014-01-19 02:19:18.548661,251,655,27, +56,2014-01-18 04:30:58.883084,827,705,358, +56,2014-01-13 22:43:09.311624,962,143,720, +43,2014-01-20 12:32:53.250736,808,601,875, +13,2014-01-17 02:53:08.755586,484,67,143, +43,2014-01-15 01:26:47.743831,518,195,585, +56,2014-01-12 09:10:24.173547,597,810,50, +56,2014-01-13 02:27:52.923113,649,205,520, +13,2014-01-10 23:25:46.429797,217,657,969, +43,2014-01-16 05:42:11.896191,434,7,257, +56,2014-01-19 16:17:19.56491,854,665,28, +13,2014-01-16 08:55:00.557039,561,863,447, +56,2014-01-13 15:04:42.843692,666,718,593, +56,2014-01-16 13:53:07.157869,52,368,345, +43,2014-01-12 03:19:09.911892,196,126,170, +13,2014-01-13 02:11:10.53257,121,930,696, +13,2014-01-15 12:08:47.864474,21,918,286, +13,2014-01-14 06:55:56.893738,741,109,325, +13,2014-01-14 19:55:09.9309,399,538,551, +13,2014-01-16 19:11:31.520148,668,358,576, +43,2014-01-19 12:36:40.900799,704,942,710, +56,2014-01-18 08:00:19.091645,582,712,839, +13,2014-01-14 14:11:29.095002,829,734,677, +43,2014-01-12 13:14:53.828019,667,715,849, +13,2014-01-17 01:31:42.53561,929,79,482, +56,2014-01-20 14:02:33.360108,351,697,724, +13,2014-01-19 15:34:52.235386,52,405,149, +56,2014-01-11 23:02:18.029835,289,860,890, +56,2014-01-15 05:20:52.613335,657,903,850, +56,2014-01-14 16:35:40.956224,209,937,909, +43,2014-01-16 08:23:06.694038,981,103,463, +56,2014-01-13 01:40:11.161997,377,747,999, +56,2014-01-11 15:06:39.839308,280,988,263, +43,2014-01-19 11:06:16.006081,200,594,748, +43,2014-01-12 08:13:04.413153,657,568,765, +56,2014-01-17 21:59:48.594895,391,73,233, +56,2014-01-13 06:33:03.749911,501,714,682, +56,2014-01-13 21:23:28.5867,784,393,701, +56,2014-01-20 04:27:41.518427,166,437,57, +13,2014-01-13 09:58:50.180128,767,376,144, +56,2014-01-19 07:05:40.48331,790,568,4, +13,2014-01-18 14:45:01.083338,404,946,184, +43,2014-01-18 22:53:50.737167,759,309,562, +43,2014-01-11 16:10:23.327002,266,229,523, +56,2014-01-13 22:38:08.241206,941,245,953, +43,2014-01-20 06:13:00.649058,861,151,670, +43,2014-01-13 22:21:33.859572,118,261,259, +56,2014-01-18 14:46:56.10568,347,998,601, +56,2014-01-13 07:08:57.542796,814,514,141, +56,2014-01-17 22:16:43.790472,219,674,200, +13,2014-01-14 03:58:27.625828,25,811,150, +56,2014-01-11 13:45:38.443596,224,159,317, +13,2014-01-15 00:17:02.882536,87,253,831, +13,2014-01-17 22:09:56.720829,351,470,536, +43,2014-01-13 07:00:32.271615,542,99,323, +13,2014-01-21 05:48:45.418146,668,124,971, +43,2014-01-17 06:12:30.081357,609,878,612, +56,2014-01-11 16:35:24.507001,189,978,19, +56,2014-01-11 22:51:03.447981,187,902,509, +56,2014-01-11 05:33:22.694693,82,770,451, +13,2014-01-15 13:11:05.463225,385,995,727, +43,2014-01-17 11:14:10.142439,527,756,224, +43,2014-01-13 11:13:33.857109,162,94,412, +56,2014-01-16 08:17:45.302533,625,71,840, +56,2014-01-15 16:20:26.14852,896,188,448, +56,2014-01-14 23:26:38.270262,946,579,290, +43,2014-01-13 00:17:33.897848,647,102,75, +43,2014-01-18 02:53:29.898431,222,152,215, +56,2014-01-18 00:50:06.856962,399,143,187, +13,2014-01-11 22:45:15.416275,860,67,444, +56,2014-01-20 16:52:20.078559,430,986,142, +43,2014-01-16 01:55:47.340273,265,380,260, +56,2014-01-19 17:30:16.499612,463,847,825, +56,2014-01-18 09:46:10.815726,130,790,845, +56,2014-01-16 22:06:10.667275,800,757,584, +13,2014-01-12 10:08:24.740818,636,890,834, +43,2014-01-17 09:59:11.464784,887,301,426, +13,2014-01-20 00:27:44.526846,90,896,464, +43,2014-01-20 04:55:20.846918,239,753,869, +43,2014-01-19 21:08:09.00758,295,279,979, +43,2014-01-16 16:44:28.317737,119,709,898, +43,2014-01-13 02:53:48.472746,567,809,675, +43,2014-01-20 14:53:47.451176,351,902,726, +13,2014-01-20 21:01:31.200273,176,657,224, +43,2014-01-20 05:03:45.193994,855,870,962, +43,2014-01-12 15:54:19.722791,218,705,642, +56,2014-01-20 20:50:16.61842,70,763,660, +13,2014-01-16 05:16:15.275351,906,334,770, +13,2014-01-13 12:29:44.229792,337,459,939, +56,2014-01-11 13:41:20.066401,688,811,859, +56,2014-01-16 14:49:37.970044,694,818,55, +43,2014-01-18 05:40:49.693016,888,609,577, +13,2014-01-18 04:55:30.20884,81,516,328, +43,2014-01-19 06:03:11.827153,3,709,689, +56,2014-01-13 07:58:34.995969,704,218,539, +13,2014-01-12 15:15:56.357358,301,787,643, +43,2014-01-12 23:29:50.097415,6,682,156, +56,2014-01-15 12:16:08.893816,499,880,916, +13,2014-01-19 22:09:26.256209,2,755,584, +56,2014-01-20 04:19:56.954797,497,845,498, +13,2014-01-16 15:01:24.310091,378,112,892, +43,2014-01-19 09:01:46.334769,871,814,804, +56,2014-01-15 00:15:44.295069,675,632,939, +13,2014-01-15 02:31:40.809703,957,466,695, +56,2014-01-16 12:47:57.150914,307,390,420, +43,2014-01-21 02:21:54.962763,682,235,741, +43,2014-01-16 16:40:05.550521,736,881,935, +13,2014-01-12 16:47:08.615698,748,857,141, +56,2014-01-19 20:49:39.489609,185,327,84, +56,2014-01-15 15:35:26.397439,663,35,114, +13,2014-01-11 07:55:17.623697,818,423,684, +43,2014-01-15 07:34:07.807346,749,108,836, +13,2014-01-17 22:29:14.870603,738,197,869, +56,2014-01-21 02:49:05.074873,215,390,77, +13,2014-01-14 22:35:39.00762,363,80,770, +43,2014-01-16 21:33:00.064597,3,988,69, +43,2014-01-12 12:43:24.798082,126,104,851, +43,2014-01-14 13:25:55.626039,719,128,144, +2,2014-01-11 20:49:15.339948,883,54,921, +2,2014-01-15 05:13:09.027873,458,168,23, +47,2014-01-15 07:07:15.692859,583,347,220, +32,2014-01-17 15:38:53.309992,522,87,699, +47,2014-01-12 04:53:58.721308,313,188,935, +47,2014-01-12 06:02:45.901699,626,969,691, +2,2014-01-15 15:42:05.137565,313,362,670, +47,2014-01-14 16:52:33.717277,234,825,761, +47,2014-01-14 01:18:42.259476,788,120,756, +2,2014-01-17 19:11:55.234979,851,635,589, +47,2014-01-19 09:08:42.611093,554,650,170, +32,2014-01-12 17:28:08.515685,789,692,178, +32,2014-01-16 17:31:52.189776,479,814,27, +2,2014-01-14 18:10:06.921183,526,333,815, +2,2014-01-10 20:29:54.850454,690,193,585, +47,2014-01-20 21:47:36.485264,966,212,462, +32,2014-01-19 00:41:47.730886,993,92,933, +47,2014-01-16 13:17:52.001367,287,960,746, +2,2014-01-20 18:09:31.448027,920,537,716, +47,2014-01-14 11:21:53.281407,562,455,5, +32,2014-01-18 10:05:00.617483,758,188,175, +32,2014-01-19 08:59:10.937636,78,661,716, +2,2014-01-19 06:57:19.679265,909,753,671, +47,2014-01-18 22:00:18.24118,148,870,964, +47,2014-01-13 10:33:18.745402,160,395,162, +2,2014-01-15 23:26:34.549867,678,614,84, +2,2014-01-18 18:49:23.316053,259,749,183, +47,2014-01-17 13:08:57.753021,715,396,192, +2,2014-01-11 14:59:34.614465,725,67,858, +32,2014-01-20 11:32:48.114135,878,838,72, +2,2014-01-10 20:34:53.379479,666,990,932, +2,2014-01-12 15:48:49.954412,424,477,47, +32,2014-01-14 10:45:57.142428,563,161,610, +2,2014-01-15 07:42:09.072338,379,466,784, +47,2014-01-19 11:27:43.264404,536,138,48, +47,2014-01-15 19:39:55.863736,599,545,604, +2,2014-01-16 17:44:54.974036,989,172,488, +32,2014-01-13 21:09:48.401969,331,34,676, +32,2014-01-19 16:32:29.581014,786,678,921, +47,2014-01-19 23:03:37.233513,428,933,996, +47,2014-01-20 20:21:43.637367,703,287,763, +47,2014-01-17 19:41:12.192106,830,224,134, +32,2014-01-11 10:31:45.749198,19,24,744, +2,2014-01-16 07:53:35.827143,908,597,607, +32,2014-01-11 07:51:19.11329,601,385,688, +47,2014-01-11 11:01:40.600071,662,722,528, +2,2014-01-15 23:41:12.312406,144,523,142, +32,2014-01-19 12:33:06.844175,920,344,296, +2,2014-01-17 04:19:32.601439,619,201,338, +47,2014-01-15 11:50:43.760433,520,729,62, +2,2014-01-12 17:55:00.125582,375,300,748, +47,2014-01-14 08:24:33.218922,109,68,45, +2,2014-01-13 14:49:54.698489,49,562,185, +47,2014-01-21 04:52:19.804847,614,22,775, +32,2014-01-12 00:24:51.460102,256,426,615, +2,2014-01-16 05:23:13.443891,946,953,473, +47,2014-01-15 22:18:54.354714,530,753,921, +32,2014-01-19 23:14:14.776575,49,705,922, +47,2014-01-12 12:32:11.196911,719,248,276, +47,2014-01-16 17:18:28.969178,475,900,594, +2,2014-01-19 04:47:02.89071,527,500,567, +32,2014-01-12 13:07:04.576391,158,624,484, +47,2014-01-18 13:07:18.92359,820,672,862, +47,2014-01-12 09:33:00.033139,888,722,85, +32,2014-01-17 00:49:13.648728,487,593,858, +32,2014-01-16 18:35:02.188414,170,140,320, +2,2014-01-17 09:12:55.896874,727,377,172, +2,2014-01-12 12:34:08.623183,810,342,582, +2,2014-01-19 19:44:50.590381,448,415,101, +32,2014-01-15 19:45:25.477888,486,852,146, +47,2014-01-11 05:37:45.856697,119,477,634, +47,2014-01-19 10:06:34.227748,467,597,837, +2,2014-01-12 09:26:37.669994,739,975,897, +32,2014-01-11 20:09:31.606315,911,745,571, +32,2014-01-14 12:00:10.05531,145,18,735, +32,2014-01-12 21:17:56.783283,500,15,547, +47,2014-01-12 11:11:12.206385,402,88,42, +2,2014-01-19 15:41:22.367717,573,754,255, +32,2014-01-11 03:51:03.627458,55,333,16, +32,2014-01-18 19:30:44.807824,727,99,380, +2,2014-01-13 21:32:06.128569,349,979,987, +47,2014-01-13 01:46:03.753459,405,970,979, +47,2014-01-11 21:55:18.027165,237,812,83, +32,2014-01-16 16:22:00.827057,615,543,156, +32,2014-01-13 00:38:23.558306,323,761,435, +47,2014-01-13 02:20:09.487268,298,193,311, +47,2014-01-11 15:45:14.270948,245,936,659, +2,2014-01-18 02:57:17.913439,516,356,488, +2,2014-01-11 19:34:24.263842,937,965,87, +32,2014-01-13 08:17:25.467859,792,989,506, +2,2014-01-13 14:15:46.882617,298,647,936, +47,2014-01-20 04:21:27.154971,26,806,350, +47,2014-01-15 01:24:30.044669,98,944,544, +2,2014-01-10 21:23:05.806625,880,91,136, +32,2014-01-11 07:54:27.188109,773,820,937, +32,2014-01-10 20:13:43.693397,661,906,545, +2,2014-01-16 19:58:07.995039,212,116,186, +2,2014-01-17 21:07:23.085403,937,327,507, +47,2014-01-12 12:47:52.31658,285,782,488, +32,2014-01-15 09:42:58.58542,99,648,626, +2,2014-01-12 10:52:48.563291,142,565,69, +2,2014-01-12 22:25:38.173696,306,816,796, +2,2014-01-13 13:49:32.813588,103,908,121, +2,2014-01-14 00:19:26.233703,490,780,628, +32,2014-01-13 22:35:09.78001,626,713,305, +47,2014-01-17 05:49:42.868898,674,231,123, +47,2014-01-16 01:37:23.016986,99,374,447, +32,2014-01-15 13:46:21.986396,905,292,836, +32,2014-01-15 15:31:05.236614,221,484,555, +32,2014-01-16 09:28:26.644864,427,2,226, +2,2014-01-13 03:17:06.79422,838,646,32, +47,2014-01-18 17:03:11.365182,445,914,416, +2,2014-01-18 15:14:30.398323,474,54,981, +2,2014-01-14 05:12:24.821384,244,264,877, +47,2014-01-14 03:25:12.192241,954,972,880, +2,2014-01-20 19:52:53.956629,525,57,318, +32,2014-01-16 11:32:34.309071,889,215,974, +47,2014-01-14 23:10:26.463189,783,606,722, +32,2014-01-17 16:50:11.870068,332,855,956, +2,2014-01-17 11:06:58.572912,353,777,381, +47,2014-01-17 11:27:51.931467,749,955,494, +47,2014-01-20 11:05:58.753103,914,345,540, +2,2014-01-16 09:28:25.727883,915,524,660, +32,2014-01-11 06:52:21.976134,497,177,261, +2,2014-01-20 12:29:04.559729,128,919,610, +47,2014-01-16 21:22:52.916411,122,418,771, +32,2014-01-11 07:06:05.669531,454,252,721, +32,2014-01-16 02:27:12.554768,145,214,896, +32,2014-01-13 12:30:16.001815,421,751,988, +32,2014-01-12 23:53:57.986531,209,589,474, +2,2014-01-20 16:10:11.140187,330,553,780, +47,2014-01-15 03:23:04.565104,792,51,895, +47,2014-01-15 02:19:36.160227,299,394,945, +2,2014-01-12 23:59:43.953775,836,965,581, +47,2014-01-18 07:42:30.798807,0,192,886, +2,2014-01-18 04:54:45.940236,289,606,249, +47,2014-01-19 09:49:26.822673,539,99,489, +2,2014-01-13 03:19:53.816213,866,361,818, +2,2014-01-12 12:41:07.926632,465,688,364, +47,2014-01-13 19:20:32.059705,143,149,981, +2,2014-01-18 16:48:20.461077,67,812,839, +32,2014-01-14 19:58:14.720852,310,230,896, +32,2014-01-11 06:23:43.424889,548,223,16, +47,2014-01-16 02:02:50.8594,18,344,106, +2,2014-01-18 05:10:39.542655,676,321,883, +2,2014-01-14 13:48:55.617548,376,15,736, +47,2014-01-15 15:55:44.816029,781,550,816, +2,2014-01-13 10:43:13.851726,238,678,479, +2,2014-01-18 16:59:22.080736,631,796,579, +2,2014-01-12 02:45:56.686516,2,196,157, +2,2014-01-20 01:50:12.424639,639,932,211, +2,2014-01-14 22:27:14.012202,269,718,977, +32,2014-01-11 07:51:55.43962,155,581,384, +2,2014-01-15 05:18:38.152941,488,226,843, +47,2014-01-15 09:19:35.988337,759,30,122, +47,2014-01-21 00:20:59.999348,550,265,539, +32,2014-01-10 20:41:31.069352,898,948,180, +2,2014-01-15 20:25:41.658288,483,407,847, +32,2014-01-15 20:48:12.554116,199,932,834, +47,2014-01-13 13:11:47.071167,964,990,954, +32,2014-01-18 00:19:39.644819,308,926,367, +47,2014-01-15 06:58:23.694303,837,750,577, +47,2014-01-17 20:34:51.636271,558,514,859, +32,2014-01-11 20:39:15.805046,611,247,882, +32,2014-01-17 10:58:07.648497,888,767,184, +2,2014-01-14 22:17:22.435498,193,189,266, +2,2014-01-19 05:34:01.745282,11,535,265, +2,2014-01-15 14:47:34.47117,376,75,766, +2,2014-01-17 05:37:16.25171,548,457,363, +32,2014-01-20 22:15:09.671915,732,960,700, +2,2014-01-18 14:08:06.530875,677,173,783, +2,2014-01-14 16:25:36.712787,999,512,422, +32,2014-01-14 12:13:24.392767,618,275,811, +32,2014-01-19 00:31:49.956183,834,244,337, +32,2014-01-19 22:28:27.572187,639,536,452, +2,2014-01-11 11:24:03.935422,661,821,479, +32,2014-01-12 08:20:45.573731,262,768,62, +47,2014-01-14 08:24:12.388217,118,810,473, +47,2014-01-14 02:07:17.787148,704,926,959, +2,2014-01-20 05:20:07.654467,586,88,116, +47,2014-01-15 15:10:09.074732,934,666,507, +32,2014-01-12 21:57:30.212205,176,38,796, +47,2014-01-13 21:47:21.667089,769,178,35, +47,2014-01-16 03:02:04.514352,221,760,9, +32,2014-01-17 07:16:08.365146,957,13,106, +2,2014-01-18 11:06:57.655426,910,622,449, +47,2014-01-15 21:23:04.5137,16,753,418, +47,2014-01-17 07:57:39.434498,223,719,259, +47,2014-01-13 01:32:39.313714,910,356,900, +47,2014-01-20 22:11:17.067816,101,966,697, +2,2014-01-20 01:09:26.505665,636,3,425, +47,2014-01-20 05:52:18.958532,212,530,344, +47,2014-01-14 23:09:40.762538,958,643,3, +32,2014-01-16 15:44:18.141935,210,792,684, +47,2014-01-10 20:31:34.763578,849,724,107, +2,2014-01-11 04:07:48.411034,262,568,862, +47,2014-01-20 18:01:40.577433,705,367,845, +2,2014-01-19 06:05:36.50886,299,999,809, +47,2014-01-15 22:55:22.882204,105,579,992, +2,2014-01-16 17:38:56.829144,244,575,637, +47,2014-01-18 22:20:46.180775,174,49,736, +47,2014-01-13 07:03:29.413499,262,583,108, +32,2014-01-20 14:04:33.541931,252,199,834, +32,2014-01-12 04:34:10.573961,36,712,842, +32,2014-01-11 01:35:19.369682,848,540,205, +47,2014-01-19 06:33:01.114119,336,280,414, +32,2014-01-12 19:58:14.509383,313,945,616, +2,2014-01-12 13:56:04.943413,406,866,7, +32,2014-01-12 08:57:13.502754,307,557,569, +47,2014-01-16 02:05:32.29695,193,741,522, +2,2014-01-11 13:16:12.597879,975,329,592, +32,2014-01-17 04:07:22.577486,142,320,345, +47,2014-01-18 04:03:02.509155,223,146,3, +32,2014-01-14 15:03:34.264968,822,410,575, +32,2014-01-12 01:09:27.092257,145,570,348, +2,2014-01-14 05:19:10.874301,824,783,55, +47,2014-01-11 20:10:31.920814,320,486,316, +47,2014-01-17 02:32:31.605957,227,768,630, +32,2014-01-20 17:16:50.3088,429,800,761, +2,2014-01-14 01:43:11.234527,455,70,848, +47,2014-01-16 18:43:48.674192,837,629,897, +47,2014-01-19 12:26:16.814465,729,96,104, +2,2014-01-13 01:35:30.193478,885,652,368, +32,2014-01-20 21:53:29.436729,546,352,448, +32,2014-01-14 22:10:34.9564,900,245,49, +2,2014-01-13 02:07:04.957056,887,680,107, +2,2014-01-10 20:01:17.847764,441,850,215, +32,2014-01-14 10:12:15.534252,983,35,26, +32,2014-01-11 02:12:41.466335,355,772,365, +32,2014-01-15 22:56:40.729969,69,396,148, +47,2014-01-20 07:51:12.363397,546,518,580, +32,2014-01-19 04:33:27.64711,814,507,106, +2,2014-01-18 10:00:10.143468,103,344,674, +2,2014-01-19 15:55:45.905747,595,750,321, +47,2014-01-20 13:07:38.221071,423,384,436, +32,2014-01-18 15:35:29.513149,397,745,918, +2,2014-01-17 16:28:47.019866,713,291,902, +32,2014-01-12 03:05:52.730874,529,809,279, +2,2014-01-20 09:31:34.456562,826,501,632, +47,2014-01-19 05:26:00.522619,660,822,703, +2,2014-01-17 09:11:25.027824,72,736,945, +47,2014-01-21 02:47:47.05486,273,466,376, +32,2014-01-15 03:33:23.100524,993,949,316, +47,2014-01-14 07:14:27.536979,323,896,893, +47,2014-01-14 11:51:21.319829,270,52,80, +32,2014-01-16 08:42:50.192781,851,645,430, +32,2014-01-17 16:33:38.411281,724,684,563, +47,2014-01-15 12:01:53.240642,844,264,734, +47,2014-01-12 05:15:21.798739,831,976,229, +2,2014-01-17 03:50:28.72008,792,761,828, +32,2014-01-18 17:45:04.475588,686,582,723, +32,2014-01-18 03:59:10.47293,534,385,558, +2,2014-01-15 10:16:45.534545,688,795,107, +32,2014-01-20 23:20:34.669066,135,486,434, +2,2014-01-17 19:52:39.909659,171,477,745, +2,2014-01-19 12:27:20.490945,216,745,133, +2,2014-01-12 19:27:39.626122,48,51,433, +47,2014-01-17 19:53:57.757423,588,72,55, +2,2014-01-12 16:39:36.025197,10,994,312, +2,2014-01-13 01:40:21.092457,80,963,783, +47,2014-01-12 12:50:38.48781,531,91,621, +32,2014-01-11 18:30:48.389012,589,27,481, +2,2014-01-11 00:13:48.739986,992,982,735, +47,2014-01-20 02:50:48.631278,315,262,899, +2,2014-01-20 14:26:34.294759,704,814,445, +2,2014-01-20 17:21:26.961057,540,779,328, +32,2014-01-17 12:26:18.144847,303,478,772, +2,2014-01-17 00:55:21.314624,892,612,892, +47,2014-01-11 14:27:19.691931,732,427,969, +47,2014-01-16 15:57:52.601408,241,442,607, +47,2014-01-15 00:21:21.837663,839,652,860, +47,2014-01-18 03:38:44.719755,602,666,970, +2,2014-01-16 12:45:39.656269,161,333,492, +47,2014-01-19 07:54:44.938187,896,567,501, +2,2014-01-11 04:53:12.256734,333,756,622, +32,2014-01-20 04:37:00.976517,772,789,488, +32,2014-01-14 10:37:35.130969,201,59,443, +2,2014-01-18 01:26:50.668016,763,62,733, +2,2014-01-14 10:38:54.217158,545,203,997, +32,2014-01-15 19:52:56.929707,865,277,469, +2,2014-01-13 23:17:19.388096,866,299,629, +2,2014-01-11 22:23:58.692746,569,464,962, +2,2014-01-12 17:52:07.403056,642,335,567, +47,2014-01-18 13:34:04.922641,447,316,604, +47,2014-01-11 15:44:33.361812,250,461,889, +2,2014-01-19 17:44:47.312716,73,554,770, +32,2014-01-16 20:01:25.414004,714,738,281, +2,2014-01-13 15:12:12.988353,318,810,447, +32,2014-01-16 07:38:45.070557,575,416,338, +32,2014-01-18 16:41:01.4392,472,498,965, +32,2014-01-15 20:52:34.08081,176,676,659, +95,2014-01-18 00:29:23.558369,892,99,500, +95,2014-01-19 15:11:49.828212,12,238,728, +27,2014-01-16 01:06:22.820796,584,494,127, +95,2014-01-16 21:20:12.189647,546,485,759, +27,2014-01-18 23:38:24.122972,299,522,492, +27,2014-01-15 12:27:49.782273,32,157,444, +27,2014-01-13 03:46:30.334493,576,634,937, +95,2014-01-14 18:33:45.438015,625,768,110, +95,2014-01-16 06:55:09.474204,10,823,789, +95,2014-01-18 23:44:22.936321,70,79,762, +95,2014-01-18 22:55:07.275677,223,140,969, +27,2014-01-13 04:33:54.194378,933,43,974, +27,2014-01-14 06:30:02.59259,819,48,931, +27,2014-01-17 00:49:52.213865,258,261,370, +27,2014-01-13 13:27:06.451112,582,613,325, +95,2014-01-13 05:07:03.569106,312,231,50, +95,2014-01-20 15:27:27.344833,386,16,774, +95,2014-01-20 18:53:57.119547,956,33,69, +27,2014-01-16 19:45:57.786684,251,255,914, +27,2014-01-15 05:20:24.274541,682,416,148, +95,2014-01-13 12:11:16.507643,389,172,12, +27,2014-01-17 22:09:56.479431,834,930,226, +27,2014-01-17 03:12:31.677597,104,892,55, +27,2014-01-21 05:45:21.430702,904,330,812, +95,2014-01-18 17:54:29.841662,758,121,432, +95,2014-01-15 14:57:18.990731,271,947,9, +95,2014-01-16 19:46:46.844706,174,753,492, +95,2014-01-11 03:06:42.830016,575,905,996, +95,2014-01-21 02:36:04.061289,508,267,519, +95,2014-01-14 06:27:48.283907,974,677,185, +95,2014-01-16 03:59:16.910825,421,184,457, +95,2014-01-17 21:05:27.619657,250,364,502, +95,2014-01-12 15:39:38.112539,408,640,450, +27,2014-01-10 23:05:39.732041,506,374,299, +27,2014-01-13 12:25:39.809304,137,983,907, +95,2014-01-20 19:18:02.23551,453,16,227, +27,2014-01-15 15:33:29.514314,241,404,185, +95,2014-01-15 20:12:10.144216,894,879,324, +27,2014-01-14 07:51:47.673525,105,173,341, +27,2014-01-21 02:28:38.988517,93,604,842, +27,2014-01-13 13:56:33.080536,36,434,209, +27,2014-01-12 00:46:54.949202,114,97,710, +95,2014-01-13 01:02:33.182895,596,898,403, +95,2014-01-17 00:26:35.673126,143,420,787, +95,2014-01-18 05:36:47.163067,375,281,945, +27,2014-01-15 18:29:39.634426,718,450,442, +95,2014-01-19 09:33:39.242652,440,545,159, +27,2014-01-17 15:04:14.5079,150,199,790, +27,2014-01-15 07:23:36.753973,851,829,585, +27,2014-01-14 23:19:37.029336,985,507,435, +27,2014-01-11 14:24:38.782859,802,929,109, +27,2014-01-17 23:34:53.261616,954,231,624, +95,2014-01-11 15:29:33.508767,89,35,149, +27,2014-01-17 21:37:10.460456,333,173,794, +27,2014-01-17 23:20:14.692319,57,210,719, +27,2014-01-19 13:24:03.350429,262,109,519, +27,2014-01-12 06:34:29.451187,600,950,404, +27,2014-01-13 13:07:01.537025,149,911,175, +95,2014-01-19 20:30:46.180444,645,512,624, +95,2014-01-12 03:10:33.512476,650,625,998, +95,2014-01-16 23:34:49.821351,297,410,655, +27,2014-01-14 18:30:03.091689,502,417,264, +95,2014-01-19 04:16:01.132133,678,106,84, +95,2014-01-18 19:14:27.93389,295,726,416, +27,2014-01-14 21:35:42.823729,967,218,361, +27,2014-01-11 10:41:40.941856,134,340,186, +27,2014-01-18 08:32:30.169399,497,703,675, +27,2014-01-19 17:09:12.338042,544,384,635, +27,2014-01-16 10:53:51.086072,132,76,207, +95,2014-01-11 10:24:17.843343,207,69,427, +95,2014-01-19 13:37:51.326559,83,103,624, +27,2014-01-19 04:50:24.166608,757,440,824, +27,2014-01-12 15:11:12.792546,376,697,38, +27,2014-01-11 08:40:24.509873,944,421,852, +95,2014-01-14 23:16:59.839734,507,993,343, +27,2014-01-20 00:47:59.956031,129,707,923, +27,2014-01-16 07:10:04.144299,240,238,283, +27,2014-01-13 02:50:39.082386,878,568,575, +95,2014-01-16 09:52:14.463931,453,730,959, +27,2014-01-20 18:33:40.898272,983,833,484, +27,2014-01-17 06:10:16.111722,226,510,238, +27,2014-01-17 04:16:53.246791,514,525,509, +95,2014-01-17 12:08:34.159889,585,535,259, +95,2014-01-18 01:39:49.620908,988,245,462, +95,2014-01-13 19:54:03.707666,109,951,902, +95,2014-01-14 05:28:48.852626,188,472,46, +95,2014-01-16 09:03:52.971337,697,31,26, +95,2014-01-15 06:28:33.158853,950,646,152, +95,2014-01-16 22:35:50.38965,216,859,676, +27,2014-01-14 23:34:39.152201,839,956,261, +27,2014-01-16 13:39:06.671748,156,940,981, +27,2014-01-12 16:10:40.211001,111,533,906, +95,2014-01-18 22:04:42.24389,714,450,62, +27,2014-01-14 11:55:07.803881,91,971,894, +27,2014-01-20 15:25:08.144891,408,121,272, +95,2014-01-12 13:40:25.067618,580,796,789, +95,2014-01-15 02:36:48.745738,522,750,863, +95,2014-01-17 17:57:38.314709,643,840,852, +95,2014-01-11 00:49:37.40566,216,425,957, +95,2014-01-20 17:30:39.831809,947,547,163, +95,2014-01-18 08:21:56.158052,971,107,722, +95,2014-01-19 18:27:28.732219,355,166,544, +27,2014-01-18 16:21:03.998418,515,877,726, +95,2014-01-20 03:33:08.950598,248,533,25, +95,2014-01-20 07:07:53.242092,143,683,980, +27,2014-01-12 09:38:03.838571,842,502,153, +95,2014-01-18 22:21:08.906629,733,783,79, +95,2014-01-15 08:17:57.386392,963,155,944, +95,2014-01-14 16:28:42.920957,479,253,885, +27,2014-01-14 02:13:23.370979,64,8,612, +27,2014-01-14 20:51:38.284664,243,974,353, +95,2014-01-21 02:38:59.033099,231,130,141, +27,2014-01-20 10:30:16.61777,610,242,388, +95,2014-01-11 03:00:12.444971,202,695,509, +27,2014-01-17 22:18:48.654007,82,207,257, +95,2014-01-13 00:24:20.325435,273,907,884, +27,2014-01-14 12:29:01.297596,906,293,667, +95,2014-01-13 01:22:41.625345,475,976,35, +95,2014-01-17 10:52:53.484708,450,137,702, +27,2014-01-20 15:04:51.687247,558,929,670, +27,2014-01-17 04:57:20.777545,67,501,149, +95,2014-01-12 18:32:00.156456,65,799,418, +95,2014-01-12 01:15:31.898667,595,373,352, +95,2014-01-14 21:02:03.021434,988,917,462, +95,2014-01-16 10:27:07.960338,50,881,637, +95,2014-01-11 10:40:40.043557,258,78,284, +27,2014-01-16 14:42:28.089052,363,749,989, +27,2014-01-20 17:03:56.706495,884,576,167, +27,2014-01-18 08:38:18.358267,651,304,632, +27,2014-01-16 19:32:05.494713,506,579,9, +95,2014-01-20 04:34:36.538304,286,452,600, +95,2014-01-15 11:00:14.51632,823,401,888, +95,2014-01-15 07:59:34.227351,18,557,22, +27,2014-01-17 14:55:40.537142,664,926,299, +95,2014-01-14 08:33:23.467336,975,360,874, +27,2014-01-14 09:07:27.469443,366,626,942, +95,2014-01-19 04:33:44.375712,559,862,119, +27,2014-01-12 00:54:32.373966,247,858,992, +95,2014-01-18 21:25:24.856253,667,524,999, +27,2014-01-12 15:02:27.29667,422,894,866, +27,2014-01-15 07:07:55.744945,125,594,773, +27,2014-01-12 12:17:03.140917,173,703,888, +27,2014-01-12 11:41:26.329768,389,220,70, +27,2014-01-14 11:38:12.363134,431,590,962, +95,2014-01-12 19:17:15.585887,73,222,424, +27,2014-01-19 14:00:14.983775,414,880,791, +27,2014-01-16 16:02:32.688571,995,632,670, +27,2014-01-16 11:46:16.883483,279,572,922, +27,2014-01-11 09:22:56.609539,381,993,371, +95,2014-01-12 20:55:26.173278,183,782,269, +27,2014-01-15 20:51:08.571149,154,578,824, +95,2014-01-17 18:20:17.387083,411,566,245, +27,2014-01-14 19:27:26.329734,668,148,283, +27,2014-01-17 02:06:40.469816,542,853,328, +27,2014-01-11 09:22:20.408936,809,128,633, +95,2014-01-20 09:54:34.290492,899,297,369, +27,2014-01-17 16:47:20.513373,56,891,578, +27,2014-01-17 04:04:48.49799,675,496,387, +27,2014-01-19 20:58:30.996985,225,14,687, +95,2014-01-14 19:25:38.872059,685,892,418, +95,2014-01-12 17:36:53.993121,890,156,574, +95,2014-01-18 19:33:07.53529,744,69,449, +95,2014-01-19 10:25:53.388379,942,368,861, +95,2014-01-17 05:36:28.220472,404,485,466, +27,2014-01-15 04:28:48.072431,832,71,613, +95,2014-01-12 12:59:16.855716,957,250,494, +95,2014-01-20 18:43:55.689915,544,992,498, +27,2014-01-13 03:02:32.448144,520,696,472, +27,2014-01-13 17:53:49.230101,112,844,214, +27,2014-01-18 10:09:20.546169,794,912,882, +95,2014-01-14 22:04:59.745232,346,377,384, +95,2014-01-18 05:01:44.975046,651,947,682, +95,2014-01-20 02:26:23.687504,190,542,360, +27,2014-01-16 13:46:26.075001,53,626,602, +27,2014-01-11 10:39:57.33818,695,604,735, +95,2014-01-11 15:43:39.273391,685,127,587, +27,2014-01-14 21:46:41.059195,283,587,912, +27,2014-01-17 06:42:30.02717,429,936,540, +27,2014-01-17 07:29:56.157293,712,388,808, +95,2014-01-15 11:09:37.668733,312,659,914, +27,2014-01-19 07:37:56.200448,867,897,142, +27,2014-01-11 22:21:04.728442,480,109,910, +27,2014-01-11 23:29:55.055817,721,899,108, +27,2014-01-12 21:05:22.530601,363,778,960, +95,2014-01-18 04:27:45.198257,443,535,307, +27,2014-01-12 12:52:15.464754,974,902,14, +95,2014-01-12 00:59:56.821093,899,179,763, +95,2014-01-14 15:15:05.71163,298,297,206, +27,2014-01-18 20:57:03.963162,42,366,632, +95,2014-01-21 01:58:27.818078,432,782,655, +27,2014-01-18 14:40:44.58369,422,164,797, +27,2014-01-20 18:33:57.956283,295,568,283, +27,2014-01-18 15:31:35.353369,155,699,162, +27,2014-01-16 19:06:37.972488,541,294,253, +95,2014-01-16 18:10:26.176755,305,94,568, +95,2014-01-12 14:00:23.426219,996,365,869, +95,2014-01-18 12:05:54.828203,307,75,96, +95,2014-01-16 06:54:21.86667,763,492,290, +27,2014-01-14 21:02:55.874363,981,919,492, +27,2014-01-10 23:59:44.058304,110,169,318, +27,2014-01-13 11:03:42.413257,554,905,652, +58,2014-01-18 23:07:55.619596,461,700,279, +58,2014-01-18 09:01:29.033769,270,676,256, +58,2014-01-12 07:30:06.100761,567,156,510, +58,2014-01-14 06:54:21.695016,567,994,122, +58,2014-01-18 23:41:26.371949,175,324,975, +58,2014-01-13 03:13:45.374152,723,910,486, +58,2014-01-18 08:41:02.75421,806,186,512, +58,2014-01-15 00:23:56.399119,185,553,966, +58,2014-01-19 14:43:41.531446,828,128,142, +58,2014-01-12 13:50:40.422944,764,742,719, +58,2014-01-13 02:01:52.599986,223,886,472, +58,2014-01-20 17:04:46.259887,587,178,158, +58,2014-01-13 17:20:35.478761,325,872,782, +58,2014-01-15 03:07:15.130588,626,254,694, +58,2014-01-17 15:32:31.458144,485,292,916, +58,2014-01-15 10:12:50.943934,960,427,511, +58,2014-01-16 08:07:11.95168,891,939,545, +58,2014-01-11 00:47:37.170193,259,643,382, +58,2014-01-13 01:09:54.907097,921,445,313, +58,2014-01-16 04:05:39.769759,832,807,943, +58,2014-01-18 19:28:21.753882,513,153,657, +58,2014-01-12 13:43:52.863379,478,731,977, +58,2014-01-13 13:37:15.123128,421,558,298, +58,2014-01-14 08:34:59.72637,890,434,977, +58,2014-01-18 11:54:19.040134,697,471,366, +58,2014-01-15 07:37:38.549347,26,205,170, +58,2014-01-11 14:40:54.554993,310,864,510, +58,2014-01-13 12:48:40.906805,117,366,235, +58,2014-01-19 08:40:34.424129,30,658,437, +58,2014-01-11 18:40:38.613297,876,883,403, +58,2014-01-16 03:52:23.320062,34,490,271, +58,2014-01-17 01:48:30.043724,990,104,352, +58,2014-01-19 07:42:07.647066,121,92,811, +58,2014-01-17 15:22:29.420824,189,467,165, +58,2014-01-20 12:42:51.73874,724,594,873, +58,2014-01-17 01:23:34.019434,951,943,511, +58,2014-01-19 22:36:14.795396,2,86,311, +58,2014-01-17 15:23:54.49295,377,757,818, +58,2014-01-21 05:47:30.418553,364,678,687, +58,2014-01-18 07:19:56.326841,202,871,104, +58,2014-01-19 09:14:34.915894,719,13,425, +58,2014-01-13 01:49:23.01854,401,820,967, +58,2014-01-17 18:24:42.587147,789,639,569, +58,2014-01-11 20:35:10.395074,460,555,517, +58,2014-01-17 08:56:38.149127,185,212,545, +58,2014-01-14 03:57:14.045291,310,883,424, +58,2014-01-16 10:48:01.339008,408,239,324, +58,2014-01-12 11:03:50.100807,532,172,182, +58,2014-01-14 08:44:51.215483,287,852,297, +58,2014-01-18 15:57:56.246105,819,230,624, +58,2014-01-17 19:09:29.870567,849,404,458, +58,2014-01-11 22:13:12.969785,296,882,612, +58,2014-01-20 09:41:49.109484,409,90,445, +58,2014-01-20 12:46:44.994113,915,2,222, +58,2014-01-15 10:48:12.696155,768,452,536, +58,2014-01-17 15:36:08.149619,186,924,170, +58,2014-01-14 14:24:23.543459,487,834,505, +58,2014-01-16 05:29:07.251148,798,994,297, +58,2014-01-20 08:24:49.056424,163,561,94, +58,2014-01-12 17:04:57.967589,638,804,519, +58,2014-01-17 04:09:45.864864,455,919,613, +58,2014-01-15 06:17:12.376905,91,576,96, +58,2014-01-18 22:53:28.011732,733,907,144, +58,2014-01-15 05:51:53.511929,851,455,109, +58,2014-01-11 15:39:41.797729,18,626,258, +58,2014-01-18 05:36:19.750472,333,987,191, +58,2014-01-11 01:15:27.531364,57,649,616, +58,2014-01-20 18:15:56.593125,392,351,406, +58,2014-01-14 15:00:14.243841,232,838,520, +58,2014-01-11 01:02:57.950335,354,831,617, +58,2014-01-17 19:35:52.920385,292,182,900, +58,2014-01-12 18:14:49.159735,236,592,946, +58,2014-01-13 06:52:20.968875,424,696,309, +58,2014-01-14 08:00:35.507532,980,369,699, +58,2014-01-13 18:49:59.554809,985,106,801, +58,2014-01-19 19:48:59.118421,837,674,799, +58,2014-01-17 15:57:49.552823,101,585,156, +58,2014-01-19 09:38:00.893818,860,18,233, +58,2014-01-11 00:52:49.219228,69,265,606, +58,2014-01-21 04:42:40.768726,298,117,196, +58,2014-01-16 19:35:57.139922,216,271,139, +58,2014-01-18 00:02:19.090214,71,750,189, +58,2014-01-11 20:55:53.738511,257,198,194, +58,2014-01-15 23:17:46.249406,455,314,912, +58,2014-01-17 06:49:04.084326,410,279,667, +58,2014-01-16 11:44:06.434667,201,883,649, +58,2014-01-12 08:53:54.399026,681,490,746, +58,2014-01-21 01:13:27.627786,786,119,322, +58,2014-01-11 11:13:13.686233,422,611,51, +58,2014-01-11 11:18:43.455869,526,86,365, +58,2014-01-12 12:18:25.595794,344,185,249, +58,2014-01-17 19:22:59.551097,38,578,945, +58,2014-01-15 21:35:55.832775,723,503,660, +58,2014-01-20 15:11:53.607525,502,622,70, +58,2014-01-11 19:14:53.063026,706,242,591, +58,2014-01-16 17:15:37.630504,804,94,502, +58,2014-01-17 14:48:13.357997,130,488,823, +58,2014-01-12 00:30:20.594808,242,924,850, +58,2014-01-16 05:31:34.224048,24,830,642, +58,2014-01-10 23:48:27.601838,260,889,120, +58,2014-01-12 05:33:18.545145,147,387,715, +58,2014-01-12 19:07:27.144433,273,546,575, +58,2014-01-12 22:03:16.761992,242,964,653, +58,2014-01-14 16:25:39.51402,304,117,111, +42,2014-01-16 07:08:02.651966,11,942,265, +42,2014-01-15 20:53:16.316801,151,952,820, +42,2014-01-13 06:14:38.63244,705,711,203, +42,2014-01-12 17:05:52.204789,522,550,162, +42,2014-01-14 00:31:17.211038,658,346,41, +42,2014-01-13 11:07:27.852087,237,259,49, +42,2014-01-12 15:48:32.973515,965,319,368, +42,2014-01-20 00:07:14.35096,847,309,909, +42,2014-01-20 15:09:46.9423,150,32,242, +42,2014-01-13 16:44:26.712026,766,725,208, +42,2014-01-14 17:25:00.600785,31,921,555, +41,2014-01-16 15:58:51.026626,345,635,354, +41,2014-01-19 08:28:33.147111,817,477,203, +42,2014-01-16 06:18:54.999811,83,93,639, +42,2014-01-16 11:12:18.654412,601,292,408, +42,2014-01-19 23:41:46.833345,28,407,758, +42,2014-01-16 21:37:38.45568,89,538,81, +41,2014-01-18 03:30:44.250206,777,736,69, +42,2014-01-16 13:04:46.384442,613,949,996, +42,2014-01-11 13:13:34.288455,757,669,334, +41,2014-01-17 12:42:37.857731,206,128,528, +42,2014-01-17 12:19:39.447469,931,506,821, +42,2014-01-17 10:29:11.919378,20,309,440, +42,2014-01-13 21:30:51.216148,553,702,852, +41,2014-01-18 16:50:00.042277,446,215,812, +41,2014-01-12 10:00:46.143426,683,310,395, +42,2014-01-14 01:19:18.817985,456,338,267, +42,2014-01-20 02:23:18.587422,36,361,700, +42,2014-01-14 09:08:13.287859,300,835,72, +42,2014-01-16 03:22:35.579977,209,50,914, +41,2014-01-13 12:48:58.10186,25,933,111, +41,2014-01-19 20:16:15.939825,546,320,365, +41,2014-01-21 04:15:51.897197,382,60,719, +41,2014-01-15 23:03:36.7343,158,493,949, +41,2014-01-11 07:22:08.144614,494,636,697, +42,2014-01-13 22:47:09.108234,259,453,590, +41,2014-01-18 14:11:04.586387,60,147,229, +42,2014-01-13 03:10:41.118547,101,91,830, +42,2014-01-12 16:54:23.459195,869,934,242, +41,2014-01-17 23:20:51.528687,642,850,244, +42,2014-01-15 23:55:07.830573,648,96,648, +41,2014-01-16 14:19:24.05998,269,54,65, +41,2014-01-13 09:19:42.555314,253,631,743, +42,2014-01-14 02:23:40.977684,751,456,300, +42,2014-01-11 14:38:19.060211,176,482,280, +41,2014-01-19 00:32:01.210145,358,412,7, +41,2014-01-12 20:05:27.811029,543,146,880, +41,2014-01-17 16:15:57.515892,276,464,72, +42,2014-01-15 22:02:45.460351,853,167,868, +42,2014-01-18 13:10:14.195472,911,9,733, +41,2014-01-18 09:29:31.804767,490,109,850, +41,2014-01-12 04:45:23.318501,180,914,842, +41,2014-01-14 19:29:53.643359,294,692,98, +42,2014-01-14 13:58:43.724145,734,492,699, +42,2014-01-15 06:16:14.534649,55,95,797, +42,2014-01-12 06:19:53.685636,923,638,679, +41,2014-01-16 03:59:29.867571,862,666,562, +41,2014-01-18 11:35:33.352634,125,5,162, +42,2014-01-11 02:43:12.273477,243,990,958, +41,2014-01-19 17:07:43.15543,425,13,923, +42,2014-01-13 08:58:08.93303,471,750,680, +42,2014-01-13 19:32:10.375337,813,722,324, +42,2014-01-18 07:23:59.095255,306,106,584, +42,2014-01-13 07:14:00.830228,437,795,959, +42,2014-01-18 22:35:47.109637,934,475,418, +41,2014-01-18 18:46:07.239869,772,85,428, +42,2014-01-16 10:01:09.938463,779,519,683, +41,2014-01-16 06:46:51.696444,432,769,773, +42,2014-01-21 01:56:48.358416,207,393,794, +42,2014-01-18 06:55:33.397657,278,971,34, +41,2014-01-13 00:07:43.225131,84,423,310, +41,2014-01-15 19:51:56.189407,474,225,514, +41,2014-01-13 15:14:57.458057,533,42,934, +41,2014-01-15 13:27:25.780864,344,320,856, +41,2014-01-19 02:15:37.167092,576,682,413, +41,2014-01-14 09:53:16.518269,224,307,159, +41,2014-01-13 07:59:26.991009,752,92,816, +41,2014-01-21 02:21:04.978541,719,210,336, +41,2014-01-10 20:09:14.03416,54,933,410, +41,2014-01-18 10:02:12.45136,493,599,732, +42,2014-01-18 09:31:19.174012,247,1000,95, +42,2014-01-18 09:38:45.838927,604,870,543, +41,2014-01-19 18:47:35.769861,718,701,472, +41,2014-01-11 23:01:12.817372,842,422,781, +42,2014-01-11 17:37:29.563072,94,648,658, +42,2014-01-13 19:03:50.30451,15,567,547, +41,2014-01-13 09:21:06.503427,543,157,549, +41,2014-01-17 01:36:59.430643,732,408,567, +42,2014-01-11 00:39:23.657565,488,396,72, +41,2014-01-13 16:04:18.776904,3,754,898, +41,2014-01-15 12:44:42.586073,611,805,848, +41,2014-01-13 13:37:32.590595,300,579,905, +42,2014-01-16 15:36:29.152241,768,108,592, +41,2014-01-12 14:08:41.681328,468,325,331, +41,2014-01-16 00:51:33.420823,159,713,376, +42,2014-01-14 08:12:16.261878,313,302,543, +42,2014-01-20 12:54:48.921617,137,624,333, +42,2014-01-11 04:52:43.359285,986,39,71, +41,2014-01-19 18:59:07.958322,821,582,907, +41,2014-01-20 08:51:37.280032,358,172,498, +42,2014-01-18 15:48:16.756943,563,114,754, +41,2014-01-11 13:06:51.183873,982,140,408, +42,2014-01-14 22:43:33.46944,485,711,423, +42,2014-01-11 01:03:14.215,840,148,793, +42,2014-01-16 06:34:16.964736,356,725,162, +42,2014-01-12 18:59:10.63695,511,954,140, +42,2014-01-14 14:56:30.733268,253,626,335, +41,2014-01-18 18:33:43.955746,137,993,944, +42,2014-01-12 15:20:15.615492,378,518,299, +42,2014-01-14 15:05:44.767848,570,932,838, +42,2014-01-15 22:35:56.407106,448,690,171, +41,2014-01-20 04:51:34.789503,352,635,21, +41,2014-01-11 18:44:30.606774,751,593,379, +42,2014-01-14 11:23:32.177386,459,924,152, +42,2014-01-10 21:52:47.607294,972,695,259, +42,2014-01-12 16:22:00.170265,373,532,910, +41,2014-01-17 10:27:22.481898,411,193,7, +41,2014-01-13 11:13:54.110721,807,976,38, +41,2014-01-18 21:58:59.600907,864,639,809, +41,2014-01-17 15:06:46.139462,201,575,488, +41,2014-01-16 07:18:12.887625,387,999,106, +42,2014-01-13 04:43:42.1874,957,666,630, +42,2014-01-20 08:44:18.730057,48,408,45, +41,2014-01-11 16:54:42.039866,571,378,585, +42,2014-01-14 22:52:23.868728,12,251,453, +42,2014-01-15 03:35:52.150879,297,898,367, +42,2014-01-15 05:06:58.301745,393,647,466, +41,2014-01-14 05:47:12.790345,349,670,98, +41,2014-01-15 12:28:35.510165,255,883,979, +41,2014-01-13 18:06:06.260485,267,851,327, +42,2014-01-13 08:38:50.070796,969,84,666, +41,2014-01-12 22:16:52.267526,358,936,355, +41,2014-01-14 11:12:57.444358,334,862,939, +41,2014-01-17 11:22:23.540234,716,382,265, +42,2014-01-13 03:20:06.482526,713,555,524, +42,2014-01-19 21:47:14.409095,31,753,326, +42,2014-01-19 10:21:34.177185,109,471,185, +42,2014-01-16 22:16:37.216214,786,353,662, +42,2014-01-17 10:20:58.364841,435,994,690, +42,2014-01-21 05:41:49.792677,606,732,681, +41,2014-01-20 17:22:21.98406,703,451,289, +42,2014-01-12 02:56:54.771946,802,605,830, +42,2014-01-20 04:33:24.582599,313,435,794, +42,2014-01-11 06:06:52.590835,119,429,904, +42,2014-01-15 18:20:26.949333,945,380,550, +42,2014-01-20 06:26:12.189893,265,693,703, +41,2014-01-13 02:28:52.7611,99,148,508, +42,2014-01-11 22:47:49.43165,403,753,682, +41,2014-01-12 11:40:06.300614,644,85,564, +41,2014-01-21 04:27:52.362427,716,551,816, +42,2014-01-18 17:54:35.571111,777,371,442, +42,2014-01-17 22:58:19.188239,45,947,974, +42,2014-01-13 03:11:34.549827,350,678,766, +42,2014-01-17 20:38:54.301588,101,389,299, +41,2014-01-18 19:53:01.228104,451,821,768, +42,2014-01-17 06:03:58.418555,215,928,800, +42,2014-01-11 18:14:46.452468,307,321,982, +41,2014-01-12 18:59:59.529849,685,791,831, +42,2014-01-20 15:51:11.209319,286,390,389, +42,2014-01-16 10:43:21.963051,940,458,56, +41,2014-01-15 17:06:05.790334,809,488,276, +41,2014-01-12 18:30:01.280115,274,935,666, +41,2014-01-18 13:00:14.230577,506,582,447, +41,2014-01-19 08:19:03.234693,259,857,289, +41,2014-01-19 09:52:24.820349,832,633,368, +42,2014-01-20 20:20:20.713103,424,881,504, +42,2014-01-18 00:06:17.643787,156,889,739, +41,2014-01-17 14:13:58.997954,982,557,134, +41,2014-01-16 12:36:57.929317,844,596,706, +42,2014-01-14 04:27:16.008628,978,6,902, +41,2014-01-17 13:55:48.79063,220,252,334, +41,2014-01-15 23:59:19.913377,664,529,983, +41,2014-01-15 11:24:10.780993,455,556,185, +42,2014-01-16 12:29:13.373229,477,596,451, +41,2014-01-16 10:06:12.504631,964,835,509, +41,2014-01-20 09:44:37.730326,997,592,774, +42,2014-01-15 12:55:25.563123,831,354,271, +41,2014-01-18 16:35:05.265731,663,67,94, +41,2014-01-11 02:32:27.161976,501,104,982, +41,2014-01-17 04:35:31.863736,637,139,893, +41,2014-01-18 15:02:57.628158,535,354,427, +41,2014-01-19 00:27:02.733507,431,337,472, +42,2014-01-13 21:33:51.051975,524,592,690, +41,2014-01-20 22:14:32.177985,273,482,762, +42,2014-01-15 15:05:57.035095,371,585,720, +42,2014-01-11 11:26:52.28008,660,985,711, +42,2014-01-16 22:18:30.59696,743,124,198, +41,2014-01-16 13:20:43.487562,880,432,340, +41,2014-01-13 10:26:51.810348,278,825,933, +41,2014-01-16 08:09:41.806279,117,708,581, +42,2014-01-11 18:04:05.450614,875,128,127, +42,2014-01-18 07:32:57.600683,644,131,874, +42,2014-01-18 06:39:43.086394,338,845,328, +41,2014-01-19 11:04:19.681191,469,342,811, +42,2014-01-16 09:52:00.835795,871,95,907, +41,2014-01-16 10:32:07.906743,885,430,888, +42,2014-01-19 01:24:40.394713,166,34,121, +42,2014-01-13 03:58:18.479582,915,195,664, +42,2014-01-12 18:46:06.904697,47,469,504, +42,2014-01-14 08:01:38.324029,106,55,699, +90,2014-01-16 12:25:34.488629,891,186,759, +90,2014-01-19 12:41:55.695746,898,249,738, +81,2014-01-19 12:00:58.237825,966,946,809, +90,2014-01-21 03:49:45.269622,916,224,41, +30,2014-01-14 19:11:09.068975,716,448,315, +76,2014-01-14 16:07:10.742456,224,40,499, +23,2014-01-20 07:34:22.999948,214,991,539, +90,2014-01-19 12:06:34.632517,585,133,264, +9,2014-01-12 02:42:16.008189,54,652,816, +76,2014-01-20 14:06:50.162343,628,824,160, +30,2014-01-15 10:42:06.496254,327,151,357, +76,2014-01-19 21:45:13.636767,653,28,797, +81,2014-01-18 08:33:52.89585,885,198,494, +81,2014-01-18 12:15:57.548649,66,1,913, +90,2014-01-19 13:59:45.814752,316,330,464, +76,2014-01-12 17:39:49.930945,92,348,820, +80,2014-01-19 03:42:49.828728,264,726,509, +80,2014-01-15 06:18:16.411712,674,862,629, +30,2014-01-18 11:00:33.418507,218,76,713, +30,2014-01-11 08:09:41.639077,791,42,720, +76,2014-01-20 18:27:58.217991,361,87,943, +81,2014-01-19 09:04:38.86954,181,139,9, +30,2014-01-18 19:42:39.240179,529,760,745, +23,2014-01-17 19:07:41.304384,94,680,39, +76,2014-01-17 14:08:58.55073,147,388,429, +80,2014-01-13 23:34:40.075974,36,116,224, +30,2014-01-12 23:39:49.211546,521,941,929, +81,2014-01-15 09:33:38.945443,591,530,930, +23,2014-01-16 07:32:58.555556,17,924,180, +80,2014-01-14 22:25:56.116243,59,37,482, +76,2014-01-18 21:35:17.269891,607,393,48, +23,2014-01-11 13:58:33.044185,887,655,408, +81,2014-01-13 05:07:51.811989,406,296,846, +81,2014-01-17 03:36:15.507717,81,695,521, +30,2014-01-11 11:48:18.313807,206,478,973, +9,2014-01-17 04:19:00.881383,528,581,385, +81,2014-01-20 23:43:26.250173,577,153,750, +90,2014-01-20 23:22:41.314175,649,615,492, +90,2014-01-15 10:25:35.5139,121,152,223, +90,2014-01-11 20:25:42.258361,158,152,758, +90,2014-01-20 07:29:31.476518,646,114,108, +30,2014-01-20 01:07:42.010154,371,343,883, +9,2014-01-20 22:10:55.895128,253,369,938, +9,2014-01-17 10:03:24.372368,222,937,403, +81,2014-01-17 07:23:39.558803,906,240,734, +90,2014-01-19 06:10:41.710299,609,764,811, +81,2014-01-19 07:43:14.303313,173,708,184, +90,2014-01-15 05:06:29.38795,339,89,687, +90,2014-01-13 06:28:58.122011,763,850,601, +9,2014-01-16 12:43:47.72182,315,19,79, +80,2014-01-15 17:16:11.027027,419,865,317, +80,2014-01-12 18:56:56.340422,845,294,652, +76,2014-01-14 15:48:26.591359,181,329,710, +23,2014-01-13 06:58:50.267206,246,140,621, +9,2014-01-19 18:04:37.644806,476,47,257, +81,2014-01-10 23:57:25.142508,190,156,968, +76,2014-01-16 10:33:30.343179,200,242,201, +9,2014-01-11 11:44:26.856352,961,485,845, +80,2014-01-15 13:31:04.087951,908,577,164, +30,2014-01-11 12:06:28.899154,472,9,667, +9,2014-01-15 14:10:22.973014,467,979,347, +90,2014-01-13 05:06:21.357843,21,99,948, +81,2014-01-12 06:05:01.94334,432,469,893, +76,2014-01-17 23:18:14.785003,858,905,265, +23,2014-01-19 12:42:36.865558,162,868,213, +23,2014-01-12 21:53:20.257567,971,57,959, +81,2014-01-13 21:37:15.666385,820,22,770, +81,2014-01-19 06:26:03.115732,534,715,646, +30,2014-01-12 15:16:01.571741,223,936,27, +80,2014-01-18 12:02:51.180285,879,933,425, +30,2014-01-20 06:51:45.374513,880,768,923, +90,2014-01-11 16:45:33.048258,232,882,189, +9,2014-01-17 07:10:33.190859,99,832,150, +81,2014-01-19 23:02:41.269641,64,630,24, +30,2014-01-18 06:48:57.420626,926,485,177, +9,2014-01-13 08:34:12.749661,653,880,807, +30,2014-01-17 23:13:22.979941,162,743,757, +76,2014-01-16 08:32:11.723939,947,534,843, +81,2014-01-17 17:40:42.137612,696,874,591, +9,2014-01-20 09:42:21.102371,753,245,553, +80,2014-01-11 15:15:59.445758,856,208,882, +76,2014-01-12 04:56:53.165058,20,45,785, +80,2014-01-11 22:39:17.442792,671,734,231, +23,2014-01-15 11:04:26.037536,214,900,559, +76,2014-01-14 15:55:43.432264,37,287,818, +81,2014-01-20 20:43:55.087598,61,392,608, +30,2014-01-15 15:01:51.180045,46,568,97, +90,2014-01-20 06:29:13.775863,532,614,543, +23,2014-01-11 02:28:21.94437,848,42,538, +81,2014-01-20 08:32:55.267996,767,381,40, +76,2014-01-20 22:35:42.675018,565,102,786, +23,2014-01-15 20:38:44.917383,513,11,917, +80,2014-01-12 07:39:16.626257,198,572,781, +30,2014-01-11 22:40:44.618357,240,100,393, +90,2014-01-12 13:56:59.702386,857,710,376, +90,2014-01-21 00:21:53.491816,433,971,794, +90,2014-01-14 00:34:04.875923,729,769,370, +90,2014-01-15 15:34:15.369191,452,577,818, +23,2014-01-19 00:47:56.607967,954,940,791, +23,2014-01-15 19:50:06.447664,17,921,728, +76,2014-01-12 21:37:06.549477,284,25,318, +81,2014-01-18 01:39:41.98248,780,79,397, +9,2014-01-16 16:35:39.495922,980,742,689, +90,2014-01-19 08:47:39.740335,405,748,169, +80,2014-01-16 18:42:23.252121,86,994,302, +9,2014-01-13 17:24:36.916548,687,909,585, +9,2014-01-11 11:21:52.490417,476,298,109, +9,2014-01-13 11:55:46.23248,577,227,667, +30,2014-01-19 05:56:48.640486,776,109,966, +81,2014-01-18 09:02:34.628029,542,10,845, +23,2014-01-12 15:38:07.334851,463,926,408, +80,2014-01-20 01:12:48.086664,839,683,854, +80,2014-01-19 17:59:27.793086,61,574,80, +76,2014-01-13 18:17:24.777643,744,902,498, +80,2014-01-14 06:17:14.1242,199,417,870, +80,2014-01-13 03:55:11.22577,109,908,562, +30,2014-01-13 09:01:19.865241,988,553,673, +76,2014-01-19 01:19:05.304245,592,96,492, +23,2014-01-12 04:24:25.001632,367,252,27, +81,2014-01-13 15:29:41.80961,147,776,600, +9,2014-01-18 03:52:00.572241,920,277,648, +30,2014-01-11 21:00:07.67665,767,869,491, +9,2014-01-18 16:08:26.726994,419,451,294, +80,2014-01-19 15:31:17.198498,848,481,751, +80,2014-01-12 23:40:52.295007,596,380,100, +90,2014-01-20 10:05:26.429799,771,354,261, +90,2014-01-19 09:53:10.690733,49,986,145, +23,2014-01-16 04:14:57.171349,104,76,367, +81,2014-01-14 19:39:41.79899,323,990,876, +9,2014-01-17 04:41:07.298701,268,80,496, +9,2014-01-21 04:05:03.619013,469,885,938, +30,2014-01-16 21:16:48.348467,465,103,391, +76,2014-01-14 00:20:49.28118,88,902,690, +76,2014-01-16 14:40:43.115354,495,124,515, +81,2014-01-15 00:04:28.089222,341,712,395, +30,2014-01-19 23:03:12.533301,756,508,174, +23,2014-01-19 12:05:20.031902,837,490,901, +76,2014-01-15 15:26:20.579639,173,716,691, +81,2014-01-12 04:58:58.765781,779,142,495, +90,2014-01-17 12:02:08.672808,83,661,809, +90,2014-01-12 18:28:55.207668,288,706,856, +76,2014-01-14 00:37:06.100632,737,164,151, +90,2014-01-16 07:14:56.759473,957,113,562, +80,2014-01-11 06:28:23.001173,255,124,619, +80,2014-01-16 22:54:30.878275,307,373,704, +81,2014-01-19 17:32:10.883673,982,191,995, +90,2014-01-13 14:23:34.226944,126,712,420, +76,2014-01-19 11:55:50.743935,19,641,543, +30,2014-01-17 12:51:16.187918,617,250,645, +23,2014-01-14 22:47:59.228576,277,757,998, +76,2014-01-11 21:25:32.553546,597,146,359, +23,2014-01-14 10:43:16.760159,177,386,303, +30,2014-01-15 23:48:06.905226,395,765,383, +90,2014-01-19 17:33:59.280959,53,972,838, +81,2014-01-12 20:14:33.959076,325,842,731, +23,2014-01-18 03:28:59.200232,57,361,763, +90,2014-01-18 21:39:25.710758,127,213,628, +30,2014-01-11 00:07:44.64981,804,143,37, +80,2014-01-13 01:43:56.371581,957,939,820, +81,2014-01-12 11:19:07.509749,107,756,684, +30,2014-01-17 08:48:51.94851,731,38,502, +9,2014-01-12 23:48:59.991014,217,180,171, +81,2014-01-18 12:35:55.858216,348,684,732, +23,2014-01-20 13:09:41.229692,275,971,588, +81,2014-01-18 18:29:43.106368,993,703,383, +90,2014-01-12 06:40:23.947437,709,282,685, +90,2014-01-19 06:12:53.762993,176,799,47, +23,2014-01-17 00:35:03.138271,902,136,307, +23,2014-01-17 02:06:44.527076,400,716,485, +90,2014-01-20 15:11:52.529194,921,294,272, +76,2014-01-13 06:37:11.811079,390,709,994, +76,2014-01-19 00:35:39.735161,840,843,44, +90,2014-01-13 09:48:58.629826,89,180,267, +81,2014-01-18 17:52:08.570551,169,19,89, +23,2014-01-19 11:04:02.736335,177,261,912, +76,2014-01-19 12:43:29.508521,701,479,799, +30,2014-01-17 05:24:19.454224,353,724,582, +30,2014-01-11 19:27:36.963278,491,782,122, +81,2014-01-17 18:39:20.252456,310,775,121, +80,2014-01-13 12:15:35.642143,257,672,667, +81,2014-01-15 22:15:36.191854,97,35,11, +23,2014-01-18 20:04:52.806002,675,755,263, +23,2014-01-17 02:58:52.40272,529,383,514, +76,2014-01-21 02:03:43.09708,370,243,19, +30,2014-01-17 07:38:52.086961,175,289,809, +23,2014-01-19 03:13:26.361797,947,688,913, +23,2014-01-17 23:32:42.297313,479,817,780, +81,2014-01-14 23:18:17.79772,159,767,867, +90,2014-01-19 07:21:11.011606,207,441,671, +23,2014-01-20 05:16:38.669314,66,397,314, +9,2014-01-16 14:37:25.307469,954,153,482, +30,2014-01-15 10:10:02.960117,215,106,126, +90,2014-01-11 23:05:38.660327,473,585,449, +9,2014-01-13 21:13:21.166103,366,736,580, +81,2014-01-14 17:19:44.189808,664,851,122, +80,2014-01-19 21:35:21.766695,251,995,916, +81,2014-01-15 07:53:45.113541,630,42,330, +23,2014-01-12 17:32:37.952801,817,363,667, +23,2014-01-15 16:10:24.904966,336,407,690, +23,2014-01-11 04:00:29.641034,716,685,647, +9,2014-01-12 02:44:30.481995,804,736,805, +23,2014-01-18 02:47:36.716464,186,22,658, +30,2014-01-19 08:36:09.376197,950,590,573, +76,2014-01-14 16:33:29.11224,100,947,989, +9,2014-01-15 14:39:45.287016,534,956,625, +76,2014-01-17 13:40:12.112532,292,147,986, +90,2014-01-12 23:16:58.62076,995,657,106, +23,2014-01-11 14:04:04.741658,604,675,593, +76,2014-01-18 13:07:49.07581,928,384,39, +9,2014-01-19 21:56:18.873217,666,958,183, +23,2014-01-14 06:19:40.383801,746,932,436, +90,2014-01-13 05:23:25.267665,394,619,564, +30,2014-01-17 12:01:11.67922,728,944,331, +9,2014-01-20 13:18:32.786521,959,795,642, +30,2014-01-13 01:27:08.364745,304,208,677, +90,2014-01-13 13:40:03.7666,470,696,449, +81,2014-01-18 10:31:59.148318,393,59,79, +9,2014-01-20 04:59:50.662057,793,90,360, +30,2014-01-17 16:58:21.564321,13,971,429, +9,2014-01-16 11:53:10.159924,178,408,10, +9,2014-01-19 04:16:29.33137,874,227,182, +90,2014-01-13 01:35:46.872208,600,923,724, +23,2014-01-21 02:03:13.120042,742,768,195, +9,2014-01-20 07:22:07.991697,38,914,115, +81,2014-01-16 02:49:08.038311,957,713,751, +76,2014-01-14 13:22:57.30985,277,662,201, +30,2014-01-18 22:57:29.758393,545,247,359, +81,2014-01-20 14:42:53.151851,481,833,192, +76,2014-01-16 10:55:35.26307,54,584,569, +23,2014-01-13 09:07:54.663777,205,126,900, +76,2014-01-20 22:43:22.792886,966,118,973, +90,2014-01-17 17:40:05.745065,572,750,24, +80,2014-01-20 15:55:31.380241,124,681,453, +81,2014-01-19 01:19:32.169083,411,76,972, +23,2014-01-11 04:13:34.857305,994,124,358, +30,2014-01-15 00:35:16.667256,1000,997,272, +9,2014-01-15 08:59:44.281615,296,361,774, +23,2014-01-13 07:30:33.478066,161,426,978, +80,2014-01-15 18:39:21.408915,601,660,123, +30,2014-01-12 16:07:33.357425,864,983,177, +9,2014-01-11 23:26:52.351282,480,254,56, +81,2014-01-19 04:59:01.793134,617,214,989, +81,2014-01-15 01:30:58.62509,69,708,77, +80,2014-01-18 15:28:04.030922,669,603,70, +90,2014-01-18 12:17:34.579655,113,308,557, +30,2014-01-17 06:58:06.989833,895,247,576, +90,2014-01-10 23:08:07.797522,562,504,796, +23,2014-01-15 16:49:33.728392,173,137,577, +76,2014-01-16 05:57:57.652309,770,938,168, +81,2014-01-17 20:06:29.361843,554,952,391, +81,2014-01-10 22:42:43.888317,816,983,574, +30,2014-01-14 04:14:26.98368,582,661,18, +9,2014-01-20 01:42:16.234051,500,244,516, +23,2014-01-21 04:45:57.008777,19,474,498, +9,2014-01-13 05:36:34.975796,75,706,352, +80,2014-01-14 22:31:24.272361,554,275,85, +80,2014-01-14 12:08:54.318627,780,667,892, +90,2014-01-10 22:34:04.734189,647,56,54, +30,2014-01-14 07:14:17.424632,351,188,890, +76,2014-01-20 03:04:29.581697,223,257,3, +90,2014-01-13 11:41:59.397966,64,99,15, +76,2014-01-13 23:57:40.217519,149,625,885, +81,2014-01-16 14:44:35.32718,268,386,180, +90,2014-01-12 21:37:30.778206,11,458,377, +90,2014-01-11 19:17:12.387021,479,651,327, +23,2014-01-16 22:58:10.184485,581,612,90, +90,2014-01-17 02:12:47.445881,73,427,109, +30,2014-01-16 08:16:56.668635,203,278,660, +76,2014-01-19 10:28:43.66297,4,641,422, +23,2014-01-11 14:52:08.854795,280,92,8, +9,2014-01-18 04:24:30.026479,715,975,20, +30,2014-01-20 13:55:36.014253,935,754,148, +23,2014-01-19 23:51:10.647929,511,431,793, +23,2014-01-11 23:55:28.651569,233,811,24, +90,2014-01-17 23:23:40.045174,567,895,631, +23,2014-01-17 06:08:45.228003,566,571,923, +80,2014-01-18 10:53:35.641822,380,646,275, +80,2014-01-18 02:31:47.842696,938,472,437, +9,2014-01-11 16:58:18.956396,658,456,349, +30,2014-01-13 10:51:33.294131,292,736,314, +30,2014-01-14 16:38:17.204957,325,857,33, +30,2014-01-11 19:41:02.844711,715,255,767, +30,2014-01-16 19:06:00.277811,653,347,244, +81,2014-01-13 12:20:33.439008,628,128,913, +90,2014-01-11 18:26:59.853489,981,675,972, +76,2014-01-19 04:42:35.253608,262,323,834, +90,2014-01-17 14:51:57.71179,599,360,842, +9,2014-01-15 10:35:54.172534,681,182,869, +76,2014-01-19 07:16:39.988216,96,516,725, +81,2014-01-21 02:06:15.136422,81,110,520, +76,2014-01-14 07:40:23.754231,977,696,92, +23,2014-01-11 12:58:39.386181,731,106,366, +23,2014-01-13 20:03:55.353941,525,875,926, +90,2014-01-20 02:24:59.081411,539,72,962, +90,2014-01-13 14:36:10.164806,334,984,596, +23,2014-01-14 19:21:07.740961,760,229,216, +90,2014-01-15 19:23:09.266317,400,898,336, +81,2014-01-19 20:48:57.610687,914,894,708, +81,2014-01-20 07:38:04.410016,811,734,387, +76,2014-01-13 23:51:52.929286,795,705,300, +23,2014-01-20 15:41:06.465482,940,470,817, +30,2014-01-17 06:02:34.436496,27,713,124, +9,2014-01-13 07:47:28.94354,934,690,16, +9,2014-01-19 09:32:17.113831,940,113,724, +23,2014-01-18 09:58:03.088065,840,697,708, +80,2014-01-20 11:11:08.989132,12,310,859, +9,2014-01-15 09:41:02.341834,254,948,62, +30,2014-01-15 14:51:38.729886,379,665,389, +76,2014-01-17 07:42:56.831829,838,964,390, +30,2014-01-16 06:39:21.298229,563,127,21, +76,2014-01-18 05:43:12.024019,493,691,188, +76,2014-01-21 04:21:14.036786,610,594,431, +81,2014-01-17 06:20:24.142941,636,214,348, +90,2014-01-13 18:49:12.302249,433,498,305, +9,2014-01-13 10:41:47.476214,516,497,216, +23,2014-01-18 04:47:23.996849,711,432,973, +80,2014-01-11 17:31:47.555857,777,480,325, +90,2014-01-20 05:33:45.188003,861,453,453, +23,2014-01-12 09:23:18.169382,216,731,78, +9,2014-01-20 04:48:27.544073,340,454,202, +30,2014-01-20 01:40:00.324424,168,704,187, +80,2014-01-15 21:03:41.923614,651,276,420, +81,2014-01-20 21:47:06.930673,645,700,805, +90,2014-01-12 15:43:55.678365,816,763,98, +23,2014-01-14 17:28:41.005444,307,942,36, +30,2014-01-13 06:23:17.09548,861,893,293, +80,2014-01-16 15:05:03.419745,775,820,18, +76,2014-01-19 16:51:50.27176,215,594,190, +81,2014-01-11 21:12:14.706167,512,596,421, +76,2014-01-15 16:43:07.82976,886,112,414, +76,2014-01-12 10:43:43.201047,313,704,501, +9,2014-01-11 06:53:21.17165,279,776,430, +81,2014-01-11 16:45:42.266256,618,442,472, +9,2014-01-14 22:31:12.144586,445,840,899, +76,2014-01-19 20:25:38.28548,446,118,361, +23,2014-01-19 06:43:45.354321,375,954,204, +30,2014-01-14 03:42:21.133719,290,666,53, +23,2014-01-14 00:06:40.627315,747,237,329, +80,2014-01-13 15:35:24.084626,464,50,638, +30,2014-01-20 15:25:17.965967,343,651,133, +23,2014-01-19 10:46:01.925544,44,544,106, +90,2014-01-21 01:18:36.108645,695,179,753, +80,2014-01-20 13:46:32.002753,420,119,154, +81,2014-01-15 11:06:26.068904,854,839,707, +76,2014-01-13 14:07:48.410894,269,164,805, +23,2014-01-12 18:28:19.478967,581,607,783, +90,2014-01-12 09:53:50.065753,523,994,912, +9,2014-01-14 11:39:35.96717,639,166,490, +76,2014-01-11 18:02:04.66697,512,725,240, +30,2014-01-13 23:17:08.235135,635,566,776, +76,2014-01-13 10:28:03.511244,828,715,437, +81,2014-01-20 23:42:04.991394,373,12,355, +76,2014-01-19 00:20:50.158749,781,111,203, +81,2014-01-13 02:15:10.441917,879,28,784, +30,2014-01-12 09:26:00.670178,548,908,396, +23,2014-01-12 11:49:31.164194,973,996,333, +90,2014-01-15 12:38:27.537397,406,420,840, +90,2014-01-18 04:31:04.089923,865,147,857, +80,2014-01-10 22:41:21.435954,827,86,468, +23,2014-01-16 13:50:42.243564,274,144,907, +23,2014-01-12 15:14:11.919683,827,636,573, +81,2014-01-12 13:25:04.637001,897,736,553, +90,2014-01-17 00:44:03.415632,610,147,426, +76,2014-01-13 11:59:54.18594,874,504,666, +80,2014-01-16 15:56:16.782006,638,993,717, +81,2014-01-15 15:09:41.701113,392,464,562, +9,2014-01-11 12:43:39.54026,579,861,120, +80,2014-01-19 23:38:37.915725,348,249,887, +80,2014-01-18 19:16:22.328847,962,501,45, +9,2014-01-14 08:19:03.624887,738,826,896, +23,2014-01-19 09:03:55.881692,657,971,482, +30,2014-01-17 00:02:24.254391,616,981,680, +23,2014-01-14 03:37:39.733951,354,406,932, +76,2014-01-18 16:50:27.884864,7,384,698, +90,2014-01-11 05:08:50.323295,851,559,414, +81,2014-01-16 21:45:28.144845,292,559,175, +76,2014-01-20 15:18:47.363831,595,896,621, +76,2014-01-12 19:02:40.389048,216,22,892, +76,2014-01-20 13:25:04.112016,466,506,883, +30,2014-01-11 03:20:52.03122,185,469,284, +80,2014-01-15 22:19:48.624183,871,978,443, +30,2014-01-12 17:53:07.623678,953,594,481, +81,2014-01-10 21:02:57.022614,138,461,945, +23,2014-01-13 16:40:38.783352,689,809,185, +30,2014-01-15 00:08:18.065595,327,460,534, +30,2014-01-12 10:28:57.692791,921,179,483, +90,2014-01-15 08:30:09.947546,50,220,830, +9,2014-01-19 16:46:45.60341,717,8,537, +23,2014-01-19 19:00:01.782714,248,997,123, +30,2014-01-15 11:11:31.383919,216,953,127, +76,2014-01-15 00:37:27.846974,122,626,55, +9,2014-01-11 04:14:13.702397,136,894,271, +23,2014-01-17 04:36:36.020919,656,928,846, +90,2014-01-21 05:21:31.262606,711,916,905, +23,2014-01-13 20:14:07.888336,555,571,761, +80,2014-01-12 14:32:52.802925,311,559,481, +23,2014-01-15 14:31:12.964139,515,547,637, +90,2014-01-14 12:57:47.429017,542,429,451, +23,2014-01-11 08:11:30.719069,231,388,893, +76,2014-01-13 03:47:35.292985,159,127,223, +80,2014-01-18 01:16:51.053904,387,496,56, +30,2014-01-19 21:15:26.600761,683,245,693, +9,2014-01-19 07:49:59.547376,611,585,386, +80,2014-01-10 22:54:30.787855,147,548,249, +30,2014-01-17 08:05:54.485625,573,206,21, +80,2014-01-19 16:58:49.871091,919,947,790, +30,2014-01-17 00:39:58.933119,244,816,677, +81,2014-01-16 17:24:41.849875,945,461,235, +90,2014-01-11 06:01:30.260139,769,416,313, +80,2014-01-16 08:05:03.045134,166,440,319, +80,2014-01-17 00:45:33.881095,529,9,232, +80,2014-01-16 08:21:18.884742,663,334,307, +90,2014-01-18 05:58:10.668812,868,86,333, +9,2014-01-17 01:48:30.903707,525,542,912, +90,2014-01-19 05:01:57.668094,526,936,992, +30,2014-01-12 00:06:28.734826,36,316,473, +23,2014-01-18 16:17:28.596918,989,733,709, +76,2014-01-13 07:32:07.61564,284,480,625, +76,2014-01-20 20:53:14.338236,409,198,833, +23,2014-01-17 05:17:30.379631,840,337,594, +9,2014-01-17 22:43:38.999557,102,285,306, +90,2014-01-14 15:30:42.18521,879,381,693, +9,2014-01-17 13:31:44.082447,888,106,778, +90,2014-01-13 21:20:15.020896,792,726,83, +90,2014-01-14 14:52:13.448235,429,782,989, +80,2014-01-20 13:45:51.970783,411,887,988, +23,2014-01-15 15:53:07.823821,902,69,828, +80,2014-01-19 09:23:26.412374,592,508,335, +23,2014-01-13 20:43:39.3998,712,867,191, +30,2014-01-16 04:04:38.54289,425,540,660, +23,2014-01-11 07:11:01.705359,286,903,965, +23,2014-01-21 02:00:30.454123,833,639,866, +9,2014-01-14 19:20:05.14407,89,753,531, +30,2014-01-19 19:01:01.252735,844,651,522, +9,2014-01-21 04:55:01.241978,882,560,780, +80,2014-01-10 21:25:59.629695,391,870,452, +80,2014-01-18 05:59:51.123826,782,237,426, +23,2014-01-16 23:35:00.175097,602,854,345, +76,2014-01-16 18:50:41.47957,151,257,805, +90,2014-01-18 16:01:21.384384,865,496,591, +90,2014-01-12 01:40:03.22065,669,497,440, +90,2014-01-12 13:36:15.360665,255,385,600, +90,2014-01-13 18:22:40.269126,833,391,686, +30,2014-01-19 11:38:13.889462,287,733,196, +80,2014-01-18 19:24:46.264791,728,257,785, +30,2014-01-11 17:24:37.93722,14,151,775, +81,2014-01-20 15:44:42.624288,65,522,402, +76,2014-01-16 05:42:14.861708,497,138,771, +9,2014-01-14 04:56:45.552858,887,226,842, +23,2014-01-20 06:37:56.962524,241,531,964, +80,2014-01-12 04:59:45.24134,972,307,231, +81,2014-01-10 21:40:24.552835,859,490,845, +90,2014-01-13 16:08:39.148153,471,239,727, +23,2014-01-18 22:31:29.323786,191,21,439, +90,2014-01-13 23:00:39.573731,357,455,83, +9,2014-01-17 11:00:52.596389,732,378,377, +81,2014-01-18 06:17:21.294989,763,28,577, +23,2014-01-18 18:53:47.397552,456,103,203, +81,2014-01-15 14:24:19.008763,399,148,669, +9,2014-01-10 21:01:00.69479,277,753,427, +23,2014-01-13 16:58:25.94086,347,973,915, +80,2014-01-16 01:35:20.714123,234,888,935, +76,2014-01-21 03:01:31.148912,994,160,838, +81,2014-01-17 16:18:31.084931,826,151,627, +23,2014-01-14 14:36:21.966858,474,313,103, +23,2014-01-21 01:56:32.391309,440,628,554, +90,2014-01-17 17:44:30.714626,192,555,922, +80,2014-01-11 14:36:13.091103,437,336,734, +76,2014-01-16 19:31:32.566406,43,556,989, +76,2014-01-13 06:35:12.194616,778,127,231, +90,2014-01-19 10:37:34.475487,991,706,660, +76,2014-01-18 01:11:35.787056,689,162,385, +80,2014-01-15 00:11:27.555279,633,569,750, +30,2014-01-11 23:00:14.744613,124,345,995, +9,2014-01-16 06:49:49.676937,551,869,52, +90,2014-01-12 13:36:13.820071,522,300,953, +9,2014-01-12 20:24:52.681832,633,810,459, +9,2014-01-15 16:34:32.301225,382,291,802, +80,2014-01-17 23:18:28.681779,620,631,455, +80,2014-01-16 05:21:38.234691,276,905,993, +30,2014-01-14 17:12:29.264169,326,576,97, +81,2014-01-19 08:18:13.923537,880,191,270, +23,2014-01-16 07:02:02.787525,718,978,510, +80,2014-01-17 13:21:08.412322,518,292,1, +9,2014-01-17 00:49:43.247324,106,538,358, +23,2014-01-19 10:02:42.361256,638,992,190, +80,2014-01-13 18:22:01.00871,163,861,15, +80,2014-01-14 01:07:04.542313,95,620,847, +30,2014-01-16 22:56:29.759227,357,7,811, +81,2014-01-18 12:46:20.017473,304,611,569, +30,2014-01-14 02:08:05.237521,236,1000,563, +80,2014-01-19 19:54:55.700089,983,978,893, +80,2014-01-13 08:21:40.731596,314,946,327, +9,2014-01-13 23:09:36.386433,33,94,365, +9,2014-01-16 06:13:26.785019,664,718,106, +30,2014-01-17 02:58:02.698453,382,546,381, +9,2014-01-13 19:06:08.777743,767,412,63, +23,2014-01-12 17:57:57.499645,147,406,396, +30,2014-01-17 21:34:15.789556,980,771,70, +9,2014-01-19 18:37:41.344568,557,853,275, +76,2014-01-15 04:33:09.69426,155,682,737, +90,2014-01-16 02:11:50.265044,647,7,103, +80,2014-01-16 13:49:17.131624,740,75,397, +80,2014-01-19 08:44:37.249959,478,598,477, +30,2014-01-17 05:12:05.009656,768,483,166, +81,2014-01-11 14:39:06.808561,686,206,231, +9,2014-01-21 02:20:51.070029,960,913,906, +9,2014-01-19 05:36:57.691489,694,856,137, +81,2014-01-16 11:13:39.110205,42,512,256, +23,2014-01-17 19:39:19.752228,329,132,399, +81,2014-01-14 04:58:35.926598,32,404,800, +80,2014-01-20 08:26:08.374374,572,52,265, +81,2014-01-15 21:57:33.675766,90,109,244, +90,2014-01-19 16:00:38.714123,908,401,954, +80,2014-01-16 15:47:16.786695,980,420,403, +81,2014-01-11 16:47:16.923089,53,570,836, +30,2014-01-17 20:03:21.075799,145,474,93, +80,2014-01-19 14:09:17.795405,27,195,724, +30,2014-01-14 21:54:21.465821,57,804,273, +76,2014-01-13 12:59:50.835026,651,33,932, +90,2014-01-16 20:55:37.812878,104,900,553, +9,2014-01-18 04:02:26.703342,20,741,503, +81,2014-01-12 02:54:46.535114,323,962,456, +9,2014-01-19 09:17:18.544474,100,319,489, +76,2014-01-10 21:12:03.089775,686,168,182, +90,2014-01-17 13:08:13.320133,883,777,885, +30,2014-01-15 06:15:21.242928,387,458,391, +81,2014-01-13 20:18:11.867936,22,135,699, +80,2014-01-19 11:06:10.819778,24,637,285, +80,2014-01-11 21:49:37.032903,517,410,436, +30,2014-01-12 08:55:53.212503,913,167,916, +23,2014-01-13 09:39:20.514458,112,533,329, +81,2014-01-17 04:01:27.297947,921,296,358, +23,2014-01-18 02:45:10.344127,784,310,1000, +80,2014-01-11 12:23:57.764417,45,964,197, +23,2014-01-13 03:13:32.308023,175,460,756, +80,2014-01-18 21:24:17.153107,308,995,492, +81,2014-01-11 08:44:48.834447,44,361,413, +9,2014-01-11 02:50:29.999511,707,719,906, +30,2014-01-14 02:37:56.263312,434,330,135, +23,2014-01-18 08:24:08.586674,63,981,116, +76,2014-01-14 11:49:05.926108,748,586,491, +9,2014-01-13 05:04:04.637686,432,595,93, +80,2014-01-13 00:21:42.26244,627,411,885, +81,2014-01-12 21:49:44.640651,553,694,394, +90,2014-01-19 00:51:21.424381,70,908,886, +76,2014-01-13 21:08:59.185948,225,827,398, +9,2014-01-19 21:53:05.716449,523,670,503, +80,2014-01-17 09:00:39.219786,605,168,425, +30,2014-01-17 23:03:20.651768,133,868,325, +80,2014-01-12 04:52:56.551475,1,425,506, +9,2014-01-12 23:56:17.032666,668,486,276, +9,2014-01-14 21:05:47.355109,368,779,121, +76,2014-01-13 11:47:43.08659,96,387,35, +90,2014-01-11 03:13:35.57714,305,577,419, +9,2014-01-14 22:17:50.444884,973,197,514, +9,2014-01-20 04:55:56.406723,468,309,316, +90,2014-01-15 13:28:56.820067,645,933,225, +76,2014-01-17 22:36:02.312821,660,193,198, +23,2014-01-18 10:02:07.226501,499,465,596, +9,2014-01-16 15:18:33.852971,246,988,16, +30,2014-01-19 11:31:55.525324,419,264,419, +90,2014-01-20 23:41:27.740959,40,393,280, +23,2014-01-12 13:20:01.151337,697,490,956, +30,2014-01-16 08:17:05.86987,508,767,332, +23,2014-01-11 06:05:25.505376,432,232,188, +81,2014-01-14 20:33:33.459359,21,665,544, +90,2014-01-13 23:41:23.022977,237,953,134, +23,2014-01-11 18:50:14.340242,832,999,375, +90,2014-01-15 03:24:03.458871,85,632,287, +23,2014-01-17 06:19:19.286289,430,224,313, +80,2014-01-19 07:14:22.926916,323,578,955, +9,2014-01-18 19:13:09.385399,164,258,610, +81,2014-01-19 15:23:23.923975,255,911,966, +76,2014-01-11 01:36:05.189775,525,808,342, +90,2014-01-20 21:02:54.026049,768,444,764, +76,2014-01-17 10:14:45.348356,35,202,859, +23,2014-01-14 02:45:04.375722,528,386,615, +23,2014-01-19 12:55:59.742499,842,216,724, +30,2014-01-13 13:15:24.568143,151,127,369, +90,2014-01-21 05:48:25.027491,620,647,441, +80,2014-01-20 21:48:56.293974,582,743,494, +23,2014-01-15 17:11:41.600808,737,80,785, +23,2014-01-14 20:54:12.3826,523,172,15, +30,2014-01-13 03:36:39.380564,960,457,927, +90,2014-01-16 00:25:17.177947,785,910,238, +30,2014-01-18 23:12:02.827484,517,967,896, +9,2014-01-12 02:32:35.787286,932,294,506, +81,2014-01-20 17:54:13.998015,149,618,959, +9,2014-01-15 15:48:05.140725,617,598,772, +30,2014-01-19 16:34:43.013787,110,152,910, +30,2014-01-16 03:12:47.851404,862,359,398, +30,2014-01-13 21:20:00.666048,908,351,254, +9,2014-01-19 10:16:10.755165,602,629,55, +76,2014-01-17 20:32:49.002742,481,802,632, +80,2014-01-19 09:37:06.535918,890,738,616, +30,2014-01-19 20:21:36.260541,792,978,453, +23,2014-01-11 11:06:22.462101,309,847,470, +80,2014-01-12 03:18:29.558895,770,334,577, +80,2014-01-20 19:11:50.600782,4,150,434, +23,2014-01-15 18:30:25.920972,623,93,726, +9,2014-01-18 13:37:48.845183,137,214,751, +90,2014-01-18 20:26:13.528118,147,801,954, +9,2014-01-13 07:43:35.306371,909,692,70, +90,2014-01-16 23:01:12.769158,372,916,356, +90,2014-01-19 02:02:18.717893,638,543,934, +23,2014-01-12 22:46:29.33242,678,810,481, +90,2014-01-13 03:15:58.117515,188,543,379, +80,2014-01-11 22:47:23.093615,637,91,648, +81,2014-01-11 05:42:29.074919,429,894,894, +90,2014-01-15 20:31:22.685657,63,622,721, +80,2014-01-11 22:35:48.121105,381,841,424, +30,2014-01-10 21:31:25.368893,451,271,104, +81,2014-01-20 17:43:04.286466,585,880,39, +90,2014-01-15 23:30:00.503705,891,337,547, +80,2014-01-13 05:08:04.749456,556,830,286, +76,2014-01-15 12:08:21.464413,806,984,718, +76,2014-01-13 16:42:03.331191,386,717,739, +81,2014-01-14 11:40:40.536743,185,394,572, +90,2014-01-15 00:02:35.462846,806,65,239, +90,2014-01-18 12:30:08.471915,678,741,839, +80,2014-01-12 22:15:23.550949,373,146,19, +81,2014-01-20 07:15:23.31425,193,705,402, +80,2014-01-11 03:50:09.138382,546,178,719, +23,2014-01-11 02:31:34.306114,390,939,113, +90,2014-01-16 21:48:12.316992,863,672,274, +76,2014-01-19 17:27:15.6743,955,60,209, +80,2014-01-20 02:53:10.566654,97,12,539, +76,2014-01-17 12:54:34.779093,536,360,134, +76,2014-01-21 00:45:45.233615,110,472,8, +9,2014-01-19 16:05:01.167856,133,298,853, +80,2014-01-12 01:25:00.700065,759,912,828, +80,2014-01-18 08:23:34.078798,935,159,820, +76,2014-01-17 06:31:14.695974,184,714,918, +23,2014-01-14 13:08:36.006854,369,96,497, +81,2014-01-14 01:24:46.848376,231,85,771, +81,2014-01-15 02:33:33.413867,887,575,292, +9,2014-01-16 15:55:05.339274,606,336,363, +23,2014-01-16 08:40:44.965891,58,937,301, +76,2014-01-16 05:20:56.507481,792,324,921, +9,2014-01-17 01:37:34.41461,567,540,222, +9,2014-01-10 23:12:07.651968,569,717,440, +90,2014-01-17 07:56:44.628586,353,759,433, +90,2014-01-17 03:08:59.783503,425,898,420, +30,2014-01-20 20:55:11.938433,369,568,383, +76,2014-01-12 01:26:45.132292,575,272,622, +9,2014-01-19 12:17:04.533379,43,957,835, +80,2014-01-15 03:03:33.403265,100,963,17, +80,2014-01-14 22:08:48.463481,823,503,426, +81,2014-01-12 17:57:45.070121,395,838,583, +23,2014-01-19 07:06:08.866111,196,645,179, +80,2014-01-12 04:38:56.935816,166,345,893, +81,2014-01-14 20:13:08.62107,903,732,605, +23,2014-01-18 08:21:32.180361,6,998,380, +80,2014-01-12 12:29:06.074198,770,462,468, +76,2014-01-15 02:44:42.927183,390,568,308, +90,2014-01-14 00:09:44.497353,352,200,291, +23,2014-01-10 23:56:21.748498,585,555,274, +81,2014-01-13 23:37:53.494256,281,259,542, +76,2014-01-20 17:04:19.276445,385,978,709, +23,2014-01-21 04:42:06.982113,631,618,595, +30,2014-01-12 09:42:54.662113,716,185,914, +80,2014-01-11 12:29:19.976509,69,619,846, +23,2014-01-18 07:05:41.06133,653,96,330, +9,2014-01-18 20:14:09.358086,131,849,461, +90,2014-01-15 05:37:55.983364,853,287,402, +80,2014-01-11 02:30:27.909706,723,782,561, +90,2014-01-12 16:47:42.771953,891,76,432, +9,2014-01-21 01:33:01.323056,463,319,853, +30,2014-01-16 15:11:12.875597,854,929,610, +30,2014-01-18 02:08:39.279433,498,607,832, +30,2014-01-16 21:10:35.737667,394,108,470, +30,2014-01-16 18:23:20.527565,710,292,429, +9,2014-01-14 04:05:23.90802,715,548,839, +76,2014-01-12 18:19:35.521171,30,310,936, +30,2014-01-16 09:18:32.466416,377,544,238, +80,2014-01-15 09:32:09.040311,355,356,467, +76,2014-01-11 00:36:40.054549,999,461,535, +30,2014-01-20 16:22:05.869681,219,255,709, +9,2014-01-19 11:40:57.503793,568,742,752, +80,2014-01-12 22:34:25.12509,138,91,55, +9,2014-01-18 17:28:14.735792,366,417,124, +81,2014-01-20 20:19:54.439608,959,9,928, +23,2014-01-16 22:47:33.746158,620,808,551, +23,2014-01-15 19:49:46.916153,395,224,777, +76,2014-01-12 02:49:00.513806,873,215,210, +90,2014-01-21 05:32:16.67376,764,123,586, +23,2014-01-18 23:59:31.413506,74,639,329, +30,2014-01-12 06:45:22.262724,297,310,583, +9,2014-01-13 23:10:10.168018,173,634,613, +9,2014-01-18 11:03:50.689951,82,861,417, +80,2014-01-12 05:27:29.244836,963,470,289, +80,2014-01-15 12:53:04.83013,771,252,891, +90,2014-01-19 03:33:10.66646,978,504,706, +9,2014-01-19 16:33:10.306167,526,471,612, +30,2014-01-13 03:07:14.188217,172,101,405, +80,2014-01-13 03:11:06.650243,113,951,515, +90,2014-01-19 23:03:38.215872,885,668,717, +81,2014-01-14 23:54:56.96017,853,177,810, +76,2014-01-12 22:44:07.973299,808,856,617, +76,2014-01-15 08:14:51.091888,940,137,987, +90,2014-01-11 20:03:36.239603,206,8,886, +90,2014-01-18 23:54:43.710966,898,329,131, +90,2014-01-10 20:38:11.619452,317,43,887, +30,2014-01-15 04:09:00.147623,202,793,610, +23,2014-01-20 22:14:19.232136,491,276,434, +23,2014-01-16 09:56:44.085868,338,991,796, +90,2014-01-19 17:41:09.187934,964,942,131, +30,2014-01-21 02:50:59.287104,933,926,700, +9,2014-01-15 20:18:49.955549,398,167,573, +76,2014-01-17 23:22:06.691728,94,68,633, +23,2014-01-12 19:25:24.412194,160,551,497, +9,2014-01-13 07:47:04.691341,524,571,656, +30,2014-01-17 13:42:01.131755,352,251,394, +22,2014-01-18 22:12:58.158352,31,148,197, +22,2014-01-18 07:36:51.607494,305,540,172, +22,2014-01-18 20:31:01.645561,753,327,762, +22,2014-01-18 21:45:14.832113,936,692,499, +22,2014-01-16 01:36:23.021,689,175,105, +72,2014-01-20 07:16:23.908285,103,897,705, +72,2014-01-11 14:55:25.00013,702,588,713, +59,2014-01-13 06:40:13.710951,424,54,267, +72,2014-01-11 06:43:53.153541,690,143,619, +59,2014-01-16 07:48:29.83026,768,120,573, +22,2014-01-11 04:13:24.37783,722,242,159, +22,2014-01-20 03:17:03.459707,113,435,746, +22,2014-01-18 14:55:44.018477,821,333,301, +59,2014-01-13 11:24:31.028074,967,396,700, +22,2014-01-18 20:20:41.675998,815,289,718, +59,2014-01-12 08:50:40.978648,864,933,200, +22,2014-01-15 14:08:39.001373,767,540,487, +59,2014-01-12 22:35:32.767885,859,808,226, +72,2014-01-13 08:54:17.218251,546,298,708, +72,2014-01-13 08:03:22.712339,592,813,68, +22,2014-01-12 23:13:44.387338,126,928,758, +22,2014-01-17 17:03:17.365874,787,816,991, +59,2014-01-13 00:17:41.944475,812,452,933, +59,2014-01-18 13:10:28.473625,947,144,424, +22,2014-01-16 04:44:26.553809,763,911,371, +22,2014-01-12 21:08:41.231579,32,126,446, +59,2014-01-13 03:29:18.429173,571,292,806, +22,2014-01-12 22:06:33.245956,403,469,995, +72,2014-01-14 20:34:05.643773,215,54,207, +72,2014-01-15 15:16:23.120933,764,705,669, +59,2014-01-19 15:48:34.377711,844,760,70, +72,2014-01-12 12:47:03.802544,77,121,872, +59,2014-01-12 16:53:14.728427,792,79,739, +59,2014-01-17 06:19:36.023273,290,928,320, +72,2014-01-20 14:32:18.634656,882,609,409, +59,2014-01-17 22:29:37.749846,749,816,318, +72,2014-01-16 07:35:59.931978,466,733,322, +59,2014-01-10 23:27:43.635206,717,91,488, +72,2014-01-20 09:09:51.460797,675,829,234, +59,2014-01-16 18:19:53.085519,605,590,790, +72,2014-01-16 11:16:13.465467,173,283,33, +72,2014-01-20 17:23:15.838627,805,748,178, +59,2014-01-15 15:36:56.545226,976,922,119, +22,2014-01-13 20:11:57.484364,63,655,808, +59,2014-01-12 22:47:46.8667,852,255,91, +72,2014-01-13 05:57:38.221224,75,112,994, +22,2014-01-15 09:02:38.46301,796,542,805, +59,2014-01-17 16:56:25.868073,999,134,235, +22,2014-01-15 08:33:10.98911,79,54,171, +59,2014-01-17 21:56:55.681681,525,427,34, +59,2014-01-20 04:59:48.580411,190,745,125, +59,2014-01-17 11:46:55.376867,964,159,390, +59,2014-01-14 09:00:13.047555,394,30,587, +59,2014-01-11 23:17:30.525305,194,423,488, +59,2014-01-14 18:57:23.850492,177,117,695, +72,2014-01-19 17:44:39.601783,742,471,786, +59,2014-01-14 00:26:11.756884,705,852,306, +22,2014-01-17 02:26:42.279665,129,989,445, +72,2014-01-11 09:51:12.84774,445,844,144, +72,2014-01-18 01:00:17.401076,643,449,442, +59,2014-01-11 11:43:05.400598,126,815,100, +59,2014-01-20 05:39:47.225451,436,515,107, +59,2014-01-19 17:47:21.20362,980,318,156, +59,2014-01-13 08:36:20.129444,313,900,345, +22,2014-01-16 05:59:23.248724,367,635,174, +59,2014-01-19 02:19:39.838276,798,21,588, +59,2014-01-20 11:05:57.87929,980,396,901, +59,2014-01-11 07:35:23.180702,778,536,843, +59,2014-01-19 05:47:23.473482,54,245,932, +72,2014-01-19 14:15:49.340086,957,778,161, +22,2014-01-17 05:55:16.266221,584,186,425, +72,2014-01-14 11:03:36.939369,666,885,712, +22,2014-01-19 01:39:05.179132,762,695,909, +72,2014-01-11 15:32:12.811866,2,742,537, +59,2014-01-17 11:15:34.423732,662,473,529, +72,2014-01-21 04:26:52.045832,769,445,291, +72,2014-01-14 01:29:51.033091,747,265,783, +59,2014-01-11 14:18:12.886743,913,162,632, +22,2014-01-17 15:23:17.914325,726,664,461, +72,2014-01-18 14:03:02.02262,170,709,480, +59,2014-01-18 16:15:08.568424,147,548,501, +59,2014-01-16 14:23:06.494736,952,561,788, +72,2014-01-14 19:49:57.399486,648,536,700, +72,2014-01-11 19:15:21.616399,963,694,446, +72,2014-01-17 17:40:37.020041,782,722,896, +22,2014-01-18 18:47:21.249978,936,266,514, +22,2014-01-20 17:00:01.218182,450,156,706, +22,2014-01-20 22:06:48.777344,706,470,977, +72,2014-01-14 15:14:03.529643,695,966,621, +22,2014-01-10 20:51:14.065922,842,833,942, +22,2014-01-17 17:07:06.17842,644,673,713, +22,2014-01-15 06:57:08.93066,469,993,403, +22,2014-01-20 06:31:01.291373,225,995,521, +59,2014-01-16 04:54:27.38204,506,841,575, +59,2014-01-17 19:33:29.060104,797,777,11, +22,2014-01-15 06:30:24.540097,885,567,927, +72,2014-01-14 01:14:07.220316,219,276,624, +59,2014-01-17 00:39:26.939395,56,331,881, +22,2014-01-15 18:05:47.721218,376,995,783, +72,2014-01-12 01:01:30.694218,741,543,87, +72,2014-01-15 08:55:16.279481,588,754,164, +72,2014-01-11 18:01:03.987439,680,312,1000, +72,2014-01-15 16:05:07.633585,472,873,723, +59,2014-01-13 04:34:21.458614,386,305,958, +22,2014-01-12 13:33:16.799305,878,433,322, +22,2014-01-11 21:20:42.057318,605,757,511, +72,2014-01-13 03:01:13.504866,228,589,633, +72,2014-01-15 19:03:07.832815,11,783,791, +22,2014-01-12 15:38:54.94406,448,797,201, +22,2014-01-19 22:24:31.41919,62,673,447, +72,2014-01-13 03:06:09.855433,183,162,544, +22,2014-01-20 11:54:03.512904,951,742,642, +22,2014-01-15 06:47:37.913926,80,861,712, +22,2014-01-17 02:56:07.25492,390,109,10, +22,2014-01-11 01:09:25.129302,207,173,47, +72,2014-01-11 18:28:14.934386,69,683,486, +22,2014-01-14 15:43:28.504899,245,490,821, +59,2014-01-20 22:09:26.347484,383,686,168, +59,2014-01-11 10:35:03.71173,510,236,26, +72,2014-01-18 10:57:32.034542,550,98,208, +72,2014-01-20 23:00:40.413406,933,988,59, +72,2014-01-18 07:42:09.89015,469,739,445, +59,2014-01-12 11:54:40.965202,979,531,915, +72,2014-01-19 23:31:41.704779,97,991,218, +22,2014-01-13 06:36:37.27219,234,143,263, +22,2014-01-19 11:28:10.025306,16,308,160, +72,2014-01-14 00:02:06.244876,941,61,671, +59,2014-01-16 11:50:44.492505,188,610,955, +22,2014-01-15 06:07:36.964701,109,996,971, +59,2014-01-18 22:07:53.966094,588,674,221, +22,2014-01-17 16:52:15.186723,912,335,1000, +59,2014-01-19 19:02:53.244601,386,307,260, +72,2014-01-19 20:08:57.953952,808,274,680, +22,2014-01-12 02:57:22.820308,273,752,277, +72,2014-01-11 17:37:14.703215,26,65,318, +22,2014-01-11 03:42:14.753256,785,137,944, +72,2014-01-13 04:18:04.877627,391,888,722, +59,2014-01-14 00:38:28.208079,922,742,86, +72,2014-01-16 02:45:22.586071,702,50,747, +59,2014-01-14 23:56:59.822106,681,874,780, +72,2014-01-12 17:02:59.62727,844,505,572, +59,2014-01-18 09:51:32.441504,756,576,139, +59,2014-01-14 05:51:03.33501,284,653,823, +72,2014-01-17 03:50:37.541615,726,453,850, +59,2014-01-14 06:47:39.696425,617,76,126, +72,2014-01-14 11:00:28.464313,795,389,255, +22,2014-01-18 02:18:52.476,447,486,632, +72,2014-01-18 02:31:08.201323,858,476,5, +59,2014-01-14 03:09:54.811798,399,550,852, +59,2014-01-18 16:53:56.187731,473,22,782, +72,2014-01-15 07:28:40.236284,46,17,300, +22,2014-01-13 20:10:35.225204,351,108,513, +72,2014-01-15 18:36:06.077881,451,311,831, +72,2014-01-16 23:23:21.201485,232,67,737, +22,2014-01-12 13:42:16.929983,442,836,274, +59,2014-01-18 05:12:43.350071,283,535,747, +59,2014-01-15 04:51:31.227211,367,701,615, +22,2014-01-15 17:44:23.174859,535,376,459, +72,2014-01-13 11:03:27.842576,417,755,178, +22,2014-01-19 14:59:08.191912,626,466,845, +59,2014-01-13 09:52:17.141373,102,388,332, +22,2014-01-20 07:55:43.029718,134,239,215, +22,2014-01-18 04:02:01.436514,545,633,234, +22,2014-01-12 00:01:15.095325,94,639,978, +22,2014-01-11 04:53:05.850027,229,455,933, +59,2014-01-19 01:39:16.140147,359,535,623, +72,2014-01-12 07:43:29.848581,263,825,345, +72,2014-01-13 13:11:10.728073,398,475,653, +72,2014-01-11 20:17:44.348227,531,315,305, +59,2014-01-17 14:28:52.435071,597,633,607, +59,2014-01-17 17:08:10.550179,713,759,69, +22,2014-01-13 17:20:43.975916,239,404,801, +72,2014-01-14 18:20:24.876576,805,512,893, +22,2014-01-21 02:59:13.88519,593,335,556, +22,2014-01-20 01:11:21.51753,138,786,818, +59,2014-01-18 05:08:04.57342,35,802,269, +59,2014-01-14 07:59:42.349502,988,744,674, +72,2014-01-16 21:30:13.99353,539,453,422, +59,2014-01-15 01:39:12.774743,955,712,590, +22,2014-01-17 15:09:37.1613,327,595,69, +59,2014-01-14 08:24:10.181261,860,91,269, +72,2014-01-19 13:07:53.011026,238,442,588, +22,2014-01-20 15:20:12.386504,774,92,523, +22,2014-01-19 07:00:16.259142,374,366,63, +72,2014-01-15 06:31:14.212931,163,712,940, +59,2014-01-11 23:02:29.316487,422,636,610, +72,2014-01-16 06:12:59.609213,402,991,430, +59,2014-01-19 15:22:45.440143,624,62,113, +59,2014-01-16 20:46:52.491347,400,780,927, +72,2014-01-18 21:16:27.451789,670,441,577, +72,2014-01-18 00:21:53.632055,423,402,468, +59,2014-01-19 10:39:09.632719,918,462,314, +59,2014-01-17 23:12:10.481507,180,776,659, +72,2014-01-14 22:23:55.068989,410,777,487, +59,2014-01-20 14:40:24.728044,786,323,655, +59,2014-01-18 08:05:16.331953,210,23,364, +59,2014-01-12 18:03:11.209135,311,325,796, +72,2014-01-11 16:23:54.577044,808,583,926, +22,2014-01-21 01:16:27.060025,36,573,621, +72,2014-01-13 18:20:55.557362,150,628,808, +59,2014-01-18 10:52:47.012116,194,572,269, +22,2014-01-17 12:24:37.610204,264,115,258, +59,2014-01-16 15:41:39.533277,765,446,185, +59,2014-01-11 23:13:11.888691,139,328,901, +72,2014-01-17 09:23:51.495394,878,573,897, +22,2014-01-15 10:53:01.050807,785,242,786, +59,2014-01-19 08:21:16.46211,840,109,963, +22,2014-01-20 21:23:33.844896,761,159,87, +72,2014-01-11 02:23:15.044338,318,152,687, +72,2014-01-13 04:00:29.237272,541,81,475, +22,2014-01-17 06:33:11.006196,290,551,939, +22,2014-01-14 14:47:25.225599,156,975,117, +59,2014-01-11 11:08:22.248298,516,511,846, +59,2014-01-16 15:53:23.3927,875,812,195, +22,2014-01-12 15:47:41.484741,557,202,829, +59,2014-01-15 21:39:36.46123,56,178,806, +59,2014-01-17 18:55:52.709186,790,1000,179, +22,2014-01-18 02:00:41.093953,19,230,877, +59,2014-01-14 07:02:21.901373,539,71,798, +22,2014-01-13 09:42:45.200533,738,773,174, +22,2014-01-15 17:17:08.546161,939,80,470, +59,2014-01-11 01:24:15.533847,110,148,885, +59,2014-01-11 14:21:54.833672,513,463,705, +22,2014-01-12 10:29:19.027668,373,294,783, +72,2014-01-15 03:48:10.602835,470,943,213, +72,2014-01-10 23:02:19.561716,679,255,930, +22,2014-01-19 22:34:35.359621,76,354,791, +72,2014-01-17 01:51:21.811971,342,291,509, +22,2014-01-11 19:26:14.138759,202,194,122, +22,2014-01-19 17:51:02.419646,81,587,197, +59,2014-01-20 00:12:17.369332,22,1,590, +59,2014-01-19 10:19:01.150875,673,290,559, +22,2014-01-16 00:15:40.029851,309,248,2, +22,2014-01-15 09:53:56.903029,330,570,979, +72,2014-01-20 13:32:13.039984,862,967,828, +72,2014-01-12 03:39:31.525245,54,975,816, +72,2014-01-20 00:46:57.953836,490,711,725, +22,2014-01-18 15:53:29.502095,670,756,471, +72,2014-01-11 19:03:05.370141,465,337,592, +59,2014-01-20 07:10:12.998593,933,773,35, +72,2014-01-20 23:53:58.739367,481,426,67, +22,2014-01-18 05:36:16.376336,444,594,767, +22,2014-01-13 15:57:38.224192,605,352,138, +72,2014-01-11 05:02:20.988084,587,130,605, +59,2014-01-13 15:29:39.769036,205,964,956, +59,2014-01-15 11:45:19.709351,386,222,695, +59,2014-01-16 06:41:57.449314,764,253,123, +22,2014-01-20 14:25:32.478223,946,712,762, +59,2014-01-12 07:46:00.803304,597,555,206, +59,2014-01-19 17:44:19.351105,727,491,396, +59,2014-01-12 18:08:17.679175,824,401,203, +72,2014-01-17 05:03:09.349466,350,66,289, +59,2014-01-19 23:08:34.884953,719,13,529, +22,2014-01-13 12:30:12.512847,689,699,17, +59,2014-01-18 19:32:28.377553,46,51,652, +22,2014-01-13 20:56:45.487789,96,943,491, +72,2014-01-13 15:32:32.074562,911,859,30, +59,2014-01-17 12:07:03.737174,90,420,951, +72,2014-01-20 02:48:07.299758,25,862,32, +59,2014-01-14 14:58:46.213741,425,536,582, +59,2014-01-15 23:58:06.15724,74,732,334, +59,2014-01-18 21:00:24.669091,938,173,461, +59,2014-01-12 19:17:47.364616,62,852,499, +72,2014-01-21 04:13:46.18709,588,20,831, +59,2014-01-13 00:54:21.57212,908,434,829, +22,2014-01-12 02:50:00.4046,857,762,123, +72,2014-01-12 01:53:17.712753,338,343,110, +72,2014-01-11 19:41:19.526375,373,713,127, +72,2014-01-19 22:43:29.907114,959,500,433, +22,2014-01-13 00:56:23.082894,943,79,319, +72,2014-01-10 20:51:32.524968,971,241,751, +22,2014-01-19 16:37:28.64648,409,967,828, +72,2014-01-20 10:32:39.459649,274,345,623, +22,2014-01-13 16:49:10.749159,628,150,700, +59,2014-01-20 01:39:49.634565,170,965,759, +22,2014-01-12 20:02:19.228685,109,848,145, +22,2014-01-18 08:34:30.45851,931,650,588, +59,2014-01-15 02:21:47.084297,107,570,930, +22,2014-01-12 04:27:51.707328,803,681,436, +59,2014-01-19 20:20:31.262234,313,688,985, +22,2014-01-13 14:06:06.435403,870,366,642, +59,2014-01-14 02:36:09.386503,30,620,170, +59,2014-01-15 19:23:40.6117,890,840,275, +22,2014-01-12 07:14:41.320355,483,640,798, +22,2014-01-16 19:06:21.89935,727,790,18, +72,2014-01-13 08:56:08.989253,398,35,53, +72,2014-01-15 08:11:26.808144,64,818,419, +22,2014-01-19 14:38:53.973913,492,222,973, +72,2014-01-20 01:03:12.726847,488,599,758, +72,2014-01-14 04:59:34.107902,790,717,840, +72,2014-01-12 23:37:40.187653,797,767,410, +22,2014-01-14 19:01:18.884085,12,65,54, +22,2014-01-11 19:59:58.776993,387,572,390, +72,2014-01-14 22:55:27.552689,782,846,300, +59,2014-01-14 17:15:05.071175,731,282,372, +22,2014-01-14 00:54:20.349532,657,762,884, +59,2014-01-16 05:45:27.957289,60,814,372, +72,2014-01-15 23:08:22.783929,745,437,247, +22,2014-01-15 00:35:39.875907,663,251,909, +22,2014-01-14 22:28:57.864402,149,534,45, +72,2014-01-18 04:04:45.867242,14,216,155, +72,2014-01-15 01:27:12.400876,731,407,660, +72,2014-01-13 09:06:26.511301,737,644,491, +59,2014-01-17 08:37:25.326892,676,420,977, +22,2014-01-17 22:16:23.150035,712,684,123, +22,2014-01-12 04:46:16.145866,531,355,478, +22,2014-01-19 08:39:44.555577,425,699,724, +72,2014-01-15 00:50:53.608966,385,323,361, +59,2014-01-16 11:08:03.230162,150,546,647, +22,2014-01-20 17:07:36.262904,522,844,398, +59,2014-01-13 15:11:24.8712,317,665,705, +22,2014-01-19 05:14:09.665565,176,950,110, +22,2014-01-13 13:43:45.649407,382,80,531, +59,2014-01-18 14:35:05.4829,788,575,487, +72,2014-01-20 16:28:50.985921,316,783,999, +59,2014-01-19 12:50:07.548757,210,252,463, +59,2014-01-21 03:31:14.472573,413,778,497, +72,2014-01-14 18:40:17.794064,357,841,827, +59,2014-01-17 21:29:01.52309,423,753,348, +72,2014-01-19 22:34:27.199419,290,955,57, +59,2014-01-18 03:39:51.901967,719,636,301, +22,2014-01-20 01:06:41.710743,624,669,791, +22,2014-01-13 11:35:46.083505,770,217,922, +59,2014-01-19 03:39:50.679378,219,406,545, +22,2014-01-13 18:02:09.263431,772,414,78, +72,2014-01-17 08:50:51.15468,56,588,682, +72,2014-01-11 22:34:11.02891,545,830,64, +22,2014-01-19 03:47:37.221139,129,21,389, +22,2014-01-12 01:59:13.939028,59,687,286, +72,2014-01-16 03:09:50.904818,910,58,932, +72,2014-01-12 20:16:35.08554,512,800,864, +22,2014-01-19 10:03:59.80627,461,935,25, +22,2014-01-20 08:37:03.305694,23,45,481, +72,2014-01-15 09:23:01.596842,361,942,869, +72,2014-01-15 12:41:25.133161,846,577,63, +22,2014-01-17 00:53:26.455729,170,309,731, +72,2014-01-16 18:09:17.743126,505,199,509, +78,2014-01-13 15:21:09.688738,663,865,342, +69,2014-01-21 05:44:20.064694,617,247,646, +29,2014-01-11 23:17:20.973289,71,958,317, +11,2014-01-13 02:28:45.952061,517,600,873, +29,2014-01-13 14:55:44.935894,479,922,374, +29,2014-01-20 08:31:30.639272,128,288,313, +11,2014-01-15 20:12:31.601469,380,984,270, +12,2014-01-10 23:30:50.419213,221,364,138, +12,2014-01-19 19:00:21.625193,702,654,107, +12,2014-01-14 03:02:39.150646,975,605,202, +29,2014-01-10 21:02:04.891785,970,597,594, +29,2014-01-13 07:40:39.419676,129,220,491, +69,2014-01-21 04:31:40.673734,205,774,765, +69,2014-01-19 23:36:32.091204,683,493,875, +11,2014-01-20 15:20:31.321642,819,233,111, +69,2014-01-19 23:38:22.384477,472,576,695, +78,2014-01-12 05:12:18.174709,276,32,709, +69,2014-01-18 13:00:22.001021,604,813,448, +29,2014-01-12 11:40:31.648327,416,791,807, +12,2014-01-18 18:03:09.32939,354,909,419, +78,2014-01-19 15:34:33.029931,873,591,290, +12,2014-01-20 19:28:08.869466,178,530,180, +78,2014-01-20 00:02:23.268418,588,870,902, +11,2014-01-14 12:44:23.934749,803,239,530, +11,2014-01-12 09:44:43.955005,577,769,735, +11,2014-01-18 04:06:23.074687,51,130,633, +69,2014-01-13 15:21:27.240443,845,568,720, +69,2014-01-16 23:07:45.552266,725,549,537, +78,2014-01-12 10:47:48.207849,422,207,132, +12,2014-01-19 20:14:53.696591,752,248,117, +29,2014-01-12 11:17:03.295392,491,220,328, +11,2014-01-15 06:08:57.897005,58,562,680, +69,2014-01-19 19:59:13.761284,903,270,160, +29,2014-01-13 14:34:24.26868,45,710,31, +12,2014-01-17 12:37:43.849067,435,345,9, +69,2014-01-12 04:54:58.697598,405,858,504, +29,2014-01-12 17:05:54.907952,490,92,185, +69,2014-01-12 02:50:15.450535,299,966,309, +69,2014-01-12 08:25:49.11681,96,633,80, +29,2014-01-11 06:06:16.533565,883,641,837, +11,2014-01-15 09:52:54.601181,798,955,922, +78,2014-01-12 09:27:54.008596,8,994,597, +11,2014-01-13 17:46:55.953241,802,525,7, +29,2014-01-15 08:24:35.274916,836,400,725, +11,2014-01-11 03:04:26.099801,276,887,702, +29,2014-01-13 03:07:27.274882,436,392,971, +78,2014-01-14 02:02:57.659812,924,93,548, +12,2014-01-12 12:16:44.274509,177,531,868, +11,2014-01-20 20:07:49.276322,409,432,61, +78,2014-01-15 17:43:29.30814,688,21,900, +78,2014-01-20 10:19:53.603899,883,836,871, +11,2014-01-19 05:42:22.306253,528,857,972, +29,2014-01-15 07:11:38.177605,474,281,970, +12,2014-01-19 04:22:16.872736,510,744,649, +29,2014-01-12 12:26:46.241422,664,810,447, +29,2014-01-16 20:56:22.13261,114,505,606, +69,2014-01-16 02:28:39.947423,100,194,73, +11,2014-01-15 07:48:13.481865,676,859,554, +29,2014-01-12 14:04:07.684877,849,413,877, +69,2014-01-17 17:16:28.155691,752,378,285, +29,2014-01-13 22:03:07.178455,959,437,275, +29,2014-01-14 05:21:10.980269,5,960,285, +78,2014-01-11 17:25:26.052696,338,248,190, +12,2014-01-12 12:02:20.940159,984,259,631, +78,2014-01-16 23:55:35.249368,272,245,529, +29,2014-01-18 10:03:09.901763,288,958,8, +78,2014-01-13 20:57:19.637757,1,279,200, +11,2014-01-18 21:01:30.15732,460,499,552, +12,2014-01-19 16:53:25.352298,470,677,108, +11,2014-01-15 09:23:08.754568,559,453,510, +11,2014-01-19 07:07:46.690883,966,520,685, +12,2014-01-13 20:46:19.953898,103,818,968, +69,2014-01-16 22:51:02.763164,893,27,529, +29,2014-01-11 18:54:42.644124,22,27,505, +11,2014-01-18 09:10:55.228814,329,822,403, +11,2014-01-17 05:55:28.862964,527,775,681, +78,2014-01-14 02:02:09.919425,147,304,49, +29,2014-01-11 05:13:52.888626,680,169,876, +69,2014-01-18 22:12:13.137474,539,998,136, +12,2014-01-13 16:09:59.195748,245,475,554, +12,2014-01-16 02:57:22.196766,113,314,946, +29,2014-01-18 02:32:06.741373,737,613,452, +29,2014-01-11 15:52:21.502001,336,249,146, +78,2014-01-20 14:09:00.374371,299,631,998, +78,2014-01-16 00:54:23.614109,302,188,309, +11,2014-01-13 08:19:07.743423,726,401,489, +78,2014-01-16 05:05:22.5074,199,496,232, +11,2014-01-10 21:23:03.561952,281,165,831, +12,2014-01-17 20:07:21.225706,266,963,961, +12,2014-01-17 23:09:30.192277,301,292,16, +11,2014-01-17 18:39:31.717643,682,17,117, +69,2014-01-20 22:10:28.404162,769,857,780, +12,2014-01-10 22:30:41.172965,387,557,836, +11,2014-01-18 16:04:57.770339,896,34,111, +29,2014-01-12 04:12:49.344322,744,201,143, +78,2014-01-17 02:26:16.422332,264,866,398, +69,2014-01-15 20:08:07.672102,889,555,436, +69,2014-01-15 05:10:08.982079,37,901,471, +29,2014-01-14 17:27:46.579651,14,923,299, +69,2014-01-14 07:01:33.0244,22,514,905, +78,2014-01-19 18:33:17.736646,935,566,974, +11,2014-01-12 18:35:33.270954,435,415,251, +11,2014-01-17 07:47:52.978298,289,878,184, +12,2014-01-15 11:24:20.499809,337,394,67, +78,2014-01-13 17:30:15.915078,939,226,892, +78,2014-01-14 10:58:48.207531,700,516,109, +29,2014-01-11 11:19:49.362774,34,516,128, +29,2014-01-16 23:32:25.834504,363,673,173, +29,2014-01-14 20:12:41.096156,297,274,319, +78,2014-01-19 13:32:02.500248,697,444,365, +78,2014-01-19 19:42:25.030251,339,811,768, +29,2014-01-20 03:10:03.293342,447,93,433, +29,2014-01-16 10:04:09.24204,992,993,201, +78,2014-01-20 15:34:46.532671,710,141,528, +29,2014-01-19 11:19:03.667712,113,449,395, +11,2014-01-11 04:58:32.856149,258,550,440, +69,2014-01-12 17:53:54.276094,867,603,424, +12,2014-01-14 10:24:26.175113,220,396,872, +29,2014-01-11 06:21:36.418101,501,288,589, +29,2014-01-19 18:01:15.5018,695,138,983, +12,2014-01-11 03:33:56.367808,942,980,298, +29,2014-01-18 05:01:08.135743,18,155,902, +29,2014-01-19 10:11:43.906381,31,908,87, +29,2014-01-11 06:04:37.540773,231,521,383, +78,2014-01-15 15:06:05.906082,708,469,770, +29,2014-01-20 18:24:33.250703,478,416,94, +78,2014-01-17 12:30:53.963105,800,406,1, +12,2014-01-20 15:14:13.578183,881,810,601, +12,2014-01-14 17:34:42.233201,655,410,876, +69,2014-01-10 23:58:40.542756,253,611,869, +78,2014-01-13 16:15:46.603003,969,288,43, +29,2014-01-13 06:07:59.969847,101,140,183, +29,2014-01-12 22:34:13.81371,738,12,595, +69,2014-01-20 04:03:39.581301,107,151,494, +12,2014-01-17 21:32:20.470076,245,699,643, +12,2014-01-15 20:04:29.729208,477,261,908, +12,2014-01-13 09:02:27.788831,844,114,258, +69,2014-01-18 12:52:09.832849,439,134,756, +69,2014-01-11 13:36:55.563711,962,483,848, +69,2014-01-17 09:15:08.885407,423,967,551, +12,2014-01-16 20:24:12.333516,632,141,482, +29,2014-01-20 13:19:20.594382,678,916,162, +29,2014-01-16 06:25:12.178749,30,371,238, +11,2014-01-12 00:28:21.575555,895,862,130, +29,2014-01-19 22:54:07.127053,417,61,117, +12,2014-01-14 11:44:15.84646,296,547,106, +78,2014-01-12 09:26:54.431704,675,925,393, +78,2014-01-11 10:48:01.403147,968,910,668, +12,2014-01-18 02:08:42.021993,365,853,78, +29,2014-01-12 19:48:30.850224,611,365,453, +69,2014-01-20 08:49:16.905366,614,513,980, +29,2014-01-18 09:42:38.389801,202,873,531, +12,2014-01-20 04:49:38.985968,780,508,761, +12,2014-01-18 13:01:00.811747,264,887,336, +78,2014-01-18 19:47:15.930574,358,94,228, +29,2014-01-14 13:55:44.892469,969,647,329, +69,2014-01-18 01:25:34.06245,940,364,961, +78,2014-01-15 02:18:09.893679,423,377,153, +78,2014-01-13 23:09:58.470652,114,657,160, +69,2014-01-11 13:00:16.29565,409,44,524, +12,2014-01-15 06:16:50.436435,57,747,438, +69,2014-01-16 19:25:45.073655,430,260,93, +69,2014-01-13 23:08:16.265917,880,493,911, +11,2014-01-17 08:51:04.250566,298,166,408, +12,2014-01-15 17:29:24.655375,427,878,820, +12,2014-01-21 00:40:36.735992,68,331,745, +11,2014-01-11 22:55:33.979774,765,827,38, +78,2014-01-18 06:31:52.444206,882,775,835, +29,2014-01-18 07:32:46.568841,148,319,242, +12,2014-01-12 16:32:29.543485,468,463,155, +12,2014-01-14 09:47:01.329615,299,70,312, +69,2014-01-13 21:56:58.902357,991,618,608, +78,2014-01-11 23:51:50.137868,420,719,135, +69,2014-01-19 20:12:13.508363,863,86,288, +12,2014-01-15 02:25:20.477913,412,862,247, +12,2014-01-21 02:45:57.264921,959,382,58, +12,2014-01-13 01:56:29.355243,686,218,288, +69,2014-01-16 15:52:14.910036,320,320,265, +78,2014-01-11 07:33:58.668486,875,782,257, +29,2014-01-20 08:05:11.377235,633,213,69, +29,2014-01-18 15:40:45.76026,804,799,801, +78,2014-01-20 20:23:15.573852,62,74,510, +78,2014-01-17 11:47:49.767036,956,140,664, +69,2014-01-17 14:30:24.746228,86,658,671, +78,2014-01-18 03:24:16.385599,367,76,45, +29,2014-01-15 01:35:05.697611,749,746,571, +78,2014-01-10 22:26:09.638697,586,129,371, +78,2014-01-14 22:49:50.448049,349,277,171, +12,2014-01-19 07:53:15.591291,623,202,711, +11,2014-01-14 01:36:08.109769,57,419,737, +69,2014-01-15 15:50:06.744119,210,837,700, +12,2014-01-13 08:10:06.027726,977,574,579, +78,2014-01-20 01:01:53.183424,719,287,112, +29,2014-01-18 18:58:23.010034,632,567,456, +29,2014-01-19 21:01:10.278292,413,972,247, +78,2014-01-14 12:31:17.838799,794,345,703, +11,2014-01-18 13:38:59.746026,617,268,947, +12,2014-01-20 23:56:44.258066,126,141,311, +12,2014-01-11 13:03:10.283424,370,247,908, +11,2014-01-15 15:11:46.314868,53,149,462, +78,2014-01-12 10:29:13.801971,97,812,725, +69,2014-01-15 02:50:11.613039,399,958,316, +11,2014-01-18 17:08:45.217644,126,558,649, +11,2014-01-13 14:21:03.939839,818,876,491, +69,2014-01-13 17:02:25.121821,82,144,325, +11,2014-01-12 13:34:05.695556,261,911,615, +12,2014-01-13 11:07:01.205179,394,401,938, +11,2014-01-15 22:58:54.477064,482,376,340, +78,2014-01-18 09:26:20.605593,735,644,716, +29,2014-01-13 22:40:59.873666,264,762,120, +12,2014-01-15 01:04:05.854299,158,674,696, +11,2014-01-15 19:07:06.365853,692,535,365, +12,2014-01-13 13:04:15.447518,43,59,188, +11,2014-01-11 06:51:55.621335,719,66,0, +69,2014-01-12 03:37:31.1125,269,696,703, +11,2014-01-20 20:28:31.833118,261,868,652, +78,2014-01-15 12:27:01.318947,48,599,432, +11,2014-01-12 06:03:40.751197,807,293,352, +29,2014-01-14 13:18:22.281167,805,240,427, +69,2014-01-13 14:20:16.910237,627,194,891, +78,2014-01-15 11:39:48.860965,612,507,656, +29,2014-01-19 09:08:29.025285,446,775,421, +29,2014-01-16 02:30:22.937964,689,525,744, +11,2014-01-14 06:41:42.044807,703,568,48, +29,2014-01-16 22:06:52.03532,993,322,103, +78,2014-01-14 17:31:33.216674,91,245,867, +12,2014-01-17 23:12:59.883606,361,262,22, +69,2014-01-14 05:45:51.781346,575,293,514, +11,2014-01-14 11:28:17.47474,92,220,473, +11,2014-01-18 16:16:10.16703,415,333,46, +29,2014-01-19 00:57:38.096632,420,338,629, +29,2014-01-16 01:57:31.27671,350,870,246, +12,2014-01-12 13:06:21.780489,991,556,344, +11,2014-01-16 12:06:23.314276,999,178,905, +11,2014-01-18 20:18:35.216968,816,780,141, +12,2014-01-15 10:08:46.902308,351,694,929, +78,2014-01-18 05:40:29.009831,399,392,884, +69,2014-01-11 01:25:36.422147,115,708,370, +78,2014-01-20 13:07:41.379372,259,230,289, +78,2014-01-15 09:06:49.615843,507,774,423, +78,2014-01-14 04:06:36.295812,582,9,187, +11,2014-01-14 08:11:47.233672,974,361,9, +12,2014-01-20 08:13:55.981696,664,948,212, +78,2014-01-16 21:10:51.74333,77,303,951, +29,2014-01-14 19:03:42.855007,595,695,174, +78,2014-01-11 05:51:27.094196,846,768,803, +78,2014-01-16 11:39:23.576448,481,869,127, +69,2014-01-19 11:30:44.173954,708,613,137, +12,2014-01-12 15:55:07.845811,352,475,685, +78,2014-01-20 04:57:45.857615,726,240,215, +78,2014-01-11 19:51:01.084191,420,834,717, +69,2014-01-17 07:34:56.706776,724,838,848, +78,2014-01-18 08:06:14.883319,687,85,725, +12,2014-01-17 02:21:24.022154,649,188,210, +69,2014-01-20 18:16:38.751583,579,699,658, +29,2014-01-14 00:13:06.918638,318,298,242, +12,2014-01-20 23:52:57.238828,377,720,329, +69,2014-01-17 11:29:38.635608,765,244,161, +29,2014-01-17 09:58:58.700403,423,756,800, +12,2014-01-14 05:21:14.713987,131,349,638, +12,2014-01-14 21:45:48.802639,989,381,350, +11,2014-01-15 04:56:36.797035,643,950,254, +69,2014-01-19 11:18:45.990697,529,120,722, +69,2014-01-16 14:52:10.583127,102,269,451, +12,2014-01-20 21:03:00.111311,521,272,145, +12,2014-01-17 01:37:21.207666,143,420,684, +11,2014-01-21 05:00:57.485435,891,739,868, +29,2014-01-17 20:43:29.121143,681,86,122, +78,2014-01-17 07:02:57.629811,368,902,395, +78,2014-01-20 12:08:38.864808,486,663,330, +78,2014-01-11 23:50:18.736985,916,14,237, +78,2014-01-20 15:09:33.925624,823,367,852, +11,2014-01-13 14:20:26.098479,876,218,842, +11,2014-01-11 02:04:14.7191,208,133,220, +69,2014-01-16 06:20:25.668954,965,544,69, +11,2014-01-17 13:24:08.953486,668,827,949, +12,2014-01-11 11:55:41.813296,524,899,609, +69,2014-01-11 11:59:49.245401,469,539,21, +69,2014-01-15 18:54:53.127441,203,682,737, +29,2014-01-13 07:50:49.659107,855,728,666, +78,2014-01-20 20:57:35.103434,391,29,166, +69,2014-01-16 18:45:54.211632,730,501,943, +78,2014-01-19 19:25:46.366302,927,583,850, +69,2014-01-17 23:03:49.986753,86,227,837, +12,2014-01-12 15:07:18.234205,975,351,716, +29,2014-01-19 07:42:25.117885,351,223,39, +29,2014-01-21 03:16:56.905391,329,692,71, +69,2014-01-12 09:00:15.473033,168,133,600, +12,2014-01-15 13:12:03.753494,320,444,274, +29,2014-01-17 07:15:55.605794,950,786,591, +12,2014-01-15 18:21:30.187021,984,443,665, +69,2014-01-19 14:57:52.556552,765,923,547, +11,2014-01-11 06:12:32.402829,362,890,411, +11,2014-01-13 23:40:16.178137,725,813,731, +12,2014-01-14 23:50:03.139679,977,380,256, +11,2014-01-10 21:15:32.51414,225,325,640, +69,2014-01-20 05:17:37.385802,644,210,935, +78,2014-01-14 22:51:00.625533,64,522,266, +12,2014-01-17 21:59:01.635702,338,795,777, +12,2014-01-16 06:20:35.016033,387,326,996, +78,2014-01-14 04:59:39.490342,448,405,726, +12,2014-01-19 01:49:20.372688,11,981,896, +11,2014-01-15 15:30:08.941656,754,177,231, +69,2014-01-16 23:20:05.58924,736,156,563, +12,2014-01-19 07:53:35.091789,981,877,530, +12,2014-01-21 01:50:34.611029,60,843,384, +29,2014-01-13 06:44:14.542726,332,207,885, +29,2014-01-19 23:49:16.905503,830,79,912, +11,2014-01-11 07:50:23.856431,441,992,762, +29,2014-01-18 05:39:07.670586,230,385,961, +12,2014-01-12 01:40:06.56461,784,997,946, +78,2014-01-10 22:47:58.959866,91,331,905, +69,2014-01-13 18:25:01.882218,646,228,912, +69,2014-01-21 01:05:52.930913,437,61,456, +29,2014-01-18 01:51:48.946619,428,315,992, +12,2014-01-15 13:32:20.116423,366,273,208, +78,2014-01-19 02:48:18.049218,151,588,692, +69,2014-01-17 23:08:45.852428,978,467,261, +11,2014-01-17 02:32:35.589876,477,3,39, +69,2014-01-13 10:00:21.802711,790,434,274, +69,2014-01-14 00:24:41.458222,69,7,539, +12,2014-01-11 14:54:05.776896,56,882,358, +11,2014-01-11 18:58:14.359264,121,432,618, +11,2014-01-14 10:37:13.86147,717,389,853, +11,2014-01-14 18:34:21.955033,314,831,634, +78,2014-01-15 22:48:17.499361,979,339,533, +69,2014-01-14 11:52:46.37561,455,716,210, +11,2014-01-13 17:51:59.341254,331,817,782, +69,2014-01-20 01:39:18.124895,74,632,107, +12,2014-01-11 03:51:48.011312,641,159,703, +69,2014-01-19 04:12:34.357288,591,235,970, +12,2014-01-13 00:38:57.615235,513,744,210, +29,2014-01-19 09:41:08.384419,747,682,687, +12,2014-01-13 13:42:43.298945,847,272,304, +69,2014-01-19 03:59:03.204476,385,284,73, +12,2014-01-17 11:34:43.476206,124,882,874, +29,2014-01-13 09:33:17.909974,763,914,899, +11,2014-01-11 04:43:17.747621,709,910,590, +69,2014-01-16 05:24:00.381709,220,778,616, +12,2014-01-13 21:23:41.766824,57,217,492, +12,2014-01-18 14:22:25.418207,802,277,529, +11,2014-01-17 11:04:06.94674,733,65,846, +78,2014-01-14 00:11:40.72669,750,325,169, +29,2014-01-11 02:47:27.300425,668,143,391, +29,2014-01-17 06:09:59.877652,545,710,574, +12,2014-01-10 20:03:29.673727,960,216,934, +29,2014-01-15 20:19:47.417267,231,726,698, +29,2014-01-15 02:58:17.92687,674,273,704, +29,2014-01-17 23:12:15.526155,17,82,687, +12,2014-01-11 16:52:23.007143,971,154,454, +12,2014-01-17 16:58:39.73,775,356,313, +12,2014-01-21 03:36:56.984377,464,627,438, +69,2014-01-12 11:46:28.784039,913,106,966, +12,2014-01-18 15:56:54.089264,566,792,325, +78,2014-01-14 08:14:10.845848,238,272,238, +78,2014-01-16 10:20:50.739491,231,65,519, +78,2014-01-13 08:45:11.588625,643,38,450, +11,2014-01-18 00:06:57.221877,188,482,66, +11,2014-01-19 08:12:50.080746,704,303,825, +78,2014-01-12 04:24:29.71352,92,785,632, +11,2014-01-18 07:58:45.233189,733,377,670, +78,2014-01-17 06:25:24.438033,745,15,929, +69,2014-01-14 09:03:27.329175,67,746,794, +29,2014-01-16 11:39:53.617607,406,577,727, +12,2014-01-20 00:08:07.736978,518,263,463, +69,2014-01-12 07:02:30.53365,785,275,782, +78,2014-01-12 17:14:37.094233,266,657,650, +78,2014-01-12 03:41:25.647371,69,318,102, +69,2014-01-12 15:45:48.281271,846,695,432, +69,2014-01-18 02:38:37.475944,327,791,897, +69,2014-01-15 05:05:07.414195,442,909,334, +12,2014-01-20 10:08:13.699478,902,86,950, +11,2014-01-14 07:42:44.422682,310,704,749, +29,2014-01-18 09:16:48.140884,758,836,536, +11,2014-01-20 16:55:41.000322,878,188,203, +29,2014-01-20 17:52:44.300754,325,366,45, +78,2014-01-18 09:20:17.81461,22,682,36, +11,2014-01-15 07:15:28.417589,579,984,284, +11,2014-01-14 14:51:02.227624,825,428,122, +69,2014-01-15 02:32:33.340767,638,784,98, +12,2014-01-16 04:07:51.424731,822,78,214, +29,2014-01-11 01:49:41.957624,884,535,457, +78,2014-01-15 00:09:30.325563,816,901,199, +12,2014-01-17 19:54:20.20877,894,495,195, +78,2014-01-18 21:46:36.047306,88,162,592, +29,2014-01-18 12:23:41.17141,984,993,161, +11,2014-01-13 00:15:10.94826,929,910,750, +29,2014-01-11 00:31:47.635931,294,40,705, +11,2014-01-15 06:30:38.393287,64,217,670, +12,2014-01-11 02:28:01.029006,654,18,955, +78,2014-01-12 08:56:17.34987,65,634,681, +78,2014-01-12 08:29:23.626896,44,10,227, +69,2014-01-17 12:53:25.46704,55,613,665, +12,2014-01-15 21:59:44.679045,55,70,711, +29,2014-01-18 00:09:17.244503,162,827,726, +78,2014-01-16 07:01:33.204436,581,243,981, +29,2014-01-17 09:02:15.212695,909,872,474, +78,2014-01-19 21:23:54.338736,410,141,175, +12,2014-01-17 14:42:58.851807,960,250,429, +29,2014-01-19 04:48:03.494384,605,22,559, +11,2014-01-16 18:02:31.815099,136,81,371, +78,2014-01-11 13:48:06.266002,258,121,751, +69,2014-01-18 08:56:17.193863,896,914,162, +12,2014-01-20 05:45:16.237781,60,165,45, +12,2014-01-19 03:04:54.406885,544,571,209, +29,2014-01-17 19:51:58.194184,685,814,353, +29,2014-01-19 17:38:00.538535,215,520,604, +69,2014-01-16 06:25:12.221916,863,970,401, +78,2014-01-11 21:07:26.611773,359,714,439, +11,2014-01-13 02:29:02.766578,640,777,548, +69,2014-01-20 12:57:45.562682,736,483,325, +29,2014-01-17 05:15:18.036504,898,416,677, +12,2014-01-13 08:18:44.724202,413,107,572, +11,2014-01-14 07:07:15.888245,362,878,205, +69,2014-01-13 19:09:38.245694,763,378,794, +69,2014-01-11 00:05:20.771508,365,468,61, +69,2014-01-11 13:30:57.060074,136,344,603, +12,2014-01-15 23:24:49.193954,28,954,201, +12,2014-01-11 04:37:08.407858,407,878,997, +12,2014-01-16 00:01:35.453361,229,629,767, +12,2014-01-16 05:52:50.22338,267,92,569, +12,2014-01-12 17:33:25.757728,127,458,284, +69,2014-01-17 12:30:59.080257,72,978,689, +12,2014-01-12 12:46:15.69042,204,169,569, +29,2014-01-17 19:33:10.436773,878,678,639, +78,2014-01-14 06:40:16.325179,929,598,222, +29,2014-01-17 23:47:48.894856,518,788,746, +11,2014-01-13 22:35:25.649468,850,988,326, +11,2014-01-12 22:04:10.663916,546,86,396, +11,2014-01-14 08:30:47.746664,739,329,973, +78,2014-01-11 21:23:29.143852,550,54,274, +12,2014-01-18 20:06:42.479015,712,645,484, +69,2014-01-15 02:18:54.012665,365,374,945, +78,2014-01-19 10:19:46.338133,607,709,265, +12,2014-01-17 19:51:58.717216,355,726,357, +12,2014-01-12 23:23:48.41997,805,258,987, +11,2014-01-16 00:11:44.532318,957,266,990, +11,2014-01-16 07:29:59.255751,340,489,390, +69,2014-01-18 09:49:00.641885,652,995,586, +11,2014-01-17 01:19:11.14451,379,764,711, +12,2014-01-18 13:59:02.022329,230,624,790, +11,2014-01-17 16:46:46.204567,717,217,321, +11,2014-01-13 00:34:29.181015,116,58,592, +29,2014-01-21 02:17:46.74695,577,663,462, +78,2014-01-21 03:54:02.093231,722,642,92, +11,2014-01-15 23:44:07.426708,443,813,767, +78,2014-01-10 20:23:07.518458,363,372,322, +11,2014-01-11 11:24:59.153305,373,47,902, +12,2014-01-21 03:08:56.621082,671,165,568, +78,2014-01-11 05:00:15.926317,155,198,688, +78,2014-01-16 15:26:34.606667,880,413,21, +12,2014-01-16 03:01:46.844461,712,589,448, +11,2014-01-13 02:33:41.684046,29,843,104, +69,2014-01-12 21:57:33.687343,537,810,157, +69,2014-01-17 19:48:02.534881,822,243,854, +11,2014-01-20 02:06:52.120819,951,88,679, +12,2014-01-16 08:37:50.012522,336,401,473, +29,2014-01-14 13:35:51.430156,424,328,68, +78,2014-01-12 18:42:17.770705,603,421,348, +29,2014-01-18 10:42:00.676437,550,466,908, +78,2014-01-18 02:06:39.17682,413,112,24, +29,2014-01-13 20:05:46.914557,310,551,762, +29,2014-01-16 00:48:43.155871,894,282,891, +11,2014-01-11 22:25:33.189903,598,254,806, +11,2014-01-12 00:25:33.252691,184,778,199, +69,2014-01-12 14:40:41.873085,155,674,803, +69,2014-01-14 01:49:21.609873,932,222,678, +29,2014-01-17 04:37:17.785428,400,698,187, +12,2014-01-18 02:10:41.128836,321,790,411, +11,2014-01-11 05:38:22.251758,507,251,832, +69,2014-01-12 23:56:28.929939,816,796,224, +78,2014-01-15 10:09:43.151584,539,279,738, +69,2014-01-18 02:25:08.456326,274,550,515, +29,2014-01-15 04:30:58.110953,645,368,855, +11,2014-01-15 06:27:29.898534,986,508,803, +69,2014-01-18 00:19:10.549556,645,342,542, +78,2014-01-20 08:15:05.538081,863,768,380, +12,2014-01-15 06:50:37.416993,858,968,94, +11,2014-01-18 15:44:09.702861,424,99,697, +78,2014-01-20 05:24:02.159163,880,259,444, +78,2014-01-15 15:50:53.343728,753,131,826, +78,2014-01-14 01:10:44.309947,812,810,230, +11,2014-01-15 02:25:49.003625,638,742,884, +11,2014-01-17 22:24:35.027774,812,817,214, +69,2014-01-16 03:08:17.997289,48,461,298, +69,2014-01-11 16:13:51.538506,309,181,384, +12,2014-01-16 18:31:27.149011,233,738,430, +11,2014-01-11 05:46:08.00981,582,190,26, +29,2014-01-15 09:49:42.968662,809,146,929, +11,2014-01-18 17:13:44.919716,636,565,290, +11,2014-01-18 20:28:08.686247,448,731,437, +12,2014-01-12 05:56:22.145901,765,837,142, +78,2014-01-11 07:19:31.834273,992,587,109, +29,2014-01-13 15:16:51.842118,167,622,50, +29,2014-01-13 08:21:55.335804,369,841,722, +69,2014-01-12 11:45:05.087382,970,337,851, +12,2014-01-15 09:57:33.715204,964,181,727, +12,2014-01-16 14:11:16.945678,772,500,180, +78,2014-01-18 20:22:22.87281,545,550,611, +11,2014-01-12 06:08:14.844459,430,102,743, +11,2014-01-16 23:49:39.197436,212,562,620, +78,2014-01-21 00:18:51.802749,188,999,17, +12,2014-01-16 20:17:57.996044,81,919,871, +69,2014-01-13 20:14:47.653761,703,860,486, +29,2014-01-14 22:49:49.913703,17,346,778, +29,2014-01-10 20:45:27.894578,888,937,234, +78,2014-01-21 00:33:58.203737,85,224,314, +12,2014-01-14 01:04:55.451783,523,153,596, +78,2014-01-15 07:36:05.311571,269,271,146, +29,2014-01-18 10:18:07.906598,14,554,761, +69,2014-01-13 00:28:57.610947,135,910,56, +78,2014-01-20 03:26:58.655299,417,136,59, +78,2014-01-11 05:28:52.216545,163,471,224, +29,2014-01-17 06:54:46.614571,106,71,70, +78,2014-01-16 19:51:33.683492,562,596,375, +12,2014-01-16 12:37:10.213833,125,761,965, +12,2014-01-18 03:08:38.153496,664,833,638, +78,2014-01-12 08:23:00.832502,35,294,582, +11,2014-01-16 22:23:18.223644,331,474,101, +69,2014-01-12 06:58:21.122158,443,868,685, +12,2014-01-20 05:36:45.752218,52,747,921, +78,2014-01-14 12:51:26.91031,739,840,950, +12,2014-01-13 16:54:43.268059,403,851,714, +29,2014-01-20 16:56:17.586491,399,178,67, +12,2014-01-17 08:08:18.752428,901,822,147, +12,2014-01-16 05:16:38.603864,25,657,142, +29,2014-01-11 22:41:22.673874,612,896,320, +11,2014-01-11 12:05:52.468051,967,404,339, +69,2014-01-11 13:27:55.549542,256,421,617, +11,2014-01-19 23:03:45.546684,974,940,193, +78,2014-01-12 22:14:07.31251,145,100,305, +78,2014-01-17 17:17:34.746978,221,20,914, +69,2014-01-19 17:22:37.349433,901,897,467, +12,2014-01-18 22:32:05.308554,917,381,299, +69,2014-01-20 17:32:22.401158,729,208,779, +69,2014-01-13 10:12:27.263555,472,328,728, +11,2014-01-18 23:17:33.203132,56,485,465, +78,2014-01-20 12:06:20.604896,48,716,957, +12,2014-01-16 15:17:22.71534,556,796,433, +12,2014-01-13 00:53:38.514702,112,688,424, +78,2014-01-17 16:24:28.511494,180,646,81, +69,2014-01-18 19:46:20.326705,236,593,357, +69,2014-01-11 22:20:37.17042,136,799,595, +12,2014-01-18 01:53:20.728458,448,18,366, +69,2014-01-14 20:41:06.941276,708,63,137, +44,2014-01-17 22:12:10.853911,333,346,540, +67,2014-01-13 08:30:30.942292,949,492,521, +18,2014-01-11 17:49:45.094772,333,602,447, +75,2014-01-19 10:35:11.686414,640,684,927, +67,2014-01-19 10:53:49.166354,642,19,827, +18,2014-01-13 04:48:06.21735,48,669,466, +67,2014-01-18 10:11:57.438632,291,278,698, +18,2014-01-12 17:45:16.076665,356,970,226, +18,2014-01-16 01:42:49.485409,964,594,54, +67,2014-01-17 21:08:15.025123,619,192,105, +44,2014-01-19 05:53:34.829093,4,758,205, +68,2014-01-11 00:59:28.089693,344,944,796, +68,2014-01-18 23:49:37.699416,54,544,355, +75,2014-01-19 21:59:27.297143,487,114,867, +68,2014-01-11 18:27:23.639234,270,151,507, +68,2014-01-17 16:53:23.2461,414,484,661, +75,2014-01-11 14:13:34.609653,39,551,678, +44,2014-01-18 15:44:58.386631,942,204,314, +68,2014-01-16 04:16:00.595953,454,791,436, +67,2014-01-19 16:45:39.918207,300,599,515, +18,2014-01-18 03:17:20.78779,763,338,245, +75,2014-01-18 18:28:27.859508,458,985,586, +75,2014-01-17 10:03:13.121339,979,374,854, +67,2014-01-17 09:23:41.392685,939,291,526, +18,2014-01-14 03:45:50.574848,660,408,997, +75,2014-01-19 14:56:51.63646,616,439,924, +67,2014-01-13 19:48:09.90418,967,404,697, +75,2014-01-11 17:32:10.901553,5,13,16, +67,2014-01-20 17:17:28.806881,678,161,649, +67,2014-01-21 01:41:30.632639,367,290,609, +68,2014-01-15 18:13:17.843248,129,317,328, +67,2014-01-17 09:29:39.660793,413,382,860, +18,2014-01-13 04:12:01.575349,901,778,116, +68,2014-01-16 16:03:02.938021,973,445,705, +44,2014-01-15 14:04:51.347206,236,93,254, +68,2014-01-11 09:05:50.741704,983,466,34, +67,2014-01-19 00:51:09.155371,39,401,943, +67,2014-01-12 18:16:48.785838,507,588,88, +75,2014-01-13 06:51:06.818369,912,171,834, +44,2014-01-13 20:33:58.641199,752,219,174, +18,2014-01-19 19:25:03.81096,841,912,810, +44,2014-01-11 06:44:41.64746,503,769,937, +68,2014-01-14 01:33:26.730891,643,474,787, +44,2014-01-17 13:14:41.510376,796,395,920, +75,2014-01-20 08:44:08.945023,96,905,805, +68,2014-01-15 00:00:50.370125,75,942,479, +18,2014-01-14 00:08:04.756896,263,67,893, +68,2014-01-21 02:57:43.554676,649,229,774, +75,2014-01-12 09:45:48.756756,30,753,370, +68,2014-01-19 08:24:05.352849,28,948,271, +68,2014-01-19 13:43:23.473302,666,217,903, +75,2014-01-19 17:03:09.544546,128,407,16, +67,2014-01-16 20:52:33.212357,527,832,650, +67,2014-01-15 17:46:36.594642,174,787,561, +75,2014-01-15 20:26:50.937232,614,990,859, +67,2014-01-20 04:38:23.787206,697,732,303, +75,2014-01-14 02:43:28.231102,976,386,220, +18,2014-01-18 20:15:00.841831,954,334,169, +68,2014-01-21 02:10:34.689178,410,600,717, +75,2014-01-13 14:00:57.037982,235,121,736, +18,2014-01-18 15:56:31.47447,978,656,594, +44,2014-01-15 14:23:52.532426,8,204,735, +44,2014-01-20 03:30:36.698775,888,348,55, +67,2014-01-21 00:08:33.049819,879,812,560, +75,2014-01-11 00:26:55.470447,411,638,907, +75,2014-01-14 11:35:28.045981,122,919,544, +18,2014-01-11 03:14:23.791523,362,170,972, +75,2014-01-19 05:18:04.626236,847,383,300, +68,2014-01-16 09:52:16.831819,67,909,528, +67,2014-01-13 14:05:30.609892,471,795,326, +75,2014-01-11 19:52:03.267435,603,93,341, +18,2014-01-14 23:17:20.643199,272,470,159, +44,2014-01-14 00:50:12.257771,635,883,148, +44,2014-01-15 01:25:29.998326,226,187,169, +75,2014-01-11 06:32:02.153575,60,365,567, +67,2014-01-13 03:34:21.202795,849,820,289, +44,2014-01-19 05:26:20.368451,94,805,672, +44,2014-01-14 10:40:06.910471,23,812,301, +44,2014-01-13 00:32:04.757471,351,12,358, +18,2014-01-20 19:12:09.125627,275,502,767, +44,2014-01-12 13:04:12.26332,859,191,619, +18,2014-01-11 08:15:28.230773,367,160,297, +75,2014-01-19 06:15:18.670173,717,134,98, +75,2014-01-18 13:56:45.475678,338,847,551, +18,2014-01-16 06:02:04.825833,530,404,146, +68,2014-01-13 20:42:09.607824,857,949,287, +68,2014-01-17 12:35:09.263303,868,709,791, +44,2014-01-19 12:45:33.056935,931,400,117, +18,2014-01-11 10:57:10.449655,123,553,183, +75,2014-01-17 08:45:43.95248,311,737,639, +44,2014-01-11 20:46:30.095337,852,609,524, +68,2014-01-19 06:53:41.924125,146,737,62, +75,2014-01-11 17:09:36.484907,431,107,14, +68,2014-01-21 04:17:06.794112,548,991,368, +44,2014-01-19 01:02:14.974364,519,523,923, +75,2014-01-11 21:36:31.955354,964,507,125, +68,2014-01-14 09:52:34.840512,961,99,646, +68,2014-01-19 08:16:38.765886,436,367,850, +67,2014-01-20 06:54:36.581591,36,547,918, +68,2014-01-19 23:44:51.672331,645,727,439, +44,2014-01-11 16:22:09.376197,832,367,654, +67,2014-01-10 20:46:39.849026,570,55,146, +44,2014-01-13 17:02:12.31553,634,128,605, +67,2014-01-14 21:12:21.633968,496,893,954, +75,2014-01-15 02:12:09.847352,193,123,549, +75,2014-01-14 03:34:14.469524,567,581,541, +44,2014-01-17 04:46:42.836762,801,600,447, +67,2014-01-13 01:38:30.216223,726,903,550, +75,2014-01-17 18:14:21.379996,754,492,802, +68,2014-01-19 09:18:47.594232,343,277,29, +18,2014-01-12 14:50:39.341849,117,325,109, +18,2014-01-19 11:18:33.643735,953,571,630, +44,2014-01-19 21:34:15.825425,897,170,679, +75,2014-01-21 01:05:58.012023,788,79,38, +67,2014-01-16 19:15:19.119413,850,817,214, +18,2014-01-14 21:36:20.651258,642,478,311, +67,2014-01-13 15:48:07.619847,82,826,842, +44,2014-01-13 01:50:28.382716,464,623,834, +44,2014-01-13 04:21:53.708193,20,442,250, +18,2014-01-14 06:45:18.069502,959,540,914, +67,2014-01-19 14:36:12.335196,675,634,395, +18,2014-01-14 05:08:23.80353,755,231,786, +18,2014-01-12 07:38:59.994047,770,811,702, +44,2014-01-20 11:45:48.820103,735,856,312, +18,2014-01-14 03:25:30.598061,820,827,342, +18,2014-01-20 12:41:14.96841,950,425,102, +44,2014-01-11 03:22:20.775876,717,23,625, +67,2014-01-17 17:18:05.438574,448,727,996, +67,2014-01-18 14:57:53.734297,418,51,192, +67,2014-01-20 14:16:57.357467,938,616,385, +44,2014-01-16 11:02:57.110905,161,158,257, +67,2014-01-19 11:20:03.110493,987,306,81, +67,2014-01-20 15:03:37.206912,41,131,259, +67,2014-01-19 08:05:09.426854,596,761,83, +67,2014-01-13 02:32:24.74446,244,67,465, +18,2014-01-14 11:15:47.054265,713,150,493, +18,2014-01-12 05:39:23.896378,221,780,404, +44,2014-01-19 11:19:07.581223,66,983,91, +75,2014-01-16 16:54:17.270487,2,830,107, +44,2014-01-19 03:53:45.276374,534,316,531, +67,2014-01-17 14:37:55.175874,403,874,692, +44,2014-01-18 11:44:56.612336,338,419,585, +44,2014-01-17 09:12:18.920108,440,847,77, +67,2014-01-16 06:12:11.001299,164,600,582, +67,2014-01-18 06:50:54.624778,873,669,616, +18,2014-01-12 22:27:38.039941,151,15,61, +68,2014-01-20 07:48:31.652557,259,459,999, +75,2014-01-21 02:39:02.244625,36,480,134, +44,2014-01-15 04:18:06.422656,319,775,258, +44,2014-01-12 06:10:25.36075,945,230,835, +67,2014-01-14 03:24:20.314546,734,675,684, +68,2014-01-13 12:54:18.758272,534,466,938, +44,2014-01-15 15:18:49.164699,529,875,712, +44,2014-01-15 15:03:20.308593,661,591,730, +44,2014-01-12 18:40:07.578375,363,970,412, +68,2014-01-18 22:44:19.762761,353,42,512, +44,2014-01-14 21:44:35.277003,700,400,798, +75,2014-01-13 02:02:28.354251,574,329,375, +44,2014-01-15 10:02:25.201334,308,468,357, +75,2014-01-12 06:42:29.0113,488,30,149, +75,2014-01-12 10:19:25.712138,844,442,39, +68,2014-01-21 01:05:22.31224,963,34,735, +75,2014-01-20 22:02:32.122211,364,9,431, +67,2014-01-11 19:23:02.91905,178,146,64, +75,2014-01-19 03:10:31.739094,998,341,10, +18,2014-01-12 18:34:56.866673,623,417,491, +18,2014-01-15 10:38:49.973314,229,802,462, +67,2014-01-20 12:49:55.635472,812,353,649, +68,2014-01-10 23:54:04.448315,106,412,299, +75,2014-01-10 21:33:07.24422,349,648,557, +67,2014-01-18 10:43:40.912265,432,386,145, +67,2014-01-17 18:31:59.624189,804,201,609, +18,2014-01-18 13:18:03.856556,824,816,728, +18,2014-01-14 13:55:59.832373,510,799,500, +18,2014-01-12 18:44:10.625487,306,535,115, +44,2014-01-15 14:08:58.481334,827,808,551, +44,2014-01-16 16:23:37.872314,644,83,716, +68,2014-01-11 20:32:42.278044,464,636,763, +68,2014-01-15 10:48:00.726378,228,765,656, +75,2014-01-21 00:41:44.295389,604,730,371, +67,2014-01-13 06:43:07.638794,121,480,523, +44,2014-01-18 18:12:21.040925,505,503,320, +18,2014-01-13 07:36:03.05366,740,789,2, +75,2014-01-18 02:01:56.803494,273,906,129, +44,2014-01-13 03:15:41.349518,294,677,957, +44,2014-01-15 06:16:10.632035,86,705,511, +67,2014-01-15 18:46:16.566255,957,59,781, +75,2014-01-17 05:00:16.626521,160,105,46, +67,2014-01-17 12:18:38.986705,919,18,198, +75,2014-01-20 08:48:41.76759,973,424,497, +68,2014-01-18 15:42:45.637821,379,505,672, +75,2014-01-19 02:38:04.698843,997,507,251, +44,2014-01-20 03:54:04.080248,653,143,549, +68,2014-01-18 07:45:17.760032,719,588,942, +75,2014-01-20 02:01:07.617893,603,468,98, +18,2014-01-18 01:04:35.819342,627,300,981, +67,2014-01-20 06:20:14.627124,354,472,28, +68,2014-01-14 06:39:57.591206,864,89,840, +75,2014-01-17 07:54:31.455232,934,562,436, +68,2014-01-20 10:14:19.075439,748,809,971, +44,2014-01-14 08:13:04.835426,304,415,659, +44,2014-01-14 12:38:12.367496,73,535,605, +75,2014-01-16 22:46:18.699627,79,943,293, +67,2014-01-11 15:31:08.692402,526,195,559, +68,2014-01-18 06:34:12.199869,184,650,321, +44,2014-01-18 21:30:29.325115,930,114,291, +75,2014-01-16 09:40:07.173736,601,764,893, +44,2014-01-13 16:57:50.072602,743,527,886, +18,2014-01-19 22:03:11.603158,22,96,931, +67,2014-01-21 00:28:07.900116,705,851,393, +44,2014-01-13 11:39:34.367991,202,691,578, +75,2014-01-11 22:46:19.241953,540,229,365, +67,2014-01-18 12:40:28.94104,231,556,230, +18,2014-01-15 23:15:37.42165,700,180,482, +18,2014-01-19 04:48:16.045866,882,573,704, +75,2014-01-20 19:56:10.290557,242,574,612, +44,2014-01-20 09:31:48.053685,125,739,525, +44,2014-01-13 17:34:32.61212,467,669,520, +67,2014-01-16 18:56:26.917078,887,198,122, +75,2014-01-16 15:50:27.040391,779,776,375, +68,2014-01-12 20:23:14.380129,986,658,575, +67,2014-01-14 04:39:12.555318,796,437,742, +44,2014-01-14 12:28:31.739233,824,194,392, +75,2014-01-11 18:17:18.460377,194,752,249, +75,2014-01-11 06:24:30.31535,192,512,596, +68,2014-01-13 08:29:39.357126,630,432,922, +18,2014-01-18 23:21:54.279719,967,774,470, +18,2014-01-20 16:44:44.942474,970,42,821, +18,2014-01-16 19:09:36.948751,684,578,412, +18,2014-01-15 01:16:25.73495,878,2,82, +67,2014-01-19 20:59:04.017912,156,657,700, +68,2014-01-20 07:22:41.784178,78,854,461, +67,2014-01-18 17:54:38.102447,617,45,273, +18,2014-01-15 13:45:22.71754,384,184,770, +75,2014-01-21 02:53:50.47658,441,975,97, +67,2014-01-15 18:28:50.302735,228,469,425, +67,2014-01-13 05:15:52.042653,500,869,146, +18,2014-01-16 06:33:57.650736,513,352,872, +68,2014-01-18 15:26:40.375336,437,685,543, +18,2014-01-11 21:19:03.645811,969,608,870, +75,2014-01-16 01:02:05.550851,934,106,653, +44,2014-01-10 21:06:14.743327,564,159,473, +75,2014-01-13 00:05:22.888183,590,61,946, +44,2014-01-13 07:42:34.49231,465,587,857, +68,2014-01-16 00:21:52.164977,65,837,710, +68,2014-01-10 22:53:38.934049,557,393,442, +18,2014-01-12 21:38:44.782868,953,257,777, +68,2014-01-15 03:53:40.218663,119,179,661, +75,2014-01-13 20:28:11.54617,439,975,312, +44,2014-01-18 20:35:11.700365,278,956,957, +68,2014-01-20 23:44:07.259473,442,747,272, +18,2014-01-15 20:51:25.926298,913,832,493, +44,2014-01-11 19:14:24.255682,902,688,903, +18,2014-01-14 06:12:38.998706,395,717,276, +67,2014-01-16 19:08:44.386675,6,321,322, +67,2014-01-12 05:38:54.571032,125,837,182, +68,2014-01-16 18:42:18.356251,152,561,186, +67,2014-01-14 12:30:38.666812,93,382,308, +75,2014-01-11 16:23:39.513926,103,416,73, +75,2014-01-12 07:51:55.305003,817,220,325, +44,2014-01-18 17:47:04.401763,242,672,32, +67,2014-01-20 17:22:43.531839,51,511,88, +68,2014-01-11 09:14:37.089181,83,512,875, +18,2014-01-16 05:41:42.504628,660,183,558, +18,2014-01-15 01:08:06.249797,588,202,141, +44,2014-01-11 06:08:27.56618,33,244,439, +68,2014-01-21 04:10:32.807364,834,950,685, +67,2014-01-17 10:23:58.29245,583,560,499, +68,2014-01-16 16:42:25.216916,475,330,711, +44,2014-01-18 13:37:13.1827,695,511,462, +68,2014-01-18 11:43:01.938681,773,201,59, +18,2014-01-11 11:44:30.767768,442,578,929, +44,2014-01-18 14:43:27.926027,685,107,393, +18,2014-01-20 15:48:24.826865,830,196,23, +67,2014-01-13 23:27:05.260077,722,473,806, +18,2014-01-13 09:05:20.091005,518,291,846, +18,2014-01-20 18:42:03.760914,688,101,71, +67,2014-01-16 01:05:50.043364,851,537,265, +68,2014-01-17 16:59:00.309668,320,148,373, +75,2014-01-13 09:10:15.307083,824,874,152, +67,2014-01-13 15:41:01.743728,816,120,772, +18,2014-01-17 10:43:07.569141,354,373,34, +18,2014-01-18 10:01:41.2338,908,219,548, +18,2014-01-14 14:55:25.99941,339,457,950, +67,2014-01-20 20:55:46.568266,111,873,773, +44,2014-01-13 23:10:25.620475,647,863,286, +75,2014-01-16 00:34:20.570444,477,100,978, +75,2014-01-16 09:38:04.924518,641,473,691, +18,2014-01-17 15:41:04.287287,940,416,478, +75,2014-01-16 20:58:00.08437,200,123,853, +44,2014-01-17 21:30:00.22952,944,930,674, +18,2014-01-15 03:28:08.689469,462,386,881, +67,2014-01-16 08:20:43.616627,975,41,848, +44,2014-01-18 10:44:37.318701,427,728,73, +18,2014-01-20 13:09:51.194098,200,726,497, +68,2014-01-20 13:28:49.866424,831,81,47, +75,2014-01-18 20:53:04.884881,356,214,684, +44,2014-01-20 11:20:24.001461,226,703,834, +67,2014-01-16 17:52:48.158874,416,845,481, +68,2014-01-14 07:35:30.101797,793,758,615, +75,2014-01-17 18:57:37.184161,438,608,402, +44,2014-01-13 23:35:50.097554,263,157,865, +18,2014-01-14 23:20:00.869983,604,661,723, +75,2014-01-15 03:41:05.11019,460,64,846, +18,2014-01-13 09:24:14.924419,212,799,268, +44,2014-01-18 02:47:06.13006,988,200,614, +18,2014-01-17 16:46:25.201194,528,835,813, +75,2014-01-12 22:06:18.685333,563,695,323, +18,2014-01-12 21:52:56.173425,940,773,878, +68,2014-01-14 03:45:25.510862,540,890,552, +75,2014-01-15 11:16:33.992835,481,525,826, +67,2014-01-15 17:33:57.917153,5,710,877, +75,2014-01-20 18:28:33.080422,54,109,942, +67,2014-01-12 15:18:15.226635,939,517,631, +18,2014-01-19 12:29:23.916564,783,738,235, +67,2014-01-20 09:24:19.648688,680,113,669, +44,2014-01-15 18:28:40.84711,940,804,531, +75,2014-01-14 07:03:44.487426,441,309,869, +44,2014-01-15 13:02:24.573205,309,421,174, +18,2014-01-12 04:09:45.134817,899,698,420, +44,2014-01-20 08:01:44.571796,575,610,957, +67,2014-01-12 04:32:24.802725,288,886,168, +67,2014-01-16 11:37:53.824285,117,431,661, +44,2014-01-15 10:22:28.188423,72,114,209, +18,2014-01-19 19:17:02.121426,629,417,659, +68,2014-01-15 18:47:45.018383,431,887,837, +44,2014-01-14 17:51:18.054846,787,708,390, +75,2014-01-17 10:10:07.006726,615,328,773, +68,2014-01-15 00:08:09.019845,232,66,757, +75,2014-01-20 15:44:06.214139,635,748,214, +18,2014-01-20 21:45:37.108523,48,856,379, +68,2014-01-11 13:05:46.204006,708,812,703, +18,2014-01-13 09:19:56.311694,378,508,208, +67,2014-01-14 15:05:37.978506,187,793,139, +44,2014-01-15 20:46:51.314196,42,479,370, +67,2014-01-15 22:44:11.236531,4,618,415, +67,2014-01-11 11:52:44.108986,277,86,447, +18,2014-01-12 07:33:16.51539,701,475,476, +18,2014-01-18 00:50:29.921865,357,925,456, +68,2014-01-13 13:45:40.28241,198,100,930, +68,2014-01-15 15:18:42.026252,154,810,586, +67,2014-01-12 06:07:03.914699,933,368,234, +68,2014-01-18 11:19:38.199983,78,65,106, +44,2014-01-15 03:47:15.106674,922,758,220, +67,2014-01-14 01:25:19.141334,767,584,258, +67,2014-01-16 17:49:02.116547,294,141,140, +18,2014-01-14 07:11:34.755361,704,677,808, +68,2014-01-18 23:53:59.988864,68,981,41, +75,2014-01-20 04:52:46.603974,430,494,325, +18,2014-01-19 00:13:59.328567,795,717,97, +18,2014-01-20 08:03:45.12368,709,524,344, +68,2014-01-19 06:54:31.176189,388,429,607, +67,2014-01-20 08:46:24.131291,985,523,581, +75,2014-01-15 13:41:38.947966,902,936,291, +67,2014-01-13 11:16:59.364611,592,47,652, +68,2014-01-18 22:03:26.253136,542,353,919, +75,2014-01-20 12:29:23.966349,80,319,569, +18,2014-01-17 09:08:17.419876,687,758,276, +44,2014-01-15 02:13:33.259861,912,105,962, +68,2014-01-14 06:37:32.986194,504,653,303, +18,2014-01-16 18:52:23.634015,306,691,951, +44,2014-01-14 17:59:10.368384,55,763,303, +67,2014-01-14 23:43:19.1902,90,450,122, +75,2014-01-19 08:12:19.945708,963,709,959, +68,2014-01-18 13:04:48.347309,405,400,77, +75,2014-01-20 00:30:10.504396,581,398,727, +75,2014-01-14 00:56:31.18224,777,697,767, +75,2014-01-19 04:57:32.456296,26,359,548, +67,2014-01-11 02:03:27.019785,22,613,419, +44,2014-01-21 05:47:01.104523,526,409,940, +18,2014-01-11 12:43:12.738706,738,880,943, +75,2014-01-15 21:22:09.046036,962,411,828, +67,2014-01-12 05:54:05.019223,687,189,503, +67,2014-01-19 04:02:50.93869,383,5,667, +44,2014-01-20 05:09:24.153129,396,618,942, +18,2014-01-15 11:19:24.160976,893,367,556, +44,2014-01-14 15:51:53.055655,433,877,150, +68,2014-01-13 06:20:58.908491,857,841,480, +67,2014-01-13 05:13:24.14984,724,424,404, +18,2014-01-13 14:44:39.659629,976,513,783, +18,2014-01-11 00:34:58.237476,397,130,685, +67,2014-01-12 07:17:09.27352,795,845,365, +44,2014-01-11 15:39:10.835818,494,336,153, +44,2014-01-20 13:21:22.368767,396,192,131, +18,2014-01-17 00:58:48.221485,34,89,167, +18,2014-01-14 06:56:10.200848,697,892,950, +75,2014-01-18 05:24:48.621903,825,536,814, +68,2014-01-16 07:28:12.187834,522,152,535, +44,2014-01-20 20:04:27.620724,485,246,374, +67,2014-01-12 01:38:21.881765,185,322,43, +67,2014-01-19 18:05:45.174028,643,631,751, +67,2014-01-16 08:56:51.254739,379,613,895, +67,2014-01-15 23:37:32.250568,261,511,778, +68,2014-01-13 11:49:04.364228,578,873,857, +68,2014-01-14 11:09:11.200447,468,626,729, +75,2014-01-13 06:42:20.597877,123,830,156, +44,2014-01-12 06:19:14.868624,594,533,819, +68,2014-01-17 16:05:42.383105,258,108,990, +44,2014-01-11 05:39:53.054173,50,704,685, +75,2014-01-12 12:22:41.888408,883,713,408, +67,2014-01-17 15:52:43.487629,226,416,368, +67,2014-01-11 22:23:05.792879,974,789,425, +75,2014-01-17 13:44:50.934446,688,597,626, +44,2014-01-19 01:46:48.506851,619,961,791, +44,2014-01-20 06:25:56.731987,695,394,912, +75,2014-01-16 12:54:15.087575,928,609,381, +18,2014-01-13 07:06:12.667827,799,663,231, +68,2014-01-13 16:17:49.787643,812,203,957, +18,2014-01-18 23:15:13.996484,651,821,412, +75,2014-01-15 16:19:36.817667,851,77,316, +44,2014-01-16 11:02:29.447272,108,952,837, +44,2014-01-19 03:50:12.233959,144,923,483, +75,2014-01-17 03:36:46.091185,492,238,205, +18,2014-01-17 06:41:40.283508,953,218,300, +67,2014-01-18 11:11:34.602727,915,193,492, +67,2014-01-12 22:35:34.312671,23,548,621, +75,2014-01-20 17:37:50.484355,466,755,380, +68,2014-01-15 10:36:23.225049,795,720,478, +44,2014-01-18 10:03:46.500505,972,661,253, +18,2014-01-20 07:42:18.105079,921,823,148, +18,2014-01-16 16:14:45.106814,42,247,542, +18,2014-01-16 22:09:31.674533,905,511,374, +18,2014-01-15 10:39:09.359818,693,900,765, +68,2014-01-11 09:52:17.357381,207,525,596, +18,2014-01-19 13:58:36.03876,974,244,726, +18,2014-01-19 01:48:20.560265,867,945,798, +75,2014-01-13 20:34:37.955258,587,564,506, +18,2014-01-21 00:17:50.907384,70,473,267, +75,2014-01-15 11:54:02.943371,768,448,698, +68,2014-01-14 06:14:31.009431,133,135,593, +44,2014-01-12 06:40:32.795793,599,392,888, +44,2014-01-11 21:46:46.430999,960,329,347, +67,2014-01-15 08:37:36.802729,99,388,712, +68,2014-01-19 00:25:23.730657,841,441,115, +67,2014-01-20 03:33:34.93827,126,466,996, +67,2014-01-14 09:03:33.534717,604,374,984, +18,2014-01-14 07:19:38.818232,497,277,157, +18,2014-01-12 04:39:47.606097,374,305,318, +67,2014-01-17 05:21:23.322359,873,741,920, +75,2014-01-12 00:34:52.814717,257,959,90, +75,2014-01-17 00:59:24.424182,525,154,740, +67,2014-01-12 10:23:52.769631,131,129,102, +67,2014-01-20 08:25:05.048676,340,113,340, +18,2014-01-12 22:36:10.515368,127,369,117, +67,2014-01-18 21:05:33.053139,998,717,773, +67,2014-01-17 13:36:39.651822,683,572,738, +8,2014-01-11 03:48:30.443568,947,925,587, +8,2014-01-12 19:46:26.734355,680,150,306, +20,2014-01-14 13:03:16.559532,422,355,353, +8,2014-01-15 21:33:11.665239,774,859,753, +60,2014-01-15 07:15:59.163667,722,101,350, +60,2014-01-17 17:28:58.360332,899,749,39, +60,2014-01-16 23:32:36.366365,31,560,591, +8,2014-01-20 08:34:54.862248,288,244,468, +20,2014-01-15 14:53:08.098157,195,444,600, +20,2014-01-18 16:00:48.531933,475,374,627, +8,2014-01-17 06:31:12.856146,453,609,400, +8,2014-01-19 19:21:37.008035,883,857,507, +8,2014-01-11 18:34:50.554348,144,476,544, +60,2014-01-11 12:09:46.528925,510,687,304, +60,2014-01-20 06:05:37.390549,332,769,351, +8,2014-01-18 13:25:21.452671,866,757,997, +20,2014-01-13 06:15:57.459629,594,257,291, +60,2014-01-18 18:35:50.818783,178,208,798, +60,2014-01-15 21:07:06.785709,436,865,584, +20,2014-01-14 13:21:17.187178,904,174,458, +60,2014-01-20 20:40:49.982906,145,828,919, +8,2014-01-11 04:03:33.497661,77,15,815, +8,2014-01-20 22:37:16.714103,108,19,109, +20,2014-01-15 16:48:35.184151,44,153,821, +60,2014-01-11 01:38:42.312322,229,195,260, +8,2014-01-17 23:17:19.043251,218,896,71, +60,2014-01-13 20:45:48.914034,911,594,578, +8,2014-01-12 02:04:54.089651,19,372,901, +60,2014-01-20 17:04:06.523799,768,231,513, +20,2014-01-15 21:41:40.986974,127,154,10, +60,2014-01-14 09:26:29.931647,661,832,553, +8,2014-01-21 00:52:36.967785,15,10,868, +20,2014-01-17 21:28:07.721329,391,301,501, +60,2014-01-18 02:29:46.491178,968,416,176, +20,2014-01-15 16:25:48.633024,994,825,673, +60,2014-01-11 22:44:06.885416,414,650,58, +8,2014-01-14 13:58:44.85151,982,414,820, +8,2014-01-11 09:58:24.999389,947,635,701, +20,2014-01-11 01:19:01.747663,220,781,29, +8,2014-01-19 08:51:52.949668,584,171,388, +20,2014-01-19 05:59:13.531322,943,166,303, +8,2014-01-17 11:50:14.603809,530,247,467, +8,2014-01-17 22:13:29.957703,929,236,368, +20,2014-01-20 04:34:04.085671,153,444,623, +20,2014-01-18 04:00:01.133153,154,797,793, +60,2014-01-16 22:19:07.348672,925,663,59, +8,2014-01-17 11:59:25.538342,653,982,286, +8,2014-01-20 14:15:58.592782,314,974,919, +60,2014-01-14 10:54:58.167455,444,484,336, +60,2014-01-12 03:06:32.32447,254,947,747, +20,2014-01-13 21:37:15.77996,292,75,9, +60,2014-01-14 01:35:48.150361,428,152,422, +8,2014-01-12 11:10:05.822131,989,777,467, +8,2014-01-13 14:14:32.494483,246,824,523, +60,2014-01-18 22:24:23.334512,533,637,943, +20,2014-01-12 16:48:48.134453,700,744,646, +20,2014-01-20 17:31:51.537734,7,956,931, +20,2014-01-11 13:10:12.248547,407,679,704, +8,2014-01-13 22:53:42.224523,165,127,519, +20,2014-01-20 04:35:58.061952,165,474,204, +20,2014-01-16 14:51:53.23594,24,907,713, +8,2014-01-17 12:20:12.156169,686,783,448, +20,2014-01-19 23:28:35.029737,892,941,724, +60,2014-01-13 06:20:00.957269,885,278,8, +8,2014-01-14 08:49:58.647767,548,678,848, +20,2014-01-14 09:54:23.662761,719,290,692, +60,2014-01-14 09:04:07.842684,377,828,48, +20,2014-01-18 02:48:43.499277,786,957,668, +8,2014-01-14 23:52:48.66215,251,453,202, +20,2014-01-14 14:23:09.590767,828,497,423, +8,2014-01-16 05:40:36.449365,963,773,399, +8,2014-01-12 23:52:02.193472,334,62,375, +8,2014-01-10 20:13:24.194575,129,48,792, +75,2014-01-15 01:11:44.828457,813,44,967, +68,2014-01-18 08:43:23.537495,251,483,813, +67,2014-01-11 18:13:02.876871,185,330,828, +75,2014-01-12 05:15:31.328962,584,598,367, +75,2014-01-17 10:25:41.642574,649,568,244, +18,2014-01-17 14:27:47.983684,485,609,811, +18,2014-01-18 07:25:03.003915,775,12,554, +75,2014-01-11 15:04:51.002392,789,669,904, +75,2014-01-18 04:20:05.341484,97,236,941, +44,2014-01-16 15:23:39.042675,854,517,17, +75,2014-01-19 20:53:11.563075,843,16,774, +18,2014-01-21 04:54:43.296743,319,909,200, +75,2014-01-16 09:41:29.950479,214,459,292, +18,2014-01-14 02:47:14.506446,731,674,324, +67,2014-01-14 05:09:14.306593,223,634,539, +68,2014-01-17 20:22:02.746272,167,481,557, +18,2014-01-15 04:34:00.937864,815,352,395, +75,2014-01-18 17:46:51.109322,408,102,616, +44,2014-01-15 14:47:26.476929,684,160,645, +75,2014-01-14 02:07:35.876133,261,225,851, diff --git a/src/test/regress/expected/multi_insert_select.out b/src/test/regress/expected/multi_insert_select.out index 9d799383f..7507fc03b 100644 --- a/src/test/regress/expected/multi_insert_select.out +++ b/src/test/regress/expected/multi_insert_select.out @@ -35,6 +35,13 @@ SELECT create_reference_table('reference_table'); (1 row) +CREATE TABLE insert_select_varchar_test (key varchar, value int); +SELECT create_distributed_table('insert_select_varchar_test', 'key', 'hash'); + create_distributed_table +-------------------------- + +(1 row) + -- set back to the defaults SET citus.shard_count = DEFAULT; SET citus.shard_replication_factor = DEFAULT; @@ -1125,13 +1132,13 @@ SELECT FROM ((SELECT user_id FROM raw_events_first) UNION (SELECT user_id FROM raw_events_second)) as foo; -ERROR: set operations are not allowed in INSERT ... SELECT queries +ERROR: Set operations are not allowed in INSERT ... SELECT queries -- We do not support any set operations INSERT INTO raw_events_first(user_id) (SELECT user_id FROM raw_events_first) INTERSECT (SELECT user_id FROM raw_events_first); -ERROR: set operations are not allowed in INSERT ... SELECT queries +ERROR: Set operations are not allowed in INSERT ... SELECT queries -- We do not support any set operations INSERT INTO raw_events_first(user_id) @@ -1140,7 +1147,7 @@ SELECT FROM ((SELECT user_id FROM raw_events_first WHERE user_id = 15) EXCEPT (SELECT user_id FROM raw_events_second where user_id = 17)) as foo; -ERROR: set operations are not allowed in INSERT ... SELECT queries +ERROR: Set operations are not allowed in INSERT ... SELECT queries -- some supported LEFT joins INSERT INTO agg_events (user_id) SELECT @@ -1406,35 +1413,8 @@ DEBUG: Plan is router executable raw_events_second WHERE raw_events_second.user_id = raw_events_first.value_1 AND raw_events_first.value_1 = 12; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300004 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: distributed statement: INSERT INTO public.agg_events_13300008 AS citus_table_alias (user_id) SELECT raw_events_first.user_id FROM public.raw_events_first_13300000 raw_events_first, public.raw_events_second_13300007 raw_events_second WHERE (((raw_events_second.user_id = raw_events_first.value_1) AND (raw_events_first.value_1 = 12)) AND ((hashint4(raw_events_first.user_id) >= '-2147483648'::integer) AND (hashint4(raw_events_first.user_id) <= '-1073741825'::integer))) -DEBUG: predicate pruning for shardId 13300000 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300004 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: distributed statement: INSERT INTO public.agg_events_13300009 AS citus_table_alias (user_id) SELECT raw_events_first.user_id FROM public.raw_events_first_13300001 raw_events_first, public.raw_events_second_13300007 raw_events_second WHERE (((raw_events_second.user_id = raw_events_first.value_1) AND (raw_events_first.value_1 = 12)) AND ((hashint4(raw_events_first.user_id) >= '-1073741824'::integer) AND (hashint4(raw_events_first.user_id) <= '-1'::integer))) -DEBUG: predicate pruning for shardId 13300000 -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300004 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: distributed statement: INSERT INTO public.agg_events_13300010 AS citus_table_alias (user_id) SELECT raw_events_first.user_id FROM public.raw_events_first_13300002 raw_events_first, public.raw_events_second_13300007 raw_events_second WHERE (((raw_events_second.user_id = raw_events_first.value_1) AND (raw_events_first.value_1 = 12)) AND ((hashint4(raw_events_first.user_id) >= 0) AND (hashint4(raw_events_first.user_id) <= 1073741823))) -DEBUG: predicate pruning for shardId 13300000 -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300004 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: distributed statement: INSERT INTO public.agg_events_13300011 AS citus_table_alias (user_id) SELECT raw_events_first.user_id FROM public.raw_events_first_13300003 raw_events_first, public.raw_events_second_13300007 raw_events_second WHERE (((raw_events_second.user_id = raw_events_first.value_1) AND (raw_events_first.value_1 = 12)) AND ((hashint4(raw_events_first.user_id) >= 1073741824) AND (hashint4(raw_events_first.user_id) <= 2147483647))) -DEBUG: Plan is router executable +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. -- some unsupported LEFT/INNER JOINs -- JOIN on one table with partition column other is not @@ -1443,9 +1423,6 @@ DEBUG: Plan is router executable raw_events_first.user_id FROM raw_events_first LEFT JOIN raw_events_second ON raw_events_first.user_id = raw_events_second.value_1; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1455,9 +1432,6 @@ DETAIL: Select query cannot be pushed down to the worker. raw_events_first.user_id FROM raw_events_first INNER JOIN raw_events_second ON raw_events_first.user_id = raw_events_second.value_1; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1477,9 +1451,6 @@ DETAIL: Select query cannot be pushed down to the worker. raw_events_first.user_id FROM raw_events_first LEFT JOIN raw_events_second ON raw_events_first.value_1 = raw_events_second.value_1; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1489,9 +1460,6 @@ DETAIL: Select query cannot be pushed down to the worker. raw_events_first.user_id FROM raw_events_first INNER JOIN raw_events_second ON raw_events_first.value_1 = raw_events_second.value_1; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1530,9 +1498,6 @@ DETAIL: Select query cannot be pushed down to the worker. FROM raw_events_first INNER JOIN raw_events_second ON raw_events_first.user_id = raw_events_second.value_1 WHERE raw_events_first.value_1 IN (10, 11,12) OR raw_events_second.user_id IN (1,2,3,4); -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1543,9 +1508,6 @@ DETAIL: Select query cannot be pushed down to the worker. FROM raw_events_first, raw_events_second WHERE raw_events_second.user_id = raw_events_first.value_1; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1559,9 +1521,6 @@ DETAIL: Select query cannot be pushed down to the worker. raw_events_second WHERE raw_events_second.user_id = raw_events_first.value_1 AND raw_events_first.value_2 = 12; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1596,12 +1555,6 @@ DETAIL: Select query cannot be pushed down to the worker. ON (f.id = f2.id)) as outer_most GROUP BY outer_most.id; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: predicate pruning for shardId 13300007 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. INSERT INTO agg_events @@ -1793,12 +1746,6 @@ outer_most.id, max(outer_most.value) HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 ON (f.id != f2.id)) as outer_most GROUP BY outer_most.id; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: predicate pruning for shardId 13300007 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. -- cannot pushdown since foo2 is not join on partition key @@ -1861,12 +1808,6 @@ FROM ON (f.id = f2.id)) as outer_most GROUP BY outer_most.id; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: predicate pruning for shardId 13300007 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. -- some unsupported LATERAL JOINs @@ -1925,12 +1866,6 @@ FROM JOIN LATERAL (SELECT user_id, value_4 FROM agg_events) as agg_ids ON (agg_ids.value_4 = averages.user_id) GROUP BY averages.user_id; -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: predicate pruning for shardId 13300007 -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. -- not supported subqueries in WHERE clause @@ -1942,9 +1877,6 @@ SELECT user_id FROM raw_events_first WHERE user_id IN (SELECT value_1 FROM raw_events_second); -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. -- same as above but slightly more complex @@ -1973,6 +1905,17 @@ FROM (SELECT SUM(raw_events_second.value_4) AS v4, ON (f.id = f2.id) WHERE f.id IN (SELECT value_1 FROM raw_events_second); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- some more semi-anti join tests +-- join in where +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN (SELECT raw_events_second.user_id + FROM raw_events_second, raw_events_first + WHERE raw_events_second.user_id = raw_events_first.user_id AND raw_events_first.user_id = 200); DEBUG: predicate pruning for shardId 13300001 DEBUG: predicate pruning for shardId 13300002 DEBUG: predicate pruning for shardId 13300003 @@ -1982,6 +1925,389 @@ DEBUG: predicate pruning for shardId 13300007 DEBUG: predicate pruning for shardId 13300001 DEBUG: predicate pruning for shardId 13300002 DEBUG: predicate pruning for shardId 13300003 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300004 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300000 raw_events_first WHERE ((user_id IN (SELECT raw_events_second.user_id FROM public.raw_events_second_13300004 raw_events_second, public.raw_events_first_13300000 raw_events_first_1 WHERE ((raw_events_second.user_id = raw_events_first_1.user_id) AND (raw_events_first_1.user_id = 200)))) AND ((hashint4(user_id) >= '-2147483648'::integer) AND (hashint4(user_id) <= '-1073741825'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: Skipping target shard interval 13300005 since SELECT query for it pruned away +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: Skipping target shard interval 13300006 since SELECT query for it pruned away +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: Skipping target shard interval 13300007 since SELECT query for it pruned away +DEBUG: Plan is router executable +-- we cannot push this down since it is NOT IN +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id NOT IN (SELECT raw_events_second.user_id + FROM raw_events_second, raw_events_first + WHERE raw_events_second.user_id = raw_events_first.user_id AND raw_events_first.user_id = 200); +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- safe to push down +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE EXISTS (SELECT 1 + FROM raw_events_second + WHERE raw_events_second.user_id =raw_events_first.user_id); +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300004 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300000 raw_events_first WHERE ((EXISTS (SELECT 1 FROM public.raw_events_second_13300004 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id))) AND ((hashint4(user_id) >= '-2147483648'::integer) AND (hashint4(user_id) <= '-1073741825'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300005 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300001 raw_events_first WHERE ((EXISTS (SELECT 1 FROM public.raw_events_second_13300005 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id))) AND ((hashint4(user_id) >= '-1073741824'::integer) AND (hashint4(user_id) <= '-1'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300006 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300002 raw_events_first WHERE ((EXISTS (SELECT 1 FROM public.raw_events_second_13300006 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id))) AND ((hashint4(user_id) >= 0) AND (hashint4(user_id) <= 1073741823))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300007 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300003 raw_events_first WHERE ((EXISTS (SELECT 1 FROM public.raw_events_second_13300007 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id))) AND ((hashint4(user_id) >= 1073741824) AND (hashint4(user_id) <= 2147483647))) +DEBUG: Plan is router executable +-- we cannot push down +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE NOT EXISTS (SELECT 1 + FROM raw_events_second + WHERE raw_events_second.user_id =raw_events_first.user_id); +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300004 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300000 raw_events_first WHERE ((NOT (EXISTS (SELECT 1 FROM public.raw_events_second_13300004 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id)))) AND ((hashint4(user_id) >= '-2147483648'::integer) AND (hashint4(user_id) <= '-1073741825'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300005 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300001 raw_events_first WHERE ((NOT (EXISTS (SELECT 1 FROM public.raw_events_second_13300005 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id)))) AND ((hashint4(user_id) >= '-1073741824'::integer) AND (hashint4(user_id) <= '-1'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300006 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300002 raw_events_first WHERE ((NOT (EXISTS (SELECT 1 FROM public.raw_events_second_13300006 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id)))) AND ((hashint4(user_id) >= 0) AND (hashint4(user_id) <= 1073741823))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300007 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300003 raw_events_first WHERE ((NOT (EXISTS (SELECT 1 FROM public.raw_events_second_13300007 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id)))) AND ((hashint4(user_id) >= 1073741824) AND (hashint4(user_id) <= 2147483647))) +DEBUG: Plan is router executable +-- more complex LEFT JOINs + INSERT INTO agg_events + (user_id, value_4_agg) + SELECT + outer_most.id, max(outer_most.value) + FROM + ( + SELECT f2.id as id, f2.v4 as value FROM + (SELECT + id + FROM (SELECT raw_events_first.user_id AS id + FROM raw_events_first LEFT JOIN + reference_table + ON (raw_events_first.user_id = reference_table.user_id)) AS foo) as f + LEFT JOIN + (SELECT v4, + v1, + id + FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 + ON (f.id = f2.id)) as outer_most + GROUP BY + outer_most.id; +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: distributed statement: INSERT INTO public.agg_events_13300008 AS citus_table_alias (user_id, value_4_agg) SELECT id, max(value) AS max FROM (SELECT f2.id, f2.v4 AS value FROM ((SELECT foo.id FROM (SELECT raw_events_first.user_id AS id FROM (public.raw_events_first_13300000 raw_events_first LEFT JOIN public.reference_table_13300012 reference_table ON ((raw_events_first.user_id = reference_table.user_id)))) foo) f LEFT JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300000 raw_events_first, public.raw_events_second_13300004 raw_events_second WHERE (raw_events_first.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id)))) outer_most WHERE ((hashint4(id) >= '-2147483648'::integer) AND (hashint4(id) <= '-1073741825'::integer)) GROUP BY id +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: distributed statement: INSERT INTO public.agg_events_13300009 AS citus_table_alias (user_id, value_4_agg) SELECT id, max(value) AS max FROM (SELECT f2.id, f2.v4 AS value FROM ((SELECT foo.id FROM (SELECT raw_events_first.user_id AS id FROM (public.raw_events_first_13300001 raw_events_first LEFT JOIN public.reference_table_13300012 reference_table ON ((raw_events_first.user_id = reference_table.user_id)))) foo) f LEFT JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300001 raw_events_first, public.raw_events_second_13300005 raw_events_second WHERE (raw_events_first.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id)))) outer_most WHERE ((hashint4(id) >= '-1073741824'::integer) AND (hashint4(id) <= '-1'::integer)) GROUP BY id +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: distributed statement: INSERT INTO public.agg_events_13300010 AS citus_table_alias (user_id, value_4_agg) SELECT id, max(value) AS max FROM (SELECT f2.id, f2.v4 AS value FROM ((SELECT foo.id FROM (SELECT raw_events_first.user_id AS id FROM (public.raw_events_first_13300002 raw_events_first LEFT JOIN public.reference_table_13300012 reference_table ON ((raw_events_first.user_id = reference_table.user_id)))) foo) f LEFT JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300002 raw_events_first, public.raw_events_second_13300006 raw_events_second WHERE (raw_events_first.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id)))) outer_most WHERE ((hashint4(id) >= 0) AND (hashint4(id) <= 1073741823)) GROUP BY id +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: distributed statement: INSERT INTO public.agg_events_13300011 AS citus_table_alias (user_id, value_4_agg) SELECT id, max(value) AS max FROM (SELECT f2.id, f2.v4 AS value FROM ((SELECT foo.id FROM (SELECT raw_events_first.user_id AS id FROM (public.raw_events_first_13300003 raw_events_first LEFT JOIN public.reference_table_13300012 reference_table ON ((raw_events_first.user_id = reference_table.user_id)))) foo) f LEFT JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300003 raw_events_first, public.raw_events_second_13300007 raw_events_second WHERE (raw_events_first.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id)))) outer_most WHERE ((hashint4(id) >= 1073741824) AND (hashint4(id) <= 2147483647)) GROUP BY id +DEBUG: Plan is router executable +-- cannot push down since the f.id IN is matched with value_1 +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT value_1 + FROM raw_events_second)); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- same as above, but this time is it safe to push down since +-- f.id IN is matched with user_id +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300004 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300000 raw_events_first WHERE ((user_id IN (SELECT f2.id FROM ((SELECT foo.id FROM (SELECT reference_table.user_id AS id FROM public.raw_events_first_13300000 raw_events_first_1, public.reference_table_13300012 reference_table WHERE (raw_events_first_1.user_id = reference_table.user_id)) foo) f JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first_1.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300000 raw_events_first_1, public.raw_events_second_13300004 raw_events_second WHERE (raw_events_first_1.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id))) WHERE (f.id IN (SELECT raw_events_second.user_id FROM public.raw_events_second_13300004 raw_events_second)))) AND ((hashint4(user_id) >= '-2147483648'::integer) AND (hashint4(user_id) <= '-1073741825'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300005 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300001 raw_events_first WHERE ((user_id IN (SELECT f2.id FROM ((SELECT foo.id FROM (SELECT reference_table.user_id AS id FROM public.raw_events_first_13300001 raw_events_first_1, public.reference_table_13300012 reference_table WHERE (raw_events_first_1.user_id = reference_table.user_id)) foo) f JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first_1.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300001 raw_events_first_1, public.raw_events_second_13300005 raw_events_second WHERE (raw_events_first_1.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id))) WHERE (f.id IN (SELECT raw_events_second.user_id FROM public.raw_events_second_13300005 raw_events_second)))) AND ((hashint4(user_id) >= '-1073741824'::integer) AND (hashint4(user_id) <= '-1'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300006 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300002 raw_events_first WHERE ((user_id IN (SELECT f2.id FROM ((SELECT foo.id FROM (SELECT reference_table.user_id AS id FROM public.raw_events_first_13300002 raw_events_first_1, public.reference_table_13300012 reference_table WHERE (raw_events_first_1.user_id = reference_table.user_id)) foo) f JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first_1.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300002 raw_events_first_1, public.raw_events_second_13300006 raw_events_second WHERE (raw_events_first_1.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id))) WHERE (f.id IN (SELECT raw_events_second.user_id FROM public.raw_events_second_13300006 raw_events_second)))) AND ((hashint4(user_id) >= 0) AND (hashint4(user_id) <= 1073741823))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300007 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300003 raw_events_first WHERE ((user_id IN (SELECT f2.id FROM ((SELECT foo.id FROM (SELECT reference_table.user_id AS id FROM public.raw_events_first_13300003 raw_events_first_1, public.reference_table_13300012 reference_table WHERE (raw_events_first_1.user_id = reference_table.user_id)) foo) f JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first_1.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300003 raw_events_first_1, public.raw_events_second_13300007 raw_events_second WHERE (raw_events_first_1.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id))) WHERE (f.id IN (SELECT raw_events_second.user_id FROM public.raw_events_second_13300007 raw_events_second)))) AND ((hashint4(user_id) >= 1073741824) AND (hashint4(user_id) <= 2147483647))) +DEBUG: Plan is router executable +-- cannot push down since top level user_id is matched with NOT IN +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id NOT IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- cannot push down since join is not equi join (f.id > f2.id) +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id > f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. -- we currently not support grouping sets @@ -2054,7 +2380,7 @@ INSERT INTO raw_events_first (user_id, time, value_1, value_2, value_3, value_4) SELECT count(*) FROM raw_events_second; count ------- - 9 + 18 (1 row) INSERT INTO raw_events_second SELECT * FROM test_view; @@ -2064,7 +2390,7 @@ INSERT INTO raw_events_second SELECT * FROM test_view WHERE user_id = 17 GROUP B SELECT count(*) FROM raw_events_second; count ------- - 11 + 20 (1 row) -- inserting into views does not @@ -2210,6 +2536,32 @@ DEBUG: predicate pruning for shardId 13300007 DEBUG: Skipping target shard interval 13300003 since SELECT query for it pruned away DEBUG: Plan is router executable SET client_min_messages TO INFO; +-- now do some tests with varchars +INSERT INTO insert_select_varchar_test VALUES ('test_1', 10); +INSERT INTO insert_select_varchar_test VALUES ('test_2', 30); +INSERT INTO insert_select_varchar_test (key, value) +SELECT *, 100 +FROM (SELECT f1.key + FROM (SELECT key + FROM insert_select_varchar_test + GROUP BY 1 + HAVING Count(key) < 3) AS f1, + (SELECT key + FROM insert_select_varchar_test + GROUP BY 1 + HAVING Sum(COALESCE(insert_select_varchar_test.value, 0)) > + 20.0) + AS f2 + WHERE f1.key = f2.key + GROUP BY 1) AS foo; +SELECT * FROM insert_select_varchar_test; + key | value +--------+------- + test_2 | 30 + test_2 | 100 + test_1 | 10 +(3 rows) + -- some tests with DEFAULT columns and constant values -- this test is mostly importantly intended for deparsing the query correctly -- but still it is preferable to have this test here instead of multi_deparse_shard_query @@ -2233,10 +2585,10 @@ SELECT create_distributed_table('table_with_defaults', 'store_id'); SET client_min_messages TO DEBUG2; -- a very simple query INSERT INTO table_with_defaults SELECT * FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, default_1, last_name, default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, default_1, last_name, default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, default_1, last_name, default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, default_1, last_name, default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- see that defaults are filled INSERT INTO table_with_defaults (store_id, first_name) @@ -2244,10 +2596,10 @@ SELECT store_id, first_name FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, '2'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, '2'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, '2'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, '2'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- shuffle one of the defaults and skip the other INSERT INTO table_with_defaults (default_2, store_id, first_name) @@ -2255,10 +2607,10 @@ SELECT default_2, store_id, first_name FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- shuffle both defaults INSERT INTO table_with_defaults (default_2, store_id, default_1, first_name) @@ -2266,10 +2618,10 @@ SELECT default_2, store_id, default_1, first_name FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, default_1, default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, default_1, default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, default_1, default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, default_1, default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- use constants instead of non-default column INSERT INTO table_with_defaults (default_2, last_name, store_id, first_name) @@ -2277,10 +2629,10 @@ SELECT default_2, 'Freund', store_id, 'Andres' FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- use constants instead of non-default column and skip both defauls INSERT INTO table_with_defaults (last_name, store_id, first_name) @@ -2288,10 +2640,10 @@ SELECT 'Freund', store_id, 'Andres' FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, '2'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, '2'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, '2'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, '2'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- use constants instead of default columns INSERT INTO table_with_defaults (default_2, last_name, store_id, first_name, default_1) @@ -2299,10 +2651,10 @@ SELECT 20, last_name, store_id, first_name, 10 FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, 10, last_name, 20 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, 10, last_name, 20 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, 10, last_name, 20 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, 10, last_name, 20 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- use constants instead of both default columns and non-default columns INSERT INTO table_with_defaults (default_2, last_name, store_id, first_name, default_1) @@ -2310,10 +2662,10 @@ SELECT 20, 'Freund', store_id, 'Andres', 10 FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 10, 'Freund'::text AS last_name, 20 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 10, 'Freund'::text AS last_name, 20 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 10, 'Freund'::text AS last_name, 20 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 10, 'Freund'::text AS last_name, 20 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- some of the the ultimate queries where we have constants, -- defaults and group by entry is not on the target entry @@ -2324,10 +2676,10 @@ FROM table_with_defaults GROUP BY last_name, store_id; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, '2000'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, '2000'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, '2000'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, '2000'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id DEBUG: Plan is router executable INSERT INTO table_with_defaults (default_1, store_id, first_name, default_2) SELECT @@ -2336,10 +2688,10 @@ FROM table_with_defaults GROUP BY last_name, store_id, first_name; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name DEBUG: Plan is router executable INSERT INTO table_with_defaults (default_1, store_id, first_name, default_2) SELECT @@ -2348,10 +2700,10 @@ FROM table_with_defaults GROUP BY last_name, store_id, first_name, default_2; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name, default_2 -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name, default_2 +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name, default_2 +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name, default_2 DEBUG: Plan is router executable INSERT INTO table_with_defaults (default_1, store_id, first_name) SELECT @@ -2360,10 +2712,10 @@ FROM table_with_defaults GROUP BY last_name, store_id, first_name, default_2; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name, default_2 -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name, default_2 +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name, default_2 +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name, default_2 DEBUG: Plan is router executable RESET client_min_messages; -- Stable function in default should be allowed diff --git a/src/test/regress/expected/multi_insert_select_behavioral_analytics_basics.out b/src/test/regress/expected/multi_insert_select_behavioral_analytics_basics.out new file mode 100644 index 000000000..80e8b1a96 --- /dev/null +++ b/src/test/regress/expected/multi_insert_select_behavioral_analytics_basics.out @@ -0,0 +1,449 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query +------------------------------------ +------------------------------------ +INSERT INTO agg_results (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 5 | 5 | 15.6000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +ERROR: Set operations are not allowed in INSERT ... SELECT queries +-- get some statistics from the aggregated results to ensure the results are correct +-- SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; +------------------------------------ +------------------------------------ +-- Funnel, grouped by the number of times a user has done an event +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id = subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; +ERROR: Set operations are not allowed in INSERT ... SELECT queries +-- get some statistics from the aggregated results to ensure the results are correct +-- SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 6 | 6 | 42.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 33 | 33 | 50.3939393939393939 +(1 row) + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in at least two of X and Y and Z segments +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id) +SELECT user_id +FROM users_table +WHERE (value_1 = 10 + OR value_1 = 11 + OR value_1 = 12) +GROUP BY user_id +HAVING count(distinct value_1) >= 2; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 4 | 4 | 51.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id=users_table.user_id); +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 34 | 27 | 40.5588235294117647 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who haven’t done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id=users_table.user_id); +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 8 | 7 | 39.7500000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X and Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 100 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type!=100 AND value_3 > 100 AND user_id=users_table.user_id) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id=users_table.user_id); +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 1202 | 14 | 47.7462562396006656 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 205 | 2 | 55.2195121951219512 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 78 | 34 | 52.4230769230769231 +(1 row) + + +------------------------------------ +------------------------------------ +-- Find me all users_table who logged in more than once +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_1_agg) +SELECT user_id, value_1 from +( + SELECT user_id, value_1 From users_table + WHERE value_2 > 100 and user_id = 15 GROUP BY value_1, user_id HAVING count(*) > 1 +) as a; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 6 | 1 | 15.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Find me all users_table who has done some event and has filters +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 2 | 2 | 30.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Which events_table did people who has done some specific events_table +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id in (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 3084 | 32 | 44.1498054474708171 +(1 row) + + +------------------------------------ +------------------------------------ +-- Find me all the users_table who has done some event more than three times +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id) +select user_id from +( + select + user_id + from + events_table +where event_type = 901 group by user_id having count(*) > 3 +) as a; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 1 | 1 | 57.0000000000000000 +(1 row) + + +------------------------------------ +------------------------------------ +-- Find my assets that have the highest probability and fetch their metadata +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id = ma.user_id and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 14371 | 101 | 50.5232064574490293 +(1 row) + + diff --git a/src/test/regress/expected/multi_insert_select_behavioral_analytics_single_shard_queries.out b/src/test/regress/expected/multi_insert_select_behavioral_analytics_single_shard_queries.out new file mode 100644 index 000000000..a6a1b1faa --- /dev/null +++ b/src/test/regress/expected/multi_insert_select_behavioral_analytics_single_shard_queries.out @@ -0,0 +1,420 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q +WHERE user_id = 20; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 1 | 1 | 20.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Vanilla funnel query -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id AND + (u.user_id = 13 OR u.user_id = 20) AND + (e.user_id = 13 OR e.user_id = 20) + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q +WHERE (user_id = 13 OR user_id = 20); +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 2 | 2 | 16.5000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event -- single shard query +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + WHERE t1.user_id = 20 + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +ERROR: Set operations are not allowed in INSERT ... SELECT queries +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event -- two shards query +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE + (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + WHERE (t1.user_id = 20 OR t1.user_id = 17) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +ERROR: Set operations are not allowed in INSERT ... SELECT queries +-- get some statistics from the aggregated results to ensure the results are correct +-- SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table -- single shard query +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + WHERE user_id = 65 + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 1 | 1 | 65.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table -- two shards query +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + (user_id = 65 OR user_id = 12) AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND (user_id = 65 OR user_id = 12) AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + WHERE (user_id = 65 OR user_id = 12) + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 2 | 2 | 38.5000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60) + AND user_id = 7; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+-------------------- + 1 | 1 | 7.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20 AND (user_id = 7 OR user_id = 20)) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40 AND (user_id = 7 OR user_id = 20)) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60 AND (user_id = 7 OR user_id = 20)) + AND (user_id = 7 OR user_id = 20); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 2 | 2 | 13.5000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id=users_table.user_id) + AND user_id = 61; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 1 | 1 | 61.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND (user_id = 61 OR user_id = 51) AND user_id=users_table.user_id) + AND (user_id = 61 OR user_id = 51); +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 2 | 2 | 56.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND user_id = 96 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 110 | 1 | 96.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND (user_id = 96 OR user_id = 8) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id AND (user_id = 96 OR user_id = 8)) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id AND (user_id = 96 OR user_id = 8)); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 205 | 2 | 55.2195121951219512 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND user_id = 47 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + AND user_id = 47 + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 6 | 1 | 47.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND (user_id = 47 or user_id = 81) + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + AND (user_id = 47 or user_id = 81) + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 7 | 2 | 51.8571428571428571 +(1 row) + + diff --git a/src/test/regress/expected/multi_insert_select_non_pushable_queries.out b/src/test/regress/expected/multi_insert_select_non_pushable_queries.out new file mode 100644 index 000000000..e3c9c0d6b --- /dev/null +++ b/src/test/regress/expected/multi_insert_select_non_pushable_queries.out @@ -0,0 +1,662 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query +------------------------------------ +------------------------------------ +-- not pushable since the JOIN is not an equi join +INSERT INTO agg_results_third (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id != e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event +------------------------------------ +------------------------------------ +-- not pushable since the JOIN is not an equi join left part of the UNION +-- is not equi join +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id != e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +ERROR: Set operations are not allowed in INSERT ... SELECT queries +-- not pushable since the JOIN is not an equi join right part of the UNION +-- is not joined on the partition key +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.event_type + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +ERROR: Set operations are not allowed in INSERT ... SELECT queries +-- the LEFT JOIN conditon is not on the partition column (i.e., is it part_key divided by 2) +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = (t2.user_id)/2) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +ERROR: Set operations are not allowed in INSERT ... SELECT queries +------------------------------------ +------------------------------------ +-- Funnel, grouped by the number of times a user has done an event +------------------------------------ +------------------------------------ +-- not pushable since the right of the UNION query is not joined on +-- the partition key +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id != events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id = subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; +ERROR: Set operations are not allowed in INSERT ... SELECT queries +-- not pushable since the JOIN condition is not equi JOIN +-- (subquery_1 JOIN subquery_2) +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id > subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; +ERROR: Set operations are not allowed in INSERT ... SELECT queries +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +-- not pushable since lateral join is not an equi join +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id != u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since lateral join is not on the partition key +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE event_type = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since lateral join is not on the partition key +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time, value_3 as val_3 + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE event_type = u.val_3 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z +------------------------------------ +------------------------------------ +-- not pushable since partition key is NOT IN +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id NOT IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since partition key is not selected from the second subquery +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT value_1 FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since second subquery does not return bare partition key +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT 3 * user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since join is not an euqi join +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id!=users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND event_type = users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Customers who haven’t done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the join is not an equi join +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id!=users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the join is not the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND event_type=users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Customers who have done X and Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 100 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type!=100 AND value_3 > 100 AND user_id=users_table.user_id) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id!=users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the first join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id!=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the second join is not an equi join +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id != users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND event_type = users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.value_1 + GROUP BY user_id + HAVING Count(*) > 2); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Find me all users_table who has done some event and has filters +------------------------------------ +------------------------------------ +-- not pushable due to NOT IN +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id NOT in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since we're not selecting the partition key +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id in + (select value_3 + From users_table + Where value_1 = 15 + And value_2 > 25); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. + + -- not pushable since we're not selecting the partition key + -- from the events table +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And event_type in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Which events_table did people who has done some specific events_table +------------------------------------ +------------------------------------ +-- not pushable due to NOT IN +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id NOT IN (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable due to not selecting the partition key +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id IN (SELECT value_2 from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable due to not comparing user id from the events table +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE event_type IN (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Find my assets that have the highest probability and fetch their metadata +------------------------------------ +------------------------------------ +-- not pushable since the join is not an equi join +INSERT INTO agg_results_third(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id != ma.user_id and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the join is not on the partition key +INSERT INTO agg_results_third(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id = ma.value_2 and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. diff --git a/src/test/regress/input/multi_insert_select_behavioral_analytics_create_table.source b/src/test/regress/input/multi_insert_select_behavioral_analytics_create_table.source new file mode 100644 index 000000000..e68fe2edf --- /dev/null +++ b/src/test/regress/input/multi_insert_select_behavioral_analytics_create_table.source @@ -0,0 +1,43 @@ +-- +-- multi insert select behavioral analytics +-- this file is intended to create the table requires for the tests +-- + +ALTER SEQUENCE pg_catalog.pg_dist_shardid_seq RESTART 1400000; +ALTER SEQUENCE pg_catalog.pg_dist_jobid_seq RESTART 1400000; + +SET citus.shard_replication_factor = 1; +SET citus.shard_count = 4; + +CREATE TABLE users_table (user_id int, time timestamp, value_1 int, value_2 int, value_3 float, value_4 bigint); +SELECT create_distributed_table('users_table', 'user_id'); + +CREATE TABLE events_table (user_id int, time timestamp, event_type int, value_2 int, value_3 float, value_4 bigint); +SELECT create_distributed_table('events_table', 'user_id'); + +CREATE TABLE agg_results (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results', 'user_id'); + +-- we need this to improve the concurrency on the regression tests +CREATE TABLE agg_results_second (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_second', 'user_id'); + +-- same as agg_results_second +CREATE TABLE agg_results_third (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_third', 'user_id'); + +-- same as agg_results_second +CREATE TABLE agg_results_fourth (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_fourth', 'user_id'); + +COPY users_table FROM '@abs_srcdir@/data/users_table.data' WITH CSV; +COPY events_table FROM '@abs_srcdir@/data/events_table.data' WITH CSV; + +-- create indexes for +CREATE INDEX is_index1 ON users_table(user_id); +CREATE INDEX is_index2 ON events_table(user_id); +CREATE INDEX is_index3 ON users_table(value_1); +CREATE INDEX is_index4 ON events_table(event_type); +CREATE INDEX is_index5 ON users_table(value_2); +CREATE INDEX is_index6 ON events_table(value_2); + diff --git a/src/test/regress/multi_schedule b/src/test/regress/multi_schedule index 986ccce31..3ffb820be 100644 --- a/src/test/regress/multi_schedule +++ b/src/test/regress/multi_schedule @@ -30,6 +30,8 @@ test: multi_create_table_constraints test: multi_master_protocol test: multi_load_data +test: multi_insert_select_behavioral_analytics_create_table +test: multi_insert_select_behavioral_analytics_basics multi_insert_select_behavioral_analytics_single_shard_queries multi_insert_select_non_pushable_queries test: multi_insert_select # ---------- diff --git a/src/test/regress/output/multi_insert_select_behavioral_analytics_create_table.source b/src/test/regress/output/multi_insert_select_behavioral_analytics_create_table.source new file mode 100644 index 000000000..c149e77a8 --- /dev/null +++ b/src/test/regress/output/multi_insert_select_behavioral_analytics_create_table.source @@ -0,0 +1,64 @@ +-- +-- multi insert select behavioral analytics +-- this file is intended to create the table requires for the tests +-- +ALTER SEQUENCE pg_catalog.pg_dist_shardid_seq RESTART 1400000; +ALTER SEQUENCE pg_catalog.pg_dist_jobid_seq RESTART 1400000; +SET citus.shard_replication_factor = 1; +SET citus.shard_count = 4; +CREATE TABLE users_table (user_id int, time timestamp, value_1 int, value_2 int, value_3 float, value_4 bigint); +SELECT create_distributed_table('users_table', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +CREATE TABLE events_table (user_id int, time timestamp, event_type int, value_2 int, value_3 float, value_4 bigint); +SELECT create_distributed_table('events_table', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +CREATE TABLE agg_results (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +-- we need this to improve the concurrency on the regression tests +CREATE TABLE agg_results_second (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_second', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +-- same as agg_results_second +CREATE TABLE agg_results_third (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_third', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +-- same as agg_results_second +CREATE TABLE agg_results_fourth (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_fourth', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +COPY users_table FROM '@abs_srcdir@/data/users_table.data' WITH CSV; +COPY events_table FROM '@abs_srcdir@/data/events_table.data' WITH CSV; +-- create indexes for +CREATE INDEX is_index1 ON users_table(user_id); +NOTICE: using one-phase commit for distributed DDL commands +HINT: You can enable two-phase commit for extra safety with: SET citus.multi_shard_commit_protocol TO '2pc' +CREATE INDEX is_index2 ON events_table(user_id); +CREATE INDEX is_index3 ON users_table(value_1); +CREATE INDEX is_index4 ON events_table(event_type); +CREATE INDEX is_index5 ON users_table(value_2); +CREATE INDEX is_index6 ON events_table(value_2); diff --git a/src/test/regress/sql/multi_insert_select.sql b/src/test/regress/sql/multi_insert_select.sql index 6580f9e21..f1f68c7fb 100644 --- a/src/test/regress/sql/multi_insert_select.sql +++ b/src/test/regress/sql/multi_insert_select.sql @@ -22,6 +22,9 @@ SELECT create_distributed_table('agg_events', 'user_id');; CREATE TABLE reference_table (user_id int); SELECT create_reference_table('reference_table'); +CREATE TABLE insert_select_varchar_test (key varchar, value int); +SELECT create_distributed_table('insert_select_varchar_test', 'key', 'hash'); + -- set back to the defaults SET citus.shard_count = DEFAULT; SET citus.shard_replication_factor = DEFAULT; @@ -1063,7 +1066,193 @@ ON (f.id = f2.id) WHERE f.id IN (SELECT value_1 FROM raw_events_second); +-- some more semi-anti join tests +-- join in where +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN (SELECT raw_events_second.user_id + FROM raw_events_second, raw_events_first + WHERE raw_events_second.user_id = raw_events_first.user_id AND raw_events_first.user_id = 200); + +-- we cannot push this down since it is NOT IN +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id NOT IN (SELECT raw_events_second.user_id + FROM raw_events_second, raw_events_first + WHERE raw_events_second.user_id = raw_events_first.user_id AND raw_events_first.user_id = 200); + + +-- safe to push down +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE EXISTS (SELECT 1 + FROM raw_events_second + WHERE raw_events_second.user_id =raw_events_first.user_id); + +-- we cannot push down +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE NOT EXISTS (SELECT 1 + FROM raw_events_second + WHERE raw_events_second.user_id =raw_events_first.user_id); + + +-- more complex LEFT JOINs + INSERT INTO agg_events + (user_id, value_4_agg) + SELECT + outer_most.id, max(outer_most.value) + FROM + ( + SELECT f2.id as id, f2.v4 as value FROM + (SELECT + id + FROM (SELECT raw_events_first.user_id AS id + FROM raw_events_first LEFT JOIN + reference_table + ON (raw_events_first.user_id = reference_table.user_id)) AS foo) as f + LEFT JOIN + (SELECT v4, + v1, + id + FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 + ON (f.id = f2.id)) as outer_most + GROUP BY + outer_most.id; + + +-- cannot push down since the f.id IN is matched with value_1 +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT value_1 + FROM raw_events_second)); + +-- same as above, but this time is it safe to push down since +-- f.id IN is matched with user_id +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); + +-- cannot push down since top level user_id is matched with NOT IN +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id NOT IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); + +-- cannot push down since join is not equi join (f.id > f2.id) +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id > f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); -- we currently not support grouping sets INSERT INTO agg_events @@ -1198,8 +1387,30 @@ SET client_min_messages TO DEBUG2; -- this should also work INSERT INTO raw_events_first SELECT * FROM raw_events_second WHERE user_id = 5; - SET client_min_messages TO INFO; + +-- now do some tests with varchars +INSERT INTO insert_select_varchar_test VALUES ('test_1', 10); +INSERT INTO insert_select_varchar_test VALUES ('test_2', 30); + +INSERT INTO insert_select_varchar_test (key, value) +SELECT *, 100 +FROM (SELECT f1.key + FROM (SELECT key + FROM insert_select_varchar_test + GROUP BY 1 + HAVING Count(key) < 3) AS f1, + (SELECT key + FROM insert_select_varchar_test + GROUP BY 1 + HAVING Sum(COALESCE(insert_select_varchar_test.value, 0)) > + 20.0) + AS f2 + WHERE f1.key = f2.key + GROUP BY 1) AS foo; + +SELECT * FROM insert_select_varchar_test; + -- some tests with DEFAULT columns and constant values -- this test is mostly importantly intended for deparsing the query correctly -- but still it is preferable to have this test here instead of multi_deparse_shard_query diff --git a/src/test/regress/sql/multi_insert_select_behavioral_analytics_basics.sql b/src/test/regress/sql/multi_insert_select_behavioral_analytics_basics.sql new file mode 100644 index 000000000..b8ad4baa7 --- /dev/null +++ b/src/test/regress/sql/multi_insert_select_behavioral_analytics_basics.sql @@ -0,0 +1,420 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query +------------------------------------ +------------------------------------ +INSERT INTO agg_results (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + +-- get some statistics from the aggregated results to ensure the results are correct +-- SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Funnel, grouped by the number of times a user has done an event +------------------------------------ +------------------------------------ + +TRUNCATE agg_results; + +INSERT INTO agg_results (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id = subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; + +-- get some statistics from the aggregated results to ensure the results are correct +-- SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z +------------------------------------ +------------------------------------ + +TRUNCATE agg_results; + +INSERT INTO agg_results (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in at least two of X and Y and Z segments +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id) +SELECT user_id +FROM users_table +WHERE (value_1 = 10 + OR value_1 = 11 + OR value_1 = 12) +GROUP BY user_id +HAVING count(distinct value_1) >= 2; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Customers who haven’t done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Customers who have done X and Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 100 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type!=100 AND value_3 > 100 AND user_id=users_table.user_id) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Find me all users_table who logged in more than once +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_1_agg) +SELECT user_id, value_1 from +( + SELECT user_id, value_1 From users_table + WHERE value_2 > 100 and user_id = 15 GROUP BY value_1, user_id HAVING count(*) > 1 +) as a; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Find me all users_table who has done some event and has filters +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Which events_table did people who has done some specific events_table +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id in (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Find me all the users_table who has done some event more than three times +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id) +select user_id from +( + select + user_id + from + events_table +where event_type = 901 group by user_id having count(*) > 3 +) as a; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Find my assets that have the highest probability and fetch their metadata +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id = ma.user_id and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + \ No newline at end of file diff --git a/src/test/regress/sql/multi_insert_select_behavioral_analytics_single_shard_queries.sql b/src/test/regress/sql/multi_insert_select_behavioral_analytics_single_shard_queries.sql new file mode 100644 index 000000000..ede431ee5 --- /dev/null +++ b/src/test/regress/sql/multi_insert_select_behavioral_analytics_single_shard_queries.sql @@ -0,0 +1,401 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q +WHERE user_id = 20; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Vanilla funnel query -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id AND + (u.user_id = 13 OR u.user_id = 20) AND + (e.user_id = 13 OR e.user_id = 20) + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q +WHERE (user_id = 13 OR user_id = 20); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event -- single shard query +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + WHERE t1.user_id = 20 + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event -- two shards query +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE + (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + WHERE (t1.user_id = 20 OR t1.user_id = 17) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + +-- get some statistics from the aggregated results to ensure the results are correct +-- SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table -- single shard query +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + WHERE user_id = 65 + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table -- two shards query +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + (user_id = 65 OR user_id = 12) AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND (user_id = 65 OR user_id = 12) AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + WHERE (user_id = 65 OR user_id = 12) + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z -- single shard +------------------------------------ +------------------------------------ + +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60) + AND user_id = 7; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z -- two shards +------------------------------------ +------------------------------------ + +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20 AND (user_id = 7 OR user_id = 20)) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40 AND (user_id = 7 OR user_id = 20)) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60 AND (user_id = 7 OR user_id = 20)) + AND (user_id = 7 OR user_id = 20); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id=users_table.user_id) + AND user_id = 61; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND (user_id = 61 OR user_id = 51) AND user_id=users_table.user_id) + AND (user_id = 61 OR user_id = 51); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND user_id = 96 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND (user_id = 96 OR user_id = 8) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id AND (user_id = 96 OR user_id = 8)) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id AND (user_id = 96 OR user_id = 8)); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND user_id = 47 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + AND user_id = 47 + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND (user_id = 47 or user_id = 81) + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + AND (user_id = 47 or user_id = 81) + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + \ No newline at end of file diff --git a/src/test/regress/sql/multi_insert_select_non_pushable_queries.sql b/src/test/regress/sql/multi_insert_select_non_pushable_queries.sql new file mode 100644 index 000000000..c7089903b --- /dev/null +++ b/src/test/regress/sql/multi_insert_select_non_pushable_queries.sql @@ -0,0 +1,651 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query +------------------------------------ +------------------------------------ + +-- not pushable since the JOIN is not an equi join +INSERT INTO agg_results_third (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id != e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q; + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event +------------------------------------ +------------------------------------ + +-- not pushable since the JOIN is not an equi join left part of the UNION +-- is not equi join +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id != e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + +-- not pushable since the JOIN is not an equi join right part of the UNION +-- is not joined on the partition key +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.event_type + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + +-- the LEFT JOIN conditon is not on the partition column (i.e., is it part_key divided by 2) +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + + ) t2 ON (t1.user_id = (t2.user_id)/2) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + +------------------------------------ +------------------------------------ +-- Funnel, grouped by the number of times a user has done an event +------------------------------------ +------------------------------------ + +-- not pushable since the right of the UNION query is not joined on +-- the partition key +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id != events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id = subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; + +-- not pushable since the JOIN condition is not equi JOIN +-- (subquery_1 JOIN subquery_2) +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id > subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +-- not pushable since lateral join is not an equi join +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id != u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +-- not pushable since lateral join is not on the partition key +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE event_type = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +-- not pushable since lateral join is not on the partition key +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time, value_3 as val_3 + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE event_type = u.val_3 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z +------------------------------------ +------------------------------------ + +-- not pushable since partition key is NOT IN +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id NOT IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); + +-- not pushable since partition key is not selected from the second subquery +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT value_1 FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); + +-- not pushable since second subquery does not return bare partition key +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT 3 * user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ + +-- not pushable since join is not an euqi join +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id!=users_table.user_id); + +-- not pushable since the join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND event_type = users_table.user_id); + +------------------------------------ +------------------------------------ +-- Customers who haven’t done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the join is not an equi join +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id!=users_table.user_id); + +-- not pushable since the join is not the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND event_type=users_table.user_id); + +------------------------------------ +------------------------------------ +-- Customers who have done X and Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 100 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type!=100 AND value_3 > 100 AND user_id=users_table.user_id) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id!=users_table.user_id); + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ + +-- not pushable since the first join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id!=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ + +-- not pushable since the second join is not an equi join +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id != users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); + +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND event_type = users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); + +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.value_1 + GROUP BY user_id + HAVING Count(*) > 2); + +------------------------------------ +------------------------------------ +-- Find me all users_table who has done some event and has filters +------------------------------------ +------------------------------------ + +-- not pushable due to NOT IN +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id NOT in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); + +-- not pushable since we're not selecting the partition key +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id in + (select value_3 + From users_table + Where value_1 = 15 + And value_2 > 25); + + -- not pushable since we're not selecting the partition key + -- from the events table +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And event_type in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); + +------------------------------------ +------------------------------------ +-- Which events_table did people who has done some specific events_table +------------------------------------ +------------------------------------ + +-- not pushable due to NOT IN +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id NOT IN (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; + +-- not pushable due to not selecting the partition key +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id IN (SELECT value_2 from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; + +-- not pushable due to not comparing user id from the events table +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE event_type IN (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; + +------------------------------------ +------------------------------------ +-- Find my assets that have the highest probability and fetch their metadata +------------------------------------ +------------------------------------ + +-- not pushable since the join is not an equi join +INSERT INTO agg_results_third(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id != ma.user_id and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50; + +-- not pushable since the join is not on the partition key +INSERT INTO agg_results_third(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id = ma.value_2 and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50;