diff options
Diffstat (limited to 'doc')
23 files changed, 5711 insertions, 2 deletions
diff --git a/doc/bird.sgml b/doc/bird.sgml index c8f80c46..3f6acaed 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -1,7 +1,7 @@ <!doctype birddoc system> <!-- - BIRD 2.0 documentation + BIRD 3.0 documentation This documentation can have 4 forms: sgml (this is master copy), html, ASCII text and dvi/postscript (generated from sgml using sgmltools). You should always @@ -20,7 +20,7 @@ configuration - something in config which is not keyword. <book> -<title>BIRD 2.0 User's Guide +<title>BIRD 3.0 User's Guide <author> Ondrej Filip <it/<feela@network.cz>/, Martin Mares <it/<mj@ucw.cz>/, diff --git a/doc/threads/.gitignore b/doc/threads/.gitignore new file mode 100644 index 00000000..23f832b7 --- /dev/null +++ b/doc/threads/.gitignore @@ -0,0 +1,2 @@ +*.html +*.pdf diff --git a/doc/threads/00_filter_structure.png b/doc/threads/00_filter_structure.png Binary files differnew file mode 100644 index 00000000..a61603cb --- /dev/null +++ b/doc/threads/00_filter_structure.png diff --git a/doc/threads/00_the_name_of_the_game.md b/doc/threads/00_the_name_of_the_game.md new file mode 100644 index 00000000..ddc4f638 --- /dev/null +++ b/doc/threads/00_the_name_of_the_game.md @@ -0,0 +1,114 @@ +# BIRD Journey to Threads. Chapter 0: The Reason Why. + +BIRD is a fast, robust and memory-efficient routing daemon designed and +implemented at the end of 20th century. Its concept of multiple routing +tables with pipes between them, as well as a procedural filtering language, +has been unique for a long time and is still one of main reasons why people use +BIRD for big loads of routing data. + +## IPv4 / IPv6 duality: Solved + +The original design of BIRD has also some drawbacks. One of these was an idea +of two separate daemons – one BIRD for IPv4 and another BIRD for IPv6, built from the same +codebase, cleverly using `#ifdef IPV6` constructions to implement the +common parts of BIRD algorithms and data structures only once. +If IPv6 adoption went forward as people thought in that time, +it would work; after finishing the worldwide transition to IPv6, people could +just stop building BIRD for IPv4 and drop the `#ifdef`-ed code. + +The history went other way, however. BIRD developers therefore decided to *integrate* +these two versions into one daemon capable of any address family, allowing for +not only IPv6 but for virtually anything. This rework brought quite a lot of +backward-incompatible changes, therefore we decided to release it as a version 2.0. +This work was mostly finished in 2018 and as for March 2021, we have already +switched the 1.6.x branch to a bugfix-only mode. + +## BIRD is single-threaded now + +The second drawback is a single-threaded design. Looking back to 1998, this was +a good idea. A common PC had one single core and BIRD was targeting exactly +this segment. As the years went by, the manufacturers launched multicore x86 chips +(AMD Opteron in 2004, Intel Pentium D in 2005). This ultimately led to a world +where as of March 2021, there is virtually no new PC sold with a single-core CPU. + +Together with these changes, the speed of one single core has not been growing as fast +as the Internet is growing. BIRD is still capable to handle the full BGP table +(868k IPv4 routes in March 2021) with one core, anyway when BIRD starts, it may take +long minutes to converge. + +## Intermezzo: Filters + +In 2018, we took some data we had from large internet exchanges and simulated +a cold start of BIRD as a route server. We used `linux-perf` to find most time-critical +parts of BIRD and it pointed very clearly to the filtering code. It also showed that the +IPv4 version of BIRD v1.6.x is substantially faster than the *integrated* version, while +the IPv6 version was quite as fast as the *integrated* one. + +Here we should show a little bit more about how the filters really work. Let's use +an example of a simple filter: + +``` +filter foo { + if net ~ [10.0.0.0/8+] then reject; + preference = 2 * preference - 41; + accept; +} +``` + +This filter gets translated to an infix internal structure. + +![Example of filter internal representation](00_filter_structure.png) + +When executing, the filter interpreter just walks the filter internal structure recursively in the +right order, executes the instructions, collects their results and finishes by +either rejection or acceptation of the route + +## Filter rework + +Further analysis of the filter code revealed an absurdly-looking result. The +most executed parts of the interpreter function were the `push` CPU +instructions on its very beginning and the `pop` CPU instructions on its very +end. This came from the fact that the interpreter function was quite long, yet +most of the filter instructions used an extremely short path, doing all the +stack manipulation at the beginning, branching by the filter instruction type, +then it executed just several CPU instructions, popped everything from the +stack back and returned. + +After some thoughts how to minimize stack manipulation when everything you need +is to take two numbers and multiply them, we decided to preprocess the filter +internal structure to another structure which is much easier to execute. The +interpreter is now using a data stack and behaves generally as a +postfix-ordered language. We also thought about Lua which showed up to be quite +a lot of work implementing all the glue achieving about the same performance. + +After these changes, we managed to reduce the filter execution time by 10–40%, +depending on how complex the filter is. +Anyway, even this reduction is quite too little when there is one CPU core +running for several minutes while others are sleeping. + +## We need more threads + +As a side effect of the rework, the new filter interpreter is also completely +thread-safe. It seemed to be the way to go – running the filters in parallel +while keeping everything else single-threaded. The main problem of this +solution is a too fine granularity of parallel jobs. We would spend lots of +time on synchronization overhead. + +The only filter parallel execution was also too one-sided, useful only for +configurations with complex filters. In other cases, the major problem is best +route recalculation, OSPF recalculation or also kernel synchronization. +It also turned out to be dirty a lot from the code cleanliness' point of view. + +Therefore we chose to make BIRD multithreaded completely. We designed a way how +to gradually enable parallel computation and best usage of all available CPU +cores. Our goals are three: + +* We want to keep current functionality. Parallel computation should never drop + a useful feature. +* We want to do little steps. No big reworks, even though even the smallest + possible step will need quite a lot of refactoring before. +* We want to be backwards compatible as much as possible. + +*It's still a long road to the version 2.1. This series of texts should document +what is needed to be changed, why we do it and how. In the next chapter, we're +going to describe the structures for routes and their attributes. Stay tuned!* diff --git a/doc/threads/01_the_route_and_its_attributes.md b/doc/threads/01_the_route_and_its_attributes.md new file mode 100644 index 00000000..079eb365 --- /dev/null +++ b/doc/threads/01_the_route_and_its_attributes.md @@ -0,0 +1,159 @@ +# BIRD Journey to Threads. Chapter 1: The Route and its Attributes + +BIRD is a fast, robust and memory-efficient routing daemon designed and +implemented at the end of 20th century. We're doing a significant amount of +BIRD's internal structure changes to make it possible to run in multiple +threads in parallel. This chapter covers necessary changes of data structures +which store every single routing data. + +*If you want to see the changes in code, look (basically) into the +`route-storage-updates` branch. Not all of them are already implemented, anyway +most of them are pretty finished as of end of March, 2021.* + +## How routes are stored + +BIRD routing table is just a hierarchical noSQL database. On top level, the +routes are keyed by their destination, called *net*. Due to historic reasons, +the *net* is not only *IPv4 prefix*, *IPv6 prefix*, *IPv4 VPN prefix* etc., +but also *MPLS label*, *ROA information* or *BGP Flowspec record*. As there may +be several routes for each *net*, an obligatory part of the key is *src* aka. +*route source*. The route source is a tuple of the originating protocol +instance and a 32-bit unsigned integer. If a protocol wants to withdraw a route, +it is enough and necessary to have the *net* and *src* to identify what route +is to be withdrawn. + +The route itself consists of (basically) a list of key-value records, with +value types ranging from a 16-bit unsigned integer for preference to a complex +BGP path structure. The keys are pre-defined by protocols (e.g. BGP path or +OSPF metrics), or by BIRD core itself (preference, route gateway). +Finally, the user can declare their own attribute keys using the keyword +`attribute` in config. + +## Attribute list implementation + +Currently, there are three layers of route attributes. We call them *route* +(*rte*), *attributes* (*rta*) and *extended attributes* (*ea*, *eattr*). + +The first layer, *rte*, contains the *net* pointer, several fixed-size route +attributes (mostly preference and protocol-specific metrics), flags, lastmod +time and a pointer to *rta*. + +The second layer, *rta*, contains the *src* (a pointer to a singleton instance), +a route gateway, several other fixed-size route attributes and a pointer to +*ea* list. + +The third layer, *ea* list, is a variable-length list of key-value attributes, +containing all the remaining route attributes. + +Distribution of the route attributes between the attribute layers is somehow +arbitrary. Mostly, in the first and second layer, there are attributes that +were thought to be accessed frequently (e.g. in best route selection) and +filled in in most routes, while the third layer is for infrequently used +and/or infrequently accessed route attributes. + +## Attribute list deduplication + +When protocols originate routes, there are commonly more routes with the +same attribute list. BIRD could ignore this fact, anyway if you have several +tables connected with pipes, it is more memory-efficient to store the same +attribute lists only once. + +Therefore, the two lower layers (*rta* and *ea*) are hashed and stored in a +BIRD-global database. Routes (*rte*) contain a pointer to *rta* in this +database, maintaining a use-count of each *rta*. Attributes (*rta*) contain +a pointer to normalized (sorted by numerical key ID) *ea*. + +## Attribute list rework + +The first thing to change is the distribution of route attributes between +attribute list layers. We decided to make the first layer (*rte*) only the key +and other per-record internal technical information. Therefore we move *src* to +*rte* and preference to *rta* (beside other things). *This is already done.* + +We also found out that the nexthop (gateway), originally one single IP address +and an interface, has evolved to a complex attribute with several sub-attributes; +not only considering multipath routing but also MPLS stacks and other per-route +attributes. This has led to a too complex data structure holding the nexthop set. + +We decided finally to squash *rta* and *ea* to one type of data structure, +allowing for completely dynamic route attribute lists. This is also supported +by adding other *net* types (BGP FlowSpec or ROA) where lots of the fields make +no sense at all, yet we still want to use the same data structures and implementation +as we don't like duplicating code. *Multithreading doesn't depend on this change, +anyway this change is going to happen soon anyway.* + +## Route storage + +The process of route import from protocol into a table can be divided into several phases: + +1. (In protocol code.) Create the route itself (typically from + protocol-internal data) and choose the right channel to use. +2. (In protocol code.) Create the *rta* and *ea* and obtain an appropriate + hashed pointer. Allocate the *rte* structure and fill it in. +3. (Optionally.) Store the route to the *import table*. +4. Run filters. If reject, free everything. +5. Check whether this is a real change (it may be idempotent). If not, free everything and do nothing more. +6. Run the best route selection algorithm. +7. Execute exports if needed. + +We found out that the *rte* structure allocation is done too early. BIRD uses +global optimized allocators for fixed-size blocks (which *rte* is) to reduce +its memory footprint, therefore the allocation of *rte* structure would be a +synchronization point in multithreaded environment. + +The common code is also much more complicated when we have to track whether the +current *rte* has to be freed or not. This is more a problem in export than in +import as the export filter can also change the route (and therefore allocate +another *rte*). The changed route must be therefore freed after use. All the +route changing code must also track whether this route is writable or +read-only. + +We therefore introduce a variant of *rte* called *rte_storage*. Both of these +hold the same, the layer-1 route information (destination, author, cached +attribute pointer, flags etc.), anyway *rte* is always local and *rte_storage* +is intended to be put in global data structures. + +This change allows us to remove lots of the code which only tracks whether any +*rte* is to be freed as *rte*'s are almost always allocated on-stack, naturally +limiting their lifetime. If not on-stack, it's the responsibility of the owner +to free the *rte* after import is done. + +This change also removes the need for *rte* allocation in protocol code and +also *rta* can be safely allocated on-stack. As a result, protocols can simply +allocate all the data on stack, call the update routine and the common code in +BIRD's *nest* does all the storage for them. + +Allocating *rta* on-stack is however not required. BGP and OSPF use this to +import several routes with the same attribute list. In BGP, this is due to the +format of BGP update messages containing first the attributes and then the +destinations (BGP NLRI's). In OSPF, in addition to *rta* deduplication, it is +also presumed that no import filter (or at most some trivial changes) is applied +as OSPF would typically not work well when filtered. + +*This change is already done.* + +## Route cleanup and table maintenance + +In some cases, the route update is not originated by a protocol/channel code. +When the channel shuts down, all routes originated by that channel are simply +cleaned up. Also routes with recursive routes may get changed without import, +simply by changing the IGP route. + +This is currently done by a `rt_event` (see `nest/rt-table.c` for source code) +which is to be converted to a parallel thread, running when nobody imports any +route. *This change is freshly done in branch `guernsey`.* + +## Parallel protocol execution + +The long-term goal of these reworks is to allow for completely independent +execution of all the protocols. Typically, there is no direct interaction +between protocols; everything is done thought BIRD's *nest*. Protocols should +therefore run in parallel in future and wait/lock only when something is needed +to do externally. + +We also aim for a clean and documented protocol API. + +*It's still a long road to the version 2.1. This series of texts should document +what is needed to be changed, why we do it and how. In the next chapter, we're +going to describe how the route is exported from table to protocols and how this +process is changing. Stay tuned!* diff --git a/doc/threads/02_asynchronous_export.md b/doc/threads/02_asynchronous_export.md new file mode 100644 index 00000000..62e4ea9f --- /dev/null +++ b/doc/threads/02_asynchronous_export.md @@ -0,0 +1,463 @@ +# BIRD Journey to Threads. Chapter 2: Asynchronous route export + +Route export is a core algorithm of BIRD. This chapter covers how we are making +this procedure multithreaded. Desired outcomes are mostly lower latency of +route import, flap dampening and also faster route processing in large +configurations with lots of export from one table. + +BIRD is a fast, robust and memory-efficient routing daemon designed and +implemented at the end of 20th century. We're doing a significant amount of +BIRD's internal structure changes to make it possible to run in multiple +threads in parallel. + +## How routes are propagated through BIRD + +In the [previous chapter](https://en.blog.nic.cz/2021/03/23/bird-journey-to-threads-chapter-1-the-route-and-its-attributes/), you could learn how the route import works. We should +now extend that process by the route export. + +1. (In protocol code.) Create the route itself and propagate it through the + right channel by calling `rte_update`. +2. The channel runs its import filter. +3. New best route is selected. +4. For each channel: + 1. The channel runs its preexport hook and export filter. + 2. (Optionally.) The channel merges the nexthops to create an ECMP route. + 3. The channel calls the protocol's `rt_notify` hook. +5. After all exports are finished, the `rte_update` call finally returns and + the source protocol may do anything else. + +Let's imagine that all the protocols are running in parallel. There are two +protocols with a route prepared to import. One of those wins the table lock, +does the import and then the export touches the other protocol which must +either: + +* store the route export until it finishes its own imports, or +* have independent import and export parts. + +Both of these conditions are infeasible for common use. Implementing them would +make protocols much more complicated with lots of new code to test and release +at once and also quite a lot of corner cases. Risk of deadlocks is also worth +mentioning. + +## Asynchronous route export + +We decided to make it easier for protocols and decouple the import and export +this way: + +1. The import is done. +2. Best route is selected. +3. Resulting changes are stored. + +Then, after the importing protocol returns, the exports are processed for each +exporting channel in parallel: Some protocols +may process the export directly after it is stored, other protocols wait +until they finish another job. + +This eliminates the risk of deadlocks and all protocols' `rt_notify` hooks can +rely on their independence. There is only one question. How to store the changes? + +## Route export modes + +To find a good data structure for route export storage, we shall first know the +readers. The exporters may request different modes of route export. + +### Export everything + +This is the most simple route export mode. The exporter wants to know about all +the routes as they're changing. We therefore simply store the old route until +the change is fully exported and then we free the old stored route. + +To manage this, we can simply queue the changes one after another and postpone +old route cleanup after all channels have exported the change. The queue member +would look like this: + +``` +struct { + struct rte_storage *new; + struct rte_storage *old; +}; +``` + +### Export best + +This is another simple route export mode. We check whether the best route has +changed; if not, no export happens. Otherwise, the export is propagated as the +old best route changing to the new best route. + +To manage this, we could use the queue from the previous point by adding new +best and old best pointers. It is guaranteed that both the old best and new +best pointers are always valid in time of export as all the changes in them +must be stored in future changes which have not been exported yet by this +channel and therefore not freed yet. + +``` +struct { + struct rte_storage *new; + struct rte_storage *new_best; + struct rte_storage *old; + struct rte_storage *old_best; +}; +``` + +Anyway, we're getting to the complicated export modes where this simple +structure is simply not enough. + +### Export merged + +Here we're getting to some kind of problems. The exporting channel requests not +only the best route but also all routes that are good enough to be considered +ECMP-eligible (we call these routes *mergable*). The export is then just one +route with just the nexthops merged. Export filters are executed before +merging and if the best route is rejected, nothing is exported at all. + +To achieve this, we have to re-evaluate export filters any time the best route +or any mergable route changes. Until now, the export could just do what it wanted +as there was only one thread working. To change this, we need to access the +whole route list and process it. + +### Export first accepted + +In this mode, the channel runs export filters on a sorted list of routes, best first. +If the best route gets rejected, it asks for the next one until it finds an +acceptable route or exhausts the list. This export mode requires a sorted table. +BIRD users may know this export mode as `secondary` in BGP. + +For now, BIRD stores two bits per route for each channel. The *export bit* is set +if the route has been really exported to that channel. The *reject bit* is set +if the route was rejected by the export filter. + +When processing a route change for accepted, the algorithm first checks the +export bit for the old route. If this bit is set, the old route is that one +exported so we have to find the right one to export. Therefore the sorted route +list is walked best to worst to find a new route to export, using the reject +bit to evaluate only routes which weren't rejected in previous runs of this +algorithm. + +If the old route bit is not set, the algorithm walks the sorted route list best +to worst, checking the position of new route with respect to the exported route. +If the new route is worse, nothing happens, otherwise the new route is sent to +filters and finally exported if passes. + +### Export by feed + +To resolve problems arising from previous two export modes (merged and first accepted), +we introduce a way to process a whole route list without locking the table +while export filters are running. To achieve this, we follow this algorithm: + +1. The exporting channel sees a pending export. +2. *The table is locked.* +3. All routes (pointers) for the given destination are dumped to a local array. +4. Also first and last pending exports for the given destination are stored. +5. *The table is unlocked.* +6. The channel processes the local array of route pointers. +7. All pending exports between the first and last stored (incl.) are marked as processed to allow for cleanup. + +After unlocking the table, the pointed-to routes are implicitly guarded by the +sole fact that no pending export has not yet been processed by all channels +and the cleanup routine frees only resources after being processed. + +The pending export range must be stored together with the feed. While +processing export filters for the feed, another export may come in. We +must process the export once again as the feed is now outdated, therefore we +must mark only these exports that were pending for this destination when the +feed was being stored. We also can't mark them before actually processing them +as they would get freed inbetween. + +## Pending export data structure + +As the two complicated export modes use the export-by-feed algorithm, the +pending export data structure may be quite minimalistic. + +``` +struct rt_pending_export { + struct rt_pending_export * _Atomic next; /* Next export for the same destination */ + struct rte_storage *new; /* New route */ + struct rte_storage *new_best; /* New best route in unsorted table */ + struct rte_storage *old; /* Old route */ + struct rte_storage *old_best; /* Old best route in unsorted table */ + _Atomic u64 seq; /* Sequential ID (table-local) of the pending export */ +}; +``` + +To allow for squashing outdated pending exports (e.g. for flap dampening +purposes), there is a `next` pointer to the next export for the same +destination. This is also needed for the export-by-feed algorithm to traverse +the list of pending exports. + +We should also add several items into `struct channel`. + +``` + struct coroutine *export_coro; /* Exporter and feeder coroutine */ + struct bsem *export_sem; /* Exporter and feeder semaphore */ + struct rt_pending_export * _Atomic last_export; /* Last export processed */ + struct bmap export_seen_map; /* Keeps track which exports were already processed */ + u64 flush_seq; /* Table export seq when the channel announced flushing */ +``` + +To run the exports in parallel, `export_coro` is run and `export_sem` is +used for signalling new exports to it. The exporter coroutine also marks all +seen sequential IDs in its `export_seen_map` to make it possible to skip over +them if seen again. The exporter coroutine is started when export is requested +and stopped when export is stopped. + +There is also a table cleaner routine +(see [previous chapter](https://en.blog.nic.cz/2021/03/23/bird-journey-to-threads-chapter-1-the-route-and-its-attributes/)) +which must cleanup also the pending exports after all the channels are finished with them. +To signal that, there is `last_export` working as a release point: the channel +guarantees that it doesn't touch the pointed-to pending export (or any older), nor any data +from it. + +The last tricky point here is channel flushing. When any channel stops, all its +routes are automatically freed and withdrawals are exported if appropriate. +Until now, the routes could be flushed synchronously, anyway now flush has +several phases, stored in `flush_active` channel variable: + +1. Flush started. +2. Withdrawals for all the channel's routes are issued. + Here the channel stores the `seq` of last current pending export to `flush_seq`) +3. When the table's cleanup routine cleans up the withdrawal with `flush_seq`, + the channel may safely stop and free its structures as all `sender` pointers in routes are now gone. + +Finally, some additional information has to be stored in tables: + +``` + _Atomic byte export_used; /* Export journal cleanup scheduled */ \ + struct rt_pending_export * _Atomic first_export; /* First export to announce */ \ + byte export_scheduled; /* Export is scheduled */ + list pending_exports; /* List of packed struct rt_pending_export */ + struct fib export_fib; /* Auxiliary fib for storing pending exports */ + u64 next_export_seq; /* The next export will have this ID */ +``` + +The exports are: +1. Assigned the `next_export_seq` sequential ID, incrementing this item by one. +2. Put into `pending_exports` and `export_fib` for both sequential and by-destination access. +3. Signalled by setting `export_scheduled` and `first_export`. + +After processing several exports, `export_used` is set and route table maintenance +coroutine is woken up to possibly do cleanup. + +The `struct rt_pending_export` seems to be best allocated by requesting a whole +memory page, containing a common list node, a simple header and packed all the +structures in the rest of the page. This may save a significant amount of memory. +In case of congestion, there will be lots of exports and every spare kilobyte +counts. If BIRD is almost idle, the optimization does nothing on the overall performance. + +## Export algorithm + +As we have explained at the beginning, the current export algorithm is +synchronous and table-driven. The table walks the channel list and propagates the update. +The new export algorithm is channel-driven. The table just indicates that it +has something new in export queue and the channel decides what to do with that and when. + +### Pushing an export + +When a table has something to export, it enqueues an instance of +`struct rt_pending_export` together with updating the `last` pointer (and +possibly also `first`) for this destination's pending exports. + +Then it pings its maintenance coroutine (`rt_event`) to notify the exporting +channels about a new route. Before the maintenance coroutine acquires the table +lock, the importing protocol may e.g. prepare the next route inbetween. +The maintenance coroutine, when it wakes up, walks the list of channels and +wakes their export coroutines. + +These two levels of asynchronicity are here for an efficiency reason. + +1. In case of low table load, the export is announced just after the import happens. +2. In case of table congestion, the export notification locks the table as well + as all route importers, effectively reducing the number of channel list traversals. + +### Processing an export + +After these two pings, the channel finally knows that there is an export pending. + +1. The channel waits for a semaphore. This semaphore is posted by the table + maintenance coroutine. +2. The channel checks whether there is a `last_export` stored. + 1. If yes, it proceeds with the next one. + 2. Otherwise it takes `first_export` from the table. This special + pointer is atomic and can be accessed without locking and also without clashing + with the export cleanup routine. +3. The channel checks its `export_seen_map` whether this export has been + already processed. If so, it goes back to 1. to get the next export. No + action is needed with this one. +4. As now the export is clearly new, the export chain (single-linked list) is + scanned for the current first and last export. This is done by following the + `next` pointer in the exports. +5. If all-routes mode is used, the exports are processed one-by-one. In future + versions, we may employ some simple flap-dampening by checking the pending + export list for the same route src. *No table locking happens.* +6. If best-only mode is employed, just the first and last exports are + considered to find the old and new best routes. The inbetween exports do nothing. *No table locking happens.* +7. If export-by-feed is used, the current state of routes in table are fetched and processed + as described above in the "Export by feed" section. +8. All processed exports are marked as seen. +9. The channel stores the first processed export to `last_export` and returns + to beginning.to wait for next exports. The latter exports are then skipped by + step 3 when the export coroutine gets to them. + +## The full life-cycle of routes + +Until now, we're always assuming that the channels *just exist*. In real life, +any channel may go up or down and we must handle it, flushing the routes +appropriately and freeing all the memory just in time to avoid both +use-after-free and memory leaks. BIRD is written in C which has no garbage +collector or other modern features alike so memory management is a thing. + +### Protocols and channels as viewed from a route + +BIRD consists effectively of protocols and tables. **Protocols** are active parts, +kind-of subprocesses manipulating routes and other data. **Tables** are passive, +serving as a database of routes. To connect a protocol to a table, a +**channel** is created. + +Every route has its `sender` storing the channel which has put the route into +the current table. Therefore we know which routes to flush when a channel goes down. + +Every route also has its `src`, a route source allocated by the protocol which +originated it first. This is kept when a route is passed through a *pipe*. The +route source is always bound to protocol; it is possible that a protocol +announces routes via several channels using the same src. + +Both `src` and `sender` must point to active protocols and channels as inactive +protocols and channels may be deleted any time. + +### Protocol and channel lifecycle + +In the beginning, all channels and protocols are down. Until they fully start, +no route from them is allowed to any table. When the protocol and channel is up, +they may originate and receive routes freely. However, the transitions are worth mentioning. + +### Channel startup and feed + +When protocols and channels start, they need to get the current state of the +appropriate table. Therefore, after a protocol and channel start, also the +export-feed coroutine is initiated. + +Tables can contain millions of routes. It may lead to long import latency if a channel +was feeding itself in one step. The table structure is (at least for now) too +complicated to be implemented as lockless, thus even read access needs locking. +To mitigate this, the feeds are split to allow for regular route propagation +with a reasonable latency. + +When the exports were synchronous, we simply didn't care and just announced the +exports to the channels from the time they started feeding. When making exports +asynchronous, it is crucial to avoid (hopefully) all the possible race conditions +which could arise from simultaneous feed and export. As the feeder routines had +to be rewritten, it is a good opportunity to make this precise. + +Therefore, when a channel goes up, it also starts exports: + +1. Start the feed-export coroutine. +2. *Lock the table.* +3. Store the last export in queue. +4. Read a limited number of routes to local memory together with their pending exports. +5. If there are some routes to process: + 1. *Unlock the table.* + 2. Process the loaded routes. + 3. Set the appropriate pending exports as seen. + 4. *Lock the table* + 5. Go to 4. to continue feeding. +6. If there was a last export stored, load the next one to be processed. Otherwise take the table's `first_export`. +7. *Unlock the table.* +8. Run the exporter loop. + +*Note: There are some nuances not mentioned here how to do things in right +order to avoid missing some events while changing state. For specifics, look +into the code in `nest/rt-table.c` in branch `alderney`.* + +When the feeder loop finishes, it continues smoothly to process all the exports +that have been queued while the feed was running. Step 5.3 ensures that already +seen exports are skipped, steps 3 and 6 ensure that no export is missed. + +### Channel flush + +Protocols and channels need to stop for a handful of reasons, All of these +cases follow the same routine. + +1. (Maybe.) The protocol requests to go down or restart. +2. The channel requests to go down or restart. +3. The channel requests to stop export. +4. In the feed-export coroutine: + 1. At a designated cancellation point, check cancellation. + 2. Clean up local data. + 3. *Lock main BIRD context* + 4. If shutdown requested, switch the channel to *flushing* state and request table maintenance. + 5. *Stop the coroutine and unlock main BIRD context.* +5. In the table maintenance coroutine: + 1. Walk across all channels and check them for *flushing* state, setting `flush_active` to 1. + 2. Walk across the table (split to allow for low latency updates) and + generate a withdrawal for each route sent by the flushing channels. + 3. When all the table is traversed, the flushing channels' `flush_active` is set to 2 and + `flush_seq` is set to the current last export seq. + 3. Wait until all the withdrawals are processed by checking the `flush_seq`. + 4. Mark the flushing channels as *down* and eventually proceed to the protocol shutdown or restart. + +There is also a separate routine that handles bulk cleanup of `src`'s which +contain a pointer to the originating protocol. This routine may get reworked in +future; for now it is good enough. + +### Route export cleanup + +Last but not least is the export cleanup routine. Until now, the withdrawn +routes were exported synchronously and freed directly after the import was +done. This is not possible anymore. The export is stored and the import returns +to let the importing protocol continue its work. We therefore need a routine to +cleanup the withdrawn routes and also the processed exports. + +First of all, this routine refuses to cleanup when any export is feeding or +shutting down. In future, cleanup while feeding should be possible, anyway for +now we aren't sure about possible race conditions. + +Anyway, when all the exports are in a steady state, the routine works as follows: + +1. Walk the active exports and find a minimum (oldest export) between their `last_export` values. +2. If there is nothing to clear between the actual oldest export and channels' oldest export, do nothing. +3. Find the table's new `first_export` and set it. Now there is nobody pointing to the old exports. +4. Free the withdrawn routes. +5. Free the old exports, removing them also from the first-last list of exports for the same destination. + +## Results of these changes + +This step is a first major step to move forward. Using just this version may be +still as slow as the single-threaded version, at least if your export filters are trivial. +Anyway, the main purpose of this step is not an immediate speedup. It is more +of a base for the next steps: + +* Unlocking of pipes should enable parallel execution of all the filters on + pipes, limited solely by the principle *one thread for every direction of + pipe*. +* Conversion of CLI's `show route` to the new feed-export coroutines should + enable faster table queries. Moreover, this approach will allow for + better splitting of model and view in CLI with a good opportunity to + implement more output formats, e.g. JSON. +* Unlocking of kernel route synchronization should fix latency issues induced + by long-lasting kernel queries. +* Partial unlocking of BGP packet processing should allow for parallel + execution in almost all phases of BGP route propagation. +* Partial unlocking of OSPF route recalculation should raise the useful + maximums of topology size. + +The development is now being done mostly in the branch `alderney`. If you asked +why such strange branch names like `jersey`, `guernsey` and `alderney`, here is +a kind-of reason. Yes, these branches could be named `mq-async-export`, +`mq-async-export-new`, `mq-async-export-new-new`, `mq-another-async-export` and +so on. That's so ugly, isn't it? Let's be creative. *Jersey* is an island where a +same-named knit was first produced – and knits are made of *threads*. Then, you +just look into a map and find nearby islands. + +Also why so many branches? The development process is quite messy. BIRD's code +heavily depends on single-threaded approach. This is (in this case) +exceptionally good for performance, as long as you have one thread only. On the +other hand, lots of these assumptions are not documented so in many cases one +desired change yields a chain of other unforeseen changes which must precede. +This brings lots of backtracking, branch rebasing and other Git magic. There is +always a can of worms somewhere in the code. + +*It's still a long road to the version 2.1. This series of texts should document +what is needed to be changed, why we do it and how. The +[previous chapter](https://en.blog.nic.cz/2021/03/23/bird-journey-to-threads-chapter-1-the-route-and-its-attributes/) +showed the necessary changes in route storage. In the next chapter, we're going +to describe how the coroutines are implemented and what kind of locking system +are we employing to prevent deadlocks. Stay tuned!* diff --git a/doc/threads/03_coroutines.md b/doc/threads/03_coroutines.md new file mode 100644 index 00000000..8d8e6c96 --- /dev/null +++ b/doc/threads/03_coroutines.md @@ -0,0 +1,235 @@ +# BIRD Journey to Threads. Chapter 3: Parallel execution and message passing. + +Parallel execution in BIRD uses an underlying mechanism of dedicated IO loops +and hierarchical locks. The original event scheduling module has been converted +to do message passing in multithreaded environment. These mechanisms are +crucial for understanding what happens inside BIRD and how its internal API changes. + +BIRD is a fast, robust and memory-efficient routing daemon designed and +implemented at the end of 20th century. We're doing a significant amount of +BIRD's internal structure changes to make it run in multiple threads in parallel. + +## Locking and deadlock prevention + +Most of BIRD data structures and algorithms are thread-unsafe and not even +reentrant. Checking and possibly updating all of these would take an +unreasonable amount of time, thus the multithreaded version uses standard mutexes +to lock all the parts which have not been checked and updated yet. + +The authors of original BIRD concepts wisely chose a highly modular structure +which allows to create a hierarchy for locks. The main chokepoint was between +protocols and tables and it has been removed by implementing asynchronous exports +as described in the [previous chapter](https://en.blog.nic.cz/2021/06/14/bird-journey-to-threads-chapter-2-asynchronous-route-export/). + +Locks in BIRD (called domains, as they always lock some defined part of BIRD) +are partially ordered. Every *domain* has its *type* and all threads are +strictly required to lock the domains in the order of their respective types. +The full order is defined in `lib/locking.h`. It's forbidden to lock more than +one domain of a type (these domains are uncomparable) and recursive locking is +forbidden as well. + +The locking hiearchy is (roughly; as of February 2022) like this: + +1. The BIRD Lock (for everything not yet checked and/or updated) +2. Protocols (as of February 2022, it is BFD, RPKI, Pipe and BGP) +3. Routing tables +4. Global route attribute cache +5. Message passing +6. Internals and memory management + +There are heavy checks to ensure proper locking and to help debugging any +problem when any code violates the hierarchy rules. This impedes performance +depending on how much that domain is contended and in some cases I have already +implemented lockless (or partially lockless) data structures to overcome this. + +You may ask, why are these heavy checks then employed in production builds? +Risks arising from dropping some locking checks include: + +* deadlocks; these are deadly in BIRD anyway so it should just fail with a meaningful message, or +* data corruption; it either kills BIRD anyway, or it results into a slow and vicious death, + leaving undebuggable corefiles behind. + +To be honest, I believe in principles like *"every nontrivial software has at least one bug"* +and I also don't trust my future self or anybody else to always write bugless code when +it comes to proper locking. I also believe that if a lock becomes a bottle-neck, +then we should think about what is locked inside and how to optimize that, +possibly implementing a lockless or waitless data structure instead of dropping +thorough consistency checks, especially in a multithreaded environment. + +### Choosing the right locking order + +When considering the locking order of protocols and route tables, the answer +was quite easy. We had to make either import or export asynchronous (or both). +Major reasons for asynchronous export have been stated in the previous chapter, +therefore it makes little sense to allow entering protocol context from table code. + +As I write further in this text, even accessing table context from protocol +code leads to contention on table locks, yet for now, it is good enough and the +lock order features routing tables after protocols to make the multithreading +goal easier to achieve. + +The major lock level is still The BIRD Lock, containing not only the +not-yet-converted protocols (like Babel, OSPF or RIP) but also processing CLI +commands and reconfiguration. This involves an awful lot of direct access into +other contexts which would be unnecessarily complicated to implement by message +passing. Therefore, this lock is simply *"the director"*, sitting on the top +with its own category. + +The lower lock levels under routing tables are mostly for shared global data +structures accessed from everywhere. We'll address some of these later. + +## IO Loop + +There has been a protocol, BFD, running in its own thread since 2013. This +separation has a good reason; it needs low latency and the main BIRD loop just +walks round-robin around all the available sockets and one round-trip may take +a long time (even more than a minute with large configurations). BFD had its +own IO loop implementation and simple message passing routines. This code could +be easily updated for general use so I did it. + +To understand the internal principles, we should say that in the `master` +branch, there is a big loop centered around a `poll()` call, dispatching and +executing everything as needed. In the `sark` branch, there are multiple loops +of this kind. BIRD has several means how to get something dispatched from a +loop. + +1. Requesting to read from a **socket** makes the main loop call your hook when there is some data received. + The same happens when a socket refuses to write data. Then the data is buffered and you are called when + the buffer is free to continue writing. There is also a third callback, an error hook, for obvious reasons. + +2. Requesting to be called back after a given amount of time. This is called **timer**. + As is common with all timers, they aren't precise and the callback may be + delayed significantly. This was also the reason to have BFD loop separate + since the very beginning, yet now the abundance of threads may lead to + problems with BFD latency in large-scale configurations. We haven't tested + this yet. + +3. Requesting to be called back from a clean context when possible. This is + useful to run anything not reentrant which might mess with the caller's + data, e.g. when a protocol decides to shutdown due to some inconsistency + in received data. This is called **event**. + +4. Requesting to do some work when possible. These are also events, there is only + a difference where this event is enqueued; in the main loop, there is a + special *work queue* with an execution limit, allowing sockets and timers to be + handled with a reasonable latency while still doing all the work needed. + Other loops don't have designated work queues (we may add them later). + +All these, sockets, timers and events, are tightly bound to some domain. +Sockets typically belong to a protocol, timers and events to a protocol or table. +With the modular structure of BIRD, the easy and convenient approach to multithreading +is to get more IO loops, each bound to a specific domain, running their events, timers and +socket hooks in their threads. + +## Message passing and loop entering + +To request some work in another module, the standard way is to pass a message. +For this purpose, events have been modified to be sent to a given loop without +locking that loop's domain. In fact, every event queue has its own lock with a +low priority, allowing to pass messages from almost any part of BIRD, and also +an assigned loop which executes the events enqueued. When a message is passed +to a queue executed by another loop, that target loop must be woken up so we +must know what loop to wake up to avoid unnecessary delays. Then the target +loop opens its mailbox and processes the task in its context. + +The other way is a direct access of another domain. This approach blocks the +appropriate loop from doing anything and we call it *entering a birdloop* to +remember that the task must be fast and *leave the birdloop* as soon as possible. +Route import is done via direct access from protocols to tables; in large +setups with fast filters, this is a major point of contention (after filters +have been parallelized) and will be addressed in future optimization efforts. +Reconfiguration and interface updates also use direct access; more on that later. +In general, this approach should be avoided unless there are good reasons to use it. + +Even though direct access is bad, sending lots of messages may be even worse. +Imagine one thousand post(wo)men, coming one by one every minute, ringing your +doorbell and delivering one letter each to you. Horrible! Asynchronous message +passing works exactly this way. After queuing the message, the source sends a +byte to a pipe to wakeup the target loop to process the task. We could also +periodically poll for messages instead of waking up the targets, yet it would +add quite a lot of latency which we also don't like. + +Messages in BIRD don't typically suffer from the problem of amount and the +overhead is negligible compared to the overall CPU consumption. With one notable +exception: route import/export. + +### Route export message passing + +If we had to send a ping for every route we import to every exporting channel, +we'd spend more time pinging than doing anything else. Been there, seen +those unbelievable 80%-like figures in Perf output. Never more. + +Route update is quite a complicated process. BIRD must handle large-scale +configurations with lots of importers and exporters. Therefore, a +triple-indirect delayed route announcement is employed: + +1. First, when a channel imports a route by entering a loop, it sends an event + to its own loop (no ping needed in such case). This operation is idempotent, + thus for several routes in a row, only one event is enqueued. This reduces + several route import announcements (even hundreds in case of massive BGP + withdrawals) to one single event. +2. When the channel is done importing (or at least takes a coffee break and + checks its mailbox), the scheduled event in its own loop is run, sending + another event to the table's loop, saying basically *"Hey, table, I've just + imported something."*. This event is also idempotent and further reduces + route import announcements from multiple sources to one single event. +3. The table's announcement event is then executed from its loop, enqueuing export + events for all connected channels, finally initiating route exports. As we + already know, imports are done by direct access, therefore if protocols keep + importing, export announcements are slowed down. +4. The actual data on what has been updated is stored in a table journal. This + peculiar technique is used only for informing the exporting channels that + *"there is something to do"*. + +This may seem overly complicated, yet it should work and it seems to work. In +case of low load, all these notifications just come through smoothly. In case +of high load, it's common that multiple updates come for the same destination. +Delaying the exports allows for the updates to settle down and export just the +final result, reducing CPU load and export traffic. + +## Cork + +Route propagation is involved in yet another problem which has to be addressed. +In the old versions with synchronous route propagation, all the buffering +happened after exporting routes to BGP. When a packet arrived, all the work was +done in BGP receive hook – parsing, importing into a table, running all the +filters and possibly sending to the peers. No more routes until the previous +was done. This self-regulating mechanism doesn't work any more. + +Route table import now returns immediately after inserting the route into a +table, creating a buffer there. These buffers have to be processed by other protocols' +export events. In large-scale configurations, one route import has to be +processed by hundreds, even thousands of exports. Unlimited imports are a major +cause of buffer bloating. This is even worse in configurations with pipes, +as these multiply the exports by propagating them all the way down to other +tables, eventually eating about twice the amount of memory than the single-threaded version. + +There is therefore a cork to make this stop. Every table is checking how many +exports it has pending, and when adding a new export to the queue, it may request +a cork, saying simply "please stop the flow for a while". When the export buffer +size is reduced low enough, the table uncorks. + +On the other side, there are events and sockets with a cork assigned. When +trying to enqueue an event and the cork is applied, the event is instead put +into the cork's queue and released only when the cork is released. In case of +sockets, when read is indicated or when `poll` arguments are recalculated, +the corked socket is simply not checked for received packets, effectively +keeping them in the TCP queue and slowing down the flow until cork is released. + +The cork implementation is quite crude and rough and fragile. It may get some +rework while stabilizing the multi-threaded version of BIRD or we may even +completely drop it for some better mechanism. One of these candidates is this +kind of API: + +* (table to protocol) please do not import +* (table to protocol) you may resume imports +* (protocol to table) not processing any exports +* (protocol to table) resuming export processing + +Anyway, cork works as intended in most cases at least for now. + +*It's a long road to the version 2.1. This series of texts should document what +is changing, why we do it and how. The +[previous chapter](https://en.blog.nic.cz/2021/06/14/bird-journey-to-threads-chapter-2-asynchronous-route-export/) +shows how the route export had to change to allow parallel execution. In the next chapter, some memory management +details are to be explained together with the reasons why memory management matters. Stay tuned!* diff --git a/doc/threads/03b_performance.md b/doc/threads/03b_performance.md new file mode 100644 index 00000000..07fd5bb0 --- /dev/null +++ b/doc/threads/03b_performance.md @@ -0,0 +1,153 @@ +# BIRD Journey to Threads. Chapter 3½: Route server performance + +All the work on multithreading shall be justified by performance improvements. +This chapter tries to compare times reached by version 3.0-alpha0 and 2.0.8, +showing some data and thinking about them. + +BIRD is a fast, robust and memory-efficient routing daemon designed and +implemented at the end of 20th century. We're doing a significant amount of +BIRD's internal structure changes to make it run in multiple threads in parallel. + +## Testing setup + +There are two machines in one rack. One of these simulates the peers of +a route server, the other runs BIRD in a route server configuration. First, the +peers are launched, then the route server is started and one of the peers +measures the convergence time until routes are fully propagated. Other peers +drop all incoming routes. + +There are four configurations. *Single* where all BGPs are directly +connected to the main table, *Multi* where every BGP has its own table and +filters are done on pipes between them, and finally *Imex* and *Mulimex* which are +effectively *Single* and *Multi* where all BGPs have also their auxiliary +import and export tables enabled. + +All of these use the same short dummy filter for route import to provide a +consistent load. This filter includes no meaningful logic, it's just some dummy +data to run the CPU with no memory contention. Real filters also do not suffer from +memory contention, with an exception of ROA checks. Optimization of ROA is a +task for another day. + +There is also other stuff in BIRD waiting for performance assessment. As the +(by far) most demanding setup of BIRD is route server in IXP, we chose to +optimize and measure BGP and filters first. + +Hardware used for testing is Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz with 8 +physical cores, two hyperthreads on each. Memory is 32 GB RAM. + +## Test parameters and statistics + +BIRD setup may scale on two major axes. Number of peers and number of routes / +destinations. *(There are more axes, e.g.: complexity of filters, routes / +destinations ratio, topology size in IGP)* + +Scaling the test on route count is easy, just by adding more routes to the +testing peers. Currently, the largest test data I feed BIRD with is about 2M +routes for around 800K destinations, due to memory limitations. The routes / +destinations ratio is around 2.5 in this testing setup, trying to get close to +real-world routing servers.[^1] + +[^1]: BIRD can handle much more in real life, the actual software limit is currently + a 32-bit unsigned route counter in the table structure. Hardware capabilities + are already there and checking how BIRD handles more than 4G routes is + certainly going to be a real thing soon. + +Scaling the test on peer count is easy, until you get to higher numbers. When I +was setting up the test, I configured one Linux network namespace for each peer, +connecting them by virtual links to a bridge and by a GRE tunnel to the other +machine. This works well for 10 peers but setting up and removing 1000 network +namespaces takes more than 15 minutes in total. (Note to myself: try this with +a newer Linux kernel than 4.9.) + +Another problem of test scaling is bandwidth. With 10 peers, everything is OK. +With 1000 peers, version 3.0-alpha0 does more than 600 Mbps traffic in peak +which is just about the bandwidth of the whole setup. I'm planning to design a +better test setup with less chokepoints in future. + +## Hypothesis + +There are two versions subjected to the test. One of these is `2.0.8` as an +initial testpoint. The other is version 3.0-alpha0, named `bgp` as parallel BGP +is implemented there. + +The major problem of large-scale BIRD setups is convergence time on startup. We +assume that a multithreaded version should reduce the overall convergence time, +at most by a factor equal to number of cores involved. Here we have 16 +hyperthreads, in theory we should reduce the times up to 16-fold, yet this is +almost impossible as a non-negligible amount of time is spent in bottleneck +code like best route selection or some cleanup routines. This has become a +bottleneck by making other parts parallel. + +## Data + +Four charts are included here, one for each setup. All axes have a +logarithmic scale. The route count on X scale is the total route count in +tested BIRD, different color shades belong to different versions and peer +counts. Time is plotted on Y scale. + +Raw data is available in Git, as well as the chart generator. Strange results +caused by testbed bugs are already omitted. + +There is also a line drawn on a 2-second mark. Convergence is checked by +periodically requesting `birdc show route count` on one of the peers and BGP +peers have also a 1-second connect delay time (default is 5 seconds). All +measured times shorter than 2 seconds are highly unreliable. + +![Plotted data for Single](03b_stats_2d_single.png) +[Plotted data for Single in PDF](03b_stats_2d_single.pdf) + +Single-table setup has times reduced to about 1/8 when comparing 3.0-alpha0 to +2.0.8. Speedup for 10-peer setup is slightly worse than expected and there is +still some room for improvement, yet 8-fold speedup on 8 physical cores and 16 +hyperthreads is good for me now. + +The most demanding case with 2M routes and 1k peers failed. On 2.0.8, my +configuration converges after almost two hours on 2.0.8, with the speed of +route processing steadily decreasing until only several routes per second are +done. Version 3.0-alpha0 is memory-bloating for some non-obvious reason and +couldn't fit into 32G RAM. There is definitely some work ahead to stabilize +BIRD behavior with extreme setups. + +![Plotted data for Multi](03b_stats_2d_multi.png) +[Plotted data for Multi in PDF](03b_stats_2d_multi.pdf) + +Multi-table setup got the same speedup as single-table setup, no big +surprise. Largest cases were not tested at all as they don't fit well into 32G +RAM even with 2.0.8. + +![Plotted data for Imex](03b_stats_2d_imex.png) +[Plotted data for Imex in PDF](03b_stats_2d_imex.pdf) + +![Plotted data for Mulimex](03b_stats_2d_mulimex.png) +[Plotted data for Mulimex in PDF](03b_stats_2d_mulimex.pdf) + +Setups with import / export tables are also sped up by a factor +about 6-8. Data on largest setups (2M routes) are showing some strangely +ineffective behaviour. Considering that both single-table and multi-table +setups yield similar performance data, there is probably some unwanted +inefficiency in the auxiliary table code. + +## Conclusion + +BIRD 3.0-alpha0 is a good version for preliminary testing in IXPs. There is +some speedup in every testcase and code stability is enough to handle typical +use cases. Some test scenarios went out of available memory and there is +definitely a lot of work to stabilize this, yet for now it makes no sense to +postpone this alpha version any more. + +We don't recommend upgrading a production machine to this version +yet, anyway if you have a test setup, getting version 3.0-alpha0 there and +reporting bugs is much welcome. + +Notice: Multithreaded BIRD, at least in version 3.0-alpha0, doesn't limit its number of +threads. It will spawn at least one thread per every BGP, RPKI and Pipe +protocol, one thread per every routing table (including auxiliary tables) and +possibly several more. It's up to the machine administrator to setup a limit on +CPU core usage by BIRD. When running with many threads and protocols, you may +need also to raise the filedescriptor limit: BIRD uses 2 filedescriptors per +every thread for internal messaging. + +*It's a long road to the version 3. By releasing this alpha version, we'd like +to encourage every user to try this preview. If you want to know more about +what is being done and why, you may also check the full +[blogpost series about multithreaded BIRD](https://en.blog.nic.cz/2021/03/15/bird-journey-to-threads-chapter-0-the-reason-why/). Thank you for your ongoing support!* diff --git a/doc/threads/03b_stats_2d_imex.pdf b/doc/threads/03b_stats_2d_imex.pdf Binary files differnew file mode 100644 index 00000000..dda4e97b --- /dev/null +++ b/doc/threads/03b_stats_2d_imex.pdf diff --git a/doc/threads/03b_stats_2d_imex.png b/doc/threads/03b_stats_2d_imex.png Binary files differnew file mode 100644 index 00000000..be198b04 --- /dev/null +++ b/doc/threads/03b_stats_2d_imex.png diff --git a/doc/threads/03b_stats_2d_mulimex.pdf b/doc/threads/03b_stats_2d_mulimex.pdf Binary files differnew file mode 100644 index 00000000..b4185625 --- /dev/null +++ b/doc/threads/03b_stats_2d_mulimex.pdf diff --git a/doc/threads/03b_stats_2d_mulimex.png b/doc/threads/03b_stats_2d_mulimex.png Binary files differnew file mode 100644 index 00000000..917d8fee --- /dev/null +++ b/doc/threads/03b_stats_2d_mulimex.png diff --git a/doc/threads/03b_stats_2d_multi.pdf b/doc/threads/03b_stats_2d_multi.pdf Binary files differnew file mode 100644 index 00000000..beb98a83 --- /dev/null +++ b/doc/threads/03b_stats_2d_multi.pdf diff --git a/doc/threads/03b_stats_2d_multi.png b/doc/threads/03b_stats_2d_multi.png Binary files differnew file mode 100644 index 00000000..ac74c526 --- /dev/null +++ b/doc/threads/03b_stats_2d_multi.png diff --git a/doc/threads/03b_stats_2d_single.pdf b/doc/threads/03b_stats_2d_single.pdf Binary files differnew file mode 100644 index 00000000..3573d928 --- /dev/null +++ b/doc/threads/03b_stats_2d_single.pdf diff --git a/doc/threads/03b_stats_2d_single.png b/doc/threads/03b_stats_2d_single.png Binary files differnew file mode 100644 index 00000000..191e5e26 --- /dev/null +++ b/doc/threads/03b_stats_2d_single.png diff --git a/doc/threads/04_memory_management.md b/doc/threads/04_memory_management.md new file mode 100644 index 00000000..24ef89d3 --- /dev/null +++ b/doc/threads/04_memory_management.md @@ -0,0 +1,223 @@ +# BIRD Journey to Threads. Chapter 4: Memory and other resource management. + +BIRD is mostly a large specialized database engine, storing mega/gigabytes of +Internet routing data in memory. To keep accounts of every byte of allocated data, +BIRD has its own resource management system which must be adapted to the +multithreaded environment. The resource system has not changed much, yet it +deserves a short chapter. + +BIRD is a fast, robust and memory-efficient routing daemon designed and +implemented at the end of 20th century. We're doing a significant amount of +BIRD's internal structure changes to make it run in multiple threads in parallel. + +## Resources + +Inside BIRD, (almost) every piece of allocated memory is a resource. To achieve this, +every such memory block includes a generic `struct resource` header. The node +is enlisted inside a linked list of a *resource pool* (see below), the class +pointer defines basic operations done on resources. + +``` +typedef struct resource { + node n; /* Inside resource pool */ + struct resclass *class; /* Resource class */ +} resource; + +struct resclass { + char *name; /* Resource class name */ + unsigned size; /* Standard size of single resource */ + void (*free)(resource *); /* Freeing function */ + void (*dump)(resource *); /* Dump to debug output */ + resource *(*lookup)(resource *, unsigned long); /* Look up address (only for debugging) */ + struct resmem (*memsize)(resource *); /* Return size of memory used by the resource, may be NULL */ +}; + +void *ralloc(pool *, struct resclass *); +``` + +Resource cycle begins with an allocation of a resource. To do that, you should call `ralloc()`, +passing the parent pool and the appropriate resource class as arguments. BIRD +allocates a memory block of size given by the given class member `size`. +Beginning of the block is reserved for `struct resource` itself and initialized +by the given arguments. Therefore, you may sometimes see an idiom where a structure +has a first member `struct resource r;`, indicating that this item should be +allocated as a resource. + +The counterpart is resource freeing. This may be implicit (by resource pool +freeing) or explicit (by `rfree()`). In both cases, the `free()` function of +the appropriate class is called to cleanup the resource before final freeing. + +To account for `dump` and `memsize` calls, there are CLI commands `dump +resources` and `show memory`, using these to dump resources or show memory +usage as perceived by BIRD. + +The last, `lookup`, is quite an obsolete way to identify a specific pointer +from a debug interface. You may call `rlookup(pointer)` and BIRD should dump +that resource to the debug output. This mechanism is probably incomplete as no +developer uses it actively for debugging. + +Resources can be also moved between pools by `rmove` when needed. + +## Resource pools + +The first internal resource class is a recursive resource – a resource pool. In +the singlethreaded version, this is just a simple structure: + +``` +struct pool { + resource r; + list inside; + struct birdloop *loop; /* In multithreaded version only */ + const char *name; +}; +``` + +Resource pools are used for grouping resources together. There are pools everywhere +and it is a common idiom inside BIRD to just `rfree` the appropriate pool when +e.g. a protocol or table is going down. Everything left there is cleaned up. + +There are anyway several classes which must be freed with care. In the +singlethreaded version, the *slab* allocator (see below) must be empty before +it may be freed and this is kept to the multithreaded version while other +restrictions have been added. + +There is also a global pool, `root_pool`, containing every single resource BIRD +knows about, either directly or via another resource pool. + +### Thread safety in resource pools + +In the multithreaded version, every resource pool is bound to a specific IO +loop and therefore includes an IO loop pointer. This is important for allocations +as the resource list inside the pool is thread-unsafe. All pool operations +therefore require the IO loop to be entered to do anything with them, if possible. +(In case of `rfree`, the pool data structure is not accessed at all so no +assert is possible. We're currently relying on the caller to ensure proper locking. +In future, this may change.) + +Each IO loop also has its base resource pool for its allocations. All pools +inside the IO loop pool must belong to the same loop or to a loop with a +subordinate lock (see the previous chapter for lock ordering). If there is a +need for multiple IO loops to access one shared data structure, it must be +locked by another lock and allocated in such a way that is independent on these +accessor loops. + +The pool structure should follow the locking order. Any pool should belong to +either the same loop as its parent or its loop lock should be after its parent +loop lock in the locking order. This is not enforced explicitly, yet it is +virtually impossible to write some working code violating this recommendation. + +### Resource pools in the wilderness + +Root pool contains (among others): + +* route attributes and sources +* routing tables +* protocols +* interfaces +* configuration data + +Each table has its IO loop and uses the loop base pool for allocations. +The same holds for protocols. Each protocol has its pool; it is either its IO +loop base pool or an ordinary pool bound to main loop. + +## Memory allocators + +BIRD stores data in memory blocks allocated by several allocators. There are 3 +of them: simple memory blocks, linear pools and slabs. + +### Simple memory block + +When just a chunk of memory is needed, `mb_alloc()` or `mb_allocz()` is used +to get it. The first with `malloc()` semantics, the other is also zeroed. +There is also `mb_realloc()` available, `mb_free()` to explicitly free such a +memory and `mb_move()` to move that memory to another pool. + +Simple memory blocks consume a fixed amount of overhead memory (32 bytes on +systems with 64-bit pointers) so they are suitable mostly for big chunks, +taking advantage of the default *stdlib* allocator which is used by this +allocation strategy. There are anyway some parts of BIRD (in all versions) +where this allocator is used for little blocks. This will be fixed some day. + +### Linear pools + +Sometimes, memory is allocated temporarily. When the data may just sit on +stack, we put it there. Anyway, many tasks need more structured execution where +stack allocation is incovenient or even impossible (e.g. when callbacks from +parsers are involved). For such a case, a *linpool* is the best choice. + +This data structure allocates memory blocks of requested size with negligible +overhead in functions `lp_alloc()` (uninitialized) or `lp_allocz()` (zeroed). +There is anyway no `realloc` and no `free` call; to have a larger chunk, you +need to allocate another block. All this memory is freed at once by `lp_flush()` +when it is no longer needed. + +You may see linpools in parsers (BGP, Linux netlink, config) or in filters. + +In the multithreaded version, linpools have received an update, allocating +memory pages directly by `mmap()` instead of calling `malloc()`. More on memory +pages below. + +### Slabs + +To allocate lots of same-sized objects, a [slab allocator](https://en.wikipedia.org/wiki/Slab_allocation) +is an ideal choice. In versions until 2.0.8, our slab allocator used blocks +allocated by `malloc()`, every object included a *slab head* pointer and free objects +were linked into a single-linked list. This led to memory inefficiency and to +contra-intuitive behavior where a use-after-free bug could do lots of damage +before finally crashing. + +Versions from 2.0.9, and also all the multithreaded versions, are coming with +slabs using directly allocated memory pages and usage bitmaps instead of +single-linking the free objects. This approach however relies on the fact that +pointers returned by `mmap()` are always divisible by page size. Freeing of a +slab object involves zeroing (mostly) 13 least significant bits of its pointer +to get the page pointer where the slab head resides. + +This update helps with memory consumption by about 5% compared to previous +versions; exact numbers depend on the usage pattern. + +## Raw memory pages + +Until 2.0.8 (incl.), BIRD allocated all memory by `malloc()`. This method is +suitable for lots of use cases, yet when gigabytes of memory should be +allocated by little pieces, BIRD uses its internal allocators to keep track +about everything. This brings some ineffectivity as stdlib allocator has its +own overhead and doesn't allocate aligned memory unless asked for. + +Slabs and linear pools are backed by blocks of memory of kilobyte sizes. As a +typical memory page size is 4 kB, it is a logical step to drop stdlib +allocation from these allocators and to use `mmap()` directly. This however has +some drawbacks, most notably the need of a syscall for every memory mapping and +unmapping. For allocations, this is not much a case and the syscall time is typically +negligible compared to computation time. When freeing memory, this is much +worse as BIRD sometimes frees gigabytes of data in a blink of eye. + +To minimize the needed number of syscalls, there is a per-thread page cache, +keeping pages for future use: + +* When a new page is requested, first the page cache is tried. +* When a page is freed, the per-thread page cache keeps it without telling the kernel. +* When the number of pages in any per-thread page cache leaves a pre-defined range, + a cleanup routine is scheduled to free excessive pages or request more in advance. + +This method gives the multithreaded BIRD not only faster memory management than +ever before but also almost immediate shutdown times as the cleanup routine is +not scheduled on shutdown at all. + +## Other resources + +Some objects are not only a piece of memory; notable items are sockets, owning +the underlying mechanism of I/O, and *object locks*, owning *the right to use a +specific I/O*. This ensures that collisions on e.g. TCP port numbers and +addresses are resolved in a predictable way. + +All these resources should be used with the same locking principles as the +memory blocks. There aren't many checks inside BIRD code to ensure that yet, +nevertheless violating this recommendation may lead to multiple-access issues. + +*It's still a long road to the version 2.1. This series of texts should document +what is needed to be changed, why we do it and how. The +[previous chapter](TODO) +showed the locking system and how the parallel execution is done. +The next chapter will cover a bit more detailed explanation about route sources +and route attributes and how lockless data structures are employed there. Stay tuned!* diff --git a/doc/threads/Makefile b/doc/threads/Makefile new file mode 100644 index 00000000..8d27f90e --- /dev/null +++ b/doc/threads/Makefile @@ -0,0 +1,29 @@ +SUFFICES := .pdf -wordpress.html +CHAPTERS := 00_the_name_of_the_game 01_the_route_and_its_attributes 02_asynchronous_export 03_coroutines 03b_performance + +all: $(foreach ch,$(CHAPTERS),$(addprefix $(ch),$(SUFFICES))) + +00_the_name_of_the_game.pdf: 00_filter_structure.png + +%.pdf: %.md + pandoc -f markdown -t latex -o $@ $< + +%.html: %.md + pandoc -f markdown -t html5 -o $@ $< + +%-wordpress.html: %.html Makefile + sed -r 's#</p>#\n#g; s#<p>##g; s#<(/?)code>#<\1tt>#g; s#<pre><tt>#<code>#g; s#</tt></pre>#</code>#g; s#</?figure>##g; s#<figcaption>#<p style="text-align: center">#; s#</figcaption>#</p>#; ' $< > $@ + +stats-%.csv: stats.csv stats-filter.pl + perl stats-filter.pl $< $* > $@ + +STATS_VARIANTS := multi imex mulimex single +stats-all: $(patsubst %,stats-%.csv,$(STATS_VARIANTS)) + +stats-2d-%.pdf: stats.csv stats-filter-2d.pl + perl stats-filter-2d.pl $< $* $@ + +stats-2d-%.png: stats-2d-%.pdf + gs -dBATCH -dNOPAUSE -sDEVICE=pngalpha -sOutputFile=$@ -r300 $< + +stats-all-2d: $(foreach suf,pdf png,$(patsubst %,stats-2d-%.$(suf),$(STATS_VARIANTS))) diff --git a/doc/threads/stats-draw.gnuplot b/doc/threads/stats-draw.gnuplot new file mode 100644 index 00000000..734f14a6 --- /dev/null +++ b/doc/threads/stats-draw.gnuplot @@ -0,0 +1,41 @@ +set datafile columnheaders +set datafile separator ";" +#set isosample 15 +set dgrid3d 8,8 +set logscale +set view 80,15,1,1 +set autoscale xy +#set pm3d + +set term pdfcairo size 20cm,15cm + +set xlabel "TOTAL ROUTES" offset 0,-1.5 +set xrange [10000:320000] +set xtics offset 0,-0.5 +set xtics (10000,15000,30000,50000,100000,150000,300000) + +set ylabel "PEERS" +#set yrange [10:320] +#set ytics (10,15,30,50,100,150,300) +set yrange [10:320] +set ytics (10,15,30,50,100,150,300) + +set zrange [1:2000] +set xyplane at 1 + +set border 895 + +#set grid ztics lt 20 + +set output ARG1 . "-" . ARG4 . ".pdf" + +splot \ + ARG1 . ".csv" \ + using "TOTAL_ROUTES":"PEERS":ARG2."/".ARG4 \ + with lines \ + title ARG2."/".ARG4, \ + "" \ + using "TOTAL_ROUTES":"PEERS":ARG3."/".ARG4 \ + with lines \ + title ARG3."/".ARG4 + diff --git a/doc/threads/stats-filter-2d.pl b/doc/threads/stats-filter-2d.pl new file mode 100644 index 00000000..01db9e0e --- /dev/null +++ b/doc/threads/stats-filter-2d.pl @@ -0,0 +1,156 @@ +#!/usr/bin/perl + +use common::sense; +use Data::Dump; +use List::Util; + +my @GROUP_BY = qw/VERSION PEERS TOTAL_ROUTES/; +my @VALUES = qw/TIMEDIF/; + +my ($FILE, $TYPE, $OUTPUT) = @ARGV; + +### Load data ### +my %data; +open F, "<", $FILE or die $!; +my @header = split /;/, <F>; +chomp @header; + +my $line = undef; +while ($line = <F>) +{ + chomp $line; + $line =~ s/;;(.*);;/;;\1;/; + $line =~ s/v2\.0\.8-1[89][^;]+/bgp/; + $line =~ s/v2\.0\.8-[^;]+/sark/ and next; + $line =~ s/master;/v2.0.8;/; + my %row; + @row{@header} = split /;/, $line; + push @{$data{join ";", @row{@GROUP_BY}}}, { %row } if $row{TYPE} eq $TYPE; +} + +### Do statistics ### +sub avg { + return List::Util::sum(@_) / @_; +} + +sub getinbetween { + my $index = shift; + my @list = @_; + + return $list[int $index] if $index == int $index; + + my $lower = $list[int $index]; + my $upper = $list[1 + int $index]; + + my $frac = $index - int $index; + + return ($lower * (1 - $frac) + $upper * $frac); +} + +sub stats { + my $avg = shift; + return [0, 0, 0, 0, 0] if @_ <= 1; + + # my $stdev = sqrt(List::Util::sum(map { ($avg - $_)**2 } @_) / (@_-1)); + + my @sorted = sort { $a <=> $b } @_; + my $count = scalar @sorted; + + return [ + getinbetween(($count-1) * 0.25, @sorted), + $sorted[0], + $sorted[$count-1], + getinbetween(($count-1) * 0.75, @sorted), + ]; +} + +my %output; +my %vers; +my %peers; +my %stplot; + +STATS: +foreach my $k (keys %data) +{ + my %cols = map { my $vk = $_; $vk => [ map { $_->{$vk} } @{$data{$k}} ]; } @VALUES; + + my %avg = map { $_ => avg(@{$cols{$_}})} @VALUES; + my %stloc = map { $_ => stats($avg{$_}, @{$cols{$_}})} @VALUES; + + $vers{$data{$k}[0]{VERSION}}++; + $peers{$data{$k}[0]{PEERS}}++; + $output{$data{$k}[0]{VERSION}}{$data{$k}[0]{PEERS}}{$data{$k}[0]{TOTAL_ROUTES}} = { %avg }; + $stplot{$data{$k}[0]{VERSION}}{$data{$k}[0]{PEERS}}{$data{$k}[0]{TOTAL_ROUTES}} = { %stloc }; +} + +#(3 == scalar %vers) and $vers{sark} and $vers{bgp} and $vers{"v2.0.8"} or die "vers size is " . (scalar %vers) . ", items ", join ", ", keys %vers; +(2 == scalar %vers) and $vers{bgp} and $vers{"v2.0.8"} or die "vers size is " . (scalar %vers) . ", items ", join ", ", keys %vers; + +### Export the data ### + +open PLOT, "|-", "gnuplot" or die $!; + +say PLOT <<EOF; +set logscale + +set term pdfcairo size 20cm,15cm + +set xlabel "Total number of routes" offset 0,-1.5 +set xrange [10000:3000000] +set xtics offset 0,-0.5 +#set xtics (10000,15000,30000,50000,100000,150000,300000,500000,1000000) + +set ylabel "Time to converge (s)" +set yrange [0.5:10800] + +set grid + +set key left top + +set output "$OUTPUT" +EOF + +my @colors = ( + [ 1, 0.9, 0.3 ], + [ 0.7, 0, 0 ], + # [ 0.6, 1, 0.3 ], + # [ 0, 0.7, 0 ], + [ 0, 0.7, 1 ], + [ 0.3, 0.3, 1 ], +); + +my $steps = (scalar %peers) - 1; + +my @plot_data; +foreach my $v (sort keys %vers) { + my $color = shift @colors; + my $endcolor = shift @colors; + my $stepcolor = [ map +( ($endcolor->[$_] - $color->[$_]) / $steps ), (0, 1, 2) ]; + + foreach my $p (sort { int $a <=> int $b } keys %peers) { + my $vnodot = $v; $vnodot =~ s/\.//g; + say PLOT "\$data_${vnodot}_${p} << EOD"; + foreach my $tr (sort { int $a <=> int $b } keys %{$output{$v}{$p}}) { + say PLOT "$tr $output{$v}{$p}{$tr}{TIMEDIF}"; + } + say PLOT "EOD"; + + say PLOT "\$data_${vnodot}_${p}_stats << EOD"; + foreach my $tr (sort { int $a <=> int $b } keys %{$output{$v}{$p}}) { + say PLOT join " ", ( $tr, @{$stplot{$v}{$p}{$tr}{TIMEDIF}} ); + } + say PLOT "EOD"; + + my $colorstr = sprintf "linecolor rgbcolor \"#%02x%02x%02x\"", map +( int($color->[$_] * 255 + 0.5)), (0, 1, 2); + push @plot_data, "\$data_${vnodot}_${p} using 1:2 with lines $colorstr linewidth 2 title \"$v, $p peers\""; + push @plot_data, "\$data_${vnodot}_${p}_stats with candlesticks $colorstr linewidth 2 notitle \"\""; + $color = [ map +( $color->[$_] + $stepcolor->[$_] ), (0, 1, 2) ]; + } +} + +push @plot_data, "2 with lines lt 1 dashtype 2 title \"Measurement instability\""; + +say PLOT "plot ", join ", ", @plot_data; +close PLOT; + + diff --git a/doc/threads/stats-filter.pl b/doc/threads/stats-filter.pl new file mode 100644 index 00000000..51690651 --- /dev/null +++ b/doc/threads/stats-filter.pl @@ -0,0 +1,84 @@ +#!/usr/bin/perl + +use common::sense; +use Data::Dump; +use List::Util; + +my @GROUP_BY = qw/VERSION PEERS TOTAL_ROUTES/; +my @VALUES = qw/RSS SZ VSZ TIMEDIF/; + +my ($FILE, $TYPE) = @ARGV; + +### Load data ### +my %data; +open F, "<", $FILE or die $!; +my @header = split /;/, <F>; +chomp @header; + +my $line = undef; +while ($line = <F>) +{ + chomp $line; + my %row; + @row{@header} = split /;/, $line; + push @{$data{join ";", @row{@GROUP_BY}}}, { %row } if $row{TYPE} eq $TYPE; +} + +### Do statistics ### +sub avg { + return List::Util::sum(@_) / @_; +} + +sub stdev { + my $avg = shift; + return 0 if @_ <= 1; + return sqrt(List::Util::sum(map { ($avg - $_)**2 } @_) / (@_-1)); +} + +my %output; +my %vers; + +STATS: +foreach my $k (keys %data) +{ + my %cols = map { my $vk = $_; $vk => [ map { $_->{$vk} } @{$data{$k}} ]; } @VALUES; + + my %avg = map { $_ => avg(@{$cols{$_}})} @VALUES; + my %stdev = map { $_ => stdev($avg{$_}, @{$cols{$_}})} @VALUES; + + foreach my $v (@VALUES) { + next if $stdev{$v} / $avg{$v} < 0.035; + + for (my $i=0; $i<@{$cols{$v}}; $i++) + { + my $dif = $cols{$v}[$i] - $avg{$v}; + next if $dif < $stdev{$v} * 2 and $dif > $stdev{$v} * (-2); +=cut + printf "Removing an outlier for %s/%s: avg=%f, stdev=%f, variance=%.1f%%, val=%f, valratio=%.1f%%\n", + $k, $v, $avg{$v}, $stdev{$v}, (100 * $stdev{$v} / $avg{$v}), $cols{$v}[$i], (100 * $dif / $stdev{$v}); +=cut + splice @{$data{$k}}, $i, 1, (); + redo STATS; + } + } + + $vers{$data{$k}[0]{VERSION}}++; + $output{"$data{$k}[0]{PEERS};$data{$k}[0]{TOTAL_ROUTES}"}{$data{$k}[0]{VERSION}} = { %avg }; +} + +### Export the data ### + +say "PEERS;TOTAL_ROUTES;" . join ";", ( map { my $vk = $_; map { "$_/$vk" } keys %vers; } @VALUES ); + +sub keysort { + my ($pa, $ta) = split /;/, $_[0]; + my ($pb, $tb) = split /;/, $_[1]; + + return (int $ta) <=> (int $tb) if $pa eq $pb; + return (int $pa) <=> (int $pb); +} + +foreach my $k (sort { keysort($a, $b); } keys %output) +{ + say "$k;" . join ";", ( map { my $vk = $_; map { $output{$k}{$_}{$vk}; } keys %vers; } @VALUES ); +} diff --git a/doc/threads/stats-longfilters.csv b/doc/threads/stats-longfilters.csv new file mode 100644 index 00000000..3b794e53 --- /dev/null +++ b/doc/threads/stats-longfilters.csv @@ -0,0 +1,1964 @@ +VERSION;TYPE;PEERS;ROUTES;BLOCKSIZE;TOTAL_ROUTES;TOTAL_PREFICES;RSS;SZ;VSZ;i;TIMEDIF;DATETIME +v2.0.8-161-ga788372e;multi;10;10000;;12925;6245;21320;187203;748812;20;4.301861676 +v2.0.8-161-ga788372e;multi;10;10000;;12925;6245;21140;187190;748760;22;4.735876270 +v2.0.8-161-ga788372e;multi;10;10000;;12925;6245;21044;187207;748828;20;4.304013846 +v2.0.8-161-ga788372e;multi;10;10000;;12925;6245;20772;187196;748784;19;4.084681546 +v2.0.8-161-ga788372e;multi;10;10000;;12925;6245;20772;187188;748752;21;4.524855352 +v2.0.8-161-ga788372e;multi;10;10000;;12925;6245;20800;187197;748788;19;4.089552928 +v2.0.8-161-ga788372e;multi;10;10000;;12925;6245;21072;187192;748768;20;4.301069856 +v2.0.8-161-ga788372e;multi;10;10000;;12925;6245;21148;187192;748768;18;3.870419206 +v2.0.8-161-ga788372e;imex;10;10000;;12925;6245;19392;6769;27076;24;5.186131393 +v2.0.8-161-ga788372e;imex;10;10000;;12925;6245;19456;6749;26996;24;5.171237831 +v2.0.8-161-ga788372e;imex;10;10000;;12925;6245;19528;6754;27016;25;5.404748204 +v2.0.8-161-ga788372e;imex;10;10000;;12925;6245;19292;6768;27072;24;5.170694801 +v2.0.8-161-ga788372e;imex;10;10000;;12925;6245;19396;6760;27040;27;5.838374799 +v2.0.8-161-ga788372e;imex;10;10000;;12925;6245;19508;6777;27108;25;5.402606133 +v2.0.8-161-ga788372e;imex;10;10000;;12925;6245;19284;6752;27008;24;5.182178320 +v2.0.8-161-ga788372e;imex;10;10000;;12925;6245;19548;6763;27052;24;5.174747059 +v2.0.8-161-ga788372e;single;10;10000;;12925;6245;;6968;3344;13376;26;5.608568489 +v2.0.8-161-ga788372e;single;10;10000;;12925;6245;;7224;3377;13508;26;5.615165423;2021-12-06@14:05:32 +v2.0.8-161-ga788372e;single;10;10000;;12925;6245;;7316;3375;13500;26;5.618026061;2021-12-06@14:06:00 +v2.0.8-161-ga788372e;single;10;10000;;12925;6245;;7260;3352;13408;23;4.961829208;2021-12-06@14:06:27 +v2.0.8-161-ga788372e;single;10;10000;;12925;6245;;7252;3369;13476;25;5.388673471;2021-12-06@14:06:55 +v2.0.8-161-ga788372e;single;10;10000;;12925;6245;;7288;3350;13400;26;5.621786939;2021-12-06@14:07:23 +v2.0.8-161-ga788372e;single;10;10000;;12925;6245;;7188;3369;13476;26;5.609636187;2021-12-06@14:07:51 +v2.0.8-161-ga788372e;single;10;10000;;12925;6245;;7316;3364;13456;24;5.172085664;2021-12-06@14:08:19 +v2.0.8-161-ga788372e;mulimex;10;10000;;12925;6245;31332;189917;759668;17;3.659687724;2021-12-06@14:08:45 +v2.0.8-161-ga788372e;mulimex;10;10000;;12925;6245;30948;189945;759780;22;4.730535289;2021-12-06@14:09:11 +v2.0.8-161-ga788372e;mulimex;10;10000;;12925;6245;30540;189905;759620;20;4.306343387;2021-12-06@14:09:38 +v2.0.8-161-ga788372e;mulimex;10;10000;;12925;6245;30444;189942;759768;20;4.302684747;2021-12-06@14:10:06 +v2.0.8-161-ga788372e;mulimex;10;10000;;12925;6245;30808;189919;759676;18;3.875768252;2021-12-06@14:10:32 +v2.0.8-161-ga788372e;mulimex;10;10000;;12925;6245;30272;189907;759628;19;4.086659602;2021-12-06@14:10:58 +v2.0.8-161-ga788372e;mulimex;10;10000;;12925;6245;30672;189903;759612;20;4.302416044;2021-12-06@14:11:25 +v2.0.8-161-ga788372e;mulimex;10;10000;;12925;6245;30368;189886;759544;21;4.518095173;2021-12-06@14:11:52 +v2.0.8-161-ga788372e;multi;18;10000;;15314;6305;33640;321631;1286524;19;4.085633944;2021-12-06@14:12:21 +v2.0.8-161-ga788372e;multi;18;10000;;15314;6305;33060;321630;1286520;21;4.516950872;2021-12-06@14:12:53 +v2.0.8-161-ga788372e;multi;18;10000;;15314;6305;32888;321622;1286488;20;4.307035392;2021-12-06@14:13:24 +v2.0.8-161-ga788372e;multi;18;10000;;15314;6305;32536;321610;1286440;18;3.875851167;2021-12-06@14:13:54 +v2.0.8-161-ga788372e;multi;18;10000;;15314;6305;33352;321615;1286460;22;4.739828577;2021-12-06@14:14:24 +v2.0.8-161-ga788372e;multi;18;10000;;15314;6305;33432;321630;1286520;18;3.879518698;2021-12-06@14:14:56 +v2.0.8-161-ga788372e;multi;18;10000;;15314;6305;33368;321637;1286548;21;4.519740200;2021-12-06@14:15:25 +v2.0.8-161-ga788372e;multi;18;10000;;15314;6305;33268;321610;1286440;20;4.305856029;2021-12-06@14:15:56 +v2.0.8-161-ga788372e;imex;18;10000;;15314;6305;27564;9030;36120;40;8.684061410;2021-12-06@14:16:30 +v2.0.8-161-ga788372e;imex;18;10000;;15314;6305;27752;9060;36240;38;8.233427802;2021-12-06@14:17:06 +v2.0.8-161-ga788372e;imex;18;10000;;15314;6305;27436;9051;36204;41;8.896879840;2021-12-06@14:17:40 +v2.0.8-161-ga788372e;imex;18;10000;;15314;6305;27672;9067;36268;40;8.668315617;2021-12-06@14:18:14 +v2.0.8-161-ga788372e;imex;18;10000;;15314;6305;27552;9055;36220;40;8.673992917;2021-12-06@14:18:49 +v2.0.8-161-ga788372e;imex;18;10000;;15314;6305;27768;9070;36280;40;8.675525863;2021-12-06@14:19:23 +v2.0.8-161-ga788372e;imex;18;10000;;15314;6305;27604;9063;36252;41;8.896695554;2021-12-06@14:19:58 +v2.0.8-161-ga788372e;imex;18;10000;;15314;6305;27620;9068;36272;37;8.026595858;2021-12-06@14:20:35 +v2.0.8-161-ga788372e;single;18;10000;;15314;6305;;8164;3609;14436;38;8.246006718;2021-12-06@14:21:08 +v2.0.8-161-ga788372e;single;18;10000;;15314;6305;;8240;3616;14464;39;8.451448843;2021-12-06@14:21:42 +v2.0.8-161-ga788372e;single;18;10000;;15314;6305;;8312;3630;14520;41;8.885674030;2021-12-06@14:22:17 +v2.0.8-161-ga788372e;single;18;10000;;15314;6305;;8256;3608;14432;39;8.452951862;2021-12-06@14:22:51 +v2.0.8-161-ga788372e;single;18;10000;;15314;6305;;8296;3612;14448;39;8.447394502;2021-12-06@14:23:26 +v2.0.8-161-ga788372e;single;18;10000;;15314;6305;;8224;3611;14444;39;8.461078185;2021-12-06@14:24:01 +v2.0.8-161-ga788372e;single;18;10000;;15314;6305;;8172;3599;14396;40;8.671040923;2021-12-06@14:24:35 +v2.0.8-161-ga788372e;single;18;10000;;15314;6305;;8272;3606;14424;41;8.892147820;2021-12-06@14:25:09 +v2.0.8-161-ga788372e;mulimex;18;10000;;15314;6305;49120;326319;1305276;19;4.089241311;2021-12-06@14:25:40 +v2.0.8-161-ga788372e;mulimex;18;10000;;15314;6305;49224;326251;1305004;22;4.737475091;2021-12-06@14:26:10 +v2.0.8-161-ga788372e;mulimex;18;10000;;15314;6305;49192;326268;1305072;17;3.657795376;2021-12-06@14:26:40 +v2.0.8-161-ga788372e;mulimex;18;10000;;15314;6305;49432;326269;1305076;21;4.520732609;2021-12-06@14:27:10 +v2.0.8-161-ga788372e;mulimex;18;10000;;15314;6305;48564;326226;1304904;20;4.310730874;2021-12-06@14:27:40 +v2.0.8-161-ga788372e;mulimex;18;10000;;15314;6305;49160;326273;1305092;19;4.090173008;2021-12-06@14:28:11 +v2.0.8-161-ga788372e;mulimex;18;10000;;15314;6305;49368;326279;1305116;20;4.307600202;2021-12-06@14:28:41 +v2.0.8-161-ga788372e;mulimex;18;10000;;15314;6305;49696;326329;1305316;22;4.746332733;2021-12-06@14:29:11 +v2.0.8-161-ga788372e;multi;32;10000;;16892;6334;53904;556871;2227484;22;4.744210933;2021-12-06@14:29:47 +v2.0.8-161-ga788372e;multi;32;10000;;16892;6334;53844;556877;2227508;19;4.092227972;2021-12-06@14:30:25 +v2.0.8-161-ga788372e;multi;32;10000;;16892;6334;54532;556860;2227440;22;4.737008659;2021-12-06@14:31:04 +v2.0.8-161-ga788372e;multi;32;10000;;16892;6334;55396;556884;2227536;19;4.102128776;2021-12-06@14:31:43 +v2.0.8-161-ga788372e;multi;32;10000;;16892;6334;55708;556931;2227724;21;4.530517178;2021-12-06@14:32:23 +v2.0.8-161-ga788372e;multi;32;10000;;16892;6334;54508;556848;2227392;18;3.875664935;2021-12-06@14:33:02 +v2.0.8-161-ga788372e;multi;32;10000;;16892;6334;54032;556799;2227196;18;3.878299866;2021-12-06@14:33:40 +v2.0.8-161-ga788372e;multi;32;10000;;16892;6334;54284;556884;2227536;19;4.092237866;2021-12-06@14:34:18 +v2.0.8-161-ga788372e;imex;32;10000;;16892;6334;40140;12621;50484;65;14.149852026;2021-12-06@14:35:06 +v2.0.8-161-ga788372e;imex;32;10000;;16892;6334;40324;12634;50536;64;13.926114889;2021-12-06@14:35:54 +v2.0.8-161-ga788372e;imex;32;10000;;16892;6334;40184;12618;50472;65;14.145470802;2021-12-06@14:36:44 +v2.0.8-161-ga788372e;imex;32;10000;;16892;6334;40572;12700;50800;64;13.919928624;2021-12-06@14:37:31 +v2.0.8-161-ga788372e;imex;32;10000;;16892;6334;40176;12619;50476;66;14.370538072;2021-12-06@14:38:19 +v2.0.8-161-ga788372e;imex;32;10000;;16892;6334;40308;12612;50448;63;13.718296061;2021-12-06@14:39:07 +v2.0.8-161-ga788372e;imex;32;10000;;16892;6334;40296;12626;50504;65;14.138538412;2021-12-06@14:39:55 +v2.0.8-161-ga788372e;imex;32;10000;;16892;6334;40156;12614;50456;63;13.717587900;2021-12-06@14:40:43 +v2.0.8-161-ga788372e;single;32;10000;;16892;6334;;9324;3886;15544;69;15.006621142;2021-12-06@14:41:34 +v2.0.8-161-ga788372e;single;32;10000;;16892;6334;;9044;3874;15496;67;14.576172686;2021-12-06@14:42:22 +v2.0.8-161-ga788372e;single;32;10000;;16892;6334;;9168;3877;15508;67;14.580721314;2021-12-06@14:43:09 +v2.0.8-161-ga788372e;single;32;10000;;16892;6334;;9360;3874;15496;70;15.215318150;2021-12-06@14:43:57 +v2.0.8-161-ga788372e;single;32;10000;;16892;6334;;9092;3861;15444;67;14.565809392;2021-12-06@14:44:45 +v2.0.8-161-ga788372e;single;32;10000;;16892;6334;;8948;3852;15408;67;14.565712451;2021-12-06@14:45:32 +v2.0.8-161-ga788372e;single;32;10000;;16892;6334;;9308;3908;15632;68;14.795375802;2021-12-06@14:46:22 +v2.0.8-161-ga788372e;single;32;10000;;16892;6334;;9080;3881;15524;65;14.137421494;2021-12-06@14:47:10 +v2.0.8-161-ga788372e;mulimex;32;10000;;16892;6334;82076;564613;2258452;21;4.522385738;2021-12-06@14:47:48 +v2.0.8-161-ga788372e;mulimex;32;10000;;16892;6334;83560;564925;2259700;20;4.309231785;2021-12-06@14:48:28 +v2.0.8-161-ga788372e;mulimex;32;10000;;16892;6334;82556;564756;2259024;22;4.740118038;2021-12-06@14:49:08 +v2.0.8-161-ga788372e;mulimex;32;10000;;16892;6334;81832;564848;2259392;20;4.307002878;2021-12-06@14:49:48 +v2.0.8-161-ga788372e;mulimex;32;10000;;16892;6334;81964;564749;2258996;20;4.308891257;2021-12-06@14:50:28 +v2.0.8-161-ga788372e;mulimex;32;10000;;16892;6334;82512;564788;2259152;19;4.095858857;2021-12-06@14:51:07 +v2.0.8-161-ga788372e;mulimex;32;10000;;16892;6334;81600;564683;2258732;18;3.878144182;2021-12-06@14:51:46 +v2.0.8-161-ga788372e;mulimex;32;10000;;16892;6334;81688;564605;2258420;18;3.880192724;2021-12-06@14:52:23 +v2.0.8-161-ga788372e;multi;56;10000;;17919;6345;90636;960532;3842128;25;5.413937245;2021-12-06@14:53:11 +v2.0.8-161-ga788372e;multi;56;10000;;17919;6345;90560;960331;3841324;26;5.625838555;2021-12-06@14:54:04 +v2.0.8-161-ga788372e;multi;56;10000;;17919;6345;90656;960231;3840924;26;5.622985139;2021-12-06@14:54:54 +v2.0.8-161-ga788372e;multi;56;10000;;17919;6345;88600;959985;3839940;25;5.421197146;2021-12-06@14:55:44 +v2.0.8-161-ga788372e;multi;56;10000;;17919;6345;92224;960576;3842304;25;5.412104972;2021-12-06@14:56:36 +v2.0.8-161-ga788372e;multi;56;10000;;17919;6345;90032;960088;3840352;25;5.429419527;2021-12-06@14:57:28 +v2.0.8-161-ga788372e;multi;56;10000;;17919;6345;88716;960064;3840256;25;5.409571988;2021-12-06@14:58:19 +v2.0.8-161-ga788372e;multi;56;10000;;17919;6345;89904;959874;3839496;25;5.402138865;2021-12-06@14:59:09 +v2.0.8-161-ga788372e;imex;56;10000;;17919;6345;60804;18448;73792;113;24.614735142;2021-12-06@15:00:42 +v2.0.8-161-ga788372e;imex;56;10000;;17919;6345;61532;18608;74432;109;23.732816525;2021-12-06@15:01:53 +v2.0.8-161-ga788372e;imex;56;10000;;17919;6345;60684;18462;73848;109;23.745012029;2021-12-06@15:03:09 +v2.0.8-161-ga788372e;imex;56;10000;;17919;6345;60824;18483;73932;111;24.182505333;2021-12-06@15:04:22 +v2.0.8-161-ga788372e;imex;56;10000;;17919;6345;60740;18485;73940;109;23.743722383;2021-12-06@15:05:37 +v2.0.8-161-ga788372e;imex;56;10000;;17919;6345;60708;18482;73928;109;23.737597586;2021-12-06@15:06:54 +v2.0.8-161-ga788372e;imex;56;10000;;17919;6345;60812;18493;73972;111;24.171849671;2021-12-06@15:08:12 +v2.0.8-161-ga788372e;imex;56;10000;;17919;6345;60624;18453;73812;109;23.750090485;2021-12-06@15:09:30 +v2.0.8-161-ga788372e;single;56;10000;;17919;6345;10500;4193;16772;115;25.090458989;2021-12-06@15:10:45 +v2.0.8-161-ga788372e;single;56;10000;;17919;6345;10576;4198;16792;115;25.053933566;2021-12-06@15:12:01 +v2.0.8-161-ga788372e;single;56;10000;;17919;6345;10440;4175;16700;114;24.832875853;2021-12-06@15:13:17 +v2.0.8-161-ga788372e;single;56;10000;;17919;6345;10672;4178;16712;114;24.838940159;2021-12-06@15:14:34 +v2.0.8-161-ga788372e;single;56;10000;;17919;6345;10424;4191;16764;114;24.845332591;2021-12-06@15:15:51 +v2.0.8-161-ga788372e;single;56;10000;;17919;6345;10536;4185;16740;114;24.842495171;2021-12-06@15:17:09 +v2.0.8-161-ga788372e;single;56;10000;;17919;6345;10660;4192;16768;114;24.835230118;2021-12-06@15:18:21 +v2.0.8-161-ga788372e;single;56;10000;;17919;6345;10452;4176;16704;114;24.824440064;2021-12-06@15:19:36 +v2.0.8-161-ga788372e;mulimex;56;10000;;17919;6345;133784;973094;3892376;26;5.639381304;2021-12-06@15:20:34 +v2.0.8-161-ga788372e;mulimex;56;10000;;17919;6345;134832;973308;3893232;27;5.856331757;2021-12-06@15:21:24 +v2.0.8-161-ga788372e;mulimex;56;10000;;17919;6345;136404;973067;3892268;26;5.637067908;2021-12-06@15:22:18 +v2.0.8-161-ga788372e;mulimex;56;10000;;17919;6345;133332;973120;3892480;27;5.855872096;2021-12-06@15:23:10 +v2.0.8-161-ga788372e;mulimex;56;10000;;17919;6345;134404;973226;3892904;27;5.855301093;2021-12-06@15:24:02 +v2.0.8-161-ga788372e;mulimex;56;10000;;17919;6345;137088;973290;3893160;27;5.860414051;2021-12-06@15:24:53 +v2.0.8-161-ga788372e;mulimex;56;10000;;17919;6345;136044;973191;3892764;29;6.296841111;2021-12-06@15:25:48 +v2.0.8-161-ga788372e;mulimex;56;10000;;17919;6345;134192;973279;3893116;27;5.865426200;2021-12-06@15:26:41 +v2.0.8-161-ga788372e;multi;100;10000;;18563;6381;157228;1699840;6799360;47;10.243395607;2021-12-06@15:27:58 +v2.0.8-161-ga788372e;multi;100;10000;;18563;6381;153884;1699446;6797784;47;10.260627518;2021-12-06@15:29:21 +v2.0.8-161-ga788372e;multi;100;10000;;18563;6381;154424;1699521;6798084;47;10.232038900;2021-12-06@15:30:40 +v2.0.8-161-ga788372e;multi;100;10000;;18563;6381;156488;1699984;6799936;46;10.006832801;2021-12-06@15:31:59 +v2.0.8-161-ga788372e;multi;100;10000;;18563;6381;155764;1700064;6800256;47;10.238049395;2021-12-06@15:33:18 +v2.0.8-161-ga788372e;multi;100;10000;;18563;6381;158156;1700036;6800144;48;10.447295937;2021-12-06@15:34:39 +v2.0.8-161-ga788372e;multi;100;10000;;18563;6381;153812;1699510;6798040;47;10.240523586;2021-12-06@15:36:01 +v2.0.8-161-ga788372e;multi;100;10000;;18563;6381;155628;1699815;6799260;46;10.007345700;2021-12-06@15:37:21 +v2.0.8-161-ga788372e;imex;100;10000;;18563;6381;97528;28982;115928;192;41.865100099;2021-12-06@15:39:15 +v2.0.8-161-ga788372e;imex;100;10000;;18563;6381;97660;28982;115928;196;42.765122043;2021-12-06@15:41:08 +v2.0.8-161-ga788372e;imex;100;10000;;18563;6381;98328;29160;116640;196;42.776826745;2021-12-06@15:43:00 +v2.0.8-161-ga788372e;imex;100;10000;;18563;6381;98092;29098;116392;193;42.113227186;2021-12-06@15:44:55 +v2.0.8-161-ga788372e;imex;100;10000;;18563;6381;98024;29079;116316;191;41.670385310;2021-12-06@15:46:51 +v2.0.8-161-ga788372e;imex;100;10000;;18563;6381;97596;28975;115900;194;42.347403585;2021-12-06@15:48:41 +v2.0.8-161-ga788372e;imex;100;10000;;18563;6381;97940;29089;116356;193;42.124749758;2021-12-06@15:50:32 +v2.0.8-161-ga788372e;imex;100;10000;;18563;6381;98340;29184;116736;194;42.340088089;2021-12-06@15:52:25 +v2.0.8-161-ga788372e;single;100;10000;;18563;6381;12396;4685;18740;201;43.886697347;2021-12-06@15:54:18 +v2.0.8-161-ga788372e;single;100;10000;;18563;6381;12416;4650;18600;204;44.557125113;2021-12-06@15:56:12 +v2.0.8-161-ga788372e;single;100;10000;;18563;6381;12360;4669;18676;203;44.345104651;2021-12-06@15:58:07 +v2.0.8-161-ga788372e;single;100;10000;;18563;6381;12288;4668;18672;202;44.111571144;2021-12-06@16:00:02 +v2.0.8-161-ga788372e;single;100;10000;;18563;6381;12372;4679;18716;217;47.417960550;2021-12-06@16:02:00 +v2.0.8-161-ga788372e;single;100;10000;;18563;6381;12424;4684;18736;204;44.541854720;2021-12-06@16:03:52 +v2.0.8-161-ga788372e;single;100;10000;;18563;6381;12428;4681;18724;205;44.783031958;2021-12-06@16:05:47 +v2.0.8-161-ga788372e;single;100;10000;;18563;6381;12372;4665;18660;204;44.552089966;2021-12-06@16:07:42 +v2.0.8-161-ga788372e;mulimex;100;10000;;18563;6381;238176;1723216;6892864;49;10.710845221;2021-12-06@16:09:01 +v2.0.8-161-ga788372e;mulimex;100;10000;;18563;6381;235456;1722775;6891100;50;10.916215590;2021-12-06@16:10:30 +v2.0.8-161-ga788372e;mulimex;100;10000;;18563;6381;238756;1723260;6893040;50;10.921517102;2021-12-06@16:11:50 +v2.0.8-161-ga788372e;mulimex;100;10000;;18563;6381;235632;1722288;6889152;51;11.104239267;2021-12-06@16:13:14 +v2.0.8-161-ga788372e;mulimex;100;10000;;18563;6381;235808;1723028;6892112;50;10.924535204;2021-12-06@16:14:36 +v2.0.8-161-ga788372e;mulimex;100;10000;;18563;6381;234916;1722808;6891232;50;10.932362482;2021-12-06@16:15:58 +v2.0.8-161-ga788372e;mulimex;100;10000;;18563;6381;234384;1722756;6891024;49;10.673398292;2021-12-06@16:17:19 +v2.0.8-161-ga788372e;mulimex;100;10000;;18563;6381;232416;1722182;6888728;49;10.756571900;2021-12-06@16:18:41 +v2.0.8-161-ga788372e;multi;178;10000;;19033;6531;274016;2159350;8637400;86;18.810143685;2021-12-06@16:20:41 +v2.0.8-161-ga788372e;multi;178;10000;;19033;6531;275624;2159202;8636808;85;18.604219427;2021-12-06@16:22:51 +v2.0.8-161-ga788372e;multi;178;10000;;19033;6531;275532;2159255;8637020;85;18.592356953;2021-12-06@16:25:02 +v2.0.8-161-ga788372e;multi;178;10000;;19033;6531;270780;2158573;8634292;86;18.833227881;2021-12-06@16:27:11 +v2.0.8-161-ga788372e;multi;178;10000;;19033;6531;267068;2157881;8631524;84;18.480694418;2021-12-06@16:29:22 +v2.0.8-161-ga788372e;multi;178;10000;;19033;6531;269316;2159098;8636392;86;18.836943286;2021-12-06@16:31:34 +v2.0.8-161-ga788372e;multi;178;10000;;19033;6531;270220;2159439;8637756;85;18.572625658;2021-12-06@16:33:45 +v2.0.8-161-ga788372e;multi;178;10000;;19033;6531;274572;2159315;8637260;86;18.796062554;2021-12-06@16:35:55 +v2.0.8-161-ga788372e;imex;178;10000;;19033;6531;168512;49056;196224;372;81.435064869;2021-12-06@16:39:09 +v2.0.8-161-ga788372e;imex;178;10000;;19033;6531;167024;48697;194788;368;80.558510744;2021-12-06@16:42:38 +v2.0.8-161-ga788372e;imex;178;10000;;19033;6531;166748;48570;194280;368;80.585125026;2021-12-06@16:45:55 +v2.0.8-161-ga788372e;imex;178;10000;;19033;6531;165476;48336;193344;374;81.875080009;2021-12-06@16:49:14 +v2.0.8-161-ga788372e;imex;178;10000;;19033;6531;167888;48908;195632;383;83.810889861;2021-12-06@16:52:25 +v2.0.8-161-ga788372e;imex;178;10000;;19033;6531;165844;48383;193532;372;81.602119381;2021-12-06@16:55:38 +v2.0.8-161-ga788372e;imex;178;10000;;19033;6531;165848;48333;193332;362;79.242521109;2021-12-06@16:58:57 +v2.0.8-161-ga788372e;imex;178;10000;;19033;6531;166668;48572;194288;374;81.881825688;2021-12-06@17:02:05 +v2.0.8-161-ga788372e;single;178;10000;;19033;6531;15676;5487;21948;381;83.730208659;2021-12-06@17:05:13 +v2.0.8-161-ga788372e;single;178;10000;;19033;6531;15500;5482;21928;378;82.901160368;2021-12-06@17:08:21 +v2.0.8-161-ga788372e;single;178;10000;;19033;6531;15760;5464;21856;398;87.240639421;2021-12-06@17:11:32 +v2.0.8-161-ga788372e;single;178;10000;;19033;6531;15612;5481;21924;379;83.040451555;2021-12-06@17:14:42 +v2.0.8-161-ga788372e;single;178;10000;;19033;6531;15696;5476;21904;385;84.677077832;2021-12-06@17:17:49 +v2.0.8-161-ga788372e;single;178;10000;;19033;6531;15576;5473;21892;387;84.804172913;2021-12-06@17:21:00 +v2.0.8-161-ga788372e;single;178;10000;;19033;6531;15804;5479;21916;388;85.163903295;2021-12-06@17:24:09 +v2.0.8-161-ga788372e;single;178;10000;;19033;6531;15612;5484;21936;381;83.447983331;2021-12-06@17:27:20 +v2.0.8-161-ga788372e;mulimex;178;10000;;19033;6531;420112;2201113;8804452;90;19.734871982;2021-12-06@17:29:24 +v2.0.8-161-ga788372e;mulimex;178;10000;;19033;6531;416132;2199642;8798568;91;19.886417571;2021-12-06@17:31:28 +v2.0.8-161-ga788372e;mulimex;178;10000;;19033;6531;419452;2200580;8802320;91;19.890319401;2021-12-06@17:33:33 +v2.0.8-161-ga788372e;mulimex;178;10000;;19033;6531;414268;2199304;8797216;91;19.893538266;2021-12-06@17:46:46 +v2.0.8-161-ga788372e;mulimex;178;10000;;19033;6531;414816;2199111;8796444;91;19.908762754;2021-12-06@17:48:53 +v2.0.8-161-ga788372e;mulimex;178;10000;;19033;6531;413064;2199621;8798484;92;20.170746382;2021-12-06@17:51:06 +v2.0.8-161-ga788372e;mulimex;178;10000;;19033;6531;416784;2199609;8798436;91;19.914442486;2021-12-06@17:53:12 +v2.0.8-161-ga788372e;mulimex;178;10000;;19033;6531;414452;2200847;8803388;91;19.897780806;2021-12-06@17:55:19 +v2.0.8-161-ga788372e;multi;316;10000;;19553;6638;473272;2217524;8870096;160;35.109724230;2021-12-06@17:58:43 +v2.0.8-161-ga788372e;multi;316;10000;;19553;6638;489336;2216918;8867672;160;35.036585681;2021-12-06@18:02:37 +v2.0.8-161-ga788372e;multi;316;10000;;19553;6638;499536;2219768;8879072;166;36.453827085;2021-12-06@18:06:33 +v2.0.8-163-ge813cd67;multi;316;10000;;19553;6638;486876;2217561;8870244;165;36.219933598;2021-12-06@18:10:27 +v2.0.8-163-ge813cd67;multi;316;10000;;19553;6638;492756;2219329;8877316;168;36.803414011;2021-12-06@18:14:27 +v2.0.8-163-ge813cd67;multi;316;10000;;19553;6638;484292;2217366;8869464;167;36.641744843;2021-12-06@18:18:42 +v2.0.8-163-ge813cd67;multi;316;10000;;19553;6638;499180;2219884;8879536;166;36.367060291;2021-12-06@18:22:38 +v2.0.8-163-ge813cd67;multi;316;10000;;19553;6638;491808;2220103;8880412;166;36.263668177;2021-12-06@18:26:35 +v2.0.8-163-ge813cd67;imex;316;10000;;19553;6638;284668;82254;329016;739;162.528245515;2021-12-06@18:33:29 +v2.0.8-163-ge813cd67;imex;316;10000;;19553;6638;294544;84701;338804;729;160.674302810;2021-12-06@18:39:20 +v2.0.8-163-ge813cd67;imex;316;10000;;19553;6638;285424;82451;329804;785;172.657519651;2021-12-06@18:45:21 +v2.0.8-163-ge813cd67;imex;316;10000;;19553;6638;294592;84674;338696;734;161.864779166;2021-12-06@18:51:13 +v2.0.8-163-ge813cd67;imex;316;10000;;19553;6638;283944;82114;328456;731;161.452744341;2021-12-06@18:57:03 +v2.0.8-163-ge813cd67;imex;316;10000;;19553;6638;284620;82202;328808;726;159.871484038;2021-12-06@19:02:50 +v2.0.8-163-ge813cd67;imex;316;10000;;19553;6638;288772;83257;333028;747;164.672569104;2021-12-06@19:08:43 +v2.0.8-163-ge813cd67;imex;316;10000;;19553;6638;289132;83339;333356;723;159.327889660;2021-12-06@19:14:28 +v2.0.8-163-ge813cd67;single;316;10000;;19553;6638;21032;6826;27304;799;176.389544066;2021-12-06@19:20:35 +v2.0.8-163-ge813cd67;single;316;10000;;19553;6638;21096;6802;27208;771;170.469001660;2021-12-06@19:26:40 +v2.0.8-163-ge813cd67;single;316;10000;;19553;6638;21228;6838;27352;771;170.445679124;2021-12-06@19:32:48 +v2.0.8-163-ge813cd67;single;316;10000;;19553;6638;20984;6789;27156;782;173.457854715;2021-12-06@19:38:50 +v2.0.8-163-ge813cd67;single;316;10000;;19553;6638;21096;6831;27324;781;172.483058648;2021-12-06@19:44:54 +v2.0.8-163-ge813cd67;single;316;10000;;19553;6638;20852;6799;27196;775;170.973709728;2021-12-06@19:50:55 +v2.0.8-163-ge813cd67;single;316;10000;;19553;6638;21016;6810;27240;767;169.147439080;2021-12-06@19:56:53 +v2.0.8-163-ge813cd67;single;316;10000;;19553;6638;21044;6811;27244;782;172.726994658;2021-12-06@20:02:55 +v2.0.8-163-ge813cd67;mulimex;316;10000;;19553;6638;747296;2293442;9173768;177;38.934544160;2021-12-06@20:06:41 +v2.0.8-163-ge813cd67;mulimex;316;10000;;19553;6638;748264;2294413;9177652;178;39.279433773;2021-12-06@20:07:22 +v2.0.8-163-ge813cd67;mulimex;316;10000;;19553;6638;740736;2292451;9169804;181;39.838252438;2021-12-06@20:08:03 +v2.0.8-163-ge813cd67;mulimex;316;10000;;19553;6638;742224;2292343;9169372;182;40.215076390;2021-12-06@20:08:45 +v2.0.8-163-ge813cd67;mulimex;316;10000;;19553;6638;740520;2291831;9167324;181;39.731890394;2021-12-06@20:09:26 +v2.0.8-163-ge813cd67;mulimex;316;10000;;19553;6638;734676;2290626;9162504;179;39.293273175;2021-12-06@20:10:07 +v2.0.8-163-ge813cd67;mulimex;316;10000;;19553;6638;753600;2294869;9179476;181;39.738133835;2021-12-06@20:10:49 +v2.0.8-163-ge813cd67;mulimex;316;10000;;19553;6638;741224;2292737;9170948;183;40.225612561;2021-12-06@20:11:30 +v2.0.8-163-ge813cd67;multi;10;17783;;29952;12293;43220;192073;768292;16;3.501894537;2021-12-06@20:13:05 +v2.0.8-163-ge813cd67;multi;10;17783;;29952;12293;43196;192024;768096;18;3.930211244;2021-12-06@20:13:11 +v2.0.8-163-ge813cd67;multi;10;17783;;29952;12293;43300;192041;768164;19;4.153959610;2021-12-06@20:13:16 +v2.0.8-163-ge813cd67;multi;10;17783;;29952;12293;43332;192050;768200;19;4.154886280;2021-12-06@20:13:22 +v2.0.8-163-ge813cd67;multi;10;17783;;29952;12293;43324;192054;768216;19;4.156487913;2021-12-06@20:13:28 +v2.0.8-163-ge813cd67;multi;10;17783;;29952;12293;43536;192058;768232;19;4.155744364;2021-12-06@20:13:33 +v2.0.8-163-ge813cd67;multi;10;17783;;29952;12293;43232;192053;768212;19;4.158111188;2021-12-06@20:13:39 +v2.0.8-163-ge813cd67;multi;10;17783;;29952;12293;43076;192027;768108;19;4.151844965;2021-12-06@20:13:45 +v2.0.8-163-ge813cd67;imex;10;17783;;29952;12293;36312;11009;44036;45;9.845653838;2021-12-06@20:14:05 +v2.0.8-163-ge813cd67;imex;10;17783;;29952;12293;36424;11000;44000;46;10.105034944;2021-12-06@20:14:17 +v2.0.8-163-ge813cd67;imex;10;17783;;29952;12293;36384;10999;43996;45;9.875427425;2021-12-06@20:14:28 +v2.0.8-163-ge813cd67;imex;10;17783;;29952;12293;36440;10994;43976;47;10.319987275;2021-12-06@20:14:40 +v2.0.8-163-ge813cd67;imex;10;17783;;29952;12293;36260;11007;44028;46;10.097267729;2021-12-06@20:14:52 +v2.0.8-163-ge813cd67;imex;10;17783;;29952;12293;36300;11006;44024;47;10.315758143;2021-12-06@20:15:04 +v2.0.8-163-ge813cd67;imex;10;17783;;29952;12293;36388;10993;43972;47;10.325056653;2021-12-06@20:15:15 +v2.0.8-163-ge813cd67;imex;10;17783;;29952;12293;36600;11025;44100;46;10.097867454;2021-12-06@20:15:27 +v2.0.8-163-ge813cd67;single;10;17783;;29952;12293;11824;4515;18060;46;10.075913204;2021-12-06@20:15:46 +v2.0.8-163-ge813cd67;single;10;17783;;29952;12293;11460;4504;18016;50;10.976056302;2021-12-06@20:15:58 +v2.0.8-163-ge813cd67;single;10;17783;;29952;12293;11708;4512;18048;48;10.537367488;2021-12-06@20:16:10 +v2.0.8-163-ge813cd67;single;10;17783;;29952;12293;11492;4504;18016;46;10.095178399;2021-12-06@20:16:22 +v2.0.8-163-ge813cd67;single;10;17783;;29952;12293;11744;4502;18008;46;10.090156325;2021-12-06@20:16:33 +v2.0.8-163-ge813cd67;single;10;17783;;29952;12293;11840;4532;18128;47;10.326571395;2021-12-06@20:16:45 +v2.0.8-163-ge813cd67;single;10;17783;;29952;12293;11748;4522;18088;47;10.317123405;2021-12-06@20:16:57 +v2.0.8-163-ge813cd67;single;10;17783;;29952;12293;11860;4533;18132;47;10.317285413;2021-12-06@20:17:09 +v2.0.8-163-ge813cd67;mulimex;10;17783;;29952;12293;62000;197033;788132;19;4.096507190;2021-12-06@20:17:22 +v2.0.8-163-ge813cd67;mulimex;10;17783;;29952;12293;61496;197049;788196;19;4.159589447;2021-12-06@20:17:28 +v2.0.8-163-ge813cd67;mulimex;10;17783;;29952;12293;61528;197013;788052;19;4.157080121;2021-12-06@20:17:33 +v2.0.8-163-ge813cd67;mulimex;10;17783;;29952;12293;61336;197054;788216;20;4.375605851;2021-12-06@20:17:39 +v2.0.8-163-ge813cd67;mulimex;10;17783;;29952;12293;61960;197035;788140;19;4.158493927;2021-12-06@20:17:45 +v2.0.8-163-ge813cd67;mulimex;10;17783;;29952;12293;62100;197061;788244;19;4.153872220;2021-12-06@20:17:50 +v2.0.8-163-ge813cd67;mulimex;10;17783;;29952;12293;62156;197028;788112;19;4.158705283;2021-12-06@20:17:56 +v2.0.8-163-ge813cd67;mulimex;10;17783;;29952;12293;61480;197031;788124;19;4.148763160;2021-12-06@20:18:02 +v2.0.8-163-ge813cd67;multi;18;17783;;31744;12312;64672;328806;1315224;20;4.318850415;2021-12-06@20:18:17 +v2.0.8-163-ge813cd67;multi;18;17783;;31744;12312;64820;329049;1316196;22;4.815345088;2021-12-06@20:18:23 +v2.0.8-163-ge813cd67;multi;18;17783;;31744;12312;65324;328908;1315632;22;4.818446147;2021-12-06@20:18:30 +v2.0.8-163-ge813cd67;multi;18;17783;;31744;12312;65360;328856;1315424;22;4.817503278;2021-12-06@20:18:36 +v2.0.8-163-ge813cd67;multi;18;17783;;31744;12312;64740;328777;1315108;23;5.041512642;2021-12-06@20:18:43 +v2.0.8-163-ge813cd67;multi;18;17783;;31744;12312;64620;328807;1315228;22;4.812746187;2021-12-06@20:18:49 +v2.0.8-163-ge813cd67;multi;18;17783;;31744;12312;65080;328962;1315848;23;5.036722026;2021-12-06@20:18:55 +v2.0.8-163-ge813cd67;multi;18;17783;;31744;12312;65008;328785;1315140;22;4.814744526;2021-12-06@20:19:02 +v2.0.8-163-ge813cd67;imex;18;17783;;31744;12312;49696;14547;58188;76;16.710933951;2021-12-06@20:19:31 +v2.0.8-163-ge813cd67;imex;18;17783;;31744;12312;49616;14539;58156;76;16.719335322;2021-12-06@20:19:49 +v2.0.8-163-ge813cd67;imex;18;17783;;31744;12312;49788;14561;58244;76;16.720804601;2021-12-06@20:20:08 +v2.0.8-163-ge813cd67;imex;18;17783;;31744;12312;49420;14537;58148;74;16.291328611;2021-12-06@20:20:25 +v2.0.8-163-ge813cd67;imex;18;17783;;31744;12312;49760;14542;58168;75;16.506797991;2021-12-06@20:20:43 +v2.0.8-163-ge813cd67;imex;18;17783;;31744;12312;49460;14543;58172;75;16.510428069;2021-12-06@20:21:01 +v2.0.8-163-ge813cd67;imex;18;17783;;31744;12312;49488;14565;58260;78;17.159815365;2021-12-06@20:21:20 +v2.0.8-163-ge813cd67;imex;18;17783;;31744;12312;49628;14539;58156;77;16.937557715;2021-12-06@20:21:38 +v2.0.8-163-ge813cd67;single;18;17783;;31744;12312;12664;4752;19008;78;17.150778775;2021-12-06@20:22:09 +v2.0.8-163-ge813cd67;single;18;17783;;31744;12312;12852;4752;19008;75;16.572674042;2021-12-06@20:22:27 +v2.0.8-163-ge813cd67;single;18;17783;;31744;12312;12696;4735;18940;74;16.284344401;2021-12-06@20:22:45 +v2.0.8-163-ge813cd67;single;18;17783;;31744;12312;12684;4743;18972;77;16.958014917;2021-12-06@20:23:03 +v2.0.8-163-ge813cd67;single;18;17783;;31744;12312;12856;4766;19064;76;16.736716239;2021-12-06@20:23:21 +v2.0.8-163-ge813cd67;single;18;17783;;31744;12312;12708;4750;19000;76;16.724097892;2021-12-06@20:23:40 +v2.0.8-163-ge813cd67;single;18;17783;;31744;12312;12792;4758;19032;80;17.605004747;2021-12-06@20:23:59 +v2.0.8-163-ge813cd67;single;18;17783;;31744;12312;12812;4759;19036;79;17.394453901;2021-12-06@20:24:18 +v2.0.8-163-ge813cd67;mulimex;18;17783;;31744;12312;95888;336939;1347756;21;4.545320025;2021-12-06@20:24:36 +v2.0.8-163-ge813cd67;mulimex;18;17783;;31744;12312;95048;336946;1347784;23;5.043875112;2021-12-06@20:24:42 +v2.0.8-163-ge813cd67;mulimex;18;17783;;31744;12312;94508;336884;1347536;23;5.047837888;2021-12-06@20:24:49 +v2.0.8-163-ge813cd67;mulimex;18;17783;;31744;12312;94472;336843;1347372;23;5.044710659;2021-12-06@20:24:55 +v2.0.8-163-ge813cd67;mulimex;18;17783;;31744;12312;94740;336885;1347540;23;5.043086984;2021-12-06@20:25:02 +v2.0.8-163-ge813cd67;mulimex;18;17783;;31744;12312;94692;336878;1347512;24;5.263748739;2021-12-06@20:25:09 +v2.0.8-163-ge813cd67;mulimex;18;17783;;31744;12312;94916;336884;1347536;23;5.038846352;2021-12-06@20:25:15 +v2.0.8-163-ge813cd67;mulimex;18;17783;;31744;12312;95928;336986;1347944;23;5.045801500;2021-12-06@20:25:22 +v2.0.8-163-ge813cd67;multi;32;17783;;32894;12393;102200;568266;2273064;27;5.889785287;2021-12-06@20:25:48 +v2.0.8-163-ge813cd67;multi;32;17783;;32894;12393;103496;568251;2273004;33;7.254135647;2021-12-06@20:25:57 +v2.0.8-163-ge813cd67;multi;32;17783;;32894;12393;103060;568155;2272620;33;7.258544791;2021-12-06@20:26:05 +v2.0.8-163-ge813cd67;multi;32;17783;;32894;12393;103120;568281;2273124;33;7.259433077;2021-12-06@20:26:14 +v2.0.8-163-ge813cd67;multi;32;17783;;32894;12393;102232;568193;2272772;33;7.260431843;2021-12-06@20:26:23 +v2.0.8-163-ge813cd67;multi;32;17783;;32894;12393;103408;568131;2272524;33;7.257202648;2021-12-06@20:26:32 +v2.0.8-163-ge813cd67;multi;32;17783;;32894;12393;102248;568195;2272780;32;7.033852291;2021-12-06@20:26:40 +v2.0.8-163-ge813cd67;multi;32;17783;;32894;12393;103584;568271;2273084;33;7.250038875;2021-12-06@20:26:49 +v2.0.8-163-ge813cd67;imex;32;17783;;32894;12393;71536;20480;81920;130;28.634837924;2021-12-06@20:27:41 +v2.0.8-163-ge813cd67;imex;32;17783;;32894;12393;71828;20484;81936;127;27.989196410;2021-12-06@20:28:11 +v2.0.8-163-ge813cd67;imex;32;17783;;32894;12393;71440;20475;81900;128;28.197493992;2021-12-06@20:28:41 +v2.0.8-163-ge813cd67;imex;32;17783;;32894;12393;71676;20476;81904;129;28.434298098;2021-12-06@20:29:11 +v2.0.8-163-ge813cd67;imex;32;17783;;32894;12393;71684;20463;81852;128;28.214101359;2021-12-06@20:29:41 +v2.0.8-163-ge813cd67;imex;32;17783;;32894;12393;71496;20481;81924;127;28.004319718;2021-12-06@20:30:10 +v2.0.8-163-ge813cd67;imex;32;17783;;32894;12393;71432;20462;81848;128;28.211302327;2021-12-06@20:30:40 +v2.0.8-163-ge813cd67;imex;32;17783;;32894;12393;71788;20486;81944;129;28.440937824;2021-12-06@20:31:10 +v2.0.8-163-ge813cd67;single;32;17783;;32894;12393;13788;5053;20212;138;30.418650112;2021-12-06@20:32:03 +v2.0.8-163-ge813cd67;single;32;17783;;32894;12393;14100;5056;20224;130;28.650281365;2021-12-06@20:32:33 +v2.0.8-163-ge813cd67;single;32;17783;;32894;12393;14112;5053;20212;132;29.096653304;2021-12-06@20:33:04 +v2.0.8-163-ge813cd67;single;32;17783;;32894;12393;13752;5054;20216;133;29.323401255;2021-12-06@20:33:34 +v2.0.8-163-ge813cd67;single;32;17783;;32894;12393;14000;5051;20204;130;28.640473480;2021-12-06@20:34:06 +v2.0.8-163-ge813cd67;single;32;17783;;32894;12393;13808;5053;20212;128;28.205272779;2021-12-06@20:34:36 +v2.0.8-163-ge813cd67;single;32;17783;;32894;12393;13872;5066;20264;129;28.431496100;2021-12-06@20:35:06 +v2.0.8-163-ge813cd67;single;32;17783;;32894;12393;13728;5058;20232;134;29.531467650;2021-12-06@20:35:37 +v2.0.8-163-ge813cd67;mulimex;32;17783;;32894;12393;152396;581787;2327148;29;6.324602926;2021-12-06@20:36:04 +v2.0.8-163-ge813cd67;mulimex;32;17783;;32894;12393;153572;581745;2326980;34;7.484398688;2021-12-06@20:36:13 +v2.0.8-163-ge813cd67;mulimex;32;17783;;32894;12393;153808;581826;2327304;34;7.483412616;2021-12-06@20:36:22 +v2.0.8-163-ge813cd67;mulimex;32;17783;;32894;12393;153264;581724;2326896;34;7.485421176;2021-12-06@20:36:30 +v2.0.8-163-ge813cd67;mulimex;32;17783;;32894;12393;152912;581772;2327088;34;7.483382201;2021-12-06@20:36:39 +v2.0.8-163-ge813cd67;mulimex;32;17783;;32894;12393;153932;581737;2326948;34;7.481120459;2021-12-06@20:36:48 +v2.0.8-163-ge813cd67;mulimex;32;17783;;32894;12393;152668;581760;2327040;35;7.705629881;2021-12-06@20:36:58 +v2.0.8-163-ge813cd67;mulimex;32;17783;;32894;12393;153600;581890;2327560;33;7.260312320;2021-12-06@20:37:06 +v2.0.8-163-ge813cd67;multi;56;17783;;33578;12411;167480;978389;3913556;46;10.121600957;2021-12-06@20:37:47 +v2.0.8-163-ge813cd67;multi;56;17783;;33578;12411;167404;978474;3913896;51;11.233279854;2021-12-06@20:38:00 +v2.0.8-163-ge813cd67;multi;56;17783;;33578;12411;168088;978336;3913344;51;11.248628932;2021-12-06@20:38:13 +v2.0.8-163-ge813cd67;multi;56;17783;;33578;12411;168432;978410;3913640;52;11.469414891;2021-12-06@20:38:26 +v2.0.8-163-ge813cd67;multi;56;17783;;33578;12411;169440;978712;3914848;52;11.480132192;2021-12-06@20:38:39 +v2.0.8-163-ge813cd67;multi;56;17783;;33578;12411;168784;978638;3914552;53;11.694225140;2021-12-06@20:38:52 +v2.0.8-163-ge813cd67;multi;56;17783;;33578;12411;165712;978262;3913048;52;11.480888442;2021-12-06@20:39:05 +v2.0.8-163-ge813cd67;multi;56;17783;;33578;12411;166332;978182;3912728;51;11.254613500;2021-12-06@20:39:18 +v2.0.8-163-ge813cd67;imex;56;17783;;33578;12411;108252;30352;121408;217;47.854685718;2021-12-06@20:40:46 +v2.0.8-163-ge813cd67;imex;56;17783;;33578;12411;108100;30371;121484;222;48.990026257;2021-12-06@20:41:36 +v2.0.8-163-ge813cd67;imex;56;17783;;33578;12411;108020;30302;121208;214;47.192668348;2021-12-06@20:42:25 +v2.0.8-163-ge813cd67;imex;56;17783;;33578;12411;108024;30293;121172;211;46.537644076;2021-12-06@20:43:13 +v2.0.8-163-ge813cd67;imex;56;17783;;33578;12411;108008;30312;121248;229;50.482256930;2021-12-06@20:44:05 +v2.0.8-163-ge813cd67;imex;56;17783;;33578;12411;108220;30354;121416;220;48.511016057;2021-12-06@20:44:55 +v2.0.8-163-ge813cd67;imex;56;17783;;33578;12411;108432;30316;121264;219;48.295091310;2021-12-06@20:45:45 +v2.0.8-163-ge813cd67;imex;56;17783;;33578;12411;108204;30357;121428;222;48.979834405;2021-12-06@20:46:35 +v2.0.8-163-ge813cd67;single;56;17783;;33578;12411;15228;5432;21728;240;52.940262022;2021-12-06@20:48:04 +v2.0.8-163-ge813cd67;single;56;17783;;33578;12411;15304;5435;21740;228;50.303076962;2021-12-06@20:48:56 +v2.0.8-163-ge813cd67;single;56;17783;;33578;12411;15548;5459;21836;220;48.554455486;2021-12-06@20:49:47 +v2.0.8-163-ge813cd67;single;56;17783;;33578;12411;15308;5444;21776;222;49.008509564;2021-12-06@20:50:38 +v2.0.8-163-ge813cd67;single;56;17783;;33578;12411;15428;5452;21808;221;48.781160247;2021-12-06@20:51:31 +v2.0.8-163-ge813cd67;single;56;17783;;33578;12411;15228;5455;21820;217;47.883786884;2021-12-06@20:52:21 +v2.0.8-163-ge813cd67;single;56;17783;;33578;12411;15288;5426;21704;258;56.958597239;2021-12-06@20:53:19 +v2.0.8-163-ge813cd67;single;56;17783;;33578;12411;15500;5451;21804;222;48.989794059;2021-12-06@20:54:09 +v2.0.8-163-ge813cd67;mulimex;56;17783;;33578;12411;250968;1001355;4005420;50;11.060636581;2021-12-06@20:54:56 +v2.0.8-163-ge813cd67;mulimex;56;17783;;33578;12411;252784;1001514;4006056;55;12.152078628;2021-12-06@20:55:10 +v2.0.8-163-ge813cd67;mulimex;56;17783;;33578;12411;252052;1001277;4005108;56;12.374197611;2021-12-06@20:55:26 +v2.0.8-163-ge813cd67;mulimex;56;17783;;33578;12411;250648;1001277;4005108;54;11.926556592;2021-12-06@20:55:41 +v2.0.8-163-ge813cd67;mulimex;56;17783;;33578;12411;250812;1001283;4005132;55;12.158614198;2021-12-06@20:55:57 +v2.0.8-163-ge813cd67;mulimex;56;17783;;33578;12411;252516;1001220;4004880;56;12.367040358;2021-12-06@20:56:13 +v2.0.8-163-ge813cd67;mulimex;56;17783;;33578;12411;252056;1001418;4005672;57;12.576237327;2021-12-06@20:56:29 +v2.0.8-163-ge813cd67;mulimex;56;17783;;33578;12411;252780;1001270;4005080;57;12.599500941;2021-12-06@20:56:45 +v2.0.8-163-ge813cd67;multi;100;17783;;33951;12499;286552;1730237;6920948;87;19.241520785;2021-12-06@20:58:01 +v2.0.8-163-ge813cd67;multi;100;17783;;33951;12499;288848;1731029;6924116;92;20.325654482;2021-12-06@20:58:23 +v2.0.8-163-ge813cd67;multi;100;17783;;33951;12499;288908;1730865;6923460;93;20.556020913;2021-12-06@20:58:45 +v2.0.8-163-ge813cd67;multi;100;17783;;33951;12499;284360;1730148;6920592;92;20.374314073;2021-12-06@20:59:08 +v2.0.8-163-ge813cd67;multi;100;17783;;33951;12499;289104;1730877;6923508;95;21.010108917;2021-12-06@20:59:31 +v2.0.8-163-ge813cd67;multi;100;17783;;33951;12499;288204;1731890;6927560;94;20.817362860;2021-12-06@20:59:54 +v2.0.8-163-ge813cd67;multi;100;17783;;33951;12499;289448;1731094;6924376;88;19.514472725;2021-12-06@21:00:16 +v2.0.8-163-ge813cd67;multi;100;17783;;33951;12499;284968;1730647;6922588;92;20.373575097;2021-12-06@21:00:39 +v2.0.8-163-ge813cd67;imex;100;17783;;33951;12499;175420;48437;193748;393;86.931550083;2021-12-06@21:03:13 +v2.0.8-163-ge813cd67;imex;100;17783;;33951;12499;175680;48530;194120;389;86.047319063;2021-12-06@21:04:40 +v2.0.8-163-ge813cd67;imex;100;17783;;33951;12499;174932;48333;193332;389;86.042806907;2021-12-06@21:06:08 +v2.0.8-163-ge813cd67;imex;100;17783;;33951;12499;175256;48409;193636;374;82.686947744;2021-12-06@21:07:32 +v2.0.8-163-ge813cd67;imex;100;17783;;33951;12499;174264;48227;192908;391;86.534293120;2021-12-06@21:09:00 +v2.0.8-163-ge813cd67;imex;100;17783;;33951;12499;175164;48321;193284;395;87.429189880;2021-12-06@21:10:29 +v2.0.8-163-ge813cd67;imex;100;17783;;33951;12499;174788;48355;193420;386;85.434448517;2021-12-06@21:11:56 +v2.0.8-163-ge813cd67;imex;100;17783;;33951;12499;174720;48348;193392;377;83.379206264;2021-12-06@21:13:21 +v2.0.8-163-ge813cd67;single;100;17783;;33951;12499;17808;6029;24116;409;90.665509842;2021-12-06@21:15:57 +v2.0.8-163-ge813cd67;single;100;17783;;33951;12499;17564;6010;24040;406;90.077951916;2021-12-06@21:17:29 +v2.0.8-163-ge813cd67;single;100;17783;;33951;12499;17840;6006;24024;409;90.699169533;2021-12-06@21:19:01 +v2.0.8-163-ge813cd67;single;100;17783;;33951;12499;17744;6054;24216;400;88.774242984;2021-12-06@21:20:32 +v2.0.8-163-ge813cd67;single;100;17783;;33951;12499;17516;5977;23908;420;93.218086288;2021-12-06@21:22:06 +v2.0.8-163-ge813cd67;single;100;17783;;33951;12499;17516;5966;23864;403;89.497769150;2021-12-06@21:23:37 +v2.0.8-163-ge813cd67;single;100;17783;;33951;12499;17776;6063;24252;409;90.766893951;2021-12-06@21:25:09 +v2.0.8-163-ge813cd67;single;100;17783;;33951;12499;17440;5989;23956;411;91.293720343;2021-12-06@21:26:42 +v2.0.8-163-ge813cd67;mulimex;100;17783;;33951;12499;434020;1770411;7081644;92;20.374003266;2021-12-06@21:28:07 +v2.0.8-163-ge813cd67;mulimex;100;17783;;33951;12499;433596;1770884;7083536;97;21.449047419;2021-12-06@21:28:29 +v2.0.8-163-ge813cd67;mulimex;100;17783;;33951;12499;432756;1770333;7081332;98;21.788378714;2021-12-06@21:28:53 +v2.0.8-163-ge813cd67;mulimex;100;17783;;33951;12499;432368;1770376;7081504;98;21.669638297;2021-12-06@21:29:16 +v2.0.8-163-ge813cd67;mulimex;100;17783;;33951;12499;432388;1770464;7081856;98;21.721247625;2021-12-06@21:29:39 +v2.0.8-163-ge813cd67;mulimex;100;17783;;33951;12499;433992;1770388;7081552;98;21.706651846;2021-12-06@21:30:02 +v2.0.8-163-ge813cd67;mulimex;100;17783;;33951;12499;432252;1770500;7082000;97;21.460912763;2021-12-06@21:30:25 +v2.0.8-163-ge813cd67;mulimex;100;17783;;33951;12499;431716;1770274;7081096;98;21.706835494;2021-12-06@21:30:48 +v2.0.8-163-ge813cd67;multi;178;17783;;34156;12582;493224;2211142;8844568;156;34.631798281;2021-12-06@21:33:00 +v2.0.8-163-ge813cd67;multi;178;17783;;34156;12582;495676;2211991;8847964;162;35.912034559;2021-12-06@21:33:37 +v2.0.8-163-ge813cd67;multi;178;17783;;34156;12582;491824;2211005;8844020;162;35.949107695;2021-12-06@21:34:15 +v2.0.8-163-ge813cd67;multi;178;17783;;34156;12582;493592;2211067;8844268;164;36.282322167;2021-12-06@21:34:52 +v2.0.8-163-ge813cd67;multi;178;17783;;34156;12582;499688;2212468;8849872;163;36.084842565;2021-12-06@21:35:30 +v2.0.8-163-ge813cd67;multi;178;17783;;34156;12582;499512;2212139;8848556;163;36.161966909;2021-12-06@21:36:08 +v2.0.8-163-ge813cd67;multi;178;17783;;34156;12582;498736;2212306;8849224;161;35.698107826;2021-12-06@21:36:45 +v2.0.8-163-ge813cd67;multi;178;17783;;34156;12582;497008;2212270;8849080;164;36.357921824;2021-12-06@21:37:23 +v2.0.8-163-ge813cd67;imex;178;17783;;34156;12582;294084;80485;321940;713;158.285876408;2021-12-06@21:42:00 +v2.0.8-163-ge813cd67;imex;178;17783;;34156;12582;292964;80178;320712;696;154.492668580;2021-12-06@21:44:36 +v2.0.8-163-ge813cd67;imex;178;17783;;34156;12582;294524;80562;322248;701;155.776462026;2021-12-06@21:47:14 +v2.0.8-163-ge813cd67;imex;178;17783;;34156;12582;293552;80305;321220;733;163.349949427;2021-12-06@21:49:58 +v2.0.8-163-ge813cd67;imex;178;17783;;34156;12582;295016;80685;322740;681;151.631866600;2021-12-06@21:52:32 +v2.0.8-163-ge813cd67;imex;178;17783;;34156;12582;292956;80171;320684;680;150.936769125;2021-12-06@21:55:04 +v2.0.8-163-ge813cd67;imex;178;17783;;34156;12582;294468;80503;322012;672;149.162057416;2021-12-06@21:57:35 +v2.0.8-163-ge813cd67;imex;178;17783;;34156;12582;294588;80557;322228;703;156.113833841;2021-12-06@22:00:12 +v2.0.8-163-ge813cd67;single;178;17783;;34156;12582;21020;6899;27596;750;166.981207920;2021-12-06@22:04:52 +v2.0.8-163-ge813cd67;single;178;17783;;34156;12582;21268;6893;27572;765;170.676730082;2021-12-06@22:07:44 +v2.0.8-163-ge813cd67;single;178;17783;;34156;12582;21032;6867;27468;724;161.047044019;2021-12-06@22:10:27 +v2.0.8-163-ge813cd67;single;178;17783;;34156;12582;21076;6867;27468;746;166.213513958;2021-12-06@22:13:14 +v2.0.8-163-ge813cd67;single;178;17783;;34156;12582;21252;6880;27520;702;156.176459554;2021-12-06@22:15:53 +v2.0.8-163-ge813cd67;single;178;17783;;34156;12582;21252;6906;27624;745;165.893160710;2021-12-06@22:18:41 +v2.0.8-163-ge813cd67;single;178;17783;;34156;12582;21328;6885;27540;716;159.211054427;2021-12-06@22:21:22 +v2.0.8-163-ge813cd67;single;178;17783;;34156;12582;21372;6912;27648;753;167.677584181;2021-12-06@22:24:12 +v2.0.8-163-ge813cd67;mulimex;178;17783;;34156;12582;761996;2283589;9134356;158;35.077615140;2021-12-06@22:26:35 +v2.0.8-163-ge813cd67;mulimex;178;17783;;34156;12582;757388;2282014;9128056;173;38.366688669;2021-12-06@22:27:15 +v2.0.8-163-ge813cd67;mulimex;178;17783;;34156;12582;760388;2283387;9133548;172;38.185089177;2021-12-06@22:27:54 +v2.0.8-163-ge813cd67;mulimex;178;17783;;34156;12582;754976;2281953;9127812;169;37.510356497;2021-12-06@22:28:33 +v2.0.8-163-ge813cd67;mulimex;178;17783;;34156;12582;757304;2282234;9128936;170;37.729832892;2021-12-06@22:29:13 +v2.0.8-163-ge813cd67;mulimex;178;17783;;34156;12582;756040;2281805;9127220;174;38.618450690;2021-12-06@22:29:53 +v2.0.8-163-ge813cd67;mulimex;178;17783;;34156;12582;760120;2283030;9132120;169;37.503847768;2021-12-06@22:30:32 +v2.0.8-163-ge813cd67;mulimex;178;17783;;34156;12582;761100;2283870;9135480;169;37.636358569;2021-12-06@22:31:11 +v2.0.8-163-ge813cd67;multi;316;17783;;34574;12710;876356;2311836;9247344;293;65.392363755;2021-12-06@22:35:12 +v2.0.8-163-ge813cd67;multi;316;17783;;34574;12710;867084;2310575;9242300;291;65.238325685;2021-12-06@22:36:20 +v2.0.8-163-ge813cd67;multi;316;17783;;34574;12710;876580;2311633;9246532;298;66.139101648;2021-12-06@22:37:27 +v2.0.8-163-ge813cd67;multi;316;17783;;34574;12710;864840;2309843;9239372;285;63.312026602;2021-12-06@22:38:32 +v2.0.8-163-ge813cd67;multi;316;17783;;34574;12710;875652;2311655;9246620;293;65.272628546;2021-12-06@22:39:39 +v2.0.8-163-ge813cd67;multi;316;17783;;34574;12710;864216;2309545;9238180;291;64.769997895;2021-12-06@22:40:45 +v2.0.8-163-ge813cd67;multi;316;17783;;34574;12710;858300;2308839;9235356;293;65.119980084;2021-12-06@22:41:52 +v2.0.8-163-ge813cd67;multi;316;17783;;34574;12710;873928;2311692;9246768;299;66.837449563;2021-12-06@22:43:01 +v2.0.8-163-ge813cd67;imex;316;17783;;34574;12710;508512;138198;552792;1319;294.454130761;2021-12-06@22:51:14 +v2.0.8-163-ge813cd67;imex;316;17783;;34574;12710;506972;137849;551396;1320;295.056020887;2021-12-06@22:56:11 +v2.0.8-163-ge813cd67;imex;316;17783;;34574;12710;515604;140023;560092;1291;288.661181754;2021-12-06@23:01:01 +v2.0.8-163-ge813cd67;imex;316;17783;;34574;12710;507152;137844;551376;1278;285.510122239;2021-12-06@23:06:03 +v2.0.8-163-ge813cd67;imex;316;17783;;34574;12710;506552;137709;550836;1321;294.923234433;2021-12-06@23:11:00 +v2.0.8-163-ge813cd67;imex;316;17783;;34574;12710;511720;138992;555968;1282;287.720350930;2021-12-06@23:15:49 +v2.0.8-163-ge813cd67;imex;316;17783;;34574;12710;506536;137741;550964;1340;300.026245249;2021-12-06@23:20:51 +v2.0.8-163-ge813cd67;imex;316;17783;;34574;12710;515792;139964;559856;1269;284.149055276;2021-12-06@23:25:36 +v2.0.8-163-ge813cd67;single;316;17783;;34574;12710;27536;8477;33908;1375;307.628461075;2021-12-06@23:34:13 +v2.0.8-163-ge813cd67;single;316;17783;;34574;12710;27484;8425;33700;1372;307.259035026;2021-12-06@23:39:22 +v2.0.8-163-ge813cd67;single;316;17783;;34574;12710;27340;8435;33740;1395;312.356857004;2021-12-06@23:44:36 +v2.0.8-163-ge813cd67;single;316;17783;;34574;12710;27532;8441;33764;1377;308.193987236;2021-12-06@23:49:46 +v2.0.8-163-ge813cd67;single;316;17783;;34574;12710;27304;8441;33764;1398;312.486161392;2021-12-06@23:55:00 +v2.0.8-163-ge813cd67;single;316;17783;;34574;12710;27448;8468;33872;1391;311.376580435;2021-12-07@00:00:12 +v2.0.8-163-ge813cd67;single;316;17783;;34574;12710;27408;8488;33952;1415;316.358885819;2021-12-07@00:05:30 +v2.0.8-163-ge813cd67;single;316;17783;;34574;12710;27208;8411;33644;1395;312.665274985;2021-12-07@00:10:44 +v2.0.8-163-ge813cd67;mulimex;316;17783;;34574;12710;1345012;2437790;9751160;303;67.809636965;2021-12-07@00:15:15 +v2.0.8-163-ge813cd67;mulimex;316;17783;;34574;12710;1343316;2438145;9752580;310;68.863045109;2021-12-07@00:16:26 +v2.0.8-163-ge813cd67;mulimex;316;17783;;34574;12710;1333476;2436939;9747756;313;69.917316184;2021-12-07@00:17:37 +v2.0.8-163-ge813cd67;mulimex;316;17783;;34574;12710;1339004;2437407;9749628;311;69.161857163;2021-12-07@00:18:49 +v2.0.8-163-ge813cd67;mulimex;316;17783;;34574;12710;1339604;2436905;9747620;305;67.833680449;2021-12-07@00:19:58 +v2.0.8-163-ge813cd67;mulimex;316;17783;;34574;12710;1340520;2438025;9752100;312;69.367867416;2021-12-07@00:21:09 +v2.0.8-163-ge813cd67;mulimex;316;17783;;34574;12710;1350528;2439559;9758236;309;68.616446795;2021-12-07@00:22:20 +v2.0.8-163-ge813cd67;mulimex;316;17783;;34574;12710;1342512;2438486;9753944;311;69.337702741;2021-12-07@00:23:31 +v2.0.8-163-ge813cd67;multi;10;31623;;54425;24231;76764;199484;797936;25;5.577802708;2021-12-07@00:25:14 +v2.0.8-163-ge813cd67;multi;10;31623;;54425;24231;76900;199458;797832;26;5.788412392;2021-12-07@00:25:21 +v2.0.8-163-ge813cd67;multi;10;31623;;54425;24231;76992;199475;797900;27;6.017407981;2021-12-07@00:25:29 +v2.0.8-163-ge813cd67;multi;10;31623;;54425;24231;76676;199483;797932;27;6.020662961;2021-12-07@00:25:36 +v2.0.8-163-ge813cd67;multi;10;31623;;54425;24231;76620;199481;797924;27;6.020711463;2021-12-07@00:25:44 +v2.0.8-163-ge813cd67;multi;10;31623;;54425;24231;76740;199655;798620;26;5.783806234;2021-12-07@00:25:51 +v2.0.8-163-ge813cd67;multi;10;31623;;54425;24231;76904;199527;798108;27;6.026277832;2021-12-07@00:25:58 +v2.0.8-163-ge813cd67;multi;10;31623;;54425;24231;76908;199483;797932;27;6.022514340;2021-12-07@00:26:06 +v2.0.8-163-ge813cd67;imex;10;31623;;54425;24231;64644;18025;72100;77;17.226446663;2021-12-07@00:26:32 +v2.0.8-163-ge813cd67;imex;10;31623;;54425;24231;64444;18016;72064;80;17.907633542;2021-12-07@00:26:51 +v2.0.8-163-ge813cd67;imex;10;31623;;54425;24231;64408;18007;72028;80;17.926030627;2021-12-07@00:27:11 +v2.0.8-163-ge813cd67;imex;10;31623;;54425;24231;64464;18013;72052;77;17.233416684;2021-12-07@00:27:29 +v2.0.8-163-ge813cd67;imex;10;31623;;54425;24231;64412;18030;72120;79;17.687326143;2021-12-07@00:27:49 +v2.0.8-163-ge813cd67;imex;10;31623;;54425;24231;64364;18005;72020;81;18.123377453;2021-12-07@00:28:08 +v2.0.8-163-ge813cd67;imex;10;31623;;54425;24231;64440;18016;72064;82;18.364293282;2021-12-07@00:28:28 +v2.0.8-163-ge813cd67;imex;10;31623;;54425;24231;64492;18000;72000;76;17.009441753;2021-12-07@00:28:47 +v2.0.8-163-ge813cd67;single;10;31623;;54425;24231;18460;6167;24668;81;18.101138551;2021-12-07@00:29:13 +v2.0.8-163-ge813cd67;single;10;31623;;54425;24231;18504;6168;24672;78;17.458490078;2021-12-07@00:29:32 +v2.0.8-163-ge813cd67;single;10;31623;;54425;24231;18448;6194;24776;80;17.911326333;2021-12-07@00:29:51 +v2.0.8-163-ge813cd67;single;10;31623;;54425;24231;18436;6177;24708;81;18.146125845;2021-12-07@00:30:11 +v2.0.8-163-ge813cd67;single;10;31623;;54425;24231;18556;6169;24676;78;17.452083239;2021-12-07@00:30:30 +v2.0.8-163-ge813cd67;single;10;31623;;54425;24231;18480;6176;24704;79;17.677930319;2021-12-07@00:30:49 +v2.0.8-163-ge813cd67;single;10;31623;;54425;24231;18460;6170;24680;81;18.121845008;2021-12-07@00:31:09 +v2.0.8-163-ge813cd67;single;10;31623;;54425;24231;18420;6170;24680;79;17.678617968;2021-12-07@00:31:28 +v2.0.8-163-ge813cd67;mulimex;10;31623;;54425;24231;112172;208924;835696;25;5.495750793;2021-12-07@00:31:42 +v2.0.8-163-ge813cd67;mulimex;10;31623;;54425;24231;111604;208478;833912;27;6.021183973;2021-12-07@00:31:50 +v2.0.8-163-ge813cd67;mulimex;10;31623;;54425;24231;111644;208531;834124;27;6.019107549;2021-12-07@00:31:58 +v2.0.8-163-ge813cd67;mulimex;10;31623;;54425;24231;112108;208522;834088;27;6.025052294;2021-12-07@00:32:05 +v2.0.8-163-ge813cd67;mulimex;10;31623;;54425;24231;111708;208578;834312;27;6.023775603;2021-12-07@00:32:13 +v2.0.8-163-ge813cd67;mulimex;10;31623;;54425;24231;112200;208933;835732;28;6.250478218;2021-12-07@00:32:20 +v2.0.8-163-ge813cd67;mulimex;10;31623;;54425;24231;111696;208506;834024;27;6.022541521;2021-12-07@00:32:28 +v2.0.8-163-ge813cd67;mulimex;10;31623;;54425;24231;111580;208581;834324;27;6.020572487;2021-12-07@00:32:36 +v2.0.8-163-ge813cd67;multi;18;31623;;57202;24252;116424;340481;1361924;29;6.400766487;2021-12-07@00:32:53 +v2.0.8-163-ge813cd67;multi;18;31623;;57202;24252;116692;340571;1362284;33;7.379586660;2021-12-07@00:33:02 +v2.0.8-163-ge813cd67;multi;18;31623;;57202;24252;116604;340586;1362344;33;7.381501958;2021-12-07@00:33:11 +v2.0.8-163-ge813cd67;multi;18;31623;;57202;24252;116620;340566;1362264;33;7.381369677;2021-12-07@00:33:20 +v2.0.8-163-ge813cd67;multi;18;31623;;57202;24252;116664;340622;1362488;33;7.384938356;2021-12-07@00:33:28 +v2.0.8-163-ge813cd67;multi;18;31623;;57202;24252;117200;340835;1363340;33;7.373041717;2021-12-07@00:33:37 +v2.0.8-163-ge813cd67;multi;18;31623;;57202;24252;116348;340492;1361968;33;7.389839125;2021-12-07@00:33:46 +v2.0.8-163-ge813cd67;multi;18;31623;;57202;24252;116464;340628;1362512;33;7.379063027;2021-12-07@00:33:55 +v2.0.8-163-ge813cd67;imex;18;31623;;57202;24252;88760;24347;97388;134;30.083540487;2021-12-07@00:34:38 +v2.0.8-163-ge813cd67;imex;18;31623;;57202;24252;88600;24339;97356;135;30.306881467;2021-12-07@00:35:10 +v2.0.8-163-ge813cd67;imex;18;31623;;57202;24252;88580;24323;97292;136;30.533026576;2021-12-07@00:35:42 +v2.0.8-163-ge813cd67;imex;18;31623;;57202;24252;88728;24308;97232;145;32.572913302;2021-12-07@00:36:16 +v2.0.8-163-ge813cd67;imex;18;31623;;57202;24252;88696;24332;97328;136;30.525377490;2021-12-07@00:36:48 +v2.0.8-163-ge813cd67;imex;18;31623;;57202;24252;88808;24349;97396;131;29.401545980;2021-12-07@00:37:19 +v2.0.8-163-ge813cd67;imex;18;31623;;57202;24252;88932;24318;97272;136;30.529224325;2021-12-07@00:37:51 +v2.0.8-163-ge813cd67;imex;18;31623;;57202;24252;88752;24336;97344;134;30.071959037;2021-12-07@00:38:22 +v2.0.8-163-ge813cd67;single;18;31623;;57202;24252;19868;6518;26072;136;30.477845740;2021-12-07@00:39:08 +v2.0.8-163-ge813cd67;single;18;31623;;57202;24252;19816;6510;26040;135;30.291957133;2021-12-07@00:39:40 +v2.0.8-163-ge813cd67;single;18;31623;;57202;24252;19812;6532;26128;134;30.058306208;2021-12-07@00:40:12 +v2.0.8-163-ge813cd67;single;18;31623;;57202;24252;19824;6503;26012;134;30.088943675;2021-12-07@00:40:43 +v2.0.8-163-ge813cd67;single;18;31623;;57202;24252;19744;6516;26064;137;30.729689582;2021-12-07@00:41:15 +v2.0.8-163-ge813cd67;single;18;31623;;57202;24252;19864;6523;26092;135;30.302545625;2021-12-07@00:41:47 +v2.0.8-163-ge813cd67;single;18;31623;;57202;24252;19836;6506;26024;135;30.299142632;2021-12-07@00:42:19 +v2.0.8-163-ge813cd67;single;18;31623;;57202;24252;19816;6503;26012;133;29.843170551;2021-12-07@00:42:50 +v2.0.8-163-ge813cd67;mulimex;18;31623;;57202;24252;173404;355989;1423956;31;6.885606766;2021-12-07@00:43:10 +v2.0.8-163-ge813cd67;mulimex;18;31623;;57202;24252;172724;355300;1421200;35;7.833118953;2021-12-07@00:43:19 +v2.0.8-163-ge813cd67;mulimex;18;31623;;57202;24252;173084;355306;1421224;35;7.847829123;2021-12-07@00:43:29 +v2.0.8-163-ge813cd67;mulimex;18;31623;;57202;24252;172604;355301;1421204;35;7.830660423;2021-12-07@00:43:38 +v2.0.8-163-ge813cd67;mulimex;18;31623;;57202;24252;173664;355321;1421284;34;7.621537193;2021-12-07@00:43:47 +v2.0.8-163-ge813cd67;mulimex;18;31623;;57202;24252;173276;355327;1421308;35;7.841106487;2021-12-07@00:43:56 +v2.0.8-163-ge813cd67;mulimex;18;31623;;57202;24252;173584;355401;1421604;35;7.844758686;2021-12-07@00:44:06 +v2.0.8-163-ge813cd67;mulimex;18;31623;;57202;24252;174300;355426;1421704;35;7.845561359;2021-12-07@00:44:15 +v2.0.8-163-ge813cd67;multi;32;31623;;58800;24186;182716;587123;2348492;47;10.579153166;2021-12-07@00:44:43 +v2.0.8-163-ge813cd67;multi;32;31623;;58800;24186;184024;587074;2348296;51;11.463146307;2021-12-07@00:44:56 +v2.0.8-163-ge813cd67;multi;32;31623;;58800;24186;184800;586959;2347836;53;11.911091684;2021-12-07@00:45:10 +v2.0.8-163-ge813cd67;multi;32;31623;;58800;24186;184032;587062;2348248;52;11.692711266;2021-12-07@00:45:23 +v2.0.8-163-ge813cd67;multi;32;31623;;58800;24186;186044;587247;2348988;52;11.695563953;2021-12-07@00:45:36 +v2.0.8-163-ge813cd67;multi;32;31623;;58800;24186;184560;588183;2352732;52;11.701077247;2021-12-07@00:45:49 +v2.0.8-163-ge813cd67;multi;32;31623;;58800;24186;185772;588521;2354084;52;11.689344915;2021-12-07@00:46:02 +v2.0.8-163-ge813cd67;multi;32;31623;;58800;24186;185504;587566;2350264;52;11.690960133;2021-12-07@00:46:16 +v2.0.8-163-ge813cd67;imex;32;31623;;58800;24186;128752;34758;139032;237;53.312138122;2021-12-07@00:47:30 +v2.0.8-163-ge813cd67;imex;32;31623;;58800;24186;128692;34777;139108;228;51.235768652;2021-12-07@00:48:23 +v2.0.8-163-ge813cd67;imex;32;31623;;58800;24186;129096;34807;139228;234;52.648362874;2021-12-07@00:49:17 +v2.0.8-163-ge813cd67;imex;32;31623;;58800;24186;128696;34741;138964;232;52.133848451;2021-12-07@00:50:10 +v2.0.8-163-ge813cd67;imex;32;31623;;58800;24186;128676;34775;139100;229;51.523463627;2021-12-07@00:51:03 +v2.0.8-163-ge813cd67;imex;32;31623;;58800;24186;128924;34766;139064;234;52.616067758;2021-12-07@00:51:58 +v2.0.8-163-ge813cd67;imex;32;31623;;58800;24186;128692;34772;139088;236;53.036605963;2021-12-07@00:52:52 +v2.0.8-163-ge813cd67;imex;32;31623;;58800;24186;129244;34831;139324;230;51.705653714;2021-12-07@00:53:45 +v2.0.8-163-ge813cd67;single;32;31623;;58800;24186;21324;6853;27412;245;55.167119391;2021-12-07@00:55:01 +v2.0.8-163-ge813cd67;single;32;31623;;58800;24186;21180;6852;27408;236;53.172595220;2021-12-07@00:55:56 +v2.0.8-163-ge813cd67;single;32;31623;;58800;24186;21072;6862;27448;242;54.524588789;2021-12-07@00:56:52 +v2.0.8-163-ge813cd67;single;32;31623;;58800;24186;21176;6855;27420;236;53.161102168;2021-12-07@00:57:47 +v2.0.8-163-ge813cd67;single;32;31623;;58800;24186;21320;6848;27392;232;52.259276307;2021-12-07@00:58:40 +v2.0.8-163-ge813cd67;single;32;31623;;58800;24186;21052;6873;27492;232;52.266579352;2021-12-07@00:59:34 +v2.0.8-163-ge813cd67;single;32;31623;;58800;24186;21088;6856;27424;233;52.467697369;2021-12-07@01:00:28 +v2.0.8-163-ge813cd67;single;32;31623;;58800;24186;21468;6856;27424;237;53.383505884;2021-12-07@01:01:23 +v2.0.8-163-ge813cd67;mulimex;32;31623;;58800;24186;278572;611752;2447008;52;11.653541875;2021-12-07@01:01:58 +v2.0.8-163-ge813cd67;mulimex;32;31623;;58800;24186;278404;612760;2451040;55;12.368262406;2021-12-07@01:02:12 +v2.0.8-163-ge813cd67;mulimex;32;31623;;58800;24186;279616;612778;2451112;53;11.911194767;2021-12-07@01:02:25 +v2.0.8-163-ge813cd67;mulimex;32;31623;;58800;24186;278372;611777;2447108;55;12.368401746;2021-12-07@01:02:39 +v2.0.8-163-ge813cd67;mulimex;32;31623;;58800;24186;278708;611731;2446924;55;12.381498100;2021-12-07@01:02:53 +v2.0.8-163-ge813cd67;mulimex;32;31623;;58800;24186;278272;611671;2446684;54;12.134275556;2021-12-07@01:03:07 +v2.0.8-163-ge813cd67;mulimex;32;31623;;58800;24186;278436;611804;2447216;55;12.363755621;2021-12-07@01:03:21 +v2.0.8-163-ge813cd67;mulimex;32;31623;;58800;24186;278860;611664;2446656;55;12.360190208;2021-12-07@01:03:35 +v2.0.8-163-ge813cd67;multi;56;31623;;59758;24285;300868;1011829;4047316;79;17.841550637;2021-12-07@01:04:22 +v2.0.8-163-ge813cd67;multi;56;31623;;59758;24285;301204;1009790;4039160;85;19.150460681;2021-12-07@01:04:42 +v2.0.8-163-ge813cd67;multi;56;31623;;59758;24285;301884;1009931;4039724;85;19.156987935;2021-12-07@01:05:03 +v2.0.8-163-ge813cd67;multi;56;31623;;59758;24285;303212;1011935;4047740;85;19.168569429;2021-12-07@01:05:24 +v2.0.8-163-ge813cd67;multi;56;31623;;59758;24285;302832;1009878;4039512;85;19.152589510;2021-12-07@01:05:44 +v2.0.8-163-ge813cd67;multi;56;31623;;59758;24285;301332;1009520;4038080;85;19.156489738;2021-12-07@01:06:05 +v2.0.8-163-ge813cd67;multi;56;31623;;59758;24285;304196;1010217;4040868;86;19.419680958;2021-12-07@01:06:26 +v2.0.8-163-ge813cd67;multi;56;31623;;59758;24285;302612;1010067;4040268;85;19.179914363;2021-12-07@01:06:47 +v2.0.8-163-ge813cd67;imex;56;31623;;59758;24285;197272;52561;210244;411;92.667699750;2021-12-07@01:08:57 +v2.0.8-163-ge813cd67;imex;56;31623;;59758;24285;197560;52712;210848;392;88.400097042;2021-12-07@01:10:27 +v2.0.8-163-ge813cd67;imex;56;31623;;59758;24285;197332;52624;210496;393;88.657107917;2021-12-07@01:11:57 +v2.0.8-163-ge813cd67;imex;56;31623;;59758;24285;197476;52616;210464;395;89.129672065;2021-12-07@01:13:28 +v2.0.8-163-ge813cd67;imex;56;31623;;59758;24285;197100;52596;210384;410;92.483124898;2021-12-07@01:15:02 +v2.0.8-163-ge813cd67;imex;56;31623;;59758;24285;197380;52585;210340;390;87.999132200;2021-12-07@01:16:32 +v2.0.8-163-ge813cd67;imex;56;31623;;59758;24285;197308;52606;210424;388;87.613169021;2021-12-07@01:18:01 +v2.0.8-163-ge813cd67;imex;56;31623;;59758;24285;197384;52611;210444;389;87.708007347;2021-12-07@01:19:30 +v2.0.8-163-ge813cd67;single;56;31623;;59758;24285;22788;7301;29204;418;94.321222264;2021-12-07@01:21:40 +v2.0.8-163-ge813cd67;single;56;31623;;59758;24285;22700;7295;29180;410;92.585081943;2021-12-07@01:23:14 +v2.0.8-163-ge813cd67;single;56;31623;;59758;24285;23016;7326;29304;411;92.781088585;2021-12-07@01:24:48 +v2.0.8-163-ge813cd67;single;56;31623;;59758;24285;23032;7295;29180;403;90.937158773;2021-12-07@01:26:21 +v2.0.8-163-ge813cd67;single;56;31623;;59758;24285;23032;7290;29160;411;92.785834058;2021-12-07@01:27:55 +v2.0.8-163-ge813cd67;single;56;31623;;59758;24285;22900;7280;29120;402;90.704430019;2021-12-07@01:29:27 +v2.0.8-163-ge813cd67;single;56;31623;;59758;24285;22868;7305;29220;407;91.854492069;2021-12-07@01:31:01 +v2.0.8-163-ge813cd67;single;56;31623;;59758;24285;22860;7289;29156;409;92.300350374;2021-12-07@01:32:34 +v2.0.8-163-ge813cd67;mulimex;56;31623;;59758;24285;461260;1053358;4213432;87;19.699291229;2021-12-07@01:33:30 +v2.0.8-163-ge813cd67;mulimex;56;31623;;59758;24285;460912;1051415;4205660;92;20.785507756;2021-12-07@01:33:53 +v2.0.8-163-ge813cd67;mulimex;56;31623;;59758;24285;461152;1053291;4213164;87;19.726254969;2021-12-07@01:34:29 +v2.0.8-163-ge813cd67;mulimex;56;31623;;59758;24285;459876;1051307;4205228;92;20.775752567;2021-12-07@01:34:51 +v2.0.8-163-ge813cd67;mulimex;56;31623;;59758;24285;460072;1051324;4205296;91;20.555773537;2021-12-07@01:35:13 +v2.0.8-163-ge813cd67;mulimex;56;31623;;59758;24285;460996;1053211;4212844;91;20.528760828;2021-12-07@01:35:35 +v2.0.8-163-ge813cd67;mulimex;56;31623;;59758;24285;459916;1051392;4205568;92;20.781245594;2021-12-07@01:35:58 +v2.0.8-163-ge813cd67;mulimex;56;31623;;59758;24285;459308;1053332;4213328;92;20.789469705;2021-12-07@01:36:20 +v2.0.8-163-ge813cd67;multi;100;31623;;60390;24233;517380;1784173;7136692;153;34.416894304;2021-12-07@01:37:47 +v2.0.8-163-ge813cd67;multi;100;31623;;60390;24233;515612;1787609;7150436;157;35.405846288;2021-12-07@01:38:24 +v2.0.8-163-ge813cd67;multi;100;31623;;60390;24233;515420;1787527;7150108;154;34.881555762;2021-12-07@01:39:01 +v2.0.8-163-ge813cd67;multi;100;31623;;60390;24233;516432;1784413;7137652;155;35.032807443;2021-12-07@01:39:37 +v2.0.8-163-ge813cd67;multi;100;31623;;60390;24233;513816;1783791;7135164;155;35.070035286;2021-12-07@01:40:14 +v2.0.8-163-ge813cd67;multi;100;31623;;60390;24233;515732;1788102;7152408;157;35.566989248;2021-12-07@01:40:51 +v2.0.8-163-ge813cd67;multi;100;31623;;60390;24233;515368;1787864;7151456;152;34.373459724;2021-12-07@01:41:27 +v2.0.8-163-ge813cd67;multi;100;31623;;60390;24233;514820;1783941;7135764;158;35.657870096;2021-12-07@01:42:04 +v2.0.8-163-ge813cd67;imex;100;31623;;60390;24233;320068;84718;338872;709;160.467395019;2021-12-07@01:45:52 +v2.0.8-163-ge813cd67;imex;100;31623;;60390;24233;320124;84653;338612;719;162.870144403;2021-12-07@01:48:36 +v2.0.8-163-ge813cd67;imex;100;31623;;60390;24233;320528;84778;339112;695;157.321678340;2021-12-07@01:51:15 +v2.0.8-163-ge813cd67;imex;100;31623;;60390;24233;321228;84926;339704;710;160.900969657;2021-12-07@01:53:57 +v2.0.8-163-ge813cd67;imex;100;31623;;60390;24233;320524;84759;339036;714;161.734540286;2021-12-07@01:56:41 +v2.0.8-163-ge813cd67;imex;100;31623;;60390;24233;321320;84981;339924;734;166.062190793;2021-12-07@01:59:28 +v2.0.8-163-ge813cd67;imex;100;31623;;60390;24233;319704;84544;338176;783;177.636056130;2021-12-07@02:02:27 +v2.0.8-163-ge813cd67;imex;100;31623;;60390;24233;320308;84771;339084;725;164.311025332;2021-12-07@02:05:13 +v2.0.8-163-ge813cd67;single;100;31623;;60390;24233;25224;7915;31660;737;166.981266478;2021-12-07@02:09:01 +v2.0.8-163-ge813cd67;single;100;31623;;60390;24233;25580;7940;31760;720;163.318866170;2021-12-07@02:11:46 +v2.0.8-163-ge813cd67;single;100;31623;;60390;24233;25420;7917;31668;723;164.033187130;2021-12-07@02:14:32 +v2.0.8-163-ge813cd67;single;100;31623;;60390;24233;25660;7925;31700;752;170.489334259;2021-12-07@02:17:24 +v2.0.8-163-ge813cd67;single;100;31623;;60390;24233;25400;7944;31776;725;164.360053176;2021-12-07@02:20:10 +v2.0.8-163-ge813cd67;single;100;31623;;60390;24233;25464;7929;31716;752;170.679482590;2021-12-07@02:23:02 +v2.0.8-163-ge813cd67;single;100;31623;;60390;24233;25596;7948;31792;743;168.575556044;2021-12-07@02:25:52 +v2.0.8-163-ge813cd67;single;100;31623;;60390;24233;25720;7942;31768;725;164.418423815;2021-12-07@02:28:38 +v2.0.8-163-ge813cd67;mulimex;100;31623;;60390;24233;789592;1856704;7426816;159;36.027172624;2021-12-07@02:30:20 +v2.0.8-163-ge813cd67;mulimex;100;31623;;60390;24233;793800;1857106;7428424;166;37.648918435;2021-12-07@02:30:59 +v2.0.8-163-ge813cd67;mulimex;100;31623;;60390;24233;794172;1857583;7430332;168;38.092730405;2021-12-07@02:31:39 +v2.0.8-163-ge813cd67;mulimex;100;31623;;60390;24233;793608;1857138;7428552;166;37.684220950;2021-12-07@02:32:18 +v2.0.8-163-ge813cd67;mulimex;100;31623;;60390;24233;791064;1856783;7427132;169;38.270562574;2021-12-07@02:32:58 +v2.0.8-163-ge813cd67;mulimex;100;31623;;60390;24233;792100;1856917;7427668;164;37.153277285;2021-12-07@02:33:37 +v2.0.8-163-ge813cd67;mulimex;100;31623;;60390;24233;794384;1857127;7428508;165;37.381511046;2021-12-07@02:34:15 +v2.0.8-163-ge813cd67;mulimex;100;31623;;60390;24233;792788;1860509;7442036;164;37.170801259;2021-12-07@02:34:54 +v2.0.8-163-ge813cd67;multi;178;31623;;60806;24427;898856;2306688;9226752;282;63.485166959;2021-12-07@02:37:34 +v2.0.8-163-ge813cd67;multi;178;31623;;60806;24427;896396;2306813;9227252;285;64.147590879;2021-12-07@02:38:40 +v2.0.8-163-ge813cd67;multi;178;31623;;60806;24427;894276;2305744;9222976;289;64.815940230;2021-12-07@02:39:46 +v2.0.8-163-ge813cd67;multi;178;31623;;60806;24427;892804;2305880;9223520;288;65.236804114;2021-12-07@02:40:53 +v2.0.8-163-ge813cd67;multi;178;31623;;60806;24427;891536;2305180;9220720;284;64.155186868;2021-12-07@02:41:58 +v2.0.8-163-ge813cd67;multi;178;31623;;60806;24427;896172;2306350;9225400;288;64.981371702;2021-12-07@02:43:05 +v2.0.8-163-ge813cd67;multi;178;31623;;60806;24427;899116;2306601;9226404;286;64.785877279;2021-12-07@02:44:11 +v2.0.8-163-ge813cd67;multi;178;31623;;60806;24427;894444;2305725;9222900;286;64.495302153;2021-12-07@02:45:17 +v2.0.8-163-ge813cd67;imex;178;31623;;60806;24427;545384;143317;573268;1322;301.218931787;2021-12-07@02:52:17 +v2.0.8-163-ge813cd67;imex;178;31623;;60806;24427;542120;142445;569780;1271;289.021362138;2021-12-07@02:57:07 +v2.0.8-163-ge813cd67;imex;178;31623;;60806;24427;540200;142046;568184;1246;283.686969006;2021-12-07@03:01:53 +v2.0.8-163-ge813cd67;imex;178;31623;;60806;24427;545040;143179;572716;1275;290.751202239;2021-12-07@03:06:45 +v2.0.8-163-ge813cd67;imex;178;31623;;60806;24427;541324;142212;568848;1296;294.315330410;2021-12-07@03:11:41 +v2.0.8-163-ge813cd67;imex;178;31623;;60806;24427;545964;143497;573988;1328;302.179796484;2021-12-07@03:16:44 +v2.0.8-163-ge813cd67;imex;178;31623;;60806;24427;541064;142169;568676;1219;277.303647172;2021-12-07@03:21:23 +v2.0.8-163-ge813cd67;imex;178;31623;;60806;24427;543708;142865;571460;1219;277.251790644;2021-12-07@03:26:02 +v2.0.8-163-ge813cd67;single;178;31623;;60806;24427;29568;8953;35812;1381;314.933741822;2021-12-07@03:33:15 +v2.0.8-163-ge813cd67;single;178;31623;;60806;24427;29852;8987;35948;1381;314.884152091;2021-12-07@03:38:31 +v2.0.8-163-ge813cd67;single;178;31623;;60806;24427;29464;8955;35820;1315;299.610186275;2021-12-07@03:43:32 +v2.0.8-163-ge813cd67;single;178;31623;;60806;24427;29584;9000;36000;1341;305.879601392;2021-12-07@03:48:40 +v2.0.8-163-ge813cd67;single;178;31623;;60806;24427;29728;8974;35896;1327;302.430958846;2021-12-07@03:53:44 +v2.0.8-163-ge813cd67;single;178;31623;;60806;24427;29684;8987;35948;1340;305.636436267;2021-12-07@03:58:51 +v2.0.8-163-ge813cd67;single;178;31623;;60806;24427;29636;8994;35976;1343;306.805716527;2021-12-07@04:03:59 +v2.0.8-163-ge813cd67;single;178;31623;;60806;24427;29812;8938;35752;1358;309.108867395;2021-12-07@04:09:10 +v2.0.8-163-ge813cd67;mulimex;178;31623;;60806;24427;1383884;2433999;9735996;288;65.782263965;2021-12-07@04:12:09 +v2.0.8-163-ge813cd67;mulimex;178;31623;;60806;24427;1387548;2440387;9761548;296;67.251556543;2021-12-07@04:13:18 +v2.0.8-163-ge813cd67;mulimex;178;31623;;60806;24427;1380996;2439256;9757024;289;65.705329339;2021-12-07@04:14:25 +v2.0.8-163-ge813cd67;mulimex;178;31623;;60806;24427;1386556;2434621;9738484;303;68.836958194;2021-12-07@04:15:36 +v2.0.8-163-ge813cd67;mulimex;178;31623;;60806;24427;1394092;2436329;9745316;302;67.997739998;2021-12-07@04:16:46 +v2.0.8-163-ge813cd67;mulimex;178;31623;;60806;24427;1390056;2435491;9741964;304;68.100654920;2021-12-07@04:17:56 +v2.0.8-163-ge813cd67;mulimex;178;31623;;60806;24427;1386112;2434454;9737816;298;67.415780839;2021-12-07@04:19:05 +v2.0.8-163-ge813cd67;mulimex;178;31623;;60806;24427;1387456;2435007;9740028;298;67.383057018;2021-12-07@04:20:14 +v2.0.8-163-ge813cd67;multi;316;31623;;61364;24592;1564356;2475939;9903756;494;113.081628459;2021-12-07@04:25:05 +v2.0.8-163-ge813cd67;multi;316;31623;;61364;24592;1561796;2484820;9939280;499;114.135198074;2021-12-07@04:27:01 +v2.0.8-163-ge813cd67;multi;316;31623;;61364;24592;1568952;2476967;9907868;495;113.669964646;2021-12-07@04:28:57 +v2.0.8-163-ge813cd67;multi;316;31623;;61364;24592;1569832;2477406;9909624;497;113.601881144;2021-12-07@04:30:52 +v2.0.8-163-ge813cd67;multi;316;31623;;61364;24592;1558324;2474234;9896936;496;113.867045197;2021-12-07@04:32:48 +v2.0.8-163-ge813cd67;multi;316;31623;;61364;24592;1568836;2477533;9910132;497;113.782203885;2021-12-07@04:34:43 +v2.0.8-163-ge813cd67;multi;316;31623;;61364;24592;1565824;2485586;9942344;501;114.821111493;2021-12-07@04:36:40 +v2.0.8-163-ge813cd67;multi;316;31623;;61364;24592;1565860;2485028;9940112;498;114.275231717;2021-12-07@04:38:36 +v2.0.8-163-ge813cd67;imex;316;31623;;61364;24592;936584;245198;980792;2427;554.549783224;2021-12-07@04:51:18 +v2.0.8-163-ge813cd67;imex;316;31623;;61364;24592;933528;244480;977920;2295;524.808953460;2021-12-07@05:00:04 +v2.0.8-163-ge813cd67;imex;316;31623;;61364;24592;932280;244185;976740;2408;550.042429410;2021-12-07@05:09:16 +v2.0.8-163-ge813cd67;imex;316;31623;;61364;24592;932532;244198;976792;2362;540.242527510;2021-12-07@05:18:17 +v2.0.8-163-ge813cd67;imex;316;31623;;61364;24592;934304;244660;978640;2331;532.427188477;2021-12-07@05:27:11 +v2.0.8-163-ge813cd67;imex;316;31623;;61364;24592;931900;244106;976424;2330;532.685504183;2021-12-07@05:36:06 +v2.0.8-163-ge813cd67;imex;316;31623;;61364;24592;933356;244429;977716;2394;547.319692755;2021-12-07@05:45:15 +v2.0.8-163-ge813cd67;imex;316;31623;;61364;24592;936964;245256;981024;2406;550.548794255;2021-12-07@05:54:27 +v2.0.8-163-ge813cd67;single;316;31623;;61364;24592;36176;10588;42352;2521;579.773663369;2021-12-07@06:07:43 +v2.0.8-163-ge813cd67;single;316;31623;;61364;24592;36132;10623;42492;2531;581.015621061;2021-12-07@06:17:26 +v2.0.8-163-ge813cd67;single;316;31623;;61364;24592;36304;10607;42428;2965;681.686200617;2021-12-07@06:28:49 +v2.0.8-163-ge813cd67;single;316;31623;;61364;24592;36136;10581;42324;2474;567.921765651;2021-12-07@06:38:19 +v2.0.8-163-ge813cd67;single;316;31623;;61364;24592;36072;10599;42396;2499;574.871336843;2021-12-07@06:47:56 +v2.0.8-163-ge813cd67;single;316;31623;;61364;24592;36136;10570;42280;2496;572.756761287;2021-12-07@06:57:31 +v2.0.8-163-ge813cd67;single;316;31623;;61364;24592;36184;10618;42472;2534;582.963105866;2021-12-07@07:07:15 +v2.0.8-163-ge813cd67;single;316;31623;;61364;24592;36368;10586;42344;2635;605.514667353;2021-12-07@07:17:23 +v2.0.8-163-ge813cd67;mulimex;316;31623;;61364;24592;2440152;2704646;10818584;514;118.361277565;2021-12-07@07:22:53 +v2.0.8-163-ge813cd67;mulimex;316;31623;;61364;24592;2440672;2704599;10818396;525;121.075359678;2021-12-07@07:24:56 +v2.0.8-163-ge813cd67;mulimex;316;31623;;61364;24592;2438684;2703467;10813868;507;116.389648303;2021-12-07@07:26:55 +v2.0.8-163-ge813cd67;mulimex;316;31623;;61364;24592;2438696;2703819;10815276;526;120.279403573;2021-12-07@07:28:58 +v2.0.8-163-ge813cd67;mulimex;316;31623;;61364;24592;2436868;2704424;10817696;529;121.009792457;2021-12-07@07:31:02 +v2.0.8-163-ge813cd67;mulimex;316;31623;;61364;24592;2434668;2703865;10815460;538;123.069886967;2021-12-07@07:33:08 +v2.0.8-163-ge813cd67;mulimex;316;31623;;61364;24592;2442272;2704834;10819336;526;120.496355730;2021-12-07@07:35:11 +v2.0.8-163-ge813cd67;mulimex;316;31623;;61364;24592;2453404;2707315;10829260;530;121.430644180;2021-12-07@07:37:15 +v2.0.8-163-ge813cd67;multi;10;56234;;89496;27046;115296;208015;832060;35;7.964320633;2021-12-07@07:39:04 +v2.0.8-163-ge813cd67;multi;10;56234;;89496;27046;115392;208046;832184;40;9.061927972;2021-12-07@07:39:15 +v2.0.8-163-ge813cd67;multi;10;56234;;89496;27046;115584;208101;832404;39;8.861481273;2021-12-07@07:39:25 +v2.0.8-163-ge813cd67;multi;10;56234;;89496;27046;115808;208032;832128;40;9.087204592;2021-12-07@07:39:37 +v2.0.8-163-ge813cd67;multi;10;56234;;89496;27046;114916;207983;831932;39;8.854858360;2021-12-07@07:39:47 +v2.0.8-163-ge813cd67;multi;10;56234;;89496;27046;115424;208018;832072;37;8.382687618;2021-12-07@07:39:58 +v2.0.8-163-ge813cd67;multi;10;56234;;89496;27046;115200;208007;832028;39;8.853871091;2021-12-07@07:40:09 +v2.0.8-163-ge813cd67;multi;10;56234;;89496;27046;115720;208002;832008;39;8.843495349;2021-12-07@07:40:20 +v2.0.8-163-ge813cd67;imex;10;56234;;89496;27046;88528;24052;96208;105;23.752201886;2021-12-07@07:40:54 +v2.0.8-163-ge813cd67;imex;10;56234;;89496;27046;88760;24119;96476;103;23.401243122;2021-12-07@07:41:19 +v2.0.8-163-ge813cd67;imex;10;56234;;89496;27046;88500;24097;96388;107;24.256920240;2021-12-07@07:41:46 +v2.0.8-163-ge813cd67;imex;10;56234;;89496;27046;88764;24076;96304;107;24.270016785;2021-12-07@07:42:12 +v2.0.8-163-ge813cd67;imex;10;56234;;89496;27046;88716;24084;96336;110;24.958964455;2021-12-07@07:42:39 +v2.0.8-163-ge813cd67;imex;10;56234;;89496;27046;88480;24077;96308;107;24.241826574;2021-12-07@07:43:05 +v2.0.8-163-ge813cd67;imex;10;56234;;89496;27046;88784;24091;96364;108;24.480520406;2021-12-07@07:43:31 +v2.0.8-163-ge813cd67;imex;10;56234;;89496;27046;88632;24079;96316;101;22.900378385;2021-12-07@07:43:56 +v2.0.8-163-ge813cd67;single;10;56234;;89496;27046;26988;8345;33380;100;22.622742114;2021-12-07@07:44:31 +v2.0.8-163-ge813cd67;single;10;56234;;89496;27046;26904;8347;33388;106;23.991849353;2021-12-07@07:44:56 +v2.0.8-163-ge813cd67;single;10;56234;;89496;27046;27128;8372;33488;104;23.537595240;2021-12-07@07:45:22 +v2.0.8-163-ge813cd67;single;10;56234;;89496;27046;27180;8370;33480;102;23.085544094;2021-12-07@07:45:47 +v2.0.8-163-ge813cd67;single;10;56234;;89496;27046;27188;8338;33352;105;23.766262802;2021-12-07@07:46:13 +v2.0.8-163-ge813cd67;single;10;56234;;89496;27046;26888;8316;33264;99;22.415114825;2021-12-07@07:46:37 +v2.0.8-163-ge813cd67;single;10;56234;;89496;27046;27184;8353;33412;104;23.534318273;2021-12-07@07:47:03 +v2.0.8-163-ge813cd67;single;10;56234;;89496;27046;27276;8349;33396;101;22.862244797;2021-12-07@07:47:28 +v2.0.8-163-ge813cd67;mulimex;10;56234;;89496;27046;159200;219579;878316;35;7.880039793;2021-12-07@07:47:47 +v2.0.8-163-ge813cd67;mulimex;10;56234;;89496;27046;158340;219577;878308;39;8.847610285;2021-12-07@07:47:58 +v2.0.8-163-ge813cd67;mulimex;10;56234;;89496;27046;159336;219258;877032;39;8.847539392;2021-12-07@07:48:09 +v2.0.8-163-ge813cd67;mulimex;10;56234;;89496;27046;158620;219218;876872;39;8.842679114;2021-12-07@07:48:19 +v2.0.8-163-ge813cd67;mulimex;10;56234;;89496;27046;158760;219148;876592;39;8.850127546;2021-12-07@07:48:30 +v2.0.8-163-ge813cd67;mulimex;10;56234;;89496;27046;159036;219249;876996;39;8.859018830;2021-12-07@07:48:41 +v2.0.8-163-ge813cd67;mulimex;10;56234;;89496;27046;158632;219554;878216;40;9.080298570;2021-12-07@07:48:52 +v2.0.8-163-ge813cd67;mulimex;10;56234;;89496;27046;159272;219188;876752;40;9.066372626;2021-12-07@07:49:03 +v2.0.8-163-ge813cd67;multi;18;56234;;97395;27048;180020;355792;1423168;45;10.252088614;2021-12-07@07:49:27 +v2.0.8-163-ge813cd67;multi;18;56234;;97395;27048;179936;355063;1420252;50;11.404137946;2021-12-07@07:49:41 +v2.0.8-163-ge813cd67;multi;18;56234;;97395;27048;179824;355089;1420356;50;11.401650838;2021-12-07@07:49:55 +v2.0.8-163-ge813cd67;multi;18;56234;;97395;27048;179456;355171;1420684;50;11.398196284;2021-12-07@07:50:08 +v2.0.8-163-ge813cd67;multi;18;56234;;97395;27048;180000;355172;1420688;50;11.412623440;2021-12-07@07:50:22 +v2.0.8-163-ge813cd67;multi;18;56234;;97395;27048;180060;355055;1420220;52;11.851081639;2021-12-07@07:50:36 +v2.0.8-163-ge813cd67;multi;18;56234;;97395;27048;179836;355133;1420532;50;11.389664351;2021-12-07@07:50:49 +v2.0.8-163-ge813cd67;multi;18;56234;;97395;27048;179984;355132;1420528;50;11.394968365;2021-12-07@07:51:02 +v2.0.8-163-ge813cd67;imex;18;56234;;97395;27048;118140;31722;126888;171;38.854328830;2021-12-07@07:51:55 +v2.0.8-163-ge813cd67;imex;18;56234;;97395;27048;118220;31706;126824;179;40.659294292;2021-12-07@07:52:38 +v2.0.8-163-ge813cd67;imex;18;56234;;97395;27048;118380;31713;126852;174;39.493578984;2021-12-07@07:53:19 +v2.0.8-163-ge813cd67;imex;18;56234;;97395;27048;118156;31700;126800;160;36.332082074;2021-12-07@07:53:58 +v2.0.8-163-ge813cd67;imex;18;56234;;97395;27048;118272;31718;126872;169;38.345543683;2021-12-07@07:54:39 +v2.0.8-163-ge813cd67;imex;18;56234;;97395;27048;118144;31699;126796;199;45.193881902;2021-12-07@07:55:26 +v2.0.8-163-ge813cd67;imex;18;56234;;97395;27048;118020;31693;126772;174;39.485973693;2021-12-07@07:56:07 +v2.0.8-163-ge813cd67;imex;18;56234;;97395;27048;118172;31714;126856;168;38.135301926;2021-12-07@07:56:47 +v2.0.8-163-ge813cd67;single;18;56234;;97395;27048;29640;9005;36020;170;38.655581121;2021-12-07@07:57:39 +v2.0.8-163-ge813cd67;single;18;56234;;97395;27048;29516;9008;36032;167;37.870671823;2021-12-07@07:58:19 +v2.0.8-163-ge813cd67;single;18;56234;;97395;27048;29532;9039;36156;171;38.780162600;2021-12-07@07:59:00 +v2.0.8-163-ge813cd67;single;18;56234;;97395;27048;29860;9012;36048;164;37.199583477;2021-12-07@07:59:39 +v2.0.8-163-ge813cd67;single;18;56234;;97395;27048;29868;8998;35992;166;37.707089883;2021-12-07@08:00:19 +v2.0.8-163-ge813cd67;single;18;56234;;97395;27048;29808;9031;36124;175;39.737176961;2021-12-07@08:01:01 +v2.0.8-163-ge813cd67;single;18;56234;;97395;27048;29848;9013;36052;169;38.326010963;2021-12-07@08:01:42 +v2.0.8-163-ge813cd67;single;18;56234;;97395;27048;29672;9030;36120;172;39.010369791;2021-12-07@08:02:23 +v2.0.8-163-ge813cd67;mulimex;18;56234;;97395;27048;248892;372880;1491520;51;11.584644703;2021-12-07@08:02:49 +v2.0.8-163-ge813cd67;mulimex;18;56234;;97395;27048;248688;372802;1491208;53;12.101671580;2021-12-07@08:03:03 +v2.0.8-163-ge813cd67;mulimex;18;56234;;97395;27048;248012;372784;1491136;53;12.091223498;2021-12-07@08:03:17 +v2.0.8-163-ge813cd67;mulimex;18;56234;;97395;27048;248136;372837;1491348;53;12.074483306;2021-12-07@08:03:31 +v2.0.8-163-ge813cd67;mulimex;18;56234;;97395;27048;248840;372806;1491224;54;12.316975303;2021-12-07@08:03:45 +v2.0.8-163-ge813cd67;mulimex;18;56234;;97395;27048;248908;372818;1491272;53;12.092308627;2021-12-07@08:03:59 +v2.0.8-163-ge813cd67;mulimex;18;56234;;97395;27048;247540;372767;1491068;54;12.316622179;2021-12-07@08:04:14 +v2.0.8-163-ge813cd67;mulimex;18;56234;;97395;27048;248624;372819;1491276;53;12.088563447;2021-12-07@08:04:28 +v2.0.8-163-ge813cd67;multi;32;56234;;102105;27070;288504;611952;2447808;76;17.420087629;2021-12-07@08:05:04 +v2.0.8-163-ge813cd67;multi;32;56234;;102105;27070;289068;611974;2447896;82;18.784716667;2021-12-07@08:05:26 +v2.0.8-163-ge813cd67;multi;32;56234;;102105;27070;288008;611915;2447660;82;18.757279283;2021-12-07@08:05:47 +v2.0.8-163-ge813cd67;multi;32;56234;;102105;27070;290032;612135;2448540;82;18.765192718;2021-12-07@08:06:07 +v2.0.8-163-ge813cd67;multi;32;56234;;102105;27070;289108;611925;2447700;83;19.006998407;2021-12-07@08:06:28 +v2.0.8-163-ge813cd67;multi;32;56234;;102105;27070;289168;612061;2448244;82;18.743200002;2021-12-07@08:06:49 +v2.0.8-163-ge813cd67;multi;32;56234;;102105;27070;289596;613163;2452652;82;18.786777734;2021-12-07@08:07:10 +v2.0.8-163-ge813cd67;multi;32;56234;;102105;27070;289352;611957;2447828;82;18.748140821;2021-12-07@08:07:31 +v2.0.8-163-ge813cd67;imex;32;56234;;102105;27070;165428;60299;241196;298;67.814870127;2021-12-07@08:09:03 +v2.0.8-163-ge813cd67;imex;32;56234;;102105;27070;165268;43900;175600;288;65.519232477;2021-12-07@08:10:10 +v2.0.8-163-ge813cd67;imex;32;56234;;102105;27070;165328;43940;175760;285;64.825333771;2021-12-07@08:11:17 +v2.0.8-163-ge813cd67;imex;32;56234;;102105;27070;165452;43944;175776;288;65.533378214;2021-12-07@08:12:24 +v2.0.8-163-ge813cd67;imex;32;56234;;102105;27070;165556;43928;175712;281;63.928891601;2021-12-07@08:13:30 +v2.0.8-163-ge813cd67;imex;32;56234;;102105;27070;165512;43906;175624;293;66.626425942;2021-12-07@08:14:39 +v2.0.8-163-ge813cd67;imex;32;56234;;102105;27070;165300;43910;175640;292;66.444412953;2021-12-07@08:15:47 +v2.0.8-163-ge813cd67;imex;32;56234;;102105;27070;165232;43895;175580;279;63.615950535;2021-12-07@08:16:53 +v2.0.8-162-ge38c4f44;single;32;56234;;102105;27070;32284;9704;38816;309;70.313180065;2021-12-07@08:18:25 +v2.0.8-162-ge38c4f44;single;32;56234;;102105;27070;32480;9695;38780;286;65.090268007;2021-12-07@08:19:31 +v2.0.8-162-ge38c4f44;single;32;56234;;102105;27070;32448;9709;38836;289;65.764155421;2021-12-07@08:20:39 +v2.0.8-162-ge38c4f44;single;32;56234;;102105;27070;32572;9717;38868;298;67.857454848;2021-12-07@08:21:49 +v2.0.8-162-ge38c4f44;single;32;56234;;102105;27070;32424;9707;38828;291;66.291291684;2021-12-07@08:22:57 +v2.0.8-162-ge38c4f44;single;32;56234;;102105;27070;32332;9710;38840;290;65.987048128;2021-12-07@08:24:05 +v2.0.8-162-ge38c4f44;single;32;56234;;102105;27070;32376;9711;38844;296;67.354610963;2021-12-07@08:25:14 +v2.0.8-162-ge38c4f44;single;32;56234;;102105;27070;32468;9705;38820;292;66.471219031;2021-12-07@08:26:23 +v2.0.8-162-ge38c4f44;mulimex;32;56234;;102105;27070;399988;640722;2562888;80;18.315275334;2021-12-07@08:27:05 +v2.0.8-162-ge38c4f44;mulimex;32;56234;;102105;27070;401032;640741;2562964;86;19.745304123;2021-12-07@08:27:27 +v2.0.8-162-ge38c4f44;mulimex;32;56234;;102105;27070;400200;640797;2563188;86;19.709803601;2021-12-07@08:27:49 +v2.0.8-162-ge38c4f44;mulimex;32;56234;;102105;27070;400900;640769;2563076;86;19.712992622;2021-12-07@08:28:10 +v2.0.8-162-ge38c4f44;mulimex;32;56234;;102105;27070;401784;641902;2567608;86;19.730745754;2021-12-07@08:28:32 +v2.0.8-162-ge38c4f44;mulimex;32;56234;;102105;27070;400576;640761;2563044;86;19.710070855;2021-12-07@08:28:53 +v2.0.8-162-ge38c4f44;mulimex;32;56234;;102105;27070;400468;641860;2567440;86;19.725508931;2021-12-07@08:29:15 +v2.0.8-162-ge38c4f44;mulimex;32;56234;;102105;27070;400156;640855;2563420;86;19.685491649;2021-12-07@08:29:36 +v2.0.8-162-ge38c4f44;multi;56;56234;;104619;27074;472304;1051438;4205752;128;29.336743114;2021-12-07@08:30:38 +v2.0.8-162-ge38c4f44;multi;56;56234;;104619;27074;473268;1051443;4205772;138;31.614622262;2021-12-07@08:31:11 +v2.0.8-162-ge38c4f44;multi;56;56234;;104619;27074;472792;1051883;4207532;138;31.621249639;2021-12-07@08:31:45 +v2.0.8-162-ge38c4f44;multi;56;56234;;104619;27074;473360;1051686;4206744;138;31.650159319;2021-12-07@08:32:18 +v2.0.8-162-ge38c4f44;multi;56;56234;;104619;27074;473688;1051629;4206516;140;32.054780508;2021-12-07@08:32:52 +v2.0.8-162-ge38c4f44;multi;56;56234;;104619;27074;472152;1051817;4207268;138;31.622437078;2021-12-07@08:33:26 +v2.0.8-162-ge38c4f44;multi;56;56234;;104619;27074;475672;1052130;4208520;138;31.608018473;2021-12-07@08:34:00 +v2.0.8-162-ge38c4f44;multi;56;56234;;104619;27074;472132;1053356;4213424;139;31.900961027;2021-12-07@08:34:34 +v2.0.8-162-ge38c4f44;imex;56;56234;;104619;27074;241460;63734;254936;517;118.660453291;2021-12-07@08:37:12 +v2.0.8-162-ge38c4f44;imex;56;56234;;104619;27074;241788;63721;254884;506;116.235448544;2021-12-07@08:39:10 +v2.0.8-162-ge38c4f44;imex;56;56234;;104619;27074;241892;63776;255104;506;116.242797190;2021-12-07@08:41:08 +v2.0.8-162-ge38c4f44;imex;56;56234;;104619;27074;241796;63694;254776;533;122.374036110;2021-12-07@08:43:13 +v2.0.8-162-ge38c4f44;imex;56;56234;;104619;27074;241788;63730;254920;514;118.073074039;2021-12-07@08:45:13 +v2.0.8-162-ge38c4f44;imex;56;56234;;104619;27074;241920;63719;254876;562;129.107215328;2021-12-07@08:47:24 +v2.0.8-162-ge38c4f44;imex;56;56234;;104619;27074;241844;63742;254968;511;117.165818186;2021-12-07@08:49:23 +v2.0.8-162-ge38c4f44;imex;56;56234;;104619;27074;241660;63742;254968;520;119.408303814;2021-12-07@08:51:25 +v2.0.8-162-ge38c4f44;single;56;56234;;104619;27074;35340;10420;41680;536;123.008833467;2021-12-07@08:54:05 +v2.0.8-162-ge38c4f44;single;56;56234;;104619;27074;35388;10398;41592;506;116.171004341;2021-12-07@08:56:03 +v2.0.8-162-ge38c4f44;single;56;56234;;104619;27074;35412;10415;41660;513;117.736765623;2021-12-07@08:58:03 +v2.0.8-162-ge38c4f44;single;56;56234;;104619;27074;35020;10396;41584;510;117.098314999;2021-12-07@09:00:02 +v2.0.8-162-ge38c4f44;single;56;56234;;104619;27074;35344;10414;41656;508;116.602622562;2021-12-07@09:02:01 +v2.0.8-162-ge38c4f44;single;56;56234;;104619;27074;35256;10407;41628;504;115.710585524;2021-12-07@09:03:59 +v2.0.8-162-ge38c4f44;single;56;56234;;104619;27074;35440;10387;41548;515;118.263812415;2021-12-07@09:05:58 +v2.0.8-162-ge38c4f44;single;56;56234;;104619;27074;35212;10398;41592;510;117.028292461;2021-12-07@09:07:57 +v2.0.8-162-ge38c4f44;mulimex;56;56234;;104619;27074;655972;1098948;4395792;142;32.684225987;2021-12-07@09:09:09 +v2.0.8-162-ge38c4f44;mulimex;56;56234;;104619;27074;655612;1098977;4395908;146;33.577192836;2021-12-07@09:09:44 +v2.0.8-162-ge38c4f44;mulimex;56;56234;;104619;27074;653968;1099129;4396516;147;33.828639319;2021-12-07@09:10:20 +v2.0.8-162-ge38c4f44;mulimex;56;56234;;104619;27074;655868;1099055;4396220;146;33.566925798;2021-12-07@09:10:55 +v2.0.8-162-ge38c4f44;mulimex;56;56234;;104619;27074;656528;1099089;4396356;149;34.258436479;2021-12-07@09:11:31 +v2.0.8-162-ge38c4f44;mulimex;56;56234;;104619;27074;656372;1098978;4395912;148;34.008267792;2021-12-07@09:12:07 +v2.0.8-162-ge38c4f44;mulimex;56;56234;;104619;27074;656588;1099016;4396064;147;33.823526772;2021-12-07@09:12:42 +v2.0.8-162-ge38c4f44;mulimex;56;56234;;104619;27074;656684;1098952;4395808;149;34.287582292;2021-12-07@09:13:18 +v2.0.8-162-ge38c4f44;multi;100;56234;;106396;27105;811812;1857150;7428600;239;54.898294672;2021-12-07@09:15:05 +v2.0.8-162-ge38c4f44;multi;100;56234;;106396;27105;811388;1857159;7428636;254;58.536591543;2021-12-07@09:16:06 +v2.0.8-162-ge38c4f44;multi;100;56234;;106396;27105;815456;1858215;7432860;260;59.849598349;2021-12-07@09:17:07 +v2.0.8-162-ge38c4f44;multi;100;56234;;106396;27105;815236;1858048;7432192;252;57.905388552;2021-12-07@09:18:06 +v2.0.8-162-ge38c4f44;multi;100;56234;;106396;27105;813824;1858011;7432044;256;58.755406119;2021-12-07@09:19:07 +v2.0.8-162-ge38c4f44;multi;100;56234;;106396;27105;816012;1858205;7432820;255;58.591220082;2021-12-07@09:20:07 +v2.0.8-162-ge38c4f44;multi;100;56234;;106396;27105;815116;1858126;7432504;247;56.701459625;2021-12-07@09:21:05 +v2.0.8-162-ge38c4f44;multi;100;56234;;106396;27105;815352;1858086;7432344;255;58.561547021;2021-12-07@09:22:06 +v2.0.8-162-ge38c4f44;imex;100;56234;;106396;27105;380556;99721;398884;961;220.884274678;2021-12-07@09:26:53 +v2.0.8-162-ge38c4f44;imex;100;56234;;106396;27105;380972;99845;399380;945;217.191170823;2021-12-07@09:30:33 +v2.0.8-162-ge38c4f44;imex;100;56234;;106396;27105;380196;99712;398848;959;220.711569329;2021-12-07@09:34:16 +v2.0.8-162-ge38c4f44;imex;100;56234;;106396;27105;380916;99833;399332;926;213.098811443;2021-12-07@09:37:50 +v2.0.8-162-ge38c4f44;imex;100;56234;;106396;27105;380296;99674;398696;878;202.018146974;2021-12-07@09:41:15 +v2.0.8-162-ge38c4f44;imex;100;56234;;106396;27105;380496;99755;399020;883;203.084252840;2021-12-07@09:44:40 +v2.0.8-162-ge38c4f44;imex;100;56234;;106396;27105;380480;99710;398840;885;203.519919601;2021-12-07@09:48:05 +v2.0.8-162-ge38c4f44;imex;100;56234;;106396;27105;380476;99770;399080;884;203.587421629;2021-12-07@09:51:31 +v2.0.8-162-ge38c4f44;single;100;56234;;106396;27105;39076;11373;45492;953;220.067987661;2021-12-07@09:56:16 +v2.0.8-162-ge38c4f44;single;100;56234;;106396;27105;39044;11381;45524;934;216.386786625;2021-12-07@09:59:55 +v2.0.8-162-ge38c4f44;single;100;56234;;106396;27105;39272;11404;45616;988;228.136814978;2021-12-07@10:03:45 +v2.0.8-162-ge38c4f44;single;100;56234;;106396;27105;39180;11403;45612;936;216.213162155;2021-12-07@10:07:24 +v2.0.8-162-ge38c4f44;single;100;56234;;106396;27105;39288;11402;45608;973;225.237349413;2021-12-07@10:11:11 +v2.0.8-162-ge38c4f44;single;100;56234;;106396;27105;39356;11382;45528;1099;254.545626069;2021-12-07@10:15:28 +v2.0.8-162-ge38c4f44;single;100;56234;;106396;27105;39172;11398;45592;987;228.431737878;2021-12-07@10:19:18 +v2.0.8-162-ge38c4f44;single;100;56234;;106396;27105;39092;11382;45528;1012;234.441023614;2021-12-07@10:23:15 +v2.0.8-162-ge38c4f44;mulimex;100;56234;;106396;27105;1126108;1939306;7757224;263;60.607039104;2021-12-07@10:25:20 +v2.0.8-162-ge38c4f44;mulimex;100;56234;;106396;27105;1125028;1939386;7757544;271;62.383007883;2021-12-07@10:26:24 +v2.0.8-162-ge38c4f44;mulimex;100;56234;;106396;27105;1127300;1939684;7758736;270;62.210629062;2021-12-07@10:27:29 +v2.0.8-162-ge38c4f44;mulimex;100;56234;;106396;27105;1126772;1939524;7758096;269;61.916333402;2021-12-07@10:28:33 +v2.0.8-162-ge38c4f44;mulimex;100;56234;;106396;27105;1126724;1939454;7757816;273;62.782615139;2021-12-07@10:29:38 +v2.0.8-162-ge38c4f44;mulimex;100;56234;;106396;27105;1126352;1939422;7757688;269;62.016610175;2021-12-07@10:30:43 +v2.0.8-162-ge38c4f44;mulimex;100;56234;;106396;27105;1127524;1939638;7758552;270;62.140153398;2021-12-07@10:31:47 +v2.0.8-162-ge38c4f44;mulimex;100;56234;;106396;27105;1125708;1939467;7757868;271;62.329646487;2021-12-07@10:32:52 +v2.0.8-162-ge38c4f44;multi;178;56234;;107469;27173;1412368;2434437;9737748;452;105.074120590;2021-12-07@10:36:13 +v2.0.8-162-ge38c4f44;multi;178;56234;;107469;27173;1415832;2435204;9740816;467;108.303104105;2021-12-07@10:38:03 +v2.0.8-162-ge38c4f44;multi;178;56234;;107469;27173;1408988;2433879;9735516;463;107.237797066;2021-12-07@10:39:53 +v2.0.8-162-ge38c4f44;multi;178;56234;;107469;27173;1407728;2433286;9733144;464;107.756021722;2021-12-07@10:41:43 +v2.0.8-162-ge38c4f44;multi;178;56234;;107469;27173;1415320;2435237;9740948;462;106.905256557;2021-12-07@10:43:32 +v2.0.8-162-ge38c4f44;multi;178;56234;;107469;27173;1415976;2435191;9740764;451;104.395056517;2021-12-07@10:45:18 +v2.0.8-162-ge38c4f44;multi;178;56234;;107469;27173;1411576;2434361;9737444;469;108.176752682;2021-12-07@10:47:09 +v2.0.8-162-ge38c4f44;multi;178;56234;;107469;27173;1410640;2433821;9735284;448;103.802910023;2021-12-07@10:48:55 +v2.0.8-162-ge38c4f44;imex;178;56234;;107469;27173;626100;163488;653952;1741;401.900251645;2021-12-07@10:57:30 +v2.0.8-162-ge38c4f44;imex;178;56234;;107469;27173;627192;163714;654856;1668;386.070966366;2021-12-07@11:03:59 +v2.0.8-162-ge38c4f44;imex;178;56234;;107469;27173;626188;163543;654172;1717;396.937292355;2021-12-07@11:10:37 +v2.0.8-162-ge38c4f44;imex;178;56234;;107469;27173;627636;163849;655396;1680;388.250700679;2021-12-07@11:17:07 +v2.0.8-162-ge38c4f44;imex;178;56234;;107469;27173;626516;163584;654336;1732;400.114119250;2021-12-07@11:23:50 +v2.0.8-162-ge38c4f44;imex;178;56234;;107469;27173;624596;163102;652408;1657;382.726705351;2021-12-07@11:30:14 +v2.0.8-162-ge38c4f44;imex;178;56234;;107469;27173;625544;163339;653356;1691;390.508581231;2021-12-07@11:36:46 +v2.0.8-162-ge38c4f44;imex;178;56234;;107469;27173;625824;163424;653696;1764;406.973139329;2021-12-07@11:43:35 +v2.0.8-162-ge38c4f44;single;178;56234;;107469;27173;44764;12815;51260;1841;425.529791376;2021-12-07@11:52:32 +v2.0.8-162-ge38c4f44;single;178;56234;;107469;27173;45216;12848;51392;1623;375.002273344;2021-12-07@11:58:48 +v2.0.8-162-ge38c4f44;single;178;56234;;107469;27173;45104;12831;51324;1764;408.716158792;2021-12-07@12:05:39 +v2.0.8-162-ge38c4f44;single;178;56234;;107469;27173;45132;12832;51328;1731;400.106162572;2021-12-07@12:12:20 +v2.0.8-162-ge38c4f44;single;178;56234;;107469;27173;44740;12809;51236;1703;393.154512921;2021-12-07@12:18:55 +v2.0.8-162-ge38c4f44;single;178;56234;;107469;27173;44968;12843;51372;1622;374.993661126;2021-12-07@12:25:12 +v2.0.8-162-ge38c4f44;single;178;56234;;107469;27173;44808;12812;51248;1679;387.739081506;2021-12-07@12:31:41 +v2.0.8-162-ge38c4f44;single;178;56234;;107469;27173;45140;12834;51336;1608;372.600897973;2021-12-07@12:37:55 +v2.0.8-163-g542f2455;mulimex;178;56234;;107469;27173;1958068;2577134;10308536;464;107.705177588;2021-12-07@12:41:37 +v2.0.8-163-g542f2455;mulimex;178;56234;;107469;27173;1966572;2578759;10315036;468;107.885290589;2021-12-07@12:43:41 +v2.0.8-163-g542f2455;mulimex;178;56234;;107469;27173;1962524;2578133;10312532;462;107.137076114;2021-12-07@12:45:45 +v2.0.8-163-g542f2455;mulimex;178;56234;;107469;27173;1962600;2578118;10312472;462;107.717835010;2021-12-07@12:47:49 +v2.0.8-163-g542f2455;mulimex;178;56234;;107469;27173;1964796;2578613;10314452;471;108.260140050;2021-12-07@12:49:54 +v2.0.8-163-g542f2455;mulimex;178;56234;;107469;27173;1963108;2578321;10313284;468;108.541680736;2021-12-07@12:51:59 +v2.0.8-163-g542f2455;mulimex;178;56234;;107469;27173;1967808;2578469;10313876;468;108.124198194;2021-12-07@12:54:04 +v2.0.8-163-g542f2455;mulimex;178;56234;;107469;27173;1960704;2577558;10310232;461;107.053603216;2021-12-07@12:56:08 +v2.0.8-163-g542f2455;multi;316;56234;;108134;27288;2467048;2700998;10803992;797;186.242743507;2021-12-07@13:02:31 +v2.0.8-163-g542f2455;multi;316;56234;;108134;27288;2470612;2702008;10808032;807;188.098883875;2021-12-07@13:05:41 +v2.0.8-163-g542f2455;multi;316;56234;;108134;27288;2472368;2702141;10808564;805;187.476945648;2021-12-07@13:08:53 +v2.0.8-163-g542f2455;multi;316;56234;;108134;27288;2470252;2701710;10806840;870;199.900663013;2021-12-07@13:12:25 +v2.0.8-163-g542f2455;multi;316;56234;;108134;27288;2460868;2700067;10800268;1481;352.265841873;2021-12-07@13:22:30 +v2.0.8-163-g542f2455;multi;316;56234;;108134;27288;2477616;2703931;10815724;865;197.814149617;2021-12-07@13:25:50 +v2.0.8-163-g542f2455;multi;316;56234;;108134;27288;2474776;2703214;10812856;854;196.335411369;2021-12-07@13:29:10 +v2.0.8-163-g542f2455;multi;316;56234;;108134;27288;2477244;2703571;10814284;854;196.148596118;2021-12-07@13:32:30 +v2.0.8-163-g542f2455;imex;316;56234;;108134;27288;1061240;276415;1105660;2920;675.382400523;2021-12-07@13:46:56 +v2.0.8-163-g542f2455;imex;316;56234;;108134;27288;1062464;276715;1106860;2961;687.321316322;2021-12-07@13:58:40 +v2.0.8-163-g542f2455;imex;316;56234;;108134;27288;1059872;276093;1104372;2953;683.802078276;2021-12-07@14:10:21 +v2.0.8-163-g542f2455;imex;316;56234;;108134;27288;1060332;276189;1104756;2977;692.262919920;2021-12-07@14:21:55 +v2.0.8-163-g542f2455;imex;316;56234;;108134;27288;1059680;275992;1103968;2775;644.806413846;2021-12-07@14:32:41 +v2.0.8-163-g542f2455;imex;316;56234;;108134;27288;1063264;276848;1107392;2850;663.890224686;2021-12-07@14:43:47 +v2.0.8-163-g542f2455;imex;316;56234;;108134;27288;1062584;276719;1106876;2987;700.474717231;2021-12-07@14:55:29 +v2.0.8-163-g542f2455;imex;316;56234;;108134;27288;1059304;275920;1103680;3107;721.580970601;2021-12-07@15:07:32 +v2.0.8-164-gf9e098c9;single;316;56234;;108134;27288;53612;14987;59948;3183;738.604693202;2021-12-07@15:22:59 +v2.0.8-164-gf9e098c9;single;316;56234;;108134;27288;53816;15048;60192;3110;722.117562203;2021-12-07@15:35:03 +v2.0.8-164-gf9e098c9;single;316;56234;;108134;27288;53888;15090;60360;3088;715.782867904;2021-12-07@15:47:01 +v2.0.8-164-gf9e098c9;single;316;56234;;108134;27288;53684;14999;59996;3182;739.619192441;2021-12-07@15:59:22 +v2.0.8-164-gf9e098c9;single;316;56234;;108134;27288;52940;14884;59536;3155;732.560875442;2021-12-07@16:11:36 +v2.0.8-164-gf9e098c9;single;316;56234;;108134;27288;53484;14970;59880;3177;734.713577511;2021-12-07@16:23:53 +v2.0.8-164-gf9e098c9;single;316;56234;;108134;27288;53624;14993;59972;3197;742.265836951;2021-12-07@16:36:17 +v2.0.8-164-gf9e098c9;single;316;56234;;108134;27288;53708;14985;59940;3121;724.805608268;2021-12-07@16:48:24 +v2.0.8-164-gf9e098c9;mulimex;316;56234;;108134;27288;3441604;2954812;11819248;842;196.066017728;2021-12-07@16:55:02 +v2.0.8-164-gf9e098c9;mulimex;316;56234;;108134;27288;3455192;2958203;11832812;858;198.019355689;2021-12-07@16:58:23 +v2.0.8-164-gf9e098c9;mulimex;316;56234;;108134;27288;3449340;2955449;11821796;848;198.250545793;2021-12-07@17:01:44 +v2.0.8-164-gf9e098c9;mulimex;316;56234;;108134;27288;3441232;2954377;11817508;851;198.632521435;2021-12-07@17:05:05 +v2.0.8-164-gf9e098c9;mulimex;316;56234;;108134;27288;3436228;2953826;11815304;843;196.740888733;2021-12-07@17:08:24 +v2.0.8-164-gf9e098c9;mulimex;316;56234;;108134;27288;3441636;2954579;11818316;858;198.089961540;2021-12-07@17:11:45 +v2.0.8-164-gf9e098c9;mulimex;316;56234;;108134;27288;3455548;2957054;11828216;882;202.311464004;2021-12-07@17:15:10 +v2.0.8-164-gf9e098c9;mulimex;316;56234;;108134;27288;3441240;2954245;11816980;854;197.640247363;2021-12-07@17:18:31 +v2.0.8-164-gf9e098c9;multi;10;100000;;126751;52385;170308;220940;883760;43;10.211327539;2021-12-07@17:20:05 +v2.0.8-164-gf9e098c9;multi;10;100000;;126751;52385;170292;220949;883796;48;11.308742392;2021-12-07@17:20:18 +v2.0.8-164-gf9e098c9;multi;10;100000;;126751;52385;170792;220967;883868;49;11.507060210;2021-12-07@17:20:32 +v2.0.8-164-gf9e098c9;multi;10;100000;;126751;52385;170224;220977;883908;48;11.295528774;2021-12-07@17:20:45 +v2.0.8-164-gf9e098c9;multi;10;100000;;126751;52385;170200;220955;883820;48;11.298329429;2021-12-07@17:20:59 +v2.0.8-164-gf9e098c9;multi;10;100000;;126751;52385;170944;220957;883828;49;11.578842286;2021-12-07@17:21:12 +v2.0.8-164-gf9e098c9;multi;10;100000;;126751;52385;170532;220930;883720;49;11.571323611;2021-12-07@17:21:26 +v2.0.8-164-gf9e098c9;multi;10;100000;;126751;52385;170440;221038;884152;48;11.306314950;2021-12-07@17:21:40 +v2.0.8;multi;10;10000;;12925;6245;25444;7867;31468;34;7.380314168;2021-12-07@17:23:59 +v2.0.8;multi;10;10000;;12925;6245;25580;7913;31652;36;7.824798988;2021-12-07@17:24:09 +v2.0.8;multi;10;10000;;12925;6245;25632;7929;31716;37;8.046475550;2021-12-07@17:24:19 +v2.0.8;multi;10;10000;;12925;6245;25648;7940;31760;36;7.832148685;2021-12-07@17:24:30 +v2.0.8;multi;10;10000;;12925;6245;25468;7925;31700;36;7.822049309;2021-12-07@17:24:39 +v2.0.8;multi;10;10000;;12925;6245;25604;7916;31664;36;7.827260141;2021-12-07@17:24:49 +v2.0.8;multi;10;10000;;12925;6245;25480;7923;31692;37;8.038343117;2021-12-07@17:24:59 +v2.0.8;multi;10;10000;;12925;6245;25524;7921;31684;36;7.826981949;2021-12-07@17:25:09 +v2.0.8;imex;10;10000;;12925;6245;21536;6929;27716;26;5.636593475;2021-12-07@17:25:24 +v2.0.8;imex;10;10000;;12925;6245;21332;6929;27716;28;6.082880960;2021-12-07@17:25:32 +v2.0.8;imex;10;10000;;12925;6245;21516;6949;27796;28;6.087306502;2021-12-07@17:25:40 +v2.0.8;imex;10;10000;;12925;6245;21476;6948;27792;27;5.862203072;2021-12-07@17:25:48 +v2.0.8;imex;10;10000;;12925;6245;21844;6948;27792;28;6.077918495;2021-12-07@17:25:56 +v2.0.8;imex;10;10000;;12925;6245;21688;6929;27716;28;6.075490031;2021-12-07@17:26:04 +v2.0.8;imex;10;10000;;12925;6245;21416;6948;27792;28;6.079226967;2021-12-07@17:26:12 +v2.0.8;imex;10;10000;;12925;6245;21528;6942;27768;27;5.861203295;2021-12-07@17:26:20 +v2.0.8;single;10;10000;;12925;6245;;8332;3571;14284;27;5.834713449;2021-12-07@17:26:35 +v2.0.8;single;10;10000;;12925;6245;;8268;3602;14408;28;6.076678459;2021-12-07@17:26:43 +v2.0.8;single;10;10000;;12925;6245;;8280;3606;14424;29;6.295831071;2021-12-07@17:26:51 +v2.0.8;single;10;10000;;12925;6245;;8248;3610;14440;28;6.078340521;2021-12-07@17:26:59 +v2.0.8;single;10;10000;;12925;6245;;8488;3603;14412;29;6.298977355;2021-12-07@17:27:07 +v2.0.8;single;10;10000;;12925;6245;;8608;3627;14508;28;6.077737605;2021-12-07@17:27:15 +v2.0.8;single;10;10000;;12925;6245;;8172;3616;14464;28;6.082737448;2021-12-07@17:27:24 +v2.0.8;single;10;10000;;12925;6245;;8080;3611;14444;28;6.076552437;2021-12-07@17:27:32 +v2.0.8;mulimex;10;10000;;12925;6245;34896;10274;41096;34;7.375614892;2021-12-07@17:27:48 +v2.0.8;mulimex;10;10000;;12925;6245;35116;10319;41276;36;7.823989090;2021-12-07@17:27:58 +v2.0.8;mulimex;10;10000;;12925;6245;34828;10280;41120;36;7.824985758;2021-12-07@17:28:07 +v2.0.8;mulimex;10;10000;;12925;6245;35012;10264;41056;36;7.826464961;2021-12-07@17:28:17 +v2.0.8;mulimex;10;10000;;12925;6245;35172;10318;41272;37;8.047223876;2021-12-07@17:28:27 +v2.0.8;mulimex;10;10000;;12925;6245;34900;10281;41124;36;7.827521230;2021-12-07@17:28:38 +v2.0.8;mulimex;10;10000;;12925;6245;35060;10311;41244;36;7.829890366;2021-12-07@17:28:48 +v2.0.8;mulimex;10;10000;;12925;6245;34824;10284;41136;37;8.047637860;2021-12-07@17:28:58 +v2.0.8;multi;18;10000;;15314;6305;40776;11686;46744;62;13.504565080;2021-12-07@17:29:23 +v2.0.8;multi;18;10000;;15314;6305;40652;11669;46676;68;14.824318024;2021-12-07@17:29:40 +v2.0.8;multi;18;10000;;15314;6305;40536;11675;46700;69;15.039503816;2021-12-07@17:29:57 +v2.0.8;multi;18;10000;;15314;6305;40684;11651;46604;69;15.031619656;2021-12-07@17:30:14 +v2.0.8;multi;18;10000;;15314;6305;40720;11666;46664;68;14.813683180;2021-12-07@17:30:31 +v2.0.8;multi;18;10000;;15314;6305;40604;11669;46676;68;14.819970770;2021-12-07@17:30:48 +v2.0.8;multi;18;10000;;15314;6305;40572;11705;46820;68;14.827298019;2021-12-07@17:31:05 +v2.0.8;multi;18;10000;;15314;6305;40792;11671;46684;68;14.818596799;2021-12-07@17:31:21 +v2.0.8;imex;18;10000;;15314;6305;30360;9066;36264;41;8.899544407;2021-12-07@17:31:44 +v2.0.8;imex;18;10000;;15314;6305;29852;9072;36288;46;10.014288271;2021-12-07@17:31:56 +v2.0.8;imex;18;10000;;15314;6305;29916;9050;36200;45;9.795407102;2021-12-07@17:32:08 +v2.0.8;imex;18;10000;;15314;6305;29844;9045;36180;53;11.542368727;2021-12-07@17:32:22 +v2.0.8;imex;18;10000;;15314;6305;29852;9064;36256;44;9.577087526;2021-12-07@17:32:33 +v2.0.8;imex;18;10000;;15314;6305;29820;9076;36304;45;9.798265252;2021-12-07@17:32:45 +v2.0.8;imex;18;10000;;15314;6305;30148;9060;36240;44;9.575457314;2021-12-07@17:32:57 +v2.0.8;imex;18;10000;;15314;6305;30036;9066;36264;44;9.586265262;2021-12-07@17:33:08 +v2.0.8;single;18;10000;;15314;6305;;9212;3896;15584;45;9.787583814;2021-12-07@17:33:31 +v2.0.8;single;18;10000;;15314;6305;;9520;3946;15784;45;9.805247929;2021-12-07@17:33:43 +v2.0.8;single;18;10000;;15314;6305;;9568;3949;15796;45;9.798459050;2021-12-07@17:33:55 +v2.0.8;single;18;10000;;15314;6305;;9532;3955;15820;45;9.796275112;2021-12-07@17:34:06 +v2.0.8;single;18;10000;;15314;6305;;9588;3952;15808;45;9.796876411;2021-12-07@17:34:18 +v2.0.8;single;18;10000;;15314;6305;;9580;3929;15716;47;10.237484116;2021-12-07@17:34:30 +v2.0.8;single;18;10000;;15314;6305;;9796;3949;15796;46;10.021432268;2021-12-07@17:34:42 +v2.0.8;single;18;10000;;15314;6305;;9576;3965;15860;47;10.236391708;2021-12-07@17:34:55 +v2.0.8;mulimex;18;10000;;15314;6305;56628;15661;62644;62;13.504603988;2021-12-07@17:35:22 +v2.0.8;mulimex;18;10000;;15314;6305;56464;15687;62748;69;15.044574303;2021-12-07@17:35:38 +v2.0.8;mulimex;18;10000;;15314;6305;56692;15704;62816;69;15.045876645;2021-12-07@17:35:55 +v2.0.8;mulimex;18;10000;;15314;6305;56540;15693;62772;68;14.828177143;2021-12-07@17:36:12 +v2.0.8;mulimex;18;10000;;15314;6305;56720;15711;62844;69;15.049092830;2021-12-07@17:36:29 +v2.0.8;mulimex;18;10000;;15314;6305;56704;15682;62728;68;14.829925213;2021-12-07@17:36:46 +v2.0.8;mulimex;18;10000;;15314;6305;56632;15685;62740;69;15.041653552;2021-12-07@17:37:03 +v2.0.8;mulimex;18;10000;;15314;6305;56640;15690;62760;69;15.043299739;2021-12-07@17:37:20 +v2.0.8;multi;32;10000;;16892;6334;65688;18025;72100;120;26.180747823;2021-12-07@17:38:04 +v2.0.8;multi;32;10000;;16892;6334;65708;18023;72092;126;27.504178252;2021-12-07@17:38:33 +v2.0.8;multi;32;10000;;16892;6334;66120;18032;72128;127;27.724581477;2021-12-07@17:39:03 +v2.0.8;multi;32;10000;;16892;6334;65772;18016;72064;128;27.945166100;2021-12-07@17:39:33 +v2.0.8;multi;32;10000;;16892;6334;65960;18025;72100;127;27.691722123;2021-12-07@17:40:02 +v2.0.8;multi;32;10000;;16892;6334;65896;18022;72088;127;27.724702119;2021-12-07@17:40:32 +v2.0.8;multi;32;10000;;16892;6334;65876;18020;72080;127;27.721962977;2021-12-07@17:41:02 +v2.0.8;multi;32;10000;;16892;6334;65960;17997;71988;132;28.798228462;2021-12-07@17:41:32 +v2.0.8;imex;32;10000;;16892;6334;42900;12250;49000;71;15.460228949;2021-12-07@17:42:10 +v2.0.8;imex;32;10000;;16892;6334;42992;12277;49108;75;16.343240470;2021-12-07@17:42:28 +v2.0.8;imex;32;10000;;16892;6334;42632;12259;49036;73;15.915448156;2021-12-07@17:42:45 +v2.0.8;imex;32;10000;;16892;6334;42736;12264;49056;79;17.229714688;2021-12-07@17:43:05 +v2.0.8;imex;32;10000;;16892;6334;42892;12289;49156;74;16.132911122;2021-12-07@17:43:23 +v2.0.8;imex;32;10000;;16892;6334;42924;12270;49080;74;16.146408568;2021-12-07@17:43:41 +v2.0.8;imex;32;10000;;16892;6334;42740;12269;49076;73;15.900375136;2021-12-07@17:43:59 +v2.0.8;imex;32;10000;;16892;6334;42796;12260;49040;77;16.775149691;2021-12-07@17:44:18 +v2.0.8;single;32;10000;;16892;6334;10964;4276;17104;74;16.109957913;2021-12-07@17:44:56 +v2.0.8;single;32;10000;;16892;6334;11056;4247;16988;80;17.443506335;2021-12-07@17:45:15 +v2.0.8;single;32;10000;;16892;6334;10828;4272;17088;78;17.011778950;2021-12-07@17:45:35 +v2.0.8;single;32;10000;;16892;6334;10776;4262;17048;75;16.352763608;2021-12-07@17:45:53 +v2.0.8;single;32;10000;;16892;6334;10912;4264;17056;75;16.360266090;2021-12-07@17:46:11 +v2.0.8;single;32;10000;;16892;6334;11036;4268;17072;76;16.572461117;2021-12-07@17:46:30 +v2.0.8;single;32;10000;;16892;6334;10916;4253;17012;76;16.576309170;2021-12-07@17:46:49 +v2.0.8;single;32;10000;;16892;6334;10956;4292;17168;76;16.567794493;2021-12-07@17:47:08 +v2.0.8;mulimex;32;10000;;16892;6334;92792;24750;99000;122;26.624865322;2021-12-07@17:47:56 +v2.0.8;mulimex;32;10000;;16892;6334;92832;24742;98968;127;27.752408830;2021-12-07@17:48:26 +v2.0.8;mulimex;32;10000;;16892;6334;92836;24742;98968;127;27.669849538;2021-12-07@17:48:56 +v2.0.8;mulimex;32;10000;;16892;6334;92840;24769;99076;127;27.736230391;2021-12-07@17:49:26 +v2.0.8;mulimex;32;10000;;16892;6334;93364;24845;99380;127;27.730842065;2021-12-07@17:49:55 +v2.0.8;mulimex;32;10000;;16892;6334;92756;24745;98980;126;27.500146233;2021-12-07@17:50:25 +v2.0.8;mulimex;32;10000;;16892;6334;92752;24725;98900;127;27.748070578;2021-12-07@17:50:55 +v2.0.8;mulimex;32;10000;;16892;6334;92896;24759;99036;127;27.751678200;2021-12-07@17:51:24 +v2.0.8;multi;56;10000;;17919;6345;108424;28620;114480;222;48.428642973;2021-12-07@17:52:43 +v2.0.8;multi;56;10000;;17919;6345;115212;30384;121536;230;50.093778564;2021-12-07@17:53:35 +v2.0.8;multi;56;10000;;17919;6345;116512;30660;122640;229;49.944954914;2021-12-07@17:54:26 +v2.0.8;multi;56;10000;;17919;6345;118292;31090;124360;230;50.010190612;2021-12-07@17:55:20 +v2.0.8;multi;56;10000;;17919;6345;115404;30413;121652;229;50.077709971;2021-12-07@17:56:13 +v2.0.8;multi;56;10000;;17919;6345;122112;32020;128080;231;50.186404896;2021-12-07@17:57:05 +v2.0.8;multi;56;10000;;17919;6345;111028;29302;117208;229;49.958732992;2021-12-07@17:57:57 +v2.0.8;multi;56;10000;;17919;6345;116172;30616;122464;230;50.011137354;2021-12-07@17:58:49 +v2.0.8;imex;56;10000;;17919;6345;63352;17388;69552;123;26.857051411;2021-12-07@17:59:53 +v2.0.8;imex;56;10000;;17919;6345;63264;17387;69548;125;27.310443534;2021-12-07@18:00:22 +v2.0.8;imex;56;10000;;17919;6345;63308;17368;69472;124;27.085014487;2021-12-07@18:00:52 +v2.0.8;imex;56;10000;;17919;6345;63232;17376;69504;124;27.078020642;2021-12-07@18:01:20 +v2.0.8;imex;56;10000;;17919;6345;63080;17351;69404;124;27.093878431;2021-12-07@18:01:50 +v2.0.8;imex;56;10000;;17919;6345;63208;17360;69440;123;26.864556296;2021-12-07@18:02:19 +v2.0.8;imex;56;10000;;17919;6345;63272;17378;69512;124;27.080865302;2021-12-07@18:02:48 +v2.0.8;imex;56;10000;;17919;6345;63292;17401;69604;127;27.746670444;2021-12-07@18:03:17 +v2.0.8;single;56;10000;;17919;6345;12728;4720;18880;127;27.688249077;2021-12-07@18:04:23 +v2.0.8;single;56;10000;;17919;6345;12528;4671;18684;129;28.168592390;2021-12-07@18:04:53 +v2.0.8;single;56;10000;;17919;6345;12460;4667;18668;132;28.816726827;2021-12-07@18:05:24 +v2.0.8;single;56;10000;;17919;6345;13100;4730;18920;131;28.612050555;2021-12-07@18:05:55 +v2.0.8;single;56;10000;;17919;6345;12676;4734;18936;129;28.179133677;2021-12-07@18:06:25 +v2.0.8;single;56;10000;;17919;6345;12628;4677;18708;131;28.600839303;2021-12-07@18:06:56 +v2.0.8;single;56;10000;;17919;6345;12860;4724;18896;130;28.390482520;2021-12-07@18:07:27 +v2.0.8;single;56;10000;;17919;6345;12608;4682;18728;130;28.383924062;2021-12-07@18:07:58 +v2.0.8;mulimex;56;10000;;17919;6345;153720;39990;159960;222;48.558125010;2021-12-07@18:09:24 +v2.0.8;mulimex;56;10000;;17919;6345;173452;44911;179644;229;49.819159265;2021-12-07@18:10:17 +v2.0.8;mulimex;56;10000;;17919;6345;161572;41947;167788;229;50.037428440;2021-12-07@18:11:09 +v2.0.8;mulimex;56;10000;;17919;6345;162396;42118;168472;228;50.001794469;2021-12-07@18:12:01 +v2.0.8;mulimex;56;10000;;17919;6345;164284;42560;170240;229;49.904116030;2021-12-07@18:12:53 +v2.0.8;mulimex;56;10000;;17919;6345;165128;42803;171212;230;50.055860076;2021-12-07@18:13:45 +v2.0.8;mulimex;56;10000;;17919;6345;162508;42198;168792;229;49.858875896;2021-12-07@18:14:37 +v2.0.8;mulimex;56;10000;;17919;6345;163648;42476;169904;229;49.865987762;2021-12-07@18:15:29 +v2.0.8;multi;100;10000;;18563;6381;185588;47943;191772;407;89.336977668;2021-12-07@18:17:51 +v2.0.8;multi;100;10000;;18563;6381;185588;47911;191644;413;90.664938942;2021-12-07@18:19:24 +v2.0.8;multi;100;10000;;18563;6381;185424;47920;191680;408;89.688455243;2021-12-07@18:21:10 +v2.0.8;multi;100;10000;;18563;6381;185604;47932;191728;412;90.489482553;2021-12-07@18:22:44 +v2.0.8;multi;100;10000;;18563;6381;185740;47923;191692;412;90.682941706;2021-12-07@18:24:17 +v2.0.8;multi;100;10000;;18563;6381;185560;47922;191688;412;90.483333839;2021-12-07@18:25:50 +v2.0.8;multi;100;10000;;18563;6381;185712;47937;191748;413;90.720244470;2021-12-07@18:27:23 +v2.0.8;multi;100;10000;;18563;6381;185464;47917;191668;413;90.673136813;2021-12-07@18:28:56 +v2.0.8;imex;100;10000;;18563;6381;98996;26295;105180;228;49.772746849;2021-12-07@18:30:50 +v2.0.8;imex;100;10000;;18563;6381;99248;26325;105300;220;48.086806626;2021-12-07@18:31:41 +v2.0.8;imex;100;10000;;18563;6381;99472;26428;105712;225;49.166994106;2021-12-07@18:32:32 +v2.0.8;imex;100;10000;;18563;6381;99112;26308;105232;225;49.193044838;2021-12-07@18:33:24 +v2.0.8;imex;100;10000;;18563;6381;99320;26431;105724;218;48.375874157;2021-12-07@18:34:14 +v2.0.8;imex;100;10000;;18563;6381;99048;26358;105432;208;48.717563830;2021-12-07@18:35:06 +v2.0.8;imex;100;10000;;18563;6381;99212;26333;105332;220;48.239671818;2021-12-07@18:35:56 +v2.0.8;imex;100;10000;;18563;6381;98996;26308;105232;224;49.011486298;2021-12-07@18:36:47 +v2.0.8;single;100;10000;;18563;6381;14668;5186;20744;236;51.517662396;2021-12-07@18:38:41 +v2.0.8;single;100;10000;;18563;6381;14860;5231;20924;230;50.230503198;2021-12-07@18:39:33 +v2.0.8;single;100;10000;;18563;6381;14720;5196;20784;232;50.693102460;2021-12-07@18:40:26 +v2.0.8;single;100;10000;;18563;6381;14436;5152;20608;232;50.672487282;2021-12-07@18:41:18 +v2.0.8;single;100;10000;;18563;6381;14724;5223;20892;230;50.228859148;2021-12-07@18:42:11 +v2.0.8;single;100;10000;;18563;6381;14828;5214;20856;227;49.603268658;2021-12-07@18:43:02 +v2.0.8;single;100;10000;;18563;6381;14240;5155;20620;231;50.441219511;2021-12-07@18:43:55 +v2.0.8;single;100;10000;;18563;6381;14660;5165;20660;231;50.458875466;2021-12-07@18:44:47 +v2.0.8;mulimex;100;10000;;18563;6381;264512;67636;270544;408;89.573877427;2021-12-07@18:47:19 +v2.0.8;mulimex;100;10000;;18563;6381;264788;67650;270600;413;90.670580332;2021-12-07@18:48:52 +v2.0.8;mulimex;100;10000;;18563;6381;264352;67649;270596;415;91.098431472;2021-12-07@18:50:25 +v2.0.8;mulimex;100;10000;;18563;6381;264312;67631;270524;414;90.901171045;2021-12-07@18:51:58 +v2.0.8;mulimex;100;10000;;18563;6381;264372;67615;270460;415;91.116916145;2021-12-07@18:53:33 +v2.0.8;mulimex;100;10000;;18563;6381;264688;67689;270756;415;91.105156060;2021-12-07@18:55:07 +v2.0.8;mulimex;100;10000;;18563;6381;264284;67647;270588;415;91.104647172;2021-12-07@18:56:42 +v2.0.8;mulimex;100;10000;;18563;6381;264340;67658;270632;415;91.050613393;2021-12-07@18:58:15 +v2.0.8;multi;178;10000;;19033;6531;323688;82470;329880;737;162.869679370;2021-12-07@19:02:32 +v2.0.8;multi;178;10000;;19033;6531;323716;82499;329996;749;165.194929662;2021-12-07@19:05:19 +v2.0.8;multi;178;10000;;19033;6531;323924;82481;329924;747;164.678245748;2021-12-07@19:08:07 +v2.0.8;multi;178;10000;;19033;6531;323808;82478;329912;746;164.419681992;2021-12-07@19:10:54 +v2.0.8;multi;178;10000;;19033;6531;323624;82452;329808;747;164.624263970;2021-12-07@19:13:41 +v2.0.8;multi;178;10000;;19033;6531;323784;82445;329780;759;167.370843808;2021-12-07@19:16:31 +v2.0.8;multi;178;10000;;19033;6531;323920;82453;329812;747;164.679852071;2021-12-07@19:19:19 +v2.0.8;multi;178;10000;;19033;6531;323780;82453;329812;747;164.670572918;2021-12-07@19:22:06 +v2.0.8;imex;178;10000;;19033;6531;165764;43006;172024;440;96.468907431;2021-12-07@19:25:39 +v2.0.8;imex;178;10000;;19033;6531;166300;43086;172344;428;93.906688190;2021-12-07@19:27:15 +v2.0.8;imex;178;10000;;19033;6531;166080;43045;172180;422;92.639551274;2021-12-07@19:28:51 +v2.0.8;imex;178;10000;;19033;6531;165964;43079;172316;420;92.106320314;2021-12-07@19:30:25 +v2.0.8;imex;178;10000;;19033;6531;165980;43025;172100;419;92.364277190;2021-12-07@19:31:59 +v2.0.8;imex;178;10000;;19033;6531;165724;43023;172092;431;94.616677919;2021-12-07@19:33:36 +v2.0.8;imex;178;10000;;19033;6531;165772;43017;172068;426;93.487271096;2021-12-07@19:35:12 +v2.0.8;imex;178;10000;;19033;6531;166000;43072;172288;424;93.016330089;2021-12-07@19:36:47 +v2.0.8;single;178;10000;;19033;6531;18628;6166;24664;457;100.596303996;2021-12-07@19:40:12 +v2.0.8;single;178;10000;;19033;6531;19388;6353;25412;442;97.137298157;2021-12-07@19:41:52 +v2.0.8;single;178;10000;;19033;6531;19456;6384;25536;441;96.715050045;2021-12-07@19:43:30 +v2.0.8;single;178;10000;;19033;6531;19164;6313;25252;439;96.296256213;2021-12-07@19:45:09 +v2.0.8;single;178;10000;;19033;6531;19184;6364;25456;446;97.855675289;2021-12-07@19:46:49 +v2.0.8;single;178;10000;;19033;6531;19396;6347;25388;450;98.684735012;2021-12-07@19:48:29 +v2.0.8;single;178;10000;;19033;6531;19348;6328;25312;450;98.714682791;2021-12-07@19:50:10 +v2.0.8;single;178;10000;;19033;6531;19448;6444;25776;447;98.041881310;2021-12-07@19:51:50 +v2.0.8;mulimex;178;10000;;19033;6531;465480;117905;471620;741;163.492284571;2021-12-07@19:56:20 +v2.0.8;mulimex;178;10000;;19033;6531;465412;117893;471572;752;165.821125164;2021-12-07@19:59:08 +v2.0.8;mulimex;178;10000;;19033;6531;465540;117933;471732;749;165.118394046;2021-12-07@20:01:56 +v2.0.8;mulimex;178;10000;;19033;6531;485248;122800;491200;753;165.268371616;2021-12-07@20:04:43 +v2.0.8;mulimex;178;10000;;19033;6531;465580;117927;471708;749;165.185756859;2021-12-07@20:07:31 +v2.0.8;mulimex;178;10000;;19033;6531;465668;117924;471696;748;164.826062978;2021-12-07@20:10:18 +v2.0.8;mulimex;178;10000;;19033;6531;465340;117874;471496;749;165.087836049;2021-12-07@20:13:06 +v2.0.8;mulimex;178;10000;;19033;6531;465368;117911;471644;748;164.828776379;2021-12-07@20:15:53 +v2.0.8;multi;316;10000;;19553;6638;576412;145619;582476;1364;301.437332047;2021-12-07@20:23:50 +v2.0.8;multi;316;10000;;19553;6638;576120;145565;582260;1391;308.026027526;2021-12-07@20:29:01 +v2.0.8;multi;316;10000;;19553;6638;576256;145604;582416;1381;305.780135037;2021-12-07@20:34:10 +v2.0.8;multi;316;10000;;19553;6638;576476;145702;582808;1392;308.944966159;2021-12-07@20:39:22 +v2.0.8;multi;316;10000;;19553;6638;576724;145735;582940;1391;307.443356777;2021-12-07@20:44:32 +v2.0.8;multi;316;10000;;19553;6638;575996;145566;582264;1390;307.199272424;2021-12-07@20:49:43 +v2.0.8;multi;316;10000;;19553;6638;576796;145727;582908;1389;308.110883414;2021-12-07@20:54:54 +v2.0.8;multi;316;10000;;19553;6638;576512;145707;582828;1381;306.679623567;2021-12-07@21:00:04 +v2.0.8;imex;316;10000;;19553;6638;284180;72597;290388;1162;256.999570973;2021-12-07@21:07:58 +v2.0.8;imex;316;10000;;19553;6638;284108;72602;290408;837;185.575683561;2021-12-07@21:11:05 +v2.0.8;imex;316;10000;;19553;6638;284504;72667;290668;853;188.174848726;2021-12-07@21:14:16 +v2.0.8;imex;316;10000;;19553;6638;284452;72603;290412;858;189.552162419;2021-12-07@21:17:28 +v2.0.8;imex;316;10000;;19553;6638;283988;72571;290284;855;188.332651908;2021-12-07@21:20:38 +v2.0.8;imex;316;10000;;19553;6638;284152;72613;290452;865;190.454185115;2021-12-07@21:23:51 +v2.0.8;imex;316;10000;;19553;6638;284128;72581;290324;859;190.103712198;2021-12-07@21:27:04 +v2.0.8;imex;316;10000;;19553;6638;284100;72595;290380;843;186.871446146;2021-12-07@21:30:14 +v2.0.8;single;316;10000;;19553;6638;29668;8937;35748;1209;268.291747662;2021-12-07@21:38:13 +v2.0.8;single;316;10000;;19553;6638;29456;8870;35480;1157;256.729359927;2021-12-07@21:43:14 +v2.0.8;single;316;10000;;19553;6638;29436;8865;35460;897;198.441831717;2021-12-07@21:46:50 +v2.0.8;single;316;10000;;19553;6638;29372;8809;35236;1186;263.235567951;2021-12-07@21:51:55 +v2.0.8;single;316;10000;;19553;6638;29676;8923;35692;1138;251.997587950;2021-12-07@21:57:04 +v2.0.8;single;316;10000;;19553;6638;29676;8910;35640;1196;264.643353842;2021-12-07@22:03:48 +v2.0.8;single;316;10000;;19553;6638;28636;8658;34632;871;192.101982736;2021-12-07@22:07:02 +v2.0.8;single;316;10000;;19553;6638;28784;8702;34808;862;190.054995406;2021-12-07@22:10:14 +v2.0.8;mulimex;316;10000;;19553;6638;829616;208913;835652;1379;305.101826067;2021-12-07@22:18:30 +v2.0.8;mulimex;316;10000;;19553;6638;829692;208922;835688;1391;308.145536069;2021-12-07@22:23:43 +v2.0.8;mulimex;316;10000;;19553;6638;829244;208802;835208;1388;307.228636267;2021-12-07@22:28:53 +v2.0.8;mulimex;316;10000;;19553;6638;829120;208850;835400;1387;306.742807045;2021-12-07@22:34:03 +v2.0.8;mulimex;316;10000;;19553;6638;829216;208817;835268;1392;308.302072501;2021-12-07@22:39:15 +v2.0.8;mulimex;316;10000;;19553;6638;829748;208921;835684;1388;307.362917314;2021-12-07@22:44:25 +v2.0.8;mulimex;316;10000;;19553;6638;829208;208807;835228;1395;308.999325562;2021-12-07@22:49:38 +v2.0.8;mulimex;316;10000;;19553;6638;828944;208780;835120;1388;307.283899217;2021-12-07@22:54:49 +v2.0.8;multi;10;17783;;29952;12293;52600;14689;58756;68;14.981767531;2021-12-07@22:56:42 +v2.0.8;multi;10;17783;;29952;12293;52684;14698;58792;73;16.061628388;2021-12-07@22:57:00 +v2.0.8;multi;10;17783;;29952;12293;52960;14697;58788;73;16.066075809;2021-12-07@22:57:18 +v2.0.8;multi;10;17783;;29952;12293;52668;14714;58856;73;16.062526647;2021-12-07@22:57:36 +v2.0.8;multi;10;17783;;29952;12293;52928;14714;58856;73;16.069427309;2021-12-07@22:57:54 +v2.0.8;multi;10;17783;;29952;12293;52596;14700;58800;73;16.059685774;2021-12-07@22:58:12 +v2.0.8;multi;10;17783;;29952;12293;52448;14710;58840;73;16.065174594;2021-12-07@22:58:30 +v2.0.8;multi;10;17783;;29952;12293;52784;14706;58824;73;16.059399392;2021-12-07@22:58:48 +v2.0.8;imex;10;17783;;29952;12293;42096;12074;48296;47;10.279322481;2021-12-07@22:59:07 +v2.0.8;imex;10;17783;;29952;12293;42148;12090;48360;47;10.316036647;2021-12-07@22:59:19 +v2.0.8;imex;10;17783;;29952;12293;41948;12076;48304;48;10.541208636;2021-12-07@22:59:32 +v2.0.8;imex;10;17783;;29952;12293;42196;12091;48364;48;10.535102474;2021-12-07@22:59:44 +v2.0.8;imex;10;17783;;29952;12293;41976;12086;48344;48;10.536781737;2021-12-07@22:59:57 +v2.0.8;imex;10;17783;;29952;12293;42168;12098;48392;48;10.547518191;2021-12-07@23:00:09 +v2.0.8;imex;10;17783;;29952;12293;41840;12076;48304;48;10.536963398;2021-12-07@23:00:22 +v2.0.8;imex;10;17783;;29952;12293;42264;12092;48368;48;10.539528854;2021-12-07@23:00:34 +v2.0.8;single;10;17783;;29952;12293;14076;5068;20272;47;10.281822482;2021-12-07@23:00:54 +v2.0.8;single;10;17783;;29952;12293;14220;5098;20392;49;10.756095546;2021-12-07@23:01:07 +v2.0.8;single;10;17783;;29952;12293;14360;5123;20492;58;12.731911771;2021-12-07@23:01:22 +v2.0.8;single;10;17783;;29952;12293;14244;5121;20484;49;10.759502433;2021-12-07@23:01:34 +v2.0.8;single;10;17783;;29952;12293;14120;5090;20360;49;10.757031388;2021-12-07@23:01:47 +v2.0.8;single;10;17783;;29952;12293;14384;5101;20404;50;10.986469990;2021-12-07@23:02:00 +v2.0.8;single;10;17783;;29952;12293;14400;5092;20368;49;10.756130568;2021-12-07@23:02:13 +v2.0.8;single;10;17783;;29952;12293;14204;5121;20484;50;10.981860948;2021-12-07@23:02:26 +v2.0.8;mulimex;10;17783;;29952;12293;72284;19560;78240;68;14.956576090;2021-12-07@23:02:49 +v2.0.8;mulimex;10;17783;;29952;12293;72000;19545;78180;73;16.057923166;2021-12-07@23:03:08 +v2.0.8;mulimex;10;17783;;29952;12293;71980;19563;78252;73;16.062892732;2021-12-07@23:03:27 +v2.0.8;mulimex;10;17783;;29952;12293;72200;19545;78180;73;16.065900423;2021-12-07@23:03:45 +v2.0.8;mulimex;10;17783;;29952;12293;72108;19569;78276;73;16.065647037;2021-12-07@23:04:02 +v2.0.8;mulimex;10;17783;;29952;12293;72220;19553;78212;73;16.060401545;2021-12-07@23:04:20 +v2.0.8;mulimex;10;17783;;29952;12293;72092;19564;78256;73;16.065845448;2021-12-07@23:04:39 +v2.0.8;mulimex;10;17783;;29952;12293;71912;19576;78304;73;16.081175264;2021-12-07@23:04:57 +v2.0.8;multi;18;17783;;31744;12312;78796;21239;84956;128;28.210543448;2021-12-07@23:05:37 +v2.0.8;multi;18;17783;;31744;12312;78892;21236;84944;133;29.313785115;2021-12-07@23:06:08 +v2.0.8;multi;18;17783;;31744;12312;78860;21259;85036;132;29.089304016;2021-12-07@23:06:39 +v2.0.8;multi;18;17783;;31744;12312;78896;21234;84936;132;29.110696357;2021-12-07@23:07:10 +v2.0.8;multi;18;17783;;31744;12312;78660;21242;84968;132;29.113043019;2021-12-07@23:07:41 +v2.0.8;multi;18;17783;;31744;12312;78820;21249;84996;132;29.098402324;2021-12-07@23:08:12 +v2.0.8;multi;18;17783;;31744;12312;79132;21254;85016;132;29.090970554;2021-12-07@23:08:43 +v2.0.8;multi;18;17783;;31744;12312;78908;21241;84964;132;29.089269354;2021-12-07@23:09:14 +v2.0.8;imex;18;17783;;31744;12312;56100;15548;62192;77;16.934970885;2021-12-07@23:09:45 +v2.0.8;imex;18;17783;;31744;12312;55912;15563;62252;78;17.183357570;2021-12-07@23:10:04 +v2.0.8;imex;18;17783;;31744;12312;55996;15558;62232;78;17.176566163;2021-12-07@23:10:23 +v2.0.8;imex;18;17783;;31744;12312;56012;15556;62224;79;17.397583590;2021-12-07@23:10:43 +v2.0.8;imex;18;17783;;31744;12312;56136;15556;62224;79;17.389481949;2021-12-07@23:11:02 +v2.0.8;imex;18;17783;;31744;12312;56132;15552;62208;78;17.179822082;2021-12-07@23:11:21 +v2.0.8;imex;18;17783;;31744;12312;56024;15544;62176;79;17.384813456;2021-12-07@23:11:41 +v2.0.8;imex;18;17783;;31744;12312;56252;15565;62260;79;17.396236983;2021-12-07@23:12:00 +v2.0.8;single;18;17783;;31744;12312;15444;5423;21692;82;18.007927575;2021-12-07@23:12:32 +v2.0.8;single;18;17783;;31744;12312;15464;5421;21684;82;18.045997939;2021-12-07@23:12:52 +v2.0.8;single;18;17783;;31744;12312;15400;5422;21688;82;18.033770437;2021-12-07@23:13:12 +v2.0.8;single;18;17783;;31744;12312;15596;5421;21684;81;17.816019585;2021-12-07@23:13:31 +v2.0.8;single;18;17783;;31744;12312;15820;5431;21724;82;18.047372275;2021-12-07@23:13:52 +v2.0.8;single;18;17783;;31744;12312;15744;5429;21716;82;18.047277703;2021-12-07@23:14:12 +v2.0.8;single;18;17783;;31744;12312;15704;5434;21736;81;17.802801021;2021-12-07@23:14:32 +v2.0.8;single;18;17783;;31744;12312;15572;5426;21704;84;18.500995532;2021-12-07@23:14:52 +v2.0.8;mulimex;18;17783;;31744;12312;110216;29085;116340;126;27.863846148;2021-12-07@23:15:34 +v2.0.8;mulimex;18;17783;;31744;12312;110224;29085;116340;132;29.110628931;2021-12-07@23:16:06 +v2.0.8;mulimex;18;17783;;31744;12312;110368;29059;116236;139;30.647025097;2021-12-07@23:16:38 +v2.0.8;mulimex;18;17783;;31744;12312;110052;29075;116300;132;29.103343787;2021-12-07@23:17:09 +v2.0.8;mulimex;18;17783;;31744;12312;110556;29070;116280;132;29.119485992;2021-12-07@23:17:40 +v2.0.8;mulimex;18;17783;;31744;12312;110232;29079;116316;132;29.107660152;2021-12-07@23:18:11 +v2.0.8;mulimex;18;17783;;31744;12312;110112;29070;116280;132;29.122564770;2021-12-07@23:18:43 +v2.0.8;mulimex;18;17783;;31744;12312;110428;29097;116388;133;29.338075528;2021-12-07@23:19:15 +v2.0.8;multi;32;17783;;32894;12393;123888;32500;130000;231;51.025597980;2021-12-07@23:20:26 +v2.0.8;multi;32;17783;;32894;12393;123880;32488;129952;236;52.143516022;2021-12-07@23:21:20 +v2.0.8;multi;32;17783;;32894;12393;124060;32473;129892;236;52.153346593;2021-12-07@23:22:14 +v2.0.8;multi;32;17783;;32894;12393;123876;32480;129920;236;52.130243958;2021-12-07@23:23:08 +v2.0.8;multi;32;17783;;32894;12393;123792;32499;129996;236;52.117796364;2021-12-07@23:24:02 +v2.0.8;multi;32;17783;;32894;12393;123876;32501;130004;236;52.127692385;2021-12-07@23:24:55 +v2.0.8;multi;32;17783;;32894;12393;123756;32485;129940;236;52.132111841;2021-12-07@23:25:49 +v2.0.8;multi;32;17783;;32894;12393;123744;32491;129964;236;52.154881655;2021-12-07@23:26:43 +v2.0.8;imex;32;17783;;32894;12393;78876;21268;85072;133;29.291456317;2021-12-07@23:27:35 +v2.0.8;imex;32;17783;;32894;12393;78948;21281;85124;133;29.312148251;2021-12-07@23:28:06 +v2.0.8;imex;32;17783;;32894;12393;79072;21251;85004;134;29.546412078;2021-12-07@23:28:37 +v2.0.8;imex;32;17783;;32894;12393;78724;21291;85164;133;29.311076537;2021-12-07@23:29:09 +v2.0.8;imex;32;17783;;32894;12393;79204;21285;85140;133;29.322697128;2021-12-07@23:29:40 +v2.0.8;imex;32;17783;;32894;12393;78736;21266;85064;133;29.330312741;2021-12-07@23:30:11 +v2.0.8;imex;32;17783;;32894;12393;78648;21252;85008;134;29.545044913;2021-12-07@23:30:43 +v2.0.8;imex;32;17783;;32894;12393;78892;21269;85076;132;29.095177339;2021-12-07@23:31:14 +v2.0.8;single;32;17783;;32894;12393;16984;5785;23140;139;30.613300128;2021-12-07@23:32:07 +v2.0.8;single;32;17783;;32894;12393;17048;5794;23176;138;30.414009306;2021-12-07@23:32:39 +v2.0.8;single;32;17783;;32894;12393;16940;5800;23200;140;30.867701920;2021-12-07@23:33:12 +v2.0.8;single;32;17783;;32894;12393;16812;5793;23172;138;30.428487508;2021-12-07@23:33:45 +v2.0.8;single;32;17783;;32894;12393;16980;5783;23132;137;30.204243693;2021-12-07@23:34:17 +v2.0.8;single;32;17783;;32894;12393;16856;5789;23156;140;30.853967292;2021-12-07@23:34:50 +v2.0.8;single;32;17783;;32894;12393;17232;5817;23268;140;30.865001918;2021-12-07@23:35:23 +v2.0.8;single;32;17783;;32894;12393;16964;5823;23292;138;30.411766172;2021-12-07@23:35:55 +v2.0.8;mulimex;32;17783;;32894;12393;176232;45555;182220;233;51.453441508;2021-12-07@23:37:08 +v2.0.8;mulimex;32;17783;;32894;12393;176196;45575;182300;237;52.306092287;2021-12-07@23:38:03 +v2.0.8;mulimex;32;17783;;32894;12393;176072;45557;182228;237;52.360627637;2021-12-07@23:38:57 +v2.0.8;mulimex;32;17783;;32894;12393;176280;45563;182252;237;52.329645269;2021-12-07@23:39:52 +v2.0.8;mulimex;32;17783;;32894;12393;176180;45571;182284;237;52.334679469;2021-12-07@23:40:46 +v2.0.8;mulimex;32;17783;;32894;12393;175936;45551;182204;237;52.266928195;2021-12-07@23:41:41 +v2.0.8;mulimex;32;17783;;32894;12393;176080;45553;182212;237;52.361941135;2021-12-07@23:42:35 +v2.0.8;mulimex;32;17783;;32894;12393;176028;45536;182144;237;52.321463733;2021-12-07@23:43:29 +v2.0.8;multi;56;17783;;33578;12411;199572;51429;205716;410;90.709436502;2021-12-07@23:45:30 +v2.0.8;multi;56;17783;;33578;12411;202084;52088;208352;416;92.071376431;2021-12-07@23:47:05 +v2.0.8;multi;56;17783;;33578;12411;201836;52041;208164;427;94.509872876;2021-12-07@23:48:42 +v2.0.8;multi;56;17783;;33578;12411;202932;52236;208944;418;92.201157262;2021-12-07@23:50:16 +v2.0.8;multi;56;17783;;33578;12411;203200;52327;209308;517;114.540884193;2021-12-07@23:52:13 +v2.0.8;multi;56;17783;;33578;12411;201932;51992;207968;417;92.309036585;2021-12-07@23:53:47 +v2.0.8;multi;56;17783;;33578;12411;199492;51395;205580;416;92.126528983;2021-12-07@23:55:22 +v2.0.8;multi;56;17783;;33578;12411;205612;52988;211952;518;114.650827855;2021-12-07@23:57:19 +v2.0.8;imex;56;17783;;33578;12411;116292;30634;122536;227;50.028597511;2021-12-07@23:58:47 +v2.0.8;imex;56;17783;;33578;12411;116492;30623;122492;224;49.454963126;2021-12-07@23:59:39 +v2.0.8;imex;56;17783;;33578;12411;116344;30604;122416;224;49.430264565;2021-12-08@00:00:30 +v2.0.8;imex;56;17783;;33578;12411;116284;30628;122512;232;51.179389336;2021-12-08@00:01:24 +v2.0.8;imex;56;17783;;33578;12411;116292;30635;122540;232;51.184033626;2021-12-08@00:02:17 +v2.0.8;imex;56;17783;;33578;12411;116428;30608;122432;226;49.924571322;2021-12-08@00:03:09 +v2.0.8;imex;56;17783;;33578;12411;116116;30601;122404;225;49.642720352;2021-12-08@00:04:00 +v2.0.8;imex;56;17783;;33578;12411;116044;30611;122444;231;50.976736588;2021-12-08@00:04:54 +v2.0.8;single;56;17783;;33578;12411;18916;6267;25068;238;52.491792706;2021-12-08@00:06:23 +v2.0.8;single;56;17783;;33578;12411;18848;6246;24984;234;51.655042864;2021-12-08@00:07:17 +v2.0.8;single;56;17783;;33578;12411;18964;6281;25124;236;52.079049228;2021-12-08@00:08:11 +v2.0.8;single;56;17783;;33578;12411;18848;6248;24992;233;51.420948875;2021-12-08@00:09:04 +v2.0.8;single;56;17783;;33578;12411;18876;6311;25244;234;51.679661905;2021-12-08@00:09:58 +v2.0.8;single;56;17783;;33578;12411;18568;6235;24940;234;51.654971494;2021-12-08@00:10:51 +v2.0.8;single;56;17783;;33578;12411;19012;6241;24964;244;53.827829759;2021-12-08@00:11:47 +v2.0.8;single;56;17783;;33578;12411;18868;6268;25072;234;51.656667337;2021-12-08@00:12:41 +v2.0.8;mulimex;56;17783;;33578;12411;291268;74389;297556;411;90.828744403;2021-12-08@00:14:49 +v2.0.8;mulimex;56;17783;;33578;12411;288980;73784;295136;416;92.179599742;2021-12-08@00:16:23 +v2.0.8;mulimex;56;17783;;33578;12411;288208;73555;294220;417;92.196572792;2021-12-08@00:17:58 +v2.0.8;mulimex;56;17783;;33578;12411;290044;74056;296224;416;92.284506559;2021-12-08@00:19:33 +v2.0.8;mulimex;56;17783;;33578;12411;291748;74514;298056;417;92.166442512;2021-12-08@00:21:07 +v2.0.8;mulimex;56;17783;;33578;12411;290960;74215;296860;417;92.124233886;2021-12-08@00:22:42 +v2.0.8;mulimex;56;17783;;33578;12411;288884;73789;295156;417;92.200807914;2021-12-08@00:24:16 +v2.0.8;mulimex;56;17783;;33578;12411;290012;74004;296016;418;92.364635929;2021-12-08@00:25:51 +v2.0.8;multi;100;17783;;33951;12499;337100;85821;343284;737;163.537420557;2021-12-08@00:29:28 +v2.0.8;multi;100;17783;;33951;12499;380704;96687;386748;754;166.096816473;2021-12-08@00:32:16 +v2.0.8;multi;100;17783;;33951;12499;374888;95225;380900;751;166.000934873;2021-12-08@00:35:05 +v2.0.8;multi;100;17783;;33951;12499;375784;95511;382044;751;165.967554851;2021-12-08@00:37:57 +v2.0.8;multi;100;17783;;33951;12499;338612;86179;344716;739;163.883216607;2021-12-08@00:40:57 +v2.0.8;multi;100;17783;;33951;12499;375588;95469;381876;454;100.667637280;2021-12-08@00:43:46 +v2.0.8;multi;100;17783;;33951;12499;375468;95448;381792;752;166.204631750;2021-12-08@00:46:35 +v2.0.8;multi;100;17783;;33951;12499;368620;93677;374708;452;100.455355480;2021-12-08@00:49:23 +v2.0.8;imex;100;17783;;33951;12499;184684;47733;190932;417;92.236102418;2021-12-08@00:52:00 +v2.0.8;imex;100;17783;;33951;12499;184704;47737;190948;411;91.056504584;2021-12-08@00:53:34 +v2.0.8;imex;100;17783;;33951;12499;184752;47729;190916;419;92.899060561;2021-12-08@00:55:08 +v2.0.8;imex;100;17783;;33951;12499;184808;47731;190924;417;92.277196693;2021-12-08@00:56:42 +v2.0.8;imex;100;17783;;33951;12499;184832;47742;190968;414;91.628513044;2021-12-08@00:58:16 +v2.0.8;imex;100;17783;;33951;12499;184684;47746;190984;412;91.207421323;2021-12-08@00:59:49 +v2.0.8;imex;100;17783;;33951;12499;184824;47744;190976;406;89.856505062;2021-12-08@01:01:21 +v2.0.8;imex;100;17783;;33951;12499;184500;47701;190804;408;90.295013261;2021-12-08@01:02:53 +v2.0.8;single;100;17783;;33951;12499;21448;6903;27612;432;95.548503721;2021-12-08@01:05:30 +v2.0.8;single;100;17783;;33951;12499;21712;6932;27728;438;96.989551953;2021-12-08@01:07:09 +v2.0.8;single;100;17783;;33951;12499;21444;6930;27720;422;93.446610267;2021-12-08@01:08:44 +v2.0.8;single;100;17783;;33951;12499;21764;6951;27804;420;92.991451896;2021-12-08@01:10:19 +v2.0.8;single;100;17783;;33951;12499;21408;6932;27728;424;93.896027936;2021-12-08@01:11:55 +v2.0.8;single;100;17783;;33951;12499;21408;6879;27516;428;94.736583603;2021-12-08@01:13:32 +v2.0.8;single;100;17783;;33951;12499;21588;6928;27712;422;93.414625593;2021-12-08@01:15:07 +v2.0.8;single;100;17783;;33951;12499;21120;6867;27468;428;94.866818099;2021-12-08@01:16:44 +v2.0.8;mulimex;100;17783;;33951;12499;490120;124106;496424;738;164.269970695;2021-12-08@01:20:29 +v2.0.8;mulimex;100;17783;;33951;12499;549020;138821;555284;455;99.813440827;2021-12-08@01:23:18 +v2.0.8;mulimex;100;17783;;33951;12499;545632;137969;551876;455;100.004036697;2021-12-08@01:26:06 +v2.0.8;mulimex;100;17783;;33951;12499;541404;136885;547540;451;100.153725312;2021-12-08@01:28:55 +v2.0.8;mulimex;100;17783;;33951;12499;540380;136614;546456;452;100.417072126;2021-12-08@01:31:43 +v2.0.8;mulimex;100;17783;;33951;12499;541076;136810;547240;455;100.331728609;2021-12-08@01:34:32 +v2.0.8;mulimex;100;17783;;33951;12499;544456;137644;550576;453;100.029168896;2021-12-08@01:37:20 +v2.0.8;mulimex;100;17783;;33951;12499;540284;136511;546044;449;100.207336557;2021-12-08@01:40:08 +v2.0.8;multi;178;17783;;34156;12582;580792;146746;586984;1370;306.165294100;2021-12-08@01:46:51 +v2.0.8;multi;178;17783;;34156;12582;580356;146654;586616;1551;347.958025333;2021-12-08@01:52:42 +v2.0.8;multi;178;17783;;34156;12582;580288;146613;586452;1556;348.992405464;2021-12-08@01:58:33 +v2.0.8;multi;178;17783;;34156;12582;583052;147269;589076;1360;303.963340554;2021-12-08@02:03:40 +v2.0.8;multi;178;17783;;34156;12582;580092;146595;586380;1358;303.804616588;2021-12-08@02:08:47 +v2.0.8;multi;178;17783;;34156;12582;580392;146626;586504;1360;303.917704343;2021-12-08@02:13:54 +v2.0.8;multi;178;17783;;34156;12582;580660;146639;586556;1360;304.079597270;2021-12-08@02:19:01 +v2.0.8;multi;178;17783;;34156;12582;580336;146615;586460;1355;302.795462304;2021-12-08@02:24:06 +v2.0.8;imex;178;17783;;34156;12582;305088;77832;311328;777;172.466694965;2021-12-08@02:28:57 +v2.0.8;imex;178;17783;;34156;12582;305332;77899;311596;733;162.621100016;2021-12-08@02:31:42 +v2.0.8;imex;178;17783;;34156;12582;305312;77923;311692;757;168.184861654;2021-12-08@02:34:33 +v2.0.8;imex;178;17783;;34156;12582;305420;77906;311624;749;166.092477614;2021-12-08@02:37:21 +v2.0.8;imex;178;17783;;34156;12582;305408;77912;311648;720;159.758593918;2021-12-08@02:40:03 +v2.0.8;imex;178;17783;;34156;12582;305424;77912;311648;759;168.331348384;2021-12-08@02:42:53 +v2.0.8;imex;178;17783;;34156;12582;305576;77921;311684;769;170.463281707;2021-12-08@02:45:46 +v2.0.8;imex;178;17783;;34156;12582;305560;77939;311756;742;164.691179161;2021-12-08@02:48:33 +v2.0.8;single;178;17783;;34156;12582;25572;7941;31764;801;178.038615746;2021-12-08@02:53:15 +v2.0.8;single;178;17783;;34156;12582;25516;7942;31768;746;166.299921978;2021-12-08@02:56:03 +v2.0.8;single;178;17783;;34156;12582;25436;7898;31592;762;169.129662317;2021-12-08@02:58:54 +v2.0.8;single;178;17783;;34156;12582;25392;7848;31392;774;171.813185791;2021-12-08@03:01:48 +v2.0.8;single;178;17783;;34156;12582;25468;7888;31552;763;169.405391931;2021-12-08@03:04:40 +v2.0.8;single;178;17783;;34156;12582;25984;7995;31980;762;169.368580681;2021-12-08@03:07:31 +v2.0.8;single;178;17783;;34156;12582;25324;7862;31448;767;170.154276387;2021-12-08@03:10:23 +v2.0.8;single;178;17783;;34156;12582;26012;7989;31956;771;171.319508879;2021-12-08@03:13:16 +v2.0.8;mulimex;178;17783;;34156;12582;850224;214038;856152;1352;302.580194981;2021-12-08@03:20:04 +v2.0.8;mulimex;178;17783;;34156;12582;849928;213999;855996;1368;305.720676944;2021-12-08@03:25:13 +v2.0.8;mulimex;178;17783;;34156;12582;849720;214004;856016;1359;304.264812969;2021-12-08@03:30:21 +v2.0.8;mulimex;178;17783;;34156;12582;849892;214041;856164;1364;304.962652047;2021-12-08@03:35:30 +v2.0.8;mulimex;178;17783;;34156;12582;850140;214062;856248;1359;303.756259177;2021-12-08@03:40:36 +v2.0.8;mulimex;178;17783;;34156;12582;850068;214111;856444;1356;303.201357056;2021-12-08@03:45:43 +v2.0.8;mulimex;178;17783;;34156;12582;849968;214056;856224;461;101.320614191;2021-12-08@03:50:50 +v2.0.8;mulimex;178;17783;;34156;12582;850000;214075;856300;1360;302.886359514;2021-12-08@03:55:56 +v2.0.8;multi;316;17783;;34574;12710;1017108;255823;1023292;2936;661.001866960;2021-12-08@04:09:53 +v2.0.8;multi;316;17783;;34574;12710;1017140;255807;1023228;2376;533.394451529;2021-12-08@04:18:51 +v2.0.8;multi;316;17783;;34574;12710;1017404;255856;1023424;2381;535.857541385;2021-12-08@04:27:51 +v2.0.8;multi;316;17783;;34574;12710;1017200;255855;1023420;2361;529.716934273;2021-12-08@04:36:45 +v2.0.8;multi;316;17783;;34574;12710;1017236;255840;1023360;2375;533.717903276;2021-12-08@04:45:42 +v2.0.8;multi;316;17783;;34574;12710;1017072;255794;1023176;2385;536.516402253;2021-12-08@04:54:43 +v2.0.8;multi;316;17783;;34574;12710;1017548;255881;1023524;2372;534.219961926;2021-12-08@05:03:41 +v2.0.8;multi;316;17783;;34574;12710;1017056;255853;1023412;2378;535.330217231;2021-12-08@05:12:40 +v2.0.8;imex;316;17783;;34574;12710;524428;132600;530400;1574;353.785847633;2021-12-08@05:22:13 +v2.0.8;imex;316;17783;;34574;12710;522096;132027;528108;1452;324.136401718;2021-12-08@05:27:39 +v2.0.8;imex;316;17783;;34574;12710;521836;131995;527980;1675;376.266049845;2021-12-08@05:33:58 +v2.0.8;imex;316;17783;;34574;12710;521712;131998;527992;1735;388.377112181;2021-12-08@05:40:29 +v2.0.8;imex;316;17783;;34574;12710;522420;132138;528552;1441;321.706880621;2021-12-08@05:45:53 +v2.0.8;imex;316;17783;;34574;12710;521548;131975;527900;1448;323.891415141;2021-12-08@05:51:19 +v2.0.8;imex;316;17783;;34574;12710;522536;132211;528844;1439;321.977521834;2021-12-08@05:56:44 +v2.0.8;imex;316;17783;;34574;12710;521972;132022;528088;1645;368.637133013;2021-12-08@06:02:55 +v2.0.8;single;316;17783;;34574;12710;32900;9744;38976;1648;369.471450326;2021-12-08@06:12:16 +v2.0.8;single;316;17783;;34574;12710;35192;10379;41516;1522;341.706180958;2021-12-08@06:18:00 +v2.0.8;single;316;17783;;34574;12710;31904;9478;37912;1738;389.427384637;2021-12-08@06:24:31 +v2.0.8;single;316;17783;;34574;12710;33784;9933;39732;1523;339.824139183;2021-12-08@06:30:13 +v2.0.8;single;316;17783;;34574;12710;32060;9574;38296;1538;343.246728738;2021-12-08@06:35:58 +v2.0.8;single;316;17783;;34574;12710;32748;9677;38708;1734;387.685683063;2021-12-08@06:42:27 +v2.0.8;single;316;17783;;34574;12710;34916;10277;41108;1759;394.525265765;2021-12-08@06:49:04 +v2.0.8;single;316;17783;;34574;12710;34888;10247;40988;1512;336.965964558;2021-12-08@06:54:43 +v2.0.8;mulimex;316;17783;;34574;12710;1496456;375646;1502584;2606;586.344607203;2021-12-08@07:07:40 +v2.0.8;mulimex;316;17783;;34574;12710;1496384;375639;1502556;1368;305.659665680;2021-12-08@07:16:39 +v2.0.8;mulimex;316;17783;;34574;12710;1496368;375586;1502344;2393;535.508388759;2021-12-08@07:25:40 +v2.0.8;mulimex;316;17783;;34574;12710;1496864;375710;1502840;2364;531.096878086;2021-12-08@07:34:36 +v2.0.8;mulimex;316;17783;;34574;12710;1496264;375640;1502560;2402;537.854836184;2021-12-08@07:43:39 +v2.0.8;mulimex;316;17783;;34574;12710;1496384;375654;1502616;2386;535.118076245;2021-12-08@07:52:39 +v2.0.8;mulimex;316;17783;;34574;12710;1496504;375617;1502468;2396;536.890438660;2021-12-08@08:01:41 +v2.0.8;mulimex;316;17783;;34574;12710;1496752;375656;1502624;2390;535.641925649;2021-12-08@08:10:41 +v2.0.8;multi;10;31623;;54425;24231;92936;24807;99228;117;26.368815866;2021-12-08@08:12:47 +v2.0.8;multi;10;31623;;54425;24231;93212;24810;99240;124;27.874472220;2021-12-08@08:13:18 +v2.0.8;multi;10;31623;;54425;24231;93140;24805;99220;124;27.872004940;2021-12-08@08:13:49 +v2.0.8;multi;10;31623;;54425;24231;92888;24813;99252;124;27.874111579;2021-12-08@08:14:21 +v2.0.8;multi;10;31623;;54425;24231;93128;24817;99268;124;27.884302590;2021-12-08@08:14:50 +v2.0.8;multi;10;31623;;54425;24231;93116;24796;99184;124;27.880850887;2021-12-08@08:15:20 +v2.0.8;multi;10;31623;;54425;24231;93092;24815;99260;124;27.897365927;2021-12-08@08:15:50 +v2.0.8;multi;10;31623;;54425;24231;92968;24810;99240;124;27.894408342;2021-12-08@08:16:20 +v2.0.8;imex;10;31623;;54425;24231;74980;20308;81232;78;17.411649311;2021-12-08@08:16:47 +v2.0.8;imex;10;31623;;54425;24231;75116;20318;81272;79;17.675904803;2021-12-08@08:17:06 +v2.0.8;imex;10;31623;;54425;24231;75088;20335;81340;80;17.889252699;2021-12-08@08:17:26 +v2.0.8;imex;10;31623;;54425;24231;74984;20340;81360;80;17.906519849;2021-12-08@08:17:46 +v2.0.8;imex;10;31623;;54425;24231;75232;20319;81276;81;18.117705616;2021-12-08@08:18:06 +v2.0.8;imex;10;31623;;54425;24231;75168;20343;81372;81;18.113592541;2021-12-08@08:18:26 +v2.0.8;imex;10;31623;;54425;24231;75096;20326;81304;80;17.896420267;2021-12-08@08:18:46 +v2.0.8;imex;10;31623;;54425;24231;74964;20316;81264;80;17.891189684;2021-12-08@08:19:05 +v2.0.8;single;10;31623;;54425;24231;23080;7273;29092;81;18.109329035;2021-12-08@08:19:34 +v2.0.8;single;10;31623;;54425;24231;22916;7291;29164;85;19.012704115;2021-12-08@08:19:55 +v2.0.8;single;10;31623;;54425;24231;23080;7303;29212;83;18.569219327;2021-12-08@08:20:16 +v2.0.8;single;10;31623;;54425;24231;22892;7305;29220;84;18.806752030;2021-12-08@08:20:37 +v2.0.8;single;10;31623;;54425;24231;22984;7316;29264;84;18.790478733;2021-12-08@08:20:57 +v2.0.8;single;10;31623;;54425;24231;22956;7287;29148;84;18.773703064;2021-12-08@08:21:18 +v2.0.8;single;10;31623;;54425;24231;23016;7298;29192;83;18.562210551;2021-12-08@08:21:38 +v2.0.8;single;10;31623;;54425;24231;22972;7321;29284;84;18.787685160;2021-12-08@08:21:59 +v2.0.8;mulimex;10;31623;;54425;24231;130520;34147;136588;119;26.772858515;2021-12-08@08:22:35 +v2.0.8;mulimex;10;31623;;54425;24231;130304;34167;136668;124;27.888189765;2021-12-08@08:23:05 +v2.0.8;mulimex;10;31623;;54425;24231;130364;34166;136664;124;27.899722939;2021-12-08@08:23:35 +v2.0.8;mulimex;10;31623;;54425;24231;130504;34162;136648;124;27.890003623;2021-12-08@08:24:05 +v2.0.8;mulimex;10;31623;;54425;24231;130420;34140;136560;124;27.884966947;2021-12-08@08:24:34 +v2.0.8;mulimex;10;31623;;54425;24231;130460;34144;136576;124;27.913979295;2021-12-08@08:25:04 +v2.0.8;mulimex;10;31623;;54425;24231;130512;34131;136524;124;27.880353152;2021-12-08@08:25:34 +v2.0.8;mulimex;10;31623;;54425;24231;130412;34144;136576;124;27.910615175;2021-12-08@08:26:03 +v2.0.8;multi;18;31623;;57202;24252;140280;36577;146308;221;49.758809558;2021-12-08@08:27:06 +v2.0.8;multi;18;31623;;57202;24252;140092;36550;146200;227;51.115461302;2021-12-08@08:27:59 +v2.0.8;multi;18;31623;;57202;24252;139988;36551;146204;227;51.180680346;2021-12-08@08:28:52 +v2.0.8;multi;18;31623;;57202;24252;140024;36539;146156;227;51.120056180;2021-12-08@08:29:45 +v2.0.8;multi;18;31623;;57202;24252;140192;36536;146144;227;51.170873079;2021-12-08@08:30:38 +v2.0.8;multi;18;31623;;57202;24252;140168;36560;146240;227;51.129130081;2021-12-08@08:31:31 +v2.0.8;multi;18;31623;;57202;24252;139892;36541;146164;227;51.134665995;2021-12-08@08:32:24 +v2.0.8;multi;18;31623;;57202;24252;140144;36546;146184;227;51.143209579;2021-12-08@08:33:17 +v2.0.8;imex;18;31623;;57202;24252;101252;26842;107368;137;30.709332501;2021-12-08@08:34:02 +v2.0.8;imex;18;31623;;57202;24252;101180;26880;107520;136;30.519154328;2021-12-08@08:34:34 +v2.0.8;imex;18;31623;;57202;24252;101280;26867;107468;139;31.184962472;2021-12-08@08:35:07 +v2.0.8;imex;18;31623;;57202;24252;101304;26871;107484;137;30.719885872;2021-12-08@08:35:40 +v2.0.8;imex;18;31623;;57202;24252;101452;26898;107592;138;30.967063958;2021-12-08@08:36:13 +v2.0.8;imex;18;31623;;57202;24252;101128;26872;107488;135;30.354842019;2021-12-08@08:36:45 +v2.0.8;imex;18;31623;;57202;24252;101180;26883;107532;139;31.176447833;2021-12-08@08:37:19 +v2.0.8;imex;18;31623;;57202;24252;101452;26865;107460;138;30.961640338;2021-12-08@08:37:53 +v2.0.8;single;18;31623;;57202;24252;24944;7793;31172;142;31.858615482;2021-12-08@08:38:40 +v2.0.8;single;18;31623;;57202;24252;24756;7760;31040;141;31.651175859;2021-12-08@08:39:14 +v2.0.8;single;18;31623;;57202;24252;24872;7778;31112;140;31.411432215;2021-12-08@08:39:47 +v2.0.8;single;18;31623;;57202;24252;24924;7775;31100;141;31.683337224;2021-12-08@08:40:21 +v2.0.8;single;18;31623;;57202;24252;24840;7774;31096;144;32.310743085;2021-12-08@08:40:55 +v2.0.8;single;18;31623;;57202;24252;24672;7774;31096;145;32.517663232;2021-12-08@08:41:29 +v2.0.8;single;18;31623;;57202;24252;24928;7769;31076;143;32.093836004;2021-12-08@08:42:03 +v2.0.8;single;18;31623;;57202;24252;25088;7802;31208;143;32.075427826;2021-12-08@08:42:37 +v2.0.8;mulimex;18;31623;;57202;24252;200848;51737;206948;223;50.241548010;2021-12-08@08:43:41 +v2.0.8;mulimex;18;31623;;57202;24252;200536;51708;206832;228;51.381461937;2021-12-08@08:44:34 +v2.0.8;mulimex;18;31623;;57202;24252;200512;51700;206800;228;51.383348517;2021-12-08@08:45:28 +v2.0.8;mulimex;18;31623;;57202;24252;200948;51709;206836;228;51.373186780;2021-12-08@08:46:21 +v2.0.8;mulimex;18;31623;;57202;24252;200620;51731;206924;228;51.385071771;2021-12-08@08:47:15 +v2.0.8;mulimex;18;31623;;57202;24252;200988;51716;206864;228;51.366925804;2021-12-08@08:48:08 +v2.0.8;mulimex;18;31623;;57202;24252;200900;51729;206916;282;63.554246095;2021-12-08@08:49:14 +v2.0.8;mulimex;18;31623;;57202;24252;200568;51726;206904;228;51.413892532;2021-12-08@08:50:07 +v2.0.8;multi;32;31623;;58800;24186;219516;56418;225672;401;90.740418873;2021-12-08@08:51:57 +v2.0.8;multi;32;31623;;58800;24186;219696;56439;225756;407;92.058291025;2021-12-08@08:53:32 +v2.0.8;multi;32;31623;;58800;24186;219404;56407;225628;407;92.057910792;2021-12-08@08:55:06 +v2.0.8;multi;32;31623;;58800;24186;219400;56454;225816;408;92.147867635;2021-12-08@08:56:40 +v2.0.8;multi;32;31623;;58800;24186;219516;56422;225688;407;92.059075489;2021-12-08@08:58:14 +v2.0.8;multi;32;31623;;58800;24186;219464;56448;225792;408;92.235867675;2021-12-08@08:59:49 +v2.0.8;multi;32;31623;;58800;24186;219820;56422;225688;407;92.062971760;2021-12-08@09:01:23 +v2.0.8;multi;32;31623;;58800;24186;219684;56458;225832;408;92.163197655;2021-12-08@09:02:57 +v2.0.8;imex;32;31623;;58800;24186;143972;37508;150032;239;53.774679488;2021-12-08@09:04:14 +v2.0.8;imex;32;31623;;58800;24186;143696;37491;149964;237;53.290428657;2021-12-08@09:05:09 +v2.0.8;imex;32;31623;;58800;24186;143900;37493;149972;236;53.082550593;2021-12-08@09:06:04 +v2.0.8;imex;32;31623;;58800;24186;143824;37539;150156;240;53.956441175;2021-12-08@09:07:00 +v2.0.8;imex;32;31623;;58800;24186;143620;37503;150012;236;53.063892848;2021-12-08@09:07:55 +v2.0.8;imex;32;31623;;58800;24186;143804;37497;149988;237;53.310853415;2021-12-08@09:08:50 +v2.0.8;imex;32;31623;;58800;24186;143736;37487;149948;239;53.768769316;2021-12-08@09:09:46 +v2.0.8;imex;32;31623;;58800;24186;143488;37487;149948;236;53.037211619;2021-12-08@09:10:41 +v2.0.8;single;32;31623;;58800;24186;26920;8188;32752;248;55.736633070;2021-12-08@09:11:59 +v2.0.8;single;32;31623;;58800;24186;26496;8218;32872;246;55.345376662;2021-12-08@09:12:56 +v2.0.8;single;32;31623;;58800;24186;26452;8203;32812;245;55.150783123;2021-12-08@09:13:53 +v2.0.8;single;32;31623;;58800;24186;26528;8201;32804;247;55.586255114;2021-12-08@09:14:51 +v2.0.8;single;32;31623;;58800;24186;26828;8224;32896;246;55.392899527;2021-12-08@09:15:48 +v2.0.8;single;32;31623;;58800;24186;26568;8213;32852;246;55.352709793;2021-12-08@09:16:46 +v2.0.8;single;32;31623;;58800;24186;26512;8212;32848;245;55.098677291;2021-12-08@09:17:42 +v2.0.8;single;32;31623;;58800;24186;26876;8250;33000;251;56.466797543;2021-12-08@09:18:41 +v2.0.8;mulimex;32;31623;;58800;24186;320124;81618;326472;402;90.828775110;2021-12-08@09:20:35 +v2.0.8;mulimex;32;31623;;58800;24186;320184;81579;326316;409;92.431039536;2021-12-08@09:22:10 +v2.0.8;mulimex;32;31623;;58800;24186;320260;81559;326236;414;93.547639538;2021-12-08@09:23:45 +v2.0.8;mulimex;32;31623;;58800;24186;320064;81571;326284;409;92.398306196;2021-12-08@09:25:20 +v2.0.8;mulimex;32;31623;;58800;24186;320328;81576;326304;409;92.358358164;2021-12-08@09:26:55 +v2.0.8;mulimex;32;31623;;58800;24186;319840;81548;326192;409;92.453979741;2021-12-08@09:28:29 +v2.0.8;mulimex;32;31623;;58800;24186;319872;81540;326160;409;92.411970574;2021-12-08@09:30:04 +v2.0.8;mulimex;32;31623;;58800;24186;319924;81569;326276;409;92.389010192;2021-12-08@09:31:39 +v2.0.8;multi;56;31623;;59758;24285;354688;90225;360900;715;161.882937029;2021-12-08@09:34:52 +v2.0.8;multi;56;31623;;59758;24285;354564;90209;360836;717;162.852905444;2021-12-08@09:37:37 +v2.0.8;multi;56;31623;;59758;24285;354656;90227;360908;719;162.936763656;2021-12-08@09:40:22 +v2.0.8;multi;56;31623;;59758;24285;354896;90267;361068;718;162.651194717;2021-12-08@09:43:06 +v2.0.8;multi;56;31623;;59758;24285;354808;90262;361048;717;162.643113485;2021-12-08@09:45:51 +v2.0.8;multi;56;31623;;59758;24285;354728;90229;360916;717;162.501436861;2021-12-08@09:48:35 +v2.0.8;multi;56;31623;;59758;24285;354612;90231;360924;715;162.355517930;2021-12-08@09:51:19 +v2.0.8;multi;56;31623;;59758;24285;354792;90236;360944;719;163.046735284;2021-12-08@09:54:04 +v2.0.8;imex;56;31623;;59758;24285;215568;55455;221820;414;93.411149256;2021-12-08@09:56:14 +v2.0.8;imex;56;31623;;59758;24285;215940;55529;222116;407;91.881835857;2021-12-08@09:57:48 +v2.0.8;imex;56;31623;;59758;24285;215916;55494;221976;408;92.077494877;2021-12-08@09:59:23 +v2.0.8;imex;56;31623;;59758;24285;215576;55475;221900;409;92.359334313;2021-12-08@10:00:57 +v2.0.8;imex;56;31623;;59758;24285;215524;55487;221948;409;92.385897340;2021-12-08@10:02:32 +v2.0.8;imex;56;31623;;59758;24285;215732;55497;221988;441;99.625898648;2021-12-08@10:04:14 +v2.0.8;imex;56;31623;;59758;24285;215648;55511;222044;406;91.681708219;2021-12-08@10:05:48 +v2.0.8;imex;56;31623;;59758;24285;215984;55486;221944;408;92.104395465;2021-12-08@10:07:23 +v2.0.8;single;56;31623;;59758;24285;28992;8831;35324;433;97.751392193;2021-12-08@10:09:37 +v2.0.8;single;56;31623;;59758;24285;29156;8814;35256;427;96.402729970;2021-12-08@10:11:16 +v2.0.8;single;56;31623;;59758;24285;29028;8788;35152;427;96.397286775;2021-12-08@10:12:54 +v2.0.8;single;56;31623;;59758;24285;29072;8852;35408;425;95.973269697;2021-12-08@10:14:33 +v2.0.8;single;56;31623;;59758;24285;28788;8754;35016;420;94.841135407;2021-12-08@10:16:10 +v2.0.8;single;56;31623;;59758;24285;28968;8787;35148;429;96.885858180;2021-12-08@10:17:49 +v2.0.8;single;56;31623;;59758;24285;29084;8815;35260;430;97.200190073;2021-12-08@10:19:28 +v2.0.8;single;56;31623;;59758;24285;29232;8816;35264;422;95.318085951;2021-12-08@10:21:05 +v2.0.8;mulimex;56;31623;;59758;24285;524208;132570;530280;716;161.948015906;2021-12-08@10:24:24 +v2.0.8;mulimex;56;31623;;59758;24285;524228;132589;530356;718;163.061667192;2021-12-08@10:27:10 +v2.0.8;mulimex;56;31623;;59758;24285;524176;132580;530320;720;162.980213869;2021-12-08@10:29:55 +v2.0.8;mulimex;56;31623;;59758;24285;524280;132610;530440;720;163.224117724;2021-12-08@10:32:42 +v2.0.8;mulimex;56;31623;;59758;24285;525116;132875;531500;720;163.238807927;2021-12-08@10:35:28 +v2.0.8;mulimex;56;31623;;59758;24285;524284;132589;530356;719;163.292320790;2021-12-08@10:38:14 +v2.0.8;mulimex;56;31623;;59758;24285;524116;132572;530288;720;163.067451590;2021-12-08@10:41:00 +v2.0.8;mulimex;56;31623;;59758;24285;524388;132639;530556;720;163.206057859;2021-12-08@10:43:47 +v2.0.8;multi;100;31623;;60390;24233;601344;151833;607332;1513;344.883511822;2021-12-08@10:50:26 +v2.0.8;multi;100;31623;;60390;24233;624400;157645;630580;1165;268.780763274;2021-12-08@10:56:03 +v2.0.8;multi;100;31623;;60390;24233;623584;157430;629720;1377;313.470390920;2021-12-08@11:01:21 +v2.0.8;multi;100;31623;;60390;24233;621912;156976;627904;1245;288.208275459;2021-12-08@11:07:17 +v2.0.8;multi;100;31623;;60390;24233;617444;155895;623580;1230;283.293392755;2021-12-08@11:13:09 +v2.0.8;multi;100;31623;;60390;24233;612280;154578;618312;1496;341.697738777;2021-12-08@11:18:54 +v2.0.8;multi;100;31623;;60390;24233;616216;155535;622140;1219;282.210077287;2021-12-08@11:24:44 +v2.0.8;multi;100;31623;;60390;24233;610368;154137;616548;1346;307.148932535;2021-12-08@11:29:55 +v2.0.8;imex;100;31623;;60390;24233;344400;87650;350600;756;171.078737269;2021-12-08@11:33:53 +v2.0.8;imex;100;31623;;60390;24233;344428;87661;350644;734;166.334170376;2021-12-08@11:36:42 +v2.0.8;imex;100;31623;;60390;24233;344884;87749;350996;734;166.429060944;2021-12-08@11:39:30 +v2.0.8;imex;100;31623;;60390;24233;343984;87595;350380;729;165.233216802;2021-12-08@11:42:18 +v2.0.8;imex;100;31623;;60390;24233;344632;87697;350788;733;166.079004371;2021-12-08@11:45:06 +v2.0.8;imex;100;31623;;60390;24233;344520;87649;350596;728;165.027959638;2021-12-08@11:47:53 +v2.0.8;imex;100;31623;;60390;24233;344444;87679;350716;734;166.313666528;2021-12-08@11:50:42 +v2.0.8;imex;100;31623;;60390;24233;344544;87714;350856;742;168.042208415;2021-12-08@11:53:33 +v2.0.8;single;100;31623;;60390;24233;32512;9612;38448;775;175.458575666;2021-12-08@11:57:31 +v2.0.8;single;100;31623;;60390;24233;31908;9567;38268;761;172.604947657;2021-12-08@12:00:25 +v2.0.8;single;100;31623;;60390;24233;32140;9563;38252;752;170.498530623;2021-12-08@12:03:17 +v2.0.8;single;100;31623;;60390;24233;31796;9534;38136;756;171.451913360;2021-12-08@12:06:10 +v2.0.8;single;100;31623;;60390;24233;32340;9575;38300;761;172.493975304;2021-12-08@12:09:04 +v2.0.8;single;100;31623;;60390;24233;32116;9537;38148;760;172.280034669;2021-12-08@12:11:58 +v2.0.8;single;100;31623;;60390;24233;32516;9591;38364;763;172.952830973;2021-12-08@12:14:53 +v2.0.8;single;100;31623;;60390;24233;32552;9629;38516;788;178.451672749;2021-12-08@12:17:53 +v2.0.8;mulimex;100;31623;;60390;24233;916628;230687;922748;1425;325.732562101;2021-12-08@12:24:19 +v2.0.8;mulimex;100;31623;;60390;24233;932556;234656;938624;1161;267.619864333;2021-12-08@12:29:55 +v2.0.8;mulimex;100;31623;;60390;24233;926924;233216;932864;1461;333.811069823;2021-12-08@12:35:32 +v2.0.8;mulimex;100;31623;;60390;24233;929632;233976;935904;1100;253.630645455;2021-12-08@12:40:54 +v2.0.8;mulimex;100;31623;;60390;24233;928928;233787;935148;1260;290.833195027;2021-12-08@12:46:53 +v2.0.8;mulimex;100;31623;;60390;24233;913212;229879;919516;1492;341.626259673;2021-12-08@12:52:38 +v2.0.8;mulimex;100;31623;;60390;24233;917728;230936;923744;1384;315.460346912;2021-12-08@12:57:56 +v2.0.8;mulimex;100;31623;;60390;24233;911564;229425;917700;1529;349.187945591;2021-12-08@13:03:49 +v2.0.8;multi;178;31623;;60806;24427;1036860;260700;1042800;2811;646.972937321;2021-12-08@13:16:10 +v2.0.8;multi;178;31623;;60806;24427;1115996;280495;1121980;2035;468.615300090;2021-12-08@13:30:04 +v2.0.8;multi;178;31623;;60806;24427;1057076;265842;1063368;2272;525.077433498;2021-12-08@13:41:04 +v2.0.8;multi;178;31623;;60806;24427;1054104;265004;1060016;1940;445.469762335;2021-12-08@13:50:44 +v2.0.8;multi;178;31623;;60806;24427;1086820;273284;1093136;2527;576.678661107;2021-12-08@14:00:24 +v2.0.8;multi;178;31623;;60806;24427;1059064;266319;1065276;2347;539.411727796;2021-12-08@14:11:38 +v2.0.8;multi;178;31623;;60806;24427;1081752;271998;1087992;2553;581.829601419;2021-12-08@14:21:23 +v2.0.8;multi;178;31623;;60806;24427;1036788;260791;1043164;2642;609.570901367;2021-12-08@14:32:43 +v2.0.8;imex;178;31623;;60806;24427;575180;145340;581360;1481;336.651069271;2021-12-08@14:40:17 +v2.0.8;imex;178;31623;;60806;24427;575636;145445;581780;1338;304.413725084;2021-12-08@14:45:24 +v2.0.8;imex;178;31623;;60806;24427;575072;145286;581144;1542;354.070235998;2021-12-08@14:51:21 +v2.0.8;imex;178;31623;;60806;24427;575116;145294;581176;1355;308.168328292;2021-12-08@14:56:31 +v2.0.8;imex;178;31623;;60806;24427;575432;145462;581848;1326;301.578053363;2021-12-08@15:01:35 +v2.0.8;imex;178;31623;;60806;24427;575928;145487;581948;1500;341.408838533;2021-12-08@15:07:19 +v2.0.8;imex;178;31623;;60806;24427;574992;145311;581244;1420;322.526401057;2021-12-08@15:12:44 +v2.0.8;imex;178;31623;;60806;24427;575280;145320;581280;1414;321.301434860;2021-12-08@15:18:08 +v2.0.8;single;178;31623;;60806;24427;38084;11030;44120;1515;345.289206830;2021-12-08@15:25:40 +v2.0.8;single;178;31623;;60806;24427;37424;10899;43596;1477;336.220475529;2021-12-08@15:31:18 +v2.0.8;single;178;31623;;60806;24427;37612;10900;43600;1598;366.610944496;2021-12-08@15:37:28 +v2.0.8;single;178;31623;;60806;24427;37036;10827;43308;1398;318.190836344;2021-12-08@15:42:48 +v2.0.8;single;178;31623;;60806;24427;37712;10921;43684;1415;321.954921245;2021-12-08@15:48:12 +v2.0.8;single;178;31623;;60806;24427;37636;10960;43840;1400;318.999584610;2021-12-08@15:53:33 +v2.0.8;single;178;31623;;60806;24427;37396;10804;43216;1373;312.399063378;2021-12-08@15:58:47 +v2.0.8;single;178;31623;;60806;24427;37112;10810;43240;1430;325.478678293;2021-12-08@16:04:15 +v2.0.8;mulimex;178;31623;;60806;24427;1653752;414960;1659840;2441;555.587873145;2021-12-08@16:15:18 +v2.0.8;mulimex;178;31623;;60806;24427;1593268;399833;1599332;2624;604.267722703;2021-12-08@16:25:27 +v2.0.8;mulimex;178;31623;;60806;24427;1587784;398538;1594152;2413;554.220212078;2021-12-08@16:34:46 +v2.0.8;mulimex;178;31623;;60806;24427;1557124;390857;1563428;2570;590.778817550;2021-12-08@16:44:42 +v2.0.8;mulimex;178;31623;;60806;24427;1597168;400850;1603400;2602;598.768923543;2021-12-08@16:54:46 +v2.0.8;mulimex;178;31623;;60806;24427;1599004;401244;1604976;1649;379.945126131;2021-12-08@17:04:46 +v2.0.8;mulimex;178;31623;;60806;24427;1584080;397580;1590320;2595;594.474870469;2021-12-08@17:14:45 +v2.0.8;mulimex;178;31623;;60806;24427;1591412;399453;1597812;2635;602.206602542;2021-12-08@17:24:53 +v2.0.8;multi;316;31623;;61364;24592;1817408;455885;1823540;4079;940.025651339;2021-12-08@17:43:31 +v2.0.8;multi;316;31623;;61364;24592;1817380;455894;1823576;4088;940.532223102;2021-12-08@17:59:17 +v2.0.8;multi;316;31623;;61364;24592;1817440;455922;1823688;4108;944.262149929;2021-12-08@18:15:07 +v2.0.8;multi;316;31623;;61364;24592;1817604;455939;1823756;4096;940.907790885;2021-12-08@18:30:54 +v2.0.8;multi;316;31623;;61364;24592;1817448;455894;1823576;4060;938.543177206;2021-12-08@18:46:39 +v2.0.8;multi;316;31623;;61364;24592;1817976;456045;1824180;4107;945.413934584;2021-12-08@19:02:31 +v2.0.8;multi;316;31623;;61364;24592;1817576;455937;1823748;4079;940.798451355;2021-12-08@19:18:17 +v2.0.8;multi;316;31623;;61364;24592;1847160;463294;1853176;3885;890.428946122;2021-12-08@19:44:11 +v2.0.8;imex;316;31623;;61364;24592;984560;247723;990892;2788;637.817606902;2021-12-08@19:58:29 +v2.0.8;imex;316;31623;;61364;24592;983444;247418;989672;2572;588.050905900;2021-12-08@20:08:21 +v2.0.8;imex;316;31623;;61364;24592;984100;247575;990300;2601;592.756215016;2021-12-08@20:18:16 +v2.0.8;imex;316;31623;;61364;24592;983544;247402;989608;2595;592.259221360;2021-12-08@20:28:11 +v2.0.8;imex;316;31623;;61364;24592;983388;247426;989704;2538;582.954021881;2021-12-08@20:37:56 +v2.0.8;imex;316;31623;;61364;24592;983320;247400;989600;2879;660.381515865;2021-12-08@20:48:59 +v2.0.8;imex;316;31623;;61364;24592;984616;247705;990820;2628;600.677377561;2021-12-08@20:59:02 +v2.0.8;imex;316;31623;;61364;24592;984460;247649;990596;2436;556.008854656;2021-12-08@21:08:21 +v2.0.8;single;316;31623;;61364;24592;43508;12472;49888;2884;657.314033765;2021-12-08@21:22:35 +v2.0.8;single;316;31623;;61364;24592;44604;12646;50584;2721;621.343520425;2021-12-08@21:32:58 +v2.0.8;single;316;31623;;61364;24592;44628;12665;50660;2978;684.008287181;2021-12-08@21:44:24 +v2.0.8;single;316;31623;;61364;24592;44908;12694;50776;2821;646.099908630;2021-12-08@21:55:13 +v2.0.8;single;316;31623;;61364;24592;44468;12599;50396;2640;601.153770946;2021-12-08@22:05:16 +v2.0.8;single;316;31623;;61364;24592;44252;12564;50256;2851;650.704807431;2021-12-08@23:00:27 +v2.0.8;single;316;31623;;61364;24592;43760;12441;49764;2778;633.012615648;2021-12-08@23:11:03 +v2.0.8;single;316;31623;;61364;24592;43780;12507;50028;2715;622.376185441;2021-12-08@23:21:30 +v2.0.8;mulimex;316;31623;;61364;24592;2738700;686198;2744792;4099;943.279600625;2021-12-08@23:40:30 +v2.0.8;mulimex;316;31623;;61364;24592;2738684;686236;2744944;4114;946.200502053;2021-12-08@23:56:25 +v2.0.8;mulimex;316;31623;;61364;24592;2740232;686610;2746440;4118;947.239619301;2021-12-09@00:12:22 +v2.0.8;mulimex;316;31623;;61364;24592;2740516;686654;2746616;4092;941.296457258;2021-12-09@00:28:13 +v2.0.8;mulimex;316;31623;;61364;24592;2739040;686269;2745076;4110;946.010538983;2021-12-09@00:44:08 +v2.0.8;mulimex;316;31623;;61364;24592;2738760;686210;2744840;4095;947.546542409;2021-12-09@01:00:05 +v2.0.8;mulimex;316;31623;;61364;24592;2739056;686287;2745148;4107;945.049324731;2021-12-09@01:16:00 +v2.0.8;mulimex;316;31623;;61364;24592;2739096;686292;2745168;3286;759.732133419;2021-12-09@01:31:57 +v2.0.8;multi;10;56234;;89496;27046;142696;37222;148888;187;43.076460176;2021-12-09@01:34:17 +v2.0.8;multi;10;56234;;89496;27046;142692;37217;148868;194;44.610942153;2021-12-09@01:35:05 +v2.0.8;multi;10;56234;;89496;27046;142788;37191;148764;193;44.413673811;2021-12-09@01:35:53 +v2.0.8;multi;10;56234;;89496;27046;142752;37212;148848;193;44.373585357;2021-12-09@01:36:41 +v2.0.8;multi;10;56234;;89496;27046;142580;37212;148848;193;44.385711186;2021-12-09@01:37:29 +v2.0.8;multi;10;56234;;89496;27046;142560;37221;148884;193;44.464580964;2021-12-09@01:38:17 +v2.0.8;multi;10;56234;;89496;27046;142652;37204;148816;193;44.421442437;2021-12-09@01:39:05 +v2.0.8;multi;10;56234;;89496;27046;142916;37200;148800;193;44.419207089;2021-12-09@01:39:53 +v2.0.8;imex;10;56234;;89496;27046;105644;27935;111740;100;22.747002538;2021-12-09@01:40:30 +v2.0.8;imex;10;56234;;89496;27046;105388;27918;111672;105;23.876284289;2021-12-09@01:40:57 +v2.0.8;imex;10;56234;;89496;27046;105468;27907;111628;102;23.225126913;2021-12-09@01:41:24 +v2.0.8;imex;10;56234;;89496;27046;105416;27891;111564;123;27.996070618;2021-12-09@01:41:56 +v2.0.8;imex;10;56234;;89496;27046;105440;27907;111628;106;24.117040667;2021-12-09@01:42:24 +v2.0.8;imex;10;56234;;89496;27046;105388;27937;111748;106;24.162428072;2021-12-09@01:42:51 +v2.0.8;imex;10;56234;;89496;27046;105340;27892;111568;101;22.983686177;2021-12-09@01:43:18 +v2.0.8;imex;10;56234;;89496;27046;105516;27945;111780;104;23.691121022;2021-12-09@01:43:46 +v2.0.8;single;10;56234;;89496;27046;34692;10169;40676;102;23.223283493;2021-12-09@01:44:23 +v2.0.8;single;10;56234;;89496;27046;34636;10185;40740;109;24.834617029;2021-12-09@01:44:51 +v2.0.8;single;10;56234;;89496;27046;34708;10197;40788;108;24.619898505;2021-12-09@01:45:19 +v2.0.8;single;10;56234;;89496;27046;34840;10184;40736;109;24.840966122;2021-12-09@01:45:48 +v2.0.8;single;10;56234;;89496;27046;34500;10189;40756;110;25.044417012;2021-12-09@01:46:17 +v2.0.8;single;10;56234;;89496;27046;34560;10245;40980;103;23.456869516;2021-12-09@01:46:44 +v2.0.8;single;10;56234;;89496;27046;34680;10208;40832;105;23.928176334;2021-12-09@01:47:11 +v2.0.8;single;10;56234;;89496;27046;34760;10202;40808;106;24.150051670;2021-12-09@01:47:39 +v2.0.8;mulimex;10;56234;;89496;27046;189712;49024;196096;188;43.298753541;2021-12-09@01:48:36 +v2.0.8;mulimex;10;56234;;89496;27046;189896;48995;195980;194;44.652787154;2021-12-09@01:49:24 +v2.0.8;mulimex;10;56234;;89496;27046;189904;49007;196028;194;44.645481839;2021-12-09@01:50:13 +v2.0.8;mulimex;10;56234;;89496;27046;189740;49000;196000;195;44.824372111;2021-12-09@01:51:01 +v2.0.8;mulimex;10;56234;;89496;27046;189940;49022;196088;194;44.643335669;2021-12-09@01:51:50 +v2.0.8;mulimex;10;56234;;89496;27046;190076;49002;196008;194;44.636194098;2021-12-09@01:52:38 +v2.0.8;mulimex;10;56234;;89496;27046;189788;49011;196044;195;44.867962880;2021-12-09@01:53:27 +v2.0.8;mulimex;10;56234;;89496;27046;189940;49000;196000;194;44.655484407;2021-12-09@01:54:15 +v2.0.8;multi;18;56234;;97395;27048;220856;56793;227172;365;84.242500491;2021-12-09@01:55:56 +v2.0.8;multi;18;56234;;97395;27048;220944;56797;227188;370;85.299469540;2021-12-09@01:57:25 +v2.0.8;multi;18;56234;;97395;27048;221188;56814;227256;371;85.548376086;2021-12-09@01:58:55 +v2.0.8;multi;18;56234;;97395;27048;221100;56785;227140;370;85.294809720;2021-12-09@02:00:24 +v2.0.8;multi;18;56234;;97395;27048;221248;56814;227256;370;85.313751432;2021-12-09@02:01:53 +v2.0.8;multi;18;56234;;97395;27048;220880;56800;227200;370;85.418382552;2021-12-09@02:03:23 +v2.0.8;multi;18;56234;;97395;27048;220896;56802;227208;371;85.577290839;2021-12-09@02:04:52 +v2.0.8;multi;18;56234;;97395;27048;220920;56825;227300;371;85.487229091;2021-12-09@02:06:22 +v2.0.8;imex;18;56234;;97395;27048;138196;36107;144428;174;39.863860580;2021-12-09@02:07:19 +v2.0.8;imex;18;56234;;97395;27048;138404;36103;144412;177;40.446869642;2021-12-09@02:08:03 +v2.0.8;imex;18;56234;;97395;27048;138384;36080;144320;170;38.827586332;2021-12-09@02:08:46 +v2.0.8;imex;18;56234;;97395;27048;138184;36077;144308;173;39.501912238;2021-12-09@02:09:29 +v2.0.8;imex;18;56234;;97395;27048;138212;36113;144452;167;38.114783504;2021-12-09@02:10:11 +v2.0.8;imex;18;56234;;97395;27048;138320;36096;144384;172;39.300459014;2021-12-09@02:10:54 +v2.0.8;imex;18;56234;;97395;27048;138060;36080;144320;172;39.272846939;2021-12-09@02:11:37 +v2.0.8;imex;18;56234;;97395;27048;138360;36110;144440;172;39.298479669;2021-12-09@02:12:20 +v2.0.8;single;18;56234;;97395;27048;38092;11076;44304;177;40.405539648;2021-12-09@02:13:17 +v2.0.8;single;18;56234;;97395;27048;38104;11088;44352;179;40.849114995;2021-12-09@02:14:02 +v2.0.8;single;18;56234;;97395;27048;38236;11085;44340;179;40.876602451;2021-12-09@02:14:46 +v2.0.8;single;18;56234;;97395;27048;38228;11092;44368;171;39.087449223;2021-12-09@02:15:29 +v2.0.8;single;18;56234;;97395;27048;38348;11091;44364;177;40.396962129;2021-12-09@02:16:13 +v2.0.8;single;18;56234;;97395;27048;38184;11086;44344;219;49.987324884;2021-12-09@02:17:07 +v2.0.8;single;18;56234;;97395;27048;38188;11098;44392;177;40.386130004;2021-12-09@02:17:51 +v2.0.8;single;18;56234;;97395;27048;38240;11095;44380;179;40.872568173;2021-12-09@02:18:35 +v2.0.8;mulimex;18;56234;;97395;27048;294980;75268;301072;368;84.825866604;2021-12-09@02:20:17 +v2.0.8;mulimex;18;56234;;97395;27048;294844;75261;301044;378;87.147814315;2021-12-09@02:21:48 +v2.0.8;mulimex;18;56234;;97395;27048;295148;75264;301056;372;85.749551801;2021-12-09@02:23:18 +v2.0.8;mulimex;18;56234;;97395;27048;294764;75250;301000;373;86.102422714;2021-12-09@02:24:48 +v2.0.8;mulimex;18;56234;;97395;27048;294928;75268;301072;372;85.750423733;2021-12-09@02:26:18 +v2.0.8;mulimex;18;56234;;97395;27048;294912;75279;301116;376;86.669508184;2021-12-09@02:27:48 +v2.0.8;mulimex;18;56234;;97395;27048;294756;75265;301060;372;85.807379445;2021-12-09@02:29:18 +v2.0.8;mulimex;18;56234;;97395;27048;294792;75240;300960;372;85.856400355;2021-12-09@02:30:48 +v2.0.8;multi;32;56234;;102105;27070;352820;89735;358940;679;156.724959930;2021-12-09@02:33:47 +v2.0.8;multi;32;56234;;102105;27070;352900;89768;359072;685;158.022130913;2021-12-09@02:36:29 +v2.0.8;multi;32;56234;;102105;27070;352724;89723;358892;682;157.578659868;2021-12-09@02:39:11 +v2.0.8;multi;32;56234;;102105;27070;352744;89750;359000;684;157.865235335;2021-12-09@02:41:53 +v2.0.8;multi;32;56234;;102105;27070;352952;89751;359004;683;157.586056618;2021-12-09@02:44:35 +v2.0.8;multi;32;56234;;102105;27070;352916;89739;358956;684;157.860741247;2021-12-09@02:47:17 +v2.0.8;multi;32;56234;;102105;27070;352768;89712;358848;684;157.830419550;2021-12-09@02:49:59 +v2.0.8;multi;32;56234;;102105;27070;353076;89768;359072;685;157.965420749;2021-12-09@02:52:41 +v2.0.8;imex;32;56234;;102105;27070;188048;48630;194520;301;68.873587314;2021-12-09@02:54:14 +v2.0.8;imex;32;56234;;102105;27070;188232;48612;194448;296;67.775865835;2021-12-09@02:55:25 +v2.0.8;imex;32;56234;;102105;27070;188232;48635;194540;296;67.713965671;2021-12-09@02:56:37 +v2.0.8;imex;32;56234;;102105;27070;188308;48595;194380;294;67.300473996;2021-12-09@02:57:48 +v2.0.8;imex;32;56234;;102105;27070;188196;48604;194416;297;67.966663623;2021-12-09@02:59:00 +v2.0.8;imex;32;56234;;102105;27070;188212;48593;194372;299;68.506095881;2021-12-09@03:00:12 +v2.0.8;imex;32;56234;;102105;27070;188260;48609;194436;296;67.765148938;2021-12-09@03:01:23 +v2.0.8;imex;32;56234;;102105;27070;188300;48624;194496;295;67.689075853;2021-12-09@03:02:35 +v2.0.8;single;32;56234;;102105;27070;41008;11845;47380;314;71.812278825;2021-12-09@03:04:09 +v2.0.8;single;32;56234;;102105;27070;41468;11856;47424;307;70.206675400;2021-12-09@03:05:23 +v2.0.8;single;32;56234;;102105;27070;41492;11852;47408;308;70.420815006;2021-12-09@03:06:37 +v2.0.8;single;32;56234;;102105;27070;41152;11852;47408;307;70.215297931;2021-12-09@03:07:51 +v2.0.8;single;32;56234;;102105;27070;41376;11871;47484;303;69.291348679;2021-12-09@03:09:04 +v2.0.8;single;32;56234;;102105;27070;41360;11840;47360;305;69.714203976;2021-12-09@03:10:18 +v2.0.8;single;32;56234;;102105;27070;41244;11849;47396;311;71.085526216;2021-12-09@03:11:32 +v2.0.8;single;32;56234;;102105;27070;41204;11869;47476;318;72.743029581;2021-12-09@03:12:49 +v2.0.8;mulimex;32;56234;;102105;27070;471504;119440;477760;682;157.544319694;2021-12-09@03:15:49 +v2.0.8;mulimex;32;56234;;102105;27070;471784;119493;477972;687;158.368983008;2021-12-09@03:18:32 +v2.0.8;mulimex;32;56234;;102105;27070;471812;119469;477876;687;158.386644390;2021-12-09@03:21:14 +v2.0.8;mulimex;32;56234;;102105;27070;471448;119446;477784;686;158.194186036;2021-12-09@03:23:57 +v2.0.8;mulimex;32;56234;;102105;27070;471520;119452;477808;686;158.401780461;2021-12-09@03:26:40 +v2.0.8;mulimex;32;56234;;102105;27070;471372;119407;477628;685;158.096997037;2021-12-09@03:29:22 +v2.0.8;mulimex;32;56234;;102105;27070;471640;119440;477760;687;158.530682276;2021-12-09@03:32:05 +v2.0.8;mulimex;32;56234;;102105;27070;471584;119483;477932;687;158.541124463;2021-12-09@03:34:48 +v2.0.8;multi;56;56234;;104619;27074;573900;145002;580008;1215;280.398077334;2021-12-09@03:40:00 +v2.0.8;multi;56;56234;;104619;27074;574072;145022;580088;1221;281.968479587;2021-12-09@03:44:47 +v2.0.8;multi;56;56234;;104619;27074;574052;145064;580256;1219;281.554420970;2021-12-09@03:49:33 +v2.0.8;multi;56;56234;;104619;27074;573896;145016;580064;1222;282.031923643;2021-12-09@03:54:20 +v2.0.8;multi;56;56234;;104619;27074;573760;145016;580064;1224;281.715512892;2021-12-09@03:59:06 +v2.0.8;multi;56;56234;;104619;27074;573972;145030;580120;1221;281.836097055;2021-12-09@04:03:53 +v2.0.8;multi;56;56234;;104619;27074;573812;144986;579944;1223;281.716253380;2021-12-09@04:08:39 +v2.0.8;multi;56;56234;;104619;27074;573896;144994;579976;1224;281.764882679;2021-12-09@04:13:26 +v2.0.8;imex;56;56234;;104619;27074;269332;68886;275544;535;122.765102225;2021-12-09@04:16:06 +v2.0.8;imex;56;56234;;104619;27074;269336;68875;275500;517;118.646660092;2021-12-09@04:18:08 +v2.0.8;imex;56;56234;;104619;27074;269236;68805;275220;512;117.515803180;2021-12-09@04:20:10 +v2.0.8;imex;56;56234;;104619;27074;269028;68830;275320;528;121.109350145;2021-12-09@04:22:15 +v2.0.8;imex;56;56234;;104619;27074;269552;68896;275584;514;117.963522291;2021-12-09@04:24:16 +v2.0.8;imex;56;56234;;104619;27074;268996;68817;275268;512;117.517070977;2021-12-09@04:26:18 +v2.0.8;imex;56;56234;;104619;27074;269356;68844;275376;511;117.291517129;2021-12-09@04:28:19 +v2.0.8;imex;56;56234;;104619;27074;269040;68836;275344;506;116.166008720;2021-12-09@04:30:19 +v2.0.8;single;56;56234;;104619;27074;44348;12626;50504;547;125.502251256;2021-12-09@04:33:01 +v2.0.8;single;56;56234;;104619;27074;44324;12620;50480;531;121.833247022;2021-12-09@04:35:07 +v2.0.8;single;56;56234;;104619;27074;44236;12633;50532;533;122.328728488;2021-12-09@04:37:13 +v2.0.8;single;56;56234;;104619;27074;44172;12622;50488;531;121.834201032;2021-12-09@04:39:18 +v2.0.8;single;56;56234;;104619;27074;44068;12602;50408;533;122.345329114;2021-12-09@04:41:24 +v2.0.8;single;56;56234;;104619;27074;44580;12638;50552;539;123.687200017;2021-12-09@04:43:31 +v2.0.8;single;56;56234;;104619;27074;44320;12611;50444;536;123.013284308;2021-12-09@04:45:38 +v2.0.8;single;56;56234;;104619;27074;44476;12642;50568;537;123.200488144;2021-12-09@04:47:45 +v2.0.8;mulimex;56;56234;;104619;27074;769032;193772;775088;1220;281.545428608;2021-12-09@04:53:03 +v2.0.8;mulimex;56;56234;;104619;27074;768960;193794;775176;1224;282.635176476;2021-12-09@04:57:51 +v2.0.8;mulimex;56;56234;;104619;27074;768900;193760;775040;1223;282.262223337;2021-12-09@05:02:38 +v2.0.8;mulimex;56;56234;;104619;27074;768984;193788;775152;1224;282.584243331;2021-12-09@05:07:26 +v2.0.8;mulimex;56;56234;;104619;27074;769200;193764;775056;1224;282.551595087;2021-12-09@05:12:14 +v2.0.8;mulimex;56;56234;;104619;27074;769172;193781;775124;1223;282.503140269;2021-12-09@05:17:01 +v2.0.8;mulimex;56;56234;;104619;27074;769276;193781;775124;1223;282.592751664;2021-12-09@05:21:49 +v2.0.8;mulimex;56;56234;;104619;27074;769024;193813;775252;1225;282.793893968;2021-12-09@05:26:37 +v2.0.8;multi;100;56234;;106396;27105;977892;246003;984012;2267;523.926696862;2021-12-09@05:36:14 +v2.0.8;multi;100;56234;;106396;27105;978152;246036;984144;2246;519.895864941;2021-12-09@05:45:00 +v2.0.8;multi;100;56234;;106396;27105;978028;245997;983988;2253;520.939267948;2021-12-09@05:53:46 +v2.0.8;multi;100;56234;;106396;27105;977692;245961;983844;2884;667.416313194;2021-12-09@06:05:00 +v2.0.8;multi;100;56234;;106396;27105;978300;246075;984300;2235;517.771739337;2021-12-09@06:13:43 +v2.0.8;multi;100;56234;;106396;27105;978076;246075;984300;2506;584.021092673;2021-12-09@06:23:33 +v2.0.8;multi;100;56234;;106396;27105;977724;246026;984104;2244;520.745145256;2021-12-09@06:32:19 +v2.0.8;multi;100;56234;;106396;27105;977984;246053;984212;2254;522.625676561;2021-12-09@06:41:08 +v2.0.8;imex;100;56234;;106396;27105;415120;105351;421404;954;219.437474200;2021-12-09@06:45:52 +v2.0.8;imex;100;56234;;106396;27105;414796;105291;421164;911;209.829620794;2021-12-09@06:49:26 +v2.0.8;imex;100;56234;;106396;27105;414812;105273;421092;904;208.213314639;2021-12-09@06:52:58 +v2.0.8;imex;100;56234;;106396;27105;414948;105270;421080;914;210.435671631;2021-12-09@06:56:33 +v2.0.8;imex;100;56234;;106396;27105;414520;105205;420820;907;208.992456957;2021-12-09@07:00:06 +v2.0.8;imex;100;56234;;106396;27105;415104;105332;421328;914;210.359145899;2021-12-09@07:03:40 +v2.0.8;imex;100;56234;;106396;27105;414936;105244;420976;916;210.990511293;2021-12-09@07:07:15 +v2.0.8;imex;100;56234;;106396;27105;415236;105322;421288;924;212.864787628;2021-12-09@07:10:52 +v2.0.8;single;100;56234;;106396;27105;48900;13689;54756;988;227.390902194;2021-12-09@07:15:39 +v2.0.8;single;100;56234;;106396;27105;48656;13705;54820;947;218.178643096;2021-12-09@07:19:21 +v2.0.8;single;100;56234;;106396;27105;48380;13698;54792;953;219.684324595;2021-12-09@07:23:04 +v2.0.8;single;100;56234;;106396;27105;48636;13725;54900;964;221.989491097;2021-12-09@07:26:50 +v2.0.8;single;100;56234;;106396;27105;48760;13733;54932;947;218.187075110;2021-12-09@07:30:32 +v2.0.8;single;100;56234;;106396;27105;48632;13708;54832;942;216.990504838;2021-12-09@07:34:13 +v2.0.8;single;100;56234;;106396;27105;48592;13712;54848;950;219.023368140;2021-12-09@07:37:55 +v2.0.8;single;100;56234;;106396;27105;48516;13691;54764;950;218.824297595;2021-12-09@07:41:38 +v2.0.8;mulimex;100;56234;;106396;27105;1312932;329766;1319064;2241;519.681333288;2021-12-09@07:51:17 +v2.0.8;mulimex;100;56234;;106396;27105;1312936;329759;1319036;2261;524.523725959;2021-12-09@08:00:08 +v2.0.8;mulimex;100;56234;;106396;27105;1316704;330724;1322896;2271;526.067791525;2021-12-09@08:09:00 +v2.0.8;mulimex;100;56234;;106396;27105;1313008;329725;1318900;2287;529.322695333;2021-12-09@08:17:56 +v2.0.8;mulimex;100;56234;;106396;27105;1312720;329748;1318992;2261;523.545375331;2021-12-09@08:26:46 +v2.0.8;mulimex;100;56234;;106396;27105;1312852;329770;1319080;2253;522.250997383;2021-12-09@08:35:34 +v2.0.8;mulimex;100;56234;;106396;27105;1312464;329681;1318724;2317;536.325125812;2021-12-09@08:44:37 +v2.0.8;mulimex;100;56234;;106396;27105;1313072;329739;1318956;1224;281.675648409;2021-12-09@08:53:27 +v2.0.8;multi;178;56234;;107469;27173;1699680;426462;1705848;4006;933.640679377;2021-12-09@09:10:35 +v2.0.8;multi;178;56234;;107469;27173;1691980;424509;1698036;4202;975.480960960;2021-12-09@09:30:38 +v2.0.8;multi;178;56234;;107469;27173;1692056;424544;1698176;4393;1022.885671784;2021-12-09@09:47:48 +v2.0.8;multi;178;56234;;107469;27173;1692112;424567;1698268;4216;980.464629212;2021-12-09@10:04:17 +v2.0.8;multi;178;56234;;107469;27173;1726688;433203;1732812;4271;990.155722730;2021-12-09@10:20:55 +v2.0.8;multi;178;56234;;107469;27173;1704360;427584;1710336;4171;967.545148543;2021-12-09@10:37:10 +v2.0.8;multi;178;56234;;107469;27173;1692696;424629;1698516;4215;979.130552574;2021-12-09@10:53:37 +v2.0.8;multi;178;56234;;107469;27173;1722412;432171;1728684;4198;972.045807733;2021-12-09@11:09:57 +v2.0.8;imex;178;56234;;107469;27173;670004;169039;676156;1776;410.361222060;2021-12-09@11:18:44 +v2.0.8;imex;178;56234;;107469;27173;671636;169440;677760;1800;415.415158479;2021-12-09@11:25:44 +v2.0.8;imex;178;56234;;107469;27173;669736;169005;676020;1682;388.352625214;2021-12-09@11:32:17 +v2.0.8;imex;178;56234;;107469;27173;669652;168949;675796;1636;378.256284325;2021-12-09@11:38:39 +v2.0.8;imex;178;56234;;107469;27173;670184;169133;676532;1638;378.576819179;2021-12-09@11:45:02 +v2.0.8;imex;178;56234;;107469;27173;670484;169175;676700;1685;389.622863147;2021-12-09@11:51:36 +v2.0.8;imex;178;56234;;107469;27173;670116;169067;676268;1645;380.161810258;2021-12-09@11:58:00 +v2.0.8;imex;178;56234;;107469;27173;670572;169206;676824;1670;386.420856463;2021-12-09@12:04:31 +v2.0.8;single;178;56234;;107469;27173;54052;14997;59988;1852;426.861549282;2021-12-09@12:13:23 +v2.0.8;single;178;56234;;107469;27173;53752;15012;60048;1713;395.364411427;2021-12-09@12:20:02 +v2.0.8;single;178;56234;;107469;27173;53760;14989;59956;1733;400.594933515;2021-12-09@12:26:46 +v2.0.8;single;178;56234;;107469;27173;53684;14977;59908;1694;391.627934647;2021-12-09@12:33:22 +v2.0.8;single;178;56234;;107469;27173;53544;14904;59616;1709;394.959460176;2021-12-09@12:40:00 +v2.0.8;single;178;56234;;107469;27173;53800;15024;60096;1722;397.759941738;2021-12-09@12:46:42 +v2.0.8;single;178;56234;;107469;27173;53860;15046;60184;1692;391.594794102;2021-12-09@12:53:17 +v2.0.8;single;178;56234;;107469;27173;53880;14950;59800;1692;390.680971967;2021-12-09@12:59:51 +v2.0.8;mulimex;178;56234;;107469;27173;2338648;586215;2344860;4023;936.017445147;2021-12-09@13:17:13 +v2.0.8;mulimex;178;56234;;107469;27173;2337864;585988;2343952;4041;940.990618366;2021-12-09@13:33:02 +v2.0.8;mulimex;178;56234;;107469;27173;2277424;570870;2283480;4039;936.371529079;2021-12-09@13:48:47 +v2.0.8;mulimex;178;56234;;107469;27173;2290092;574028;2296112;3700;865.724553463;2021-12-09@14:07:01 +v2.0.8;mulimex;178;56234;;107469;27173;2280928;571721;2286884;4165;975.368066359;2021-12-09@14:23:25 +v2.0.8;mulimex;178;56234;;107469;27173;2275232;570339;2281356;4037;942.583291360;2021-12-09@14:39:16 +v2.0.8;mulimex;178;56234;;107469;27173;2275076;570335;2281340;4059;948.040280054;2021-12-09@14:55:13 +v2.0.8;mulimex;178;56234;;107469;27173;2317016;580747;2322988;4008;934.728786925;2021-12-09@15:10:57 +v2.0.8;multi;316;56234;;108134;27288;2982428;747178;2988712;7069;1645.763423739;2021-12-09@15:41:16 +v2.0.8;multi;316;56234;;108134;27288;3021724;756982;3027928;7376;1723.483024098;2021-12-09@16:10:11 +v2.0.8;multi;316;56234;;108134;27288;2975452;745339;2981356;7056;1651.955468093;2021-12-09@16:37:54 +v2.0.8;multi;316;56234;;108134;27288;2954964;740284;2961136;7524;1755.771361504;2021-12-09@17:15:26 +v2.0.8;multi;316;56234;;108134;27288;3039412;761385;3045540;6925;1620.905531083;2021-12-09@17:52:38 +v2.0.8;multi;316;56234;;108134;27288;2954708;740192;2960768;7259;1695.924555217;2021-12-09@18:37:24 +v2.0.8;multi;316;56234;;108134;27288;2954412;740119;2960476;7262;1695.996853746;2021-12-09@19:05:52 +v2.0.8;multi;316;56234;;108134;27288;3008228;753575;3014300;6266;1465.627322403;2021-12-09@19:34:09 +v2.0.8;imex;316;56234;;108134;27288;1120464;281684;1126736;3427;796.432706981;2021-12-09@19:51:03 +v2.0.8;imex;316;56234;;108134;27288;1121164;281804;1127216;3342;772.079363080;2021-12-09@20:04:00 +v2.0.8;imex;316;56234;;108134;27288;1120360;281661;1126644;3204;742.032109509;2021-12-09@20:16:27 +v2.0.8;imex;316;56234;;108134;27288;1121228;281838;1127352;3501;810.484132004;2021-12-09@20:30:02 +v2.0.8;imex;316;56234;;108134;27288;1120212;281561;1126244;3423;790.724751814;2021-12-09@20:43:18 +v2.0.8;imex;316;56234;;108134;27288;1121304;281817;1127268;3132;724.962736472;2021-12-09@20:55:28 +v2.0.8;imex;316;56234;;108134;27288;1120072;281579;1126316;3276;756.808201315;2021-12-09@21:08:10 +v2.0.8;imex;316;56234;;108134;27288;1121312;281887;1127548;3423;791.096044598;2021-12-09@21:21:26 +v2.0.8;single;316;56234;;108134;27288;63192;17328;69312;3526;820.375490660;2021-12-09@21:38:21 +v2.0.8;single;316;56234;;108134;27288;62120;17071;68284;3767;872.360939351;2021-12-09@21:52:58 +v2.0.8;single;316;56234;;108134;27288;64692;17647;70588;3222;746.195466983;2021-12-09@22:05:28 +v2.0.8;single;316;56234;;108134;27288;64096;17519;70076;3208;743.262772134;2021-12-09@22:17:55 +v2.0.8;single;316;56234;;108134;27288;63044;17309;69236;3366;778.216515068;2021-12-09@22:30:57 +v2.0.8;single;316;56234;;108134;27288;63388;17308;69232;3357;777.614062224;2021-12-09@22:43:59 +v2.0.8;single;316;56234;;108134;27288;63032;17284;69136;3472;803.113882265;2021-12-09@22:57:26 +v2.0.8;single;316;56234;;108134;27288;63600;17364;69456;3264;756.433835243;2021-12-09@23:10:06 +v2.0.8;mulimex;316;56234;;108134;27288;4015060;1005320;4021280;6419;1498.673693895;2021-12-09@23:45:35 +v2.0.8;mulimex;316;56234;;108134;27288;4023336;1007386;4029544;7218;1693.209656559;2021-12-10@00:14:02 +v2.0.8;mulimex;316;56234;;108134;27288;4145892;1038037;4152148;7027;1647.495303583;2021-12-10@00:52:48 +v2.0.8;mulimex;316;56234;;108134;27288;4067076;1018274;4073096;6475;1515.253848630;2021-12-10@01:52:01 +v2.0.8;mulimex;316;56234;;108134;27288;4013040;1004824;4019296;7229;1691.493952292;2021-12-10@02:20:26 +v2.0.8;mulimex;316;56234;;108134;27288;4077188;1020810;4083240;7200;1691.526918780;2021-12-10@02:48:50 +v2.0.8;mulimex;316;56234;;108134;27288;3979960;996552;3986208;7216;1689.235991590;2021-12-10@03:17:14 +v2.0.8;mulimex;316;56234;;108134;27288;4064952;1017712;4070848;7188;1684.878327657;2021-12-10@03:45:32 +v2.0.8;multi;10;100000;;126751;52385;207180;53289;213156;256;61.422379061;2021-12-10@08:03:21 +v2.0.8;multi;10;100000;;126751;52385;207144;53317;213268;261;62.598339789;2021-12-10@08:04:27 +v2.0.8;multi;10;100000;;126751;52385;207032;53330;213320;263;63.008616201;2021-12-10@08:05:34 +v2.0.8;multi;10;100000;;126751;52385;206892;53313;213252;261;62.584602089;2021-12-10@08:06:40 +v2.0.8;multi;10;100000;;126751;52385;207060;53318;213272;262;62.757940658;2021-12-10@08:07:46 +v2.0.8;multi;10;100000;;126751;52385;207268;53372;213488;261;62.566563125;2021-12-10@08:08:53 +v2.0.8;multi;10;100000;;126751;52385;206964;53300;213200;261;62.595160233;2021-12-10@08:09:59 +v2.0.8;multi;10;100000;;126751;52385;207200;53363;213452;262;62.802329236;2021-12-10@08:11:06 +v2.0.8;imex;10;100000;;126751;52385;163032;42279;169116;163;38.670607040;2021-12-10@08:11:59 +v2.0.8;imex;10;100000;;126751;52385;162836;42296;169184;168;39.786845618;2021-12-10@08:12:43 +v2.0.8;imex;10;100000;;126751;52385;163364;42331;169324;166;39.358378706;2021-12-10@08:13:26 +v2.0.8;imex;10;100000;;126751;52385;163460;42382;169528;161;38.226190489;2021-12-10@08:14:08 +v2.0.8;imex;10;100000;;126751;52385;162920;42306;169224;166;39.361520596;2021-12-10@08:14:51 +v2.0.8;imex;10;100000;;126751;52385;163020;42303;169212;163;38.668722105;2021-12-10@08:15:34 +v2.0.8;imex;10;100000;;126751;52385;163000;42309;169236;163;38.630222251;2021-12-10@08:16:16 +v2.0.8;imex;10;100000;;126751;52385;163076;42274;169096;164;38.886226544;2021-12-10@08:16:59 +v2.0.8;single;10;100000;;126751;52385;47720;13496;53984;168;39.846843594;2021-12-10@08:17:54 +v2.0.8;single;10;100000;;126751;52385;48836;13737;54948;175;41.502038251;2021-12-10@08:18:39 +v2.0.8;single;10;100000;;126751;52385;48248;13613;54452;170;40.374474078;2021-12-10@08:19:23 +v2.0.8;single;10;100000;;126751;52385;48360;13602;54408;169;40.093415604;2021-12-10@08:20:07 +v2.0.8;single;10;100000;;126751;52385;48164;13594;54376;172;40.808377893;2021-12-10@08:20:51 +v2.0.8;single;10;100000;;126751;52385;48628;13649;54596;171;40.625741570;2021-12-10@08:21:36 +v2.0.8;single;10;100000;;126751;52385;48124;13611;54444;172;40.809039751;2021-12-10@08:22:20 +v2.0.8;single;10;100000;;126751;52385;48320;13623;54492;172;40.768748838;2021-12-10@08:23:04 +v2.0.8;mulimex;10;100000;;126751;52385;289288;73837;295348;257;61.657009484;2021-12-10@08:24:21 +v2.0.8;mulimex;10;100000;;126751;52385;289728;73964;295856;263;63.020400014;2021-12-10@08:25:28 +v2.0.8;mulimex;10;100000;;126751;52385;289948;74059;296236;262;62.793233488;2021-12-10@08:26:35 +v2.0.8;mulimex;10;100000;;126751;52385;289432;73931;295724;262;62.793702903;2021-12-10@08:27:42 +v2.0.8;mulimex;10;100000;;126751;52385;289612;73934;295736;262;62.771316175;2021-12-10@08:28:49 +v2.0.8;mulimex;10;100000;;126751;52385;289408;73867;295468;262;62.766908632;2021-12-10@08:29:55 +v2.0.8;mulimex;10;100000;;126751;52385;289184;73836;295344;262;62.795311186;2021-12-10@08:31:02 +v2.0.8;mulimex;10;100000;;126751;52385;289220;73862;295448;262;62.817272413;2021-12-10@08:32:09 +v2.0.8;multi;18;100000;;150528;52561;348400;88666;354664;540;130.489324272;2021-12-10@08:34:38 +v2.0.8;multi;18;100000;;150528;52561;348608;88660;354640;544;131.511207725;2021-12-10@08:36:54 +v2.0.8;multi;18;100000;;150528;52561;348680;88699;354796;545;131.566437230;2021-12-10@08:39:09 +v2.0.8;multi;18;100000;;150528;52561;348608;88663;354652;543;131.309395814;2021-12-10@08:41:25 +v2.0.8;multi;18;100000;;150528;52561;348844;88705;354820;543;131.294875974;2021-12-10@08:43:40 +v2.0.8;multi;18;100000;;150528;52561;348508;88681;354724;545;131.490671970;2021-12-10@08:45:55 +v2.0.8;multi;18;100000;;150528;52561;348424;88666;354664;545;131.502302428;2021-12-10@08:48:11 +v2.0.8;multi;18;100000;;150528;52561;348624;88687;354748;544;131.281956301;2021-12-10@08:50:26 +v2.0.8;imex;18;100000;;150528;52561;233052;59800;239200;287;68.101859285;2021-12-10@08:51:53 +v2.0.8;imex;18;100000;;150528;52561;232932;59756;239024;286;67.936193661;2021-12-10@08:53:05 +v2.0.8;imex;18;100000;;150528;52561;232692;59766;239064;286;67.894212419;2021-12-10@08:54:17 +v2.0.8;imex;18;100000;;150528;52561;232976;59748;238992;280;66.430536606;2021-12-10@08:55:27 +v2.0.8;imex;18;100000;;150528;52561;232712;59779;239116;292;69.312523916;2021-12-10@08:56:40 +v2.0.8;imex;18;100000;;150528;52561;233000;59786;239144;278;65.995881891;2021-12-10@08:57:50 +v2.0.8;imex;18;100000;;150528;52561;232784;59760;239040;282;66.905117325;2021-12-10@08:59:01 +v2.0.8;imex;18;100000;;150528;52561;232896;59776;239104;284;67.408694626;2021-12-10@09:00:12 +v2.0.8;single;18;100000;;150528;52561;57280;15824;63296;303;71.852114708;2021-12-10@09:01:42 +v2.0.8;single;18;100000;;150528;52561;56848;15818;63272;290;68.923846922;2021-12-10@09:02:55 +v2.0.8;single;18;100000;;150528;52561;57160;15822;63288;297;70.530116768;2021-12-10@09:04:09 +v2.0.8;single;18;100000;;150528;52561;57368;15846;63384;299;71.041915062;2021-12-10@09:05:24 +v2.0.8;single;18;100000;;150528;52561;57188;15830;63320;294;69.797519612;2021-12-10@09:06:37 +v2.0.8;single;18;100000;;150528;52561;57468;15876;63504;291;69.110833238;2021-12-10@09:07:50 +v2.0.8;single;18;100000;;150528;52561;57140;15847;63388;289;68.639002772;2021-12-10@09:09:02 +v2.0.8;single;18;100000;;150528;52561;57388;15846;63384;290;68.913569080;2021-12-10@09:10:15 +v2.0.8;mulimex;18;100000;;150528;52561;484416;122686;490744;540;130.553837694;2021-12-10@09:12:44 +v2.0.8;mulimex;18;100000;;150528;52561;484712;122676;490704;546;131.948042431;2021-12-10@09:15:00 +v2.0.8;mulimex;18;100000;;150528;52561;484424;122663;490652;546;132.018527845;2021-12-10@09:17:17 +v2.0.8;mulimex;18;100000;;150528;52561;484424;122686;490744;547;132.011198043;2021-12-10@09:19:33 +v2.0.8;mulimex;18;100000;;150528;52561;484524;122668;490672;547;132.034137333;2021-12-10@09:21:50 +v2.0.8;mulimex;18;100000;;150528;52561;484512;122680;490720;546;132.034952063;2021-12-10@09:24:06 +v2.0.8;mulimex;18;100000;;150528;52561;484608;122668;490672;545;131.694100866;2021-12-10@09:26:22 +v2.0.8;mulimex;18;100000;;150528;52561;484616;122655;490620;546;131.893197937;2021-12-10@09:28:38 +v2.0.8;multi;32;100000;;166748;52697;585500;147903;591612;1051;255.532629359;2021-12-10@09:33:18 +v2.0.8;multi;32;100000;;166748;52697;585464;147907;591628;1058;257.244346435;2021-12-10@09:37:40 +v2.0.8;multi;32;100000;;166748;52697;585556;147929;591716;1059;256.961497659;2021-12-10@09:42:01 +v2.0.8;multi;32;100000;;166748;52697;585472;147906;591624;1058;257.112199514;2021-12-10@09:46:23 +v2.0.8;multi;32;100000;;166748;52697;585676;147898;591592;1058;257.040912680;2021-12-10@09:50:45 +v2.0.8;multi;32;100000;;166748;52697;585416;147907;591628;1061;257.313266247;2021-12-10@09:55:07 +v2.0.8;multi;32;100000;;166748;52697;585332;147915;591660;1058;256.777926722;2021-12-10@09:59:28 +v2.0.8;multi;32;100000;;166748;52697;585756;147908;591632;1057;256.952081928;2021-12-10@10:03:50 +v2.0.8;imex;32;100000;;166748;52697;335240;85338;341352;506;120.751991642;2021-12-10@10:06:15 +v2.0.8;imex;32;100000;;166748;52697;334992;85336;341344;490;117.016551039;2021-12-10@10:08:16 +v2.0.8;imex;32;100000;;166748;52697;334944;85283;341132;486;115.992463342;2021-12-10@10:10:16 +v2.0.8;imex;32;100000;;166748;52697;335032;85300;341200;489;116.814684184;2021-12-10@10:12:17 +v2.0.8;imex;32;100000;;166748;52697;335028;85344;341376;510;121.783557333;2021-12-10@10:14:23 +v2.0.8;imex;32;100000;;166748;52697;334816;85284;341136;501;119.658040761;2021-12-10@10:16:26 +v2.0.8;imex;32;100000;;166748;52697;335148;85322;341288;497;118.590825695;2021-12-10@10:18:29 +v2.0.8;imex;32;100000;;166748;52697;334820;85317;341268;494;117.897587677;2021-12-10@10:20:31 +v2.0.8;single;32;100000;;166748;52697;64448;17675;70700;516;123.079794369;2021-12-10@10:22:58 +v2.0.8;single;32;100000;;166748;52697;64328;17686;70744;515;122.978158421;2021-12-10@10:25:05 +v2.0.8;single;32;100000;;166748;52697;64728;17699;70796;511;122.010874127;2021-12-10@10:27:11 +v2.0.8;single;32;100000;;166748;52697;64688;17656;70624;518;123.722731594;2021-12-10@10:29:18 +v2.0.8;single;32;100000;;166748;52697;64608;17704;70816;516;123.277272432;2021-12-10@10:31:25 +v2.0.8;single;32;100000;;166748;52697;64692;17693;70772;538;128.386620522;2021-12-10@10:33:37 +v2.0.8;single;32;100000;;166748;52697;64284;17685;70740;523;125.010457036;2021-12-10@10:35:46 +v2.0.8;single;32;100000;;166748;52697;64428;17712;70848;521;124.345744319;2021-12-10@10:37:54 +v2.0.8;mulimex;32;100000;;166748;52697;810824;204281;817124;1055;256.240882417;2021-12-10@10:42:34 +v2.0.8;mulimex;32;100000;;166748;52697;811256;204335;817340;1064;258.026130780;2021-12-10@10:46:57 +v2.0.8;mulimex;32;100000;;166748;52697;810872;204263;817052;1081;262.522433325;2021-12-10@10:51:24 +v2.0.8;mulimex;32;100000;;166748;52697;811256;204320;817280;1065;258.100905345;2021-12-10@10:55:47 +v2.0.8;mulimex;32;100000;;166748;52697;810972;204291;817164;1064;258.029904559;2021-12-10@11:00:10 +v2.0.8;mulimex;32;100000;;166748;52697;811280;204341;817364;1064;257.757754508;2021-12-10@11:04:33 +v2.0.8;mulimex;32;100000;;166748;52697;810812;204298;817192;1060;257.598729297;2021-12-10@11:08:55 +v2.0.8;mulimex;32;100000;;166748;52697;810768;204268;817072;1060;257.926354176;2021-12-10@11:13:18 +v2.0.8;multi;56;100000;;177146;52712;984564;247728;990912;1951;474.865680018;2021-12-10@11:21:47 +v2.0.8;multi;56;100000;;177146;52712;984792;247753;991012;1957;476.222394144;2021-12-10@11:29:49 +v2.0.8;multi;56;100000;;177146;52712;984952;247740;990960;1956;475.570635848;2021-12-10@11:37:50 +v2.0.8;multi;56;100000;;177146;52712;984900;247746;990984;1955;475.899522714;2021-12-10@11:45:51 +v2.0.8;multi;56;100000;;177146;52712;984628;247704;990816;1951;475.012637040;2021-12-10@11:53:52 +v2.0.8;multi;56;100000;;177146;52712;985000;247761;991044;1957;475.580521729;2021-12-10@12:01:53 +v2.0.8;multi;56;100000;;177146;52712;984672;247748;990992;1956;475.372066988;2021-12-10@12:09:53 +v2.0.8;multi;56;100000;;177146;52712;984836;247726;990904;1953;475.463190947;2021-12-10@12:17:54 +v2.0.8;imex;56;100000;;177146;52712;495208;125394;501576;898;215.066937792;2021-12-10@12:22:08 +v2.0.8;imex;56;100000;;177146;52712;495296;125334;501336;875;209.791672186;2021-12-10@12:25:42 +v2.0.8;imex;56;100000;;177146;52712;495128;125329;501316;873;209.367687161;2021-12-10@12:29:15 +v2.0.8;imex;56;100000;;177146;52712;495064;125323;501292;879;210.591852481;2021-12-10@12:32:50 +v2.0.8;imex;56;100000;;177146;52712;494948;125370;501480;876;209.979222487;2021-12-10@12:36:24 +v2.0.8;imex;56;100000;;177146;52712;495420;125388;501552;894;214.054642518;2021-12-10@12:40:02 +v2.0.8;imex;56;100000;;177146;52712;495308;125350;501400;878;210.553936800;2021-12-10@12:43:37 +v2.0.8;imex;56;100000;;177146;52712;495248;125352;501408;877;210.188968617;2021-12-10@12:47:11 +v2.0.8;single;56;100000;;177146;52712;71520;19403;77612;928;222.447862729;2021-12-10@12:51:30 +v2.0.8;single;56;100000;;177146;52712;71228;19345;77380;914;219.315697798;2021-12-10@12:55:13 +v2.0.8;single;56;100000;;177146;52712;71064;19374;77496;912;218.750667689;2021-12-10@12:58:56 +v2.0.8;single;56;100000;;177146;52712;71480;19388;77552;907;217.554823544;2021-12-10@13:02:37 +v2.0.8;single;56;100000;;177146;52712;71136;19358;77432;911;218.584815827;2021-12-10@13:06:19 +v2.0.8;single;56;100000;;177146;52712;71192;19369;77476;904;216.944834447;2021-12-10@13:10:00 +v2.0.8;single;56;100000;;177146;52712;71256;19381;77524;903;216.670268354;2021-12-10@13:13:40 +v2.0.8;single;56;100000;;177146;52712;71444;19349;77396;912;218.676539322;2021-12-10@13:17:23 +v2.0.8;mulimex;56;100000;;177146;52712;1359512;341403;1365612;1965;477.751909531;2021-12-10@13:25:57 +v2.0.8;mulimex;56;100000;;177146;52712;1359596;341468;1365872;1962;476.908165405;2021-12-10@13:34:00 +v2.0.8;mulimex;56;100000;;177146;52712;1359608;341465;1365860;1963;477.112198559;2021-12-10@13:42:04 +v2.0.8;mulimex;56;100000;;177146;52712;1359636;341419;1365676;1963;476.525478906;2021-12-10@13:50:07 +v2.0.8;mulimex;56;100000;;177146;52712;1359428;341396;1365584;1966;476.638603907;2021-12-10@13:58:09 +v2.0.8;mulimex;56;100000;;177146;52712;1359680;341480;1365920;1963;476.941676967;2021-12-10@14:06:13 +v2.0.8;mulimex;56;100000;;177146;52712;1359436;341431;1365724;1972;478.641511070;2021-12-10@14:14:17 +v2.0.8;mulimex;56;100000;;177146;52712;1359416;341414;1365656;1966;476.988056518;2021-12-10@14:22:21 +v2.0.8;multi;100;100000;;184114;52738;1713960;430068;1720272;3688;895.861507387;2021-12-10@14:38:11 +v2.0.8;multi;100;100000;;184114;52738;1713576;429937;1719748;3701;897.690082290;2021-12-10@14:53:16 +v2.0.8;multi;100;100000;;184114;52738;1713444;429927;1719708;3727;902.033207677;2021-12-10@15:08:26 +v2.0.8;multi;100;100000;;184114;52738;1713916;429976;1719904;3738;908.741144363;2021-12-10@15:23:42 +v2.0.8;multi;100;100000;;184114;52738;1714008;430015;1720060;3671;892.649549515;2021-12-10@15:38:42 +v2.0.8;multi;100;100000;;184114;52738;1713960;430016;1720064;3680;894.382012011;2021-12-10@15:53:44 +v2.0.8;multi;100;100000;;184114;52738;1713612;429948;1719792;3681;892.489340561;2021-12-10@16:08:44 +v2.0.8;multi;100;100000;;184114;52738;1713832;430002;1720008;3680;894.560041411;2021-12-10@16:23:46 +v2.0.8;imex;100;100000;;184114;52738;778156;196073;784292;1642;395.720583362;2021-12-10@16:31:28 +v2.0.8;imex;100;100000;;184114;52738;778344;196093;784372;1576;380.524516560;2021-12-10@16:37:53 +v2.0.8;imex;100;100000;;184114;52738;778224;196098;784392;1597;385.367538117;2021-12-10@16:44:23 +v2.0.8;imex;100;100000;;184114;52738;778408;196116;784464;1591;384.051018325;2021-12-10@16:50:51 +v2.0.8;imex;100;100000;;184114;52738;778596;196153;784612;1580;381.401205690;2021-12-10@16:57:17 +v2.0.8;imex;100;100000;;184114;52738;778212;196060;784240;1586;382.982382295;2021-12-10@17:03:45 +v2.0.8;imex;100;100000;;184114;52738;778436;196138;784552;1598;385.675210805;2021-12-10@17:10:14 +v2.0.8;imex;100;100000;;184114;52738;778044;196084;784336;1589;383.708026852;2021-12-10@17:16:42 +v2.0.8;single;100;100000;;184114;52738;78280;21122;84488;1719;414.137664009;2021-12-10@17:24:39 +v2.0.8;single;100;100000;;184114;52738;78364;21131;84524;1660;400.072047378;2021-12-10@17:31:23 +v2.0.8;single;100;100000;;184114;52738;78500;21173;84692;1652;398.091613145;2021-12-10@17:38:04 +v2.0.8;single;100;100000;;184114;52738;78536;21153;84612;1665;401.142907638;2021-12-10@17:44:49 +v2.0.8;single;100;100000;;184114;52738;78692;21221;84884;1655;398.961981207;2021-12-10@17:51:32 +v2.0.8;single;100;100000;;184114;52738;78540;21170;84680;1667;401.595647385;2021-12-10@17:58:17 +v2.0.8;single;100;100000;;184114;52738;78584;21170;84680;1733;417.163083625;2021-12-10@18:05:18 +v2.0.8;single;100;100000;;184114;52738;78460;21182;84728;1721;414.237359917;2021-12-10@18:12:16 +v2.0.8;mulimex;100;100000;;184114;52738;2360520;591716;2366864;3696;899.183164293;2021-12-10@18:28:17 +v2.0.8;mulimex;100;100000;;184114;52738;2360316;591657;2366628;3702;900.338327312;2021-12-10@18:43:26 +v2.0.8;mulimex;100;100000;;184114;52738;2360372;591623;2366492;3705;899.887592162;2021-12-10@18:58:35 +v2.0.8;mulimex;100;100000;;184114;52738;2359972;591564;2366256;3720;902.877746033;2021-12-10@19:13:46 +v2.0.8;mulimex;100;100000;;184114;52738;2360200;591648;2366592;3668;892.048996541;2021-12-10@19:28:47 +v2.0.8;mulimex;100;100000;;184114;52738;2360332;591607;2366428;2819;691.300006844;2021-12-10@19:43:51 +v2.0.8;mulimex;100;100000;;184114;52738;2360680;591670;2366680;3704;899.521566115;2021-12-10@19:59:00 +v2.0.8;mulimex;100;100000;;184114;52738;2360496;591655;2366620;3686;893.689240674;2021-12-10@20:14:02 +v2.0.8;multi;178;100000;;188000;52864;3018772;756202;3024808;6621;1622.367983252;2021-12-10@20:42:40 +v2.0.8;multi;178;100000;;188000;52864;2996336;750655;3002620;6889;1676.610774038;2021-12-10@21:10:48 +v2.0.8;multi;178;100000;;188000;52864;3005988;753029;3012116;5803;1423.152525213;2021-12-10@21:38:02 diff --git a/doc/threads/stats.csv b/doc/threads/stats.csv new file mode 100644 index 00000000..08a30ff3 --- /dev/null +++ b/doc/threads/stats.csv @@ -0,0 +1,2086 @@ +VERSION;TYPE;PEERS;ROUTES;;TOTAL_ROUTES;TOTAL_PREFICES;RSS;SZ;VSZ;i;TIMEDIF;DATETIME +v2.0.8;multi;10;10000;;12925;6245;25192;7862;31448;5;1.096254577;2022-02-02@15:17:22 +v2.0.8;multi;10;10000;;12925;6245;25328;7855;31420;4;.874940633;2022-02-02@15:17:28 +v2.0.8;multi;10;10000;;12925;6245;25312;7858;31432;3;.652671281;2022-02-02@15:17:33 +v2.0.8;multi;10;10000;;12925;6245;25100;7881;31524;4;.875534663;2022-02-02@15:17:39 +v2.0.8;multi;10;10000;;12925;6245;25336;7865;31460;3;.650571200;2022-02-02@15:17:44 +v2.0.8;multi;10;10000;;12925;6245;25332;7875;31500;4;.874139409;2022-02-02@15:17:50 +v2.0.8;multi;10;10000;;12925;6245;25352;7857;31428;3;.647811603;2022-02-02@15:17:55 +v2.0.8;multi;10;10000;;12925;6245;25432;7892;31568;4;.875001038;2022-02-02@15:18:01 +v2.0.8-169-ga840170e;multi;10;10000;;12925;6245;21232;187160;748640;5;1.089692765;2022-02-02@15:18:09 +v2.0.8-169-ga840170e;multi;10;10000;;12925;6245;21176;187217;748868;3;.651933721;2022-02-02@15:18:14 +v2.0.8-169-ga840170e;multi;10;10000;;12925;6245;21192;187197;748788;3;.653084865;2022-02-02@15:18:20 +v2.0.8-169-ga840170e;multi;10;10000;;12925;6245;21744;187207;748828;3;.652415229;2022-02-02@15:18:25 +v2.0.8-169-ga840170e;multi;10;10000;;12925;6245;21388;187184;748736;3;.648270200;2022-02-02@15:18:31 +v2.0.8-169-ga840170e;multi;10;10000;;12925;6245;21560;187191;748764;3;.648193217;2022-02-02@15:18:36 +v2.0.8-169-ga840170e;multi;10;10000;;12925;6245;21168;187275;749100;3;.647980957;2022-02-02@15:18:42 +v2.0.8-169-ga840170e;multi;10;10000;;12925;6245;21140;187204;748816;3;.647965071;2022-02-02@15:18:47 +v2.0.8-191-g68d8716f;multi;10;10000;;12925;6245;20820;367168;1468672;5;1.100622692;2022-02-02@15:18:55 +v2.0.8-191-g68d8716f;multi;10;10000;;12925;6245;21628;367185;1468740;3;.651433753;2022-02-02@15:19:00 +v2.0.8-191-g68d8716f;multi;10;10000;;12925;6245;20616;367175;1468700;3;.652091098;2022-02-02@15:19:06 +v2.0.8-191-g68d8716f;multi;10;10000;;12925;6245;21092;367163;1468652;3;.651469363;2022-02-02@15:19:11 +v2.0.8-191-g68d8716f;multi;10;10000;;12925;6245;20964;367203;1468812;3;.652121146;2022-02-02@15:19:17 +v2.0.8;imex;10;10000;;12925;6245;21296;6904;27616;4;.877780033;2022-02-02@15:21:17 +v2.0.8;imex;10;10000;;12925;6245;21448;6918;27672;3;.650221711;2022-02-02@15:21:22 +v2.0.8;imex;10;10000;;12925;6245;21328;6903;27612;3;.647419908;2022-02-02@15:21:28 +v2.0.8;imex;10;10000;;12925;6245;21344;6926;27704;4;.871457090;2022-02-02@15:21:33 +v2.0.8;imex;10;10000;;12925;6245;21476;6913;27652;3;.651801557;2022-02-02@15:21:39 +v2.0.8;imex;10;10000;;12925;6245;21612;6935;27740;4;.875996732;2022-02-02@15:21:44 +v2.0.8;imex;10;10000;;12925;6245;21620;6893;27572;3;.648566097;2022-02-02@15:21:50 +v2.0.8;imex;10;10000;;12925;6245;21412;6903;27612;4;.873475734;2022-02-02@15:21:56 +v2.0.8-169-ga840170e;imex;10;10000;;12925;6245;19476;6754;27016;5;1.089638185;2022-02-02@15:22:04 +v2.0.8-169-ga840170e;imex;10;10000;;12925;6245;19484;6803;27212;4;.875170379;2022-02-02@15:22:09 +v2.0.8-169-ga840170e;imex;10;10000;;12925;6245;19380;6764;27056;4;.873880808;2022-02-02@15:22:15 +v2.0.8-169-ga840170e;imex;10;10000;;12925;6245;19168;6734;26936;4;.875658090;2022-02-02@15:22:21 +v2.0.8-169-ga840170e;imex;10;10000;;12925;6245;19576;6775;27100;4;.875797357;2022-02-02@15:22:26 +v2.0.8-169-ga840170e;imex;10;10000;;12925;6245;19504;6760;27040;4;.876190127;2022-02-02@15:22:32 +v2.0.8-169-ga840170e;imex;10;10000;;12925;6245;19336;6734;26936;4;.876356543;2022-02-02@15:22:38 +v2.0.8-169-ga840170e;imex;10;10000;;12925;6245;19440;6748;26992;4;.873076286;2022-02-02@15:22:43 +v2.0.8-191-g68d8716f;imex;10;10000;;12925;6245;19888;186270;745080;5;1.093324053;2022-02-02@15:22:51 +v2.0.8-191-g68d8716f;imex;10;10000;;12925;6245;20184;186317;745268;3;.648926212;2022-02-02@15:22:57 +v2.0.8-191-g68d8716f;imex;10;10000;;12925;6245;20400;186286;745144;3;.652659838;2022-02-02@15:23:02 +v2.0.8-191-g68d8716f;imex;10;10000;;12925;6245;19764;186270;745080;3;.650098923;2022-02-02@15:23:08 +v2.0.8-191-g68d8716f;imex;10;10000;;12925;6245;19652;186346;745384;3;.650386749;2022-02-02@15:23:13 +v2.0.8-191-g68d8716f;imex;10;10000;;12925;6245;20240;186288;745152;3;.647853086;2022-02-02@15:23:18 +v2.0.8-191-g68d8716f;imex;10;10000;;12925;6245;20784;186390;745560;5;1.092959610;2022-02-02@15:25:55 +v2.0.8;single;10;10000;;12925;6245;7912;3548;14192;5;1.094383039;2022-02-02@15:26:07 +v2.0.8;single;10;10000;;12925;6245;7996;3585;14340;3;.650089289;2022-02-02@15:26:13 +v2.0.8;single;10;10000;;12925;6245;8012;3559;14236;3;.648235964;2022-02-02@15:26:18 +v2.0.8;single;10;10000;;12925;6245;7952;3560;14240;3;.650843503;2022-02-02@15:26:23 +v2.0.8;single;10;10000;;12925;6245;7856;3558;14232;3;.651045036;2022-02-02@15:26:29 +v2.0.8;single;10;10000;;12925;6245;7928;3561;14244;3;.651095458;2022-02-02@15:26:34 +v2.0.8;single;10;10000;;12925;6245;7976;3557;14228;3;.681797956;2022-02-02@15:26:40 +v2.0.8;single;10;10000;;12925;6245;8132;3562;14248;3;.652359216;2022-02-02@15:26:45 +v2.0.8-169-ga840170e;single;10;10000;;12925;6245;7264;3365;13460;5;1.088970668;2022-02-02@15:26:53 +v2.0.8-169-ga840170e;single;10;10000;;12925;6245;7192;3361;13444;3;.650648189;2022-02-02@15:26:59 +v2.0.8-169-ga840170e;single;10;10000;;12925;6245;7308;3378;13512;4;.871713554;2022-02-02@15:27:04 +v2.0.8-169-ga840170e;single;10;10000;;12925;6245;7268;3366;13464;4;.878582212;2022-02-02@15:27:10 +v2.0.8-169-ga840170e;single;10;10000;;12925;6245;7244;3370;13480;4;.875305600;2022-02-02@15:27:16 +v2.0.8-169-ga840170e;single;10;10000;;12925;6245;7320;3362;13448;3;.651824711;2022-02-02@15:27:21 +v2.0.8-169-ga840170e;single;10;10000;;12925;6245;7180;3359;13436;3;.652604286;2022-02-02@15:27:26 +v2.0.8-169-ga840170e;single;10;10000;;12925;6245;6928;3337;13348;3;.647718070;2022-02-02@15:27:32 +v2.0.8-191-g68d8716f;single;10;10000;;12925;6245;6968;183309;733236;5;1.092421653;2022-02-02@15:27:40 +v2.0.8-191-g68d8716f;single;10;10000;;12925;6245;7096;183308;733232;3;.651097706;2022-02-02@15:27:45 +v2.0.8-191-g68d8716f;single;10;10000;;12925;6245;7312;183308;733232;3;.655538305;2022-02-02@15:27:51 +v2.0.8-191-g68d8716f;single;10;10000;;12925;6245;7016;183305;733220;3;.654065594;2022-02-02@15:27:56 +v2.0.8-191-g68d8716f;single;10;10000;;12925;6245;7540;183304;733216;3;.666565863;2022-02-02@15:28:02 +v2.0.8-191-g68d8716f;single;10;10000;;12925;6245;7108;183301;733204;3;.653260264;2022-02-02@15:28:07 +v2.0.8-191-g68d8716f;single;10;10000;;12925;6245;7028;183306;733224;3;.647986838;2022-02-02@15:28:12 +v2.0.8-191-g68d8716f;single;10;10000;;12925;6245;7468;183303;733212;3;.652839552;2022-02-02@15:28:18 +v2.0.8;mulimex;10;10000;;12925;6245;35124;10257;41028;18;3.983991812;2022-02-02@15:28:32 +v2.0.8;mulimex;10;10000;;12925;6245;34596;10252;41008;4;.870756321;2022-02-02@15:28:38 +v2.0.8;mulimex;10;10000;;12925;6245;34692;10254;41016;4;.873432127;2022-02-02@15:28:44 +v2.0.8;mulimex;10;10000;;12925;6245;34892;10248;40992;4;.873415983;2022-02-02@15:28:49 +v2.0.8;mulimex;10;10000;;12925;6245;34892;10251;41004;4;.873559471;2022-02-02@15:28:55 +v2.0.8;mulimex;10;10000;;12925;6245;35068;10259;41036;4;.876322998;2022-02-02@15:29:01 +v2.0.8;mulimex;10;10000;;12925;6245;34816;10252;41008;4;.873908995;2022-02-02@15:29:06 +v2.0.8;mulimex;10;10000;;12925;6245;35000;10239;40956;4;.874443910;2022-02-02@15:29:12 +v2.0.8-169-ga840170e;mulimex;10;10000;;12925;6245;30036;189852;759408;5;1.093355424;2022-02-02@15:29:20 +v2.0.8-169-ga840170e;mulimex;10;10000;;12925;6245;30756;189811;759244;3;.648560139;2022-02-02@15:29:25 +v2.0.8-169-ga840170e;mulimex;10;10000;;12925;6245;30328;189809;759236;3;.653396946;2022-02-02@15:29:31 +v2.0.8-169-ga840170e;mulimex;10;10000;;12925;6245;30196;189822;759288;3;.652052544;2022-02-02@15:29:36 +v2.0.8-169-ga840170e;mulimex;10;10000;;12925;6245;30912;189830;759320;3;.666112449;2022-02-02@15:29:42 +v2.0.8-169-ga840170e;mulimex;10;10000;;12925;6245;30728;189846;759384;3;.654761674;2022-02-02@15:29:47 +v2.0.8-169-ga840170e;mulimex;10;10000;;12925;6245;30388;189810;759240;3;.653036823;2022-02-02@15:29:53 +v2.0.8-169-ga840170e;mulimex;10;10000;;12925;6245;30512;189817;759268;3;.656138441;2022-02-02@15:29:58 +v2.0.8;multi;32;10000;;16892;6334;65476;17922;71688;9;1.978757602;2022-02-02@15:42:29 +v2.0.8;multi;32;10000;;16892;6334;65556;17917;71668;10;2.204558310;2022-02-02@15:42:35 +v2.0.8;multi;32;10000;;16892;6334;65664;17952;71808;10;2.207757568;2022-02-02@15:42:42 +v2.0.8;multi;32;10000;;16892;6334;65332;17917;71668;10;2.210122725;2022-02-02@15:42:49 +v2.0.8;multi;32;10000;;16892;6334;65744;17951;71804;10;2.209464583;2022-02-02@15:42:56 +v2.0.8;multi;32;10000;;16892;6334;65660;17947;71788;10;2.204717296;2022-02-02@15:43:03 +v2.0.8;multi;32;10000;;16892;6334;65652;17961;71844;10;2.208649226;2022-02-02@15:43:10 +v2.0.8;multi;32;10000;;16892;6334;65552;17930;71720;10;2.207374856;2022-02-02@15:43:17 +v2.0.8-169-ga840170e;multi;32;10000;;16892;6334;53780;556850;2227400;6;1.320844277;2022-02-02@15:43:26 +v2.0.8-169-ga840170e;multi;32;10000;;16892;6334;54060;556763;2227052;4;.875968132;2022-02-02@15:43:31 +v2.0.8-169-ga840170e;multi;32;10000;;16892;6334;53828;556749;2226996;6;1.321768776;2022-02-02@15:43:37 +v2.0.8-169-ga840170e;multi;32;10000;;16892;6334;53424;556728;2226912;5;1.100994342;2022-02-02@15:43:43 +v2.0.8-169-ga840170e;multi;32;10000;;16892;6334;54768;556941;2227764;6;1.325130679;2022-02-02@15:43:49 +v2.0.8-169-ga840170e;multi;32;10000;;16892;6334;53320;556749;2226996;5;1.101143621;2022-02-02@15:43:55 +v2.0.8-169-ga840170e;multi;32;10000;;16892;6334;54244;556865;2227460;4;.881834961;2022-02-02@15:44:01 +v2.0.8-169-ga840170e;multi;32;10000;;16892;6334;53712;556731;2226924;5;1.100983242;2022-02-02@15:44:07 +v2.0.8-191-g68d8716f;multi;32;10000;;16892;6334;52280;1097517;4390068;5;1.103570818;2022-02-02@15:44:15 +v2.0.8-191-g68d8716f;multi;32;10000;;16892;6334;52320;1097543;4390172;3;.654667895;2022-02-02@15:44:20 +v2.0.8-191-g68d8716f;multi;32;10000;;16892;6334;51504;1097540;4390160;3;.649057466;2022-02-02@15:44:26 +v2.0.8-191-g68d8716f;multi;32;10000;;16892;6334;53344;1097711;4390844;3;.649039820;2022-02-02@15:44:31 +v2.0.8-191-g68d8716f;multi;32;10000;;16892;6334;51732;1097486;4389944;3;.649671799;2022-02-02@15:44:37 +v2.0.8-191-g68d8716f;multi;32;10000;;16892;6334;52344;1097536;4390144;3;.656412012;2022-02-02@15:44:42 +v2.0.8-191-g68d8716f;multi;32;10000;;16892;6334;53124;1097522;4390088;5;1.096198849;2022-02-02@15:44:48 +v2.0.8-191-g68d8716f;multi;32;10000;;16892;6334;51168;1097478;4389912;3;.659546489;2022-02-02@15:44:53 +v2.0.8;imex;32;10000;;16892;6334;42712;12223;48892;6;1.327920465;2022-02-02@15:45:10 +v2.0.8;imex;32;10000;;16892;6334;42568;12212;48848;7;1.535425273;2022-02-02@15:45:17 +v2.0.8;imex;32;10000;;16892;6334;42824;12206;48824;7;1.538440531;2022-02-02@15:45:23 +v2.0.8;imex;32;10000;;16892;6334;42808;12238;48952;7;1.534904026;2022-02-02@15:45:29 +v2.0.8;imex;32;10000;;16892;6334;42748;12213;48852;7;1.541219094;2022-02-02@15:45:35 +v2.0.8;imex;32;10000;;16892;6334;42560;12205;48820;7;1.535834051;2022-02-02@15:45:42 +v2.0.8;imex;32;10000;;16892;6334;42524;12220;48880;7;1.540260690;2022-02-02@15:45:48 +v2.0.8;imex;32;10000;;16892;6334;42812;12186;48744;6;1.322518613;2022-02-02@15:45:54 +v2.0.8-169-ga840170e;imex;32;10000;;16892;6334;39864;12556;50224;9;1.984306262;2022-02-02@15:46:03 +v2.0.8-169-ga840170e;imex;32;10000;;16892;6334;40256;12587;50348;8;1.770465450;2022-02-02@15:46:10 +v2.0.8-169-ga840170e;imex;32;10000;;16892;6334;39928;12560;50240;8;1.766832304;2022-02-02@15:46:16 +v2.0.8-169-ga840170e;imex;32;10000;;16892;6334;40004;12595;50380;8;1.767638024;2022-02-02@15:46:23 +v2.0.8-169-ga840170e;imex;32;10000;;16892;6334;39984;12581;50324;8;1.763657056;2022-02-02@15:46:29 +v2.0.8-169-ga840170e;imex;32;10000;;16892;6334;40148;12576;50304;7;1.543609827;2022-02-02@15:46:36 +v2.0.8-169-ga840170e;imex;32;10000;;16892;6334;40148;12625;50500;8;1.760773146;2022-02-02@15:46:42 +v2.0.8-169-ga840170e;imex;32;10000;;16892;6334;40080;12576;50304;8;1.768230892;2022-02-02@15:46:49 +v2.0.8-191-g68d8716f;imex;32;10000;;16892;6334;45136;553302;2213208;5;1.094519040;2022-02-02@15:46:57 +v2.0.8-191-g68d8716f;imex;32;10000;;16892;6334;43368;553125;2212500;3;.650387638;2022-02-02@15:47:02 +v2.0.8-191-g68d8716f;imex;32;10000;;16892;6334;43672;552980;2211920;3;.654067418;2022-02-02@15:47:08 +v2.0.8-191-g68d8716f;imex;32;10000;;16892;6334;44656;553284;2213136;3;.651614609;2022-02-02@15:47:13 +v2.0.8-191-g68d8716f;imex;32;10000;;16892;6334;45448;553189;2212756;3;.666249996;2022-02-02@15:47:19 +v2.0.8-191-g68d8716f;imex;32;10000;;16892;6334;44492;553117;2212468;5;1.112866299;2022-02-02@15:47:25 +v2.0.8-191-g68d8716f;imex;32;10000;;16892;6334;43112;553067;2212268;3;.652770168;2022-02-02@15:47:30 +v2.0.8-191-g68d8716f;imex;32;10000;;16892;6334;44068;553158;2212632;3;.648439768;2022-02-02@15:47:35 +v2.0.8;single;32;10000;;16892;6334;10400;4155;16620;6;1.314662804;2022-02-02@15:47:52 +v2.0.8;single;32;10000;;16892;6334;10588;4186;16744;6;1.326380068;2022-02-02@15:47:58 +v2.0.8;single;32;10000;;16892;6334;10476;4173;16692;6;1.324679389;2022-02-02@15:48:04 +v2.0.8;single;32;10000;;16892;6334;10448;4155;16620;6;1.323704494;2022-02-02@15:48:10 +v2.0.8;single;32;10000;;16892;6334;10340;4180;16720;6;1.327077199;2022-02-02@15:48:17 +v2.0.8;single;32;10000;;16892;6334;10672;4168;16672;7;1.536551975;2022-02-02@15:48:23 +v2.0.8;single;32;10000;;16892;6334;10560;4163;16652;6;1.320830805;2022-02-02@15:48:29 +v2.0.8;single;32;10000;;16892;6334;10432;4190;16760;6;1.321610181;2022-02-02@15:48:35 +v2.0.8-169-ga840170e;single;32;10000;;16892;6334;9008;3838;15352;7;1.545963718;2022-02-02@15:48:44 +v2.0.8-169-ga840170e;single;32;10000;;16892;6334;8916;3857;15428;6;1.319859810;2022-02-02@15:48:50 +v2.0.8-169-ga840170e;single;32;10000;;16892;6334;9128;3830;15320;7;1.535050332;2022-02-02@15:48:56 +v2.0.8-169-ga840170e;single;32;10000;;16892;6334;8936;3830;15320;6;1.323007004;2022-02-02@15:49:02 +v2.0.8-169-ga840170e;single;32;10000;;16892;6334;9096;3850;15400;6;1.321120073;2022-02-02@15:49:08 +v2.0.8-169-ga840170e;single;32;10000;;16892;6334;8968;3816;15264;6;1.312407112;2022-02-02@15:49:14 +v2.0.8-169-ga840170e;single;32;10000;;16892;6334;8896;3825;15300;6;1.318392153;2022-02-02@15:49:20 +v2.0.8-169-ga840170e;single;32;10000;;16892;6334;8852;3845;15380;7;1.541096359;2022-02-02@15:49:27 +v2.0.8-191-g68d8716f;single;32;10000;;16892;6334;5924;544495;2177980;5;1.097982950;2022-02-02@15:49:35 +v2.0.8-191-g68d8716f;single;32;10000;;16892;6334;6928;544523;2178092;3;.653526758;2022-02-02@15:49:40 +v2.0.8-191-g68d8716f;single;32;10000;;16892;6334;6300;544504;2178016;3;.680781738;2022-02-02@15:49:46 +v2.0.8-191-g68d8716f;single;32;10000;;16892;6334;7324;544507;2178028;3;.654547177;2022-02-02@15:49:51 +v2.0.8-191-g68d8716f;single;32;10000;;16892;6334;7264;544504;2178016;5;1.105357001;2022-02-02@15:49:57 +v2.0.8-191-g68d8716f;single;32;10000;;16892;6334;7728;544509;2178036;5;1.101831844;2022-02-02@15:50:03 +v2.0.8-191-g68d8716f;single;32;10000;;16892;6334;7476;544514;2178056;5;1.103368505;2022-02-02@15:50:09 +v2.0.8-191-g68d8716f;single;32;10000;;16892;6334;7176;544490;2177960;3;.651212314;2022-02-02@15:50:14 +v2.0.8;mulimex;32;10000;;16892;6334;92844;24706;98824;10;2.218621332;2022-02-02@15:50:32 +v2.0.8;mulimex;32;10000;;16892;6334;92720;24715;98860;10;2.206368864;2022-02-02@15:50:39 +v2.0.8;mulimex;32;10000;;16892;6334;92552;24670;98680;10;2.204216319;2022-02-02@15:50:46 +v2.0.8;mulimex;32;10000;;16892;6334;92800;24686;98744;10;2.204847245;2022-02-02@15:50:53 +v2.0.8;mulimex;32;10000;;16892;6334;92596;24670;98680;10;2.209583472;2022-02-02@15:51:00 +v2.0.8;mulimex;32;10000;;16892;6334;92584;24642;98568;10;2.209544478;2022-02-02@15:51:07 +v2.0.8;mulimex;32;10000;;16892;6334;92588;24682;98728;10;2.212179581;2022-02-02@15:51:14 +v2.0.8;mulimex;32;10000;;16892;6334;92532;24679;98716;11;2.428413526;2022-02-02@15:51:21 +v2.0.8-169-ga840170e;mulimex;32;10000;;16892;6334;81140;564596;2258384;7;1.537899787;2022-02-02@15:51:30 +v2.0.8-169-ga840170e;mulimex;32;10000;;16892;6334;80752;564666;2258664;5;1.097044431;2022-02-02@15:51:35 +v2.0.8-169-ga840170e;mulimex;32;10000;;16892;6334;80300;564614;2258456;5;1.104611467;2022-02-02@15:51:41 +v2.0.8-169-ga840170e;mulimex;32;10000;;16892;6334;80072;564516;2258064;5;1.105940444;2022-02-02@15:51:47 +v2.0.8-169-ga840170e;mulimex;32;10000;;16892;6334;80852;564626;2258504;5;1.096172779;2022-02-02@15:51:53 +v2.0.8-169-ga840170e;mulimex;32;10000;;16892;6334;80568;564599;2258396;5;1.099257363;2022-02-02@15:51:59 +v2.0.8-169-ga840170e;mulimex;32;10000;;16892;6334;80308;564507;2258028;5;1.098518301;2022-02-02@15:52:05 +v2.0.8-169-ga840170e;mulimex;32;10000;;16892;6334;80828;564569;2258276;6;1.325210984;2022-02-02@15:52:11 +v2.0.8-191-g68d8716f;mulimex;32;10000;;16892;6334;80388;1105305;4421220;5;1.098699044;2022-02-02@15:52:19 +v2.0.8-191-g68d8716f;mulimex;32;10000;;16892;6334;83416;1105283;4421132;4;.877097870;2022-02-02@15:53:50 +v2.0.8-191-g68d8716f;mulimex;32;10000;;16892;6334;85228;1105668;4422672;3;.653528445;2022-02-02@15:53:55 +v2.0.8-191-g68d8716f;mulimex;32;10000;;16892;6334;82668;1105385;4421540;3;.653928563;2022-02-02@15:54:00 +v2.0.8-191-g68d8716f;mulimex;32;10000;;16892;6334;80040;1105310;4421240;3;.653293911;2022-02-02@15:54:06 +v2.0.8-191-g68d8716f;mulimex;32;10000;;16892;6334;84700;1105612;4422448;4;.878791305;2022-02-02@15:54:12 +v2.0.8-191-g68d8716f;mulimex;32;10000;;16892;6334;83092;1105470;4421880;3;.654332748;2022-02-02@15:54:17 +v2.0.8;multi;100;10000;;18563;6381;184748;47739;190956;31;6.905085711;2022-02-02@15:54:42 +v2.0.8;multi;100;10000;;18563;6381;184864;47766;191064;31;6.888150188;2022-02-02@15:54:54 +v2.0.8;multi;100;10000;;18563;6381;185056;47761;191044;31;6.896919915;2022-02-02@15:55:06 +v2.0.8;multi;100;10000;;18563;6381;185056;47770;191080;31;6.912848533;2022-02-02@15:55:18 +v2.0.8;multi;100;10000;;18563;6381;184924;47753;191012;31;6.897361378;2022-02-02@15:55:30 +v2.0.8;multi;100;10000;;18563;6381;184860;47788;191152;31;6.909714459;2022-02-02@15:55:42 +v2.0.8;multi;100;10000;;18563;6381;184932;47737;190948;31;6.916711619;2022-02-02@15:55:54 +v2.0.8;multi;100;10000;;18563;6381;184764;47741;190964;31;6.896984802;2022-02-02@15:56:06 +v2.0.8-169-ga840170e;multi;100;10000;;18563;6381;149380;1698765;6795060;12;2.659859656;2022-02-02@15:56:16 +v2.0.8-169-ga840170e;multi;100;10000;;18563;6381;153584;1698847;6795388;12;2.675793520;2022-02-02@15:56:23 +v2.0.8-169-ga840170e;multi;100;10000;;18563;6381;157128;1699660;6798640;12;2.659518527;2022-02-02@15:56:31 +v2.0.8-169-ga840170e;multi;100;10000;;18563;6381;150636;1698648;6794592;12;2.665613631;2022-02-02@15:56:38 +v2.0.8-169-ga840170e;multi;100;10000;;18563;6381;152348;1698940;6795760;12;2.657749990;2022-02-02@15:56:46 +v2.0.8-169-ga840170e;multi;100;10000;;18563;6381;154508;1698575;6794300;12;2.668599217;2022-02-02@15:56:53 +v2.0.8-169-ga840170e;multi;100;10000;;18563;6381;149708;1698685;6794740;12;2.662533000;2022-02-02@15:57:01 +v2.0.8-169-ga840170e;multi;100;10000;;18563;6381;151076;1698687;6794748;12;2.664170364;2022-02-02@15:57:08 +v2.0.8-191-g68d8716f;multi;100;10000;;18563;6381;157996;2126435;8505740;7;1.554906474;2022-02-02@15:58:42 +v2.0.8-191-g68d8716f;multi;100;10000;;18563;6381;153116;2126166;8504664;7;1.558577793;2022-02-02@15:58:49 +v2.0.8-191-g68d8716f;multi;100;10000;;18563;6381;160540;2126202;8504808;7;1.538475929;2022-02-02@15:58:55 +v2.0.8-191-g68d8716f;multi;100;10000;;18563;6381;151372;2126009;8504036;7;1.548179949;2022-02-02@15:59:01 +v2.0.8-191-g68d8716f;multi;100;10000;;18563;6381;155160;2126318;8505272;6;1.323799368;2022-02-02@15:59:08 +v2.0.8-191-g68d8716f;multi;100;10000;;18563;6381;153372;2126077;8504308;7;1.550670506;2022-02-02@15:59:14 +v2.0.8-191-g68d8716f;multi;100;10000;;18563;6381;148772;2125919;8503676;7;1.576611397;2022-02-02@15:59:20 +v2.0.8;imex;100;10000;;18563;6381;98280;26166;104664;18;3.986302444;2022-02-02@15:59:59 +v2.0.8;imex;100;10000;;18563;6381;98420;26156;104624;19;4.218468406;2022-02-02@16:00:08 +v2.0.8;imex;100;10000;;18563;6381;98344;26109;104436;18;3.996161204;2022-02-02@16:00:17 +v2.0.8;imex;100;10000;;18563;6381;98312;26151;104604;18;3.993555325;2022-02-02@16:00:26 +v2.0.8;imex;100;10000;;18563;6381;98432;26169;104676;19;4.222533428;2022-02-02@16:00:35 +v2.0.8;imex;100;10000;;18563;6381;98316;26123;104492;19;4.230594593;2022-02-02@16:00:44 +v2.0.8;imex;100;10000;;18563;6381;98276;26136;104544;18;3.984420623;2022-02-02@16:00:52 +v2.0.8;imex;100;10000;;18563;6381;98656;26210;104840;18;3.986272423;2022-02-02@16:01:01 +v2.0.8-169-ga840170e;imex;100;10000;;18563;6381;97308;28903;115612;20;4.434241286;2022-02-02@16:01:13 +v2.0.8-169-ga840170e;imex;100;10000;;18563;6381;98000;29078;116312;20;4.434311497;2022-02-02@16:01:22 +v2.0.8-169-ga840170e;imex;100;10000;;18563;6381;97912;29015;116060;20;4.449306013;2022-02-02@16:01:31 +v2.0.8-169-ga840170e;imex;100;10000;;18563;6381;97624;28978;115912;21;4.654573677;2022-02-02@16:01:41 +v2.0.8-169-ga840170e;imex;100;10000;;18563;6381;97092;28883;115532;20;4.434558251;2022-02-02@16:01:50 +v2.0.8-169-ga840170e;imex;100;10000;;18563;6381;97680;29055;116220;20;4.439353471;2022-02-02@16:01:59 +v2.0.8-169-ga840170e;imex;100;10000;;18563;6381;97660;28971;115884;20;4.443074268;2022-02-02@16:02:08 +v2.0.8-169-ga840170e;imex;100;10000;;18563;6381;97120;28863;115452;20;4.458258199;2022-02-02@16:02:18 +v2.0.8-191-g68d8716f;imex;100;10000;;18563;6381;116700;1686712;6746848;6;1.322512547;2022-02-02@16:02:26 +v2.0.8-191-g68d8716f;imex;100;10000;;18563;6381;116004;1686494;6745976;6;1.325503902;2022-02-02@16:02:32 +v2.0.8-191-g68d8716f;imex;100;10000;;18563;6381;118872;1686734;6746936;6;1.326405932;2022-02-02@16:02:38 +v2.0.8-191-g68d8716f;imex;100;10000;;18563;6381;119152;1687160;6748640;6;1.321581759;2022-02-02@16:02:44 +v2.0.8-191-g68d8716f;imex;100;10000;;18563;6381;114348;1685958;6743832;6;1.315188429;2022-02-02@16:02:50 +v2.0.8-191-g68d8716f;imex;100;10000;;18563;6381;115972;1686456;6745824;6;1.321753490;2022-02-02@16:02:56 +v2.0.8-191-g68d8716f;imex;100;10000;;18563;6381;119824;1686919;6747676;6;1.315624838;2022-02-02@16:03:03 +v2.0.8-191-g68d8716f;imex;100;10000;;18563;6381;118356;1686683;6746732;6;1.330877474;2022-02-02@16:03:09 +v2.0.8;single;100;10000;;18563;6381;13468;4979;19916;17;3.799087779;2022-02-02@16:03:47 +v2.0.8;single;100;10000;;18563;6381;13892;5038;20152;17;3.800934060;2022-02-02@16:03:55 +v2.0.8;single;100;10000;;18563;6381;13684;4932;19728;18;3.994367792;2022-02-02@16:04:04 +v2.0.8;single;100;10000;;18563;6381;13680;5012;20048;18;4.009388266;2022-02-02@16:04:13 +v2.0.8;single;100;10000;;18563;6381;13752;4947;19788;17;3.770747621;2022-02-02@16:04:21 +v2.0.8;single;100;10000;;18563;6381;13728;5015;20060;18;3.988319406;2022-02-02@16:04:30 +v2.0.8;single;100;10000;;18563;6381;13672;4937;19748;17;3.771330679;2022-02-02@16:04:39 +v2.0.8;single;100;10000;;18563;6381;13848;4972;19888;17;3.765548617;2022-02-02@16:04:47 +v2.0.8-169-ga840170e;single;100;10000;;18563;6381;12068;4577;18308;17;3.775450581;2022-02-02@16:04:58 +v2.0.8-169-ga840170e;single;100;10000;;18563;6381;11904;4551;18204;17;3.788765324;2022-02-02@16:05:07 +v2.0.8-169-ga840170e;single;100;10000;;18563;6381;11768;4538;18152;17;3.778796746;2022-02-02@16:05:15 +v2.0.8-169-ga840170e;single;100;10000;;18563;6381;12020;4560;18240;16;3.553800836;2022-02-02@16:05:24 +v2.0.8-169-ga840170e;single;100;10000;;18563;6381;11856;4535;18140;17;3.775249036;2022-02-02@16:05:32 +v2.0.8-169-ga840170e;single;100;10000;;18563;6381;11956;4555;18220;17;3.787193966;2022-02-02@16:05:41 +v2.0.8-169-ga840170e;single;100;10000;;18563;6381;11644;4553;18212;17;3.777879221;2022-02-02@16:05:49 +v2.0.8-169-ga840170e;single;100;10000;;18563;6381;11928;4558;18232;17;3.787686447;2022-02-02@16:05:58 +v2.0.8-191-g68d8716f;single;100;10000;;18563;6381;8604;1660755;6643020;6;1.326084068;2022-02-02@16:06:06 +v2.0.8-191-g68d8716f;single;100;10000;;18563;6381;8448;1660651;6642604;6;1.317446011;2022-02-02@16:06:12 +v2.0.8-191-g68d8716f;single;100;10000;;18563;6381;8692;1660633;6642532;6;1.324981939;2022-02-02@16:06:18 +v2.0.8-191-g68d8716f;single;100;10000;;18563;6381;8772;1660640;6642560;6;1.327670396;2022-02-02@16:06:24 +v2.0.8-191-g68d8716f;single;100;10000;;18563;6381;8656;1660740;6642960;6;1.326580292;2022-02-02@16:06:30 +v2.0.8-191-g68d8716f;single;100;10000;;18563;6381;8428;1660814;6643256;6;1.328290321;2022-02-02@16:06:37 +v2.0.8-191-g68d8716f;single;100;10000;;18563;6381;8640;1660730;6642920;6;1.371798523;2022-02-02@16:06:43 +v2.0.8-191-g68d8716f;single;100;10000;;18563;6381;8268;1660651;6642604;6;1.346723512;2022-02-02@16:06:49 +v2.0.8;mulimex;100;10000;;18563;6381;263604;67453;269812;33;7.360971443;2022-02-02@16:07:30 +v2.0.8;mulimex;100;10000;;18563;6381;263644;67477;269908;32;7.126471040;2022-02-02@16:07:43 +v2.0.8;mulimex;100;10000;;18563;6381;263672;67445;269780;32;7.133226814;2022-02-02@16:07:55 +v2.0.8;mulimex;100;10000;;18563;6381;263864;67487;269948;32;7.129820274;2022-02-02@16:08:07 +v2.0.8;mulimex;100;10000;;18563;6381;263784;67469;269876;32;7.137229997;2022-02-02@16:08:20 +v2.0.8;mulimex;100;10000;;18563;6381;263800;67466;269864;32;7.131475864;2022-02-02@16:08:32 +v2.0.8;mulimex;100;10000;;18563;6381;263676;67459;269836;32;7.140033002;2022-02-02@16:08:44 +v2.0.8;mulimex;100;10000;;18563;6381;263876;67494;269976;32;7.130427897;2022-02-02@16:08:57 +v2.0.8-169-ga840170e;mulimex;100;10000;;18563;6381;233552;1722181;6888724;14;3.105856824;2022-02-02@16:09:07 +v2.0.8-169-ga840170e;mulimex;100;10000;;18563;6381;233348;1722054;6888216;14;3.116089618;2022-02-02@16:09:15 +v2.0.8-169-ga840170e;mulimex;100;10000;;18563;6381;235832;1721816;6887264;15;3.342201413;2022-02-02@16:09:23 +v2.0.8-169-ga840170e;mulimex;100;10000;;18563;6381;240788;1723125;6892500;15;3.342350219;2022-02-02@16:09:31 +v2.0.8-169-ga840170e;mulimex;100;10000;;18563;6381;233900;1722376;6889504;15;3.326025335;2022-02-02@16:09:39 +v2.0.8-169-ga840170e;mulimex;100;10000;;18563;6381;236284;1721842;6887368;15;3.333339990;2022-02-02@16:09:47 +v2.0.8-169-ga840170e;mulimex;100;10000;;18563;6381;236012;1722360;6889440;15;3.331908827;2022-02-02@16:09:56 +v2.0.8-169-ga840170e;mulimex;100;10000;;18563;6381;240876;1723169;6892676;15;3.344265549;2022-02-02@16:10:04 +v2.0.8-191-g68d8716f;mulimex;100;10000;;18563;6381;246520;2150931;8603724;7;1.537485181;2022-02-02@16:10:12 +v2.0.8-191-g68d8716f;mulimex;100;10000;;18563;6381;245612;2150396;8601584;7;1.546537888;2022-02-02@16:13:01 +v2.0.8-191-g68d8716f;mulimex;100;10000;;18563;6381;252292;2151115;8604460;7;1.549455390;2022-02-02@16:13:08 +v2.0.8-191-g68d8716f;mulimex;100;10000;;18563;6381;253068;2150720;8602880;7;1.553020422;2022-02-02@16:13:14 +v2.0.8;multi;316;10000;;19553;6638;574756;145186;580744;111;24.875043586;2022-02-02@16:17:22 +v2.0.8;multi;316;10000;;19553;6638;574568;145188;580752;112;25.087693186;2022-02-02@16:17:53 +v2.0.8;multi;316;10000;;19553;6638;574244;145131;580524;112;25.105188009;2022-02-02@16:18:25 +v2.0.8;multi;316;10000;;19553;6638;575156;145262;581048;114;25.544961576;2022-02-02@16:18:56 +v2.0.8;multi;316;10000;;19553;6638;574580;145190;580760;110;24.675578843;2022-02-02@16:19:27 +v2.0.8;multi;316;10000;;19553;6638;574568;145197;580788;112;25.101365269;2022-02-02@16:19:58 +v2.0.8;multi;316;10000;;19553;6638;574640;145197;580788;113;25.350631563;2022-02-02@16:20:30 +v2.0.8;multi;316;10000;;19553;6638;574380;145147;580588;112;25.080088411;2022-02-02@16:21:01 +v2.0.8-169-ga840170e;multi;316;10000;;19553;6638;478256;2216462;8865848;40;8.950696582;2022-02-02@16:21:18 +v2.0.8-169-ga840170e;multi;316;10000;;19553;6638;490244;2216051;8864204;39;8.711322077;2022-02-02@16:21:32 +v2.0.8-169-ga840170e;multi;316;10000;;19553;6638;452280;2215663;8862652;39;8.748604814;2022-02-02@16:21:45 +v2.0.8-169-ga840170e;multi;316;10000;;19553;6638;457900;2217142;8868568;42;9.379200652;2022-02-02@16:21:59 +v2.0.8-169-ga840170e;multi;316;10000;;19553;6638;464208;2215304;8861216;39;8.724995102;2022-02-02@16:22:13 +v2.0.8-169-ga840170e;multi;316;10000;;19553;6638;461028;2217779;8871116;39;8.706358909;2022-02-02@16:22:26 +v2.0.8-169-ga840170e;multi;316;10000;;19553;6638;455448;2215474;8861896;39;8.707086972;2022-02-02@16:22:40 +v2.0.8-169-ga840170e;multi;316;10000;;19553;6638;482764;2216948;8867792;40;8.939725863;2022-02-02@16:22:54 +v2.0.8-191-g68d8716f;multi;316;10000;;19553;6638;514984;2222523;8890092;20;4.469350134;2022-02-02@16:23:05 +v2.0.8-191-g68d8716f;multi;316;10000;;19553;6638;543880;2222489;8889956;19;4.287261037;2022-02-02@16:24:23 +v2.0.8-191-g68d8716f;multi;316;10000;;19553;6638;512692;2223364;8893456;18;4.015889015;2022-02-02@16:28:21 +v2.0.8;imex;316;10000;;19553;6638;281800;72001;288004;79;17.701601688;2022-02-02@16:31:56 +v2.0.8;imex;316;10000;;19553;6638;281788;71952;287808;69;15.433384042;2022-02-02@16:32:17 +v2.0.8;imex;316;10000;;19553;6638;281896;71997;287988;69;15.476263288;2022-02-02@16:32:37 +v2.0.8;imex;316;10000;;19553;6638;281968;72057;288228;70;15.681520777;2022-02-02@16:32:58 +v2.0.8;imex;316;10000;;19553;6638;281860;72033;288132;71;15.911707488;2022-02-02@16:33:19 +v2.0.8;imex;316;10000;;19553;6638;281828;71989;287956;69;15.465026850;2022-02-02@16:33:40 +v2.0.8;imex;316;10000;;19553;6638;282480;72195;288780;69;15.437115282;2022-02-02@16:34:00 +v2.0.8;imex;316;10000;;19553;6638;281888;72015;288060;69;15.454763570;2022-02-02@16:34:21 +v2.0.8-169-ga840170e;imex;316;10000;;19553;6638;285680;82499;329996;68;15.187697989;2022-02-02@16:34:43 +v2.0.8-169-ga840170e;imex;316;10000;;19553;6638;285520;82385;329540;70;15.722410031;2022-02-02@16:35:04 +v2.0.8-169-ga840170e;imex;316;10000;;19553;6638;286412;82717;330868;69;15.405166652;2022-02-02@16:35:24 +v2.0.8-169-ga840170e;imex;316;10000;;19553;6638;287280;82930;331720;74;16.510624914;2022-02-02@16:35:45 +v2.0.8-169-ga840170e;imex;316;10000;;19553;6638;286188;82611;330444;69;15.399281903;2022-02-02@16:36:06 +v2.0.8-169-ga840170e;imex;316;10000;;19553;6638;289440;83413;333652;70;15.608280011;2022-02-02@16:36:26 +v2.0.8-169-ga840170e;imex;316;10000;;19553;6638;285280;82429;329716;69;15.395506632;2022-02-02@16:36:46 +v2.0.8-169-ga840170e;imex;316;10000;;19553;6638;286064;82601;330404;68;15.184299510;2022-02-02@16:37:06 +v2.0.8-191-g68d8716f;imex;316;10000;;19553;6638;336312;2171313;8685252;12;2.718531734;2022-02-02@16:37:16 +v2.0.8-191-g68d8716f;imex;316;10000;;19553;6638;331172;2170896;8683584;12;2.707448746;2022-02-02@16:37:23 +v2.0.8-191-g68d8716f;imex;316;10000;;19553;6638;342396;2171497;8685988;12;2.748744844;2022-02-02@16:37:31 +v2.0.8-191-g68d8716f;imex;316;10000;;19553;6638;342312;2171607;8686428;12;2.666350429;2022-02-02@16:37:39 +v2.0.8-191-g68d8716f;imex;316;10000;;19553;6638;332528;2172268;8689072;11;2.457329679;2022-02-02@16:37:46 +v2.0.8-191-g68d8716f;imex;316;10000;;19553;6638;341744;2171307;8685228;12;2.671678567;2022-02-02@16:37:53 +v2.0.8-191-g68d8716f;imex;316;10000;;19553;6638;348944;2171900;8687600;14;3.124912393;2022-02-02@16:38:01 +v2.0.8-191-g68d8716f;imex;316;10000;;19553;6638;339176;2171854;8687416;11;2.451779359;2022-02-02@16:38:09 +v2.0.8;single;316;10000;;19553;6638;25136;7806;31224;65;14.606654244;2022-02-02@16:40:39 +v2.0.8;single;316;10000;;19553;6638;26732;8174;32696;67;14.995790956;2022-02-02@16:40:58 +v2.0.8;single;316;10000;;19553;6638;26364;8059;32236;66;14.771025973;2022-02-02@16:41:18 +v2.0.8;single;316;10000;;19553;6638;26656;8121;32484;67;14.990756334;2022-02-02@16:41:38 +v2.0.8;single;316;10000;;19553;6638;25968;7997;31988;68;15.266536629;2022-02-02@16:41:58 +v2.0.8;single;316;10000;;19553;6638;25872;7979;31916;67;14.997916364;2022-02-02@16:42:18 +v2.0.8;single;316;10000;;19553;6638;26240;8076;32304;68;15.201040536;2022-02-02@16:42:38 +v2.0.8;single;316;10000;;19553;6638;25408;7829;31316;66;14.787224899;2022-02-02@16:42:57 +v2.0.8-169-ga840170e;single;316;10000;;19553;6638;19628;6470;25880;57;12.741635618;2022-02-02@16:43:17 +v2.0.8-169-ga840170e;single;316;10000;;19553;6638;19580;6474;25896;57;12.739297639;2022-02-02@16:43:34 +v2.0.8-169-ga840170e;single;316;10000;;19553;6638;19876;6513;26052;57;12.770329737;2022-02-02@16:43:52 +v2.0.8-169-ga840170e;single;316;10000;;19553;6638;19520;6480;25920;57;12.749687555;2022-02-02@16:44:09 +v2.0.8-169-ga840170e;single;316;10000;;19553;6638;19656;6495;25980;56;12.524833233;2022-02-02@16:44:27 +v2.0.8-169-ga840170e;single;316;10000;;19553;6638;19512;6475;25900;58;12.972431299;2022-02-02@16:44:44 +v2.0.8-169-ga840170e;single;316;10000;;19553;6638;19564;6474;25896;57;12.743207087;2022-02-02@16:45:02 +v2.0.8-169-ga840170e;single;316;10000;;19553;6638;19688;6475;25900;57;12.734766557;2022-02-02@16:45:19 +v2.0.8-191-g68d8716f;single;316;10000;;19553;6638;18492;2093026;8372104;10;2.250806889;2022-02-02@16:45:29 +v2.0.8-191-g68d8716f;single;316;10000;;19553;6638;26544;2093211;8372844;10;2.269035127;2022-02-02@16:45:36 +v2.0.8-191-g68d8716f;single;316;10000;;19553;6638;46212;2093637;8374548;9;2.052613340;2022-02-02@16:45:43 +v2.0.8-191-g68d8716f;single;316;10000;;19553;6638;31520;2093503;8374012;10;2.254200895;2022-02-02@16:45:50 +v2.0.8-191-g68d8716f;single;316;10000;;19553;6638;19516;2093013;8372052;10;2.227538345;2022-02-02@16:45:57 +v2.0.8-191-g68d8716f;single;316;10000;;19553;6638;28372;2093701;8374804;10;2.242273743;2022-02-02@16:46:04 +v2.0.8-191-g68d8716f;single;316;10000;;19553;6638;33464;2093280;8373120;10;2.266793992;2022-02-02@16:46:11 +v2.0.8-191-g68d8716f;single;316;10000;;19553;6638;29836;2093217;8372868;10;2.241835648;2022-02-02@16:46:18 +v2.0.8;mulimex;316;10000;;19553;6638;827512;208387;833548;113;25.357901229;2022-02-02@16:49:01 +v2.0.8;mulimex;316;10000;;19553;6638;827992;208492;833968;113;25.329241361;2022-02-02@16:49:33 +v2.0.8;mulimex;316;10000;;19553;6638;827984;208471;833884;113;25.324911752;2022-02-02@16:50:05 +v2.0.8;mulimex;316;10000;;19553;6638;827124;208325;833300;113;25.310128090;2022-02-02@16:50:38 +v2.0.8;mulimex;316;10000;;19553;6638;827512;208424;833696;113;25.313349047;2022-02-02@16:51:10 +v2.0.8;mulimex;316;10000;;19553;6638;827428;208358;833432;114;25.537513534;2022-02-02@16:51:42 +v2.0.8;mulimex;316;10000;;19553;6638;827928;208435;833740;114;25.546806422;2022-02-02@16:52:15 +v2.0.8;mulimex;316;10000;;19553;6638;827208;208359;833436;112;25.093348964;2022-02-02@16:52:46 +v2.0.8-169-ga840170e;mulimex;316;10000;;19553;6638;750988;2292156;9168624;49;10.919057214;2022-02-02@16:53:06 +v2.0.8-169-ga840170e;mulimex;316;10000;;19553;6638;755928;2292301;9169204;49;10.955130151;2022-02-02@16:53:22 +v2.0.8-169-ga840170e;mulimex;316;10000;;19553;6638;753316;2290486;9161944;49;10.939504130;2022-02-02@16:53:37 +v2.0.8-169-ga840170e;mulimex;316;10000;;19553;6638;748152;2294324;9177296;49;10.951741412;2022-02-02@16:53:53 +v2.0.8-169-ga840170e;mulimex;316;10000;;19553;6638;761156;2294287;9177148;48;10.681507651;2022-02-02@16:54:09 +v2.0.8-169-ga840170e;mulimex;316;10000;;19553;6638;714848;2290882;9163528;51;11.406591954;2022-02-02@16:54:25 +v2.0.8-169-ga840170e;mulimex;316;10000;;19553;6638;757724;2292931;9171724;50;11.148194111;2022-02-02@16:54:41 +v2.0.8-169-ga840170e;mulimex;316;10000;;19553;6638;747348;2291959;9167836;48;10.735578908;2022-02-02@16:54:56 +v2.0.8;multi;1000;10000;;20198;7289;1918952;481269;1925076;409;92.556105059;2022-02-02@17:13:54 +v2.0.8;multi;1000;10000;;20198;7289;1843856;462455;1849820;382;86.286460690;2022-02-02@17:15:31 +v2.0.8;multi;1000;10000;;20198;7289;1844268;462545;1850180;378;85.399383493;2022-02-02@17:17:07 +v2.0.8;multi;1000;10000;;20198;7289;1844004;462473;1849892;379;85.629571786;2022-02-02@17:18:43 +v2.0.8;multi;1000;10000;;20198;7289;1844360;462601;1850404;379;85.592494014;2022-02-02@17:20:19 +v2.0.8;multi;1000;10000;;20198;7289;1848996;463776;1855104;382;86.257385232;2022-02-02@17:21:56 +v2.0.8;multi;1000;10000;;20198;7289;1844468;462654;1850616;379;85.630820626;2022-02-02@17:23:32 +v2.0.8;multi;1000;10000;;20198;7289;1843652;462489;1849956;383;86.434786348;2022-02-02@17:25:09 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1600112;2518060;10072240;145;32.605450234;2022-02-02@17:25:54 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1592188;2516087;10064348;145;32.613735528;2022-02-02@17:26:32 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1618340;2519680;10078720;148;33.278723247;2022-02-02@17:27:10 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1565452;2522912;10091648;145;32.623061345;2022-02-02@17:27:48 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1602660;2517774;10071096;144;32.345346294;2022-02-02@17:28:26 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1610260;2521498;10085992;146;32.818846131;2022-02-02@17:29:04 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1597260;2516030;10064120;140;31.481242443;2022-02-02@17:29:40 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1585880;2521021;10084084;146;32.821031493;2022-02-02@17:30:18 +v2.0.8-191-g68d8716f;multi;1000;10000;;20198;7289;1692088;2543310;10173240;71;16.123901890;2022-02-02@17:30:42 +v2.0.8;multi;1000;10000;;20198;7289;1843460;462416;1849664;380;85.784607865;2022-02-02@17:45:42 +v2.0.8;multi;1000;10000;;20198;7289;1850944;464319;1857276;379;85.579503223;2022-02-02@17:47:17 +v2.0.8;multi;1000;10000;;20198;7289;1843876;462490;1849960;379;85.580077687;2022-02-02@17:48:53 +v2.0.8;multi;1000;10000;;20198;7289;1843360;462430;1849720;379;85.565668997;2022-02-02@17:50:29 +v2.0.8;multi;1000;10000;;20198;7289;1844668;462667;1850668;377;85.138994632;2022-02-02@17:52:05 +v2.0.8;multi;1000;10000;;20198;7289;1844332;462582;1850328;381;85.964141560;2022-02-02@17:53:41 +v2.0.8;multi;1000;10000;;20198;7289;1843340;462336;1849344;377;85.104851264;2022-02-02@17:55:16 +v2.0.8;multi;1000;10000;;20198;7289;1843688;462493;1849972;382;86.245226556;2022-02-02@17:56:53 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1627992;2523647;10094588;145;32.630990467;2022-02-02@17:57:38 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1518900;2523423;10093692;142;31.916369543;2022-02-02@17:58:15 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1589680;2516197;10064788;143;32.115406140;2022-02-02@17:58:53 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1603032;2523248;10092992;149;33.463930835;2022-02-02@17:59:31 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1482196;2516903;10067612;149;33.562284734;2022-02-02@18:00:10 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1575540;2516748;10066992;144;32.406810002;2022-02-02@18:00:48 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1625412;2523674;10094696;152;34.173149497;2022-02-02@18:01:27 +v2.0.8-169-ga840170e;multi;1000;10000;;20198;7289;1630680;2523724;10094896;148;33.246558336;2022-02-02@18:02:06 +v2.0.8-191-g68d8716f;multi;1000;10000;;20198;7289;1612280;2543692;10174768;68;15.516767793;2022-02-02@18:06:24 +v2.0.8-191-g68d8716f;multi;1000;10000;;20198;7289;1653388;2538169;10152676;97;22.204992100;2022-02-02@18:08:59 +v2.0.8-191-g68d8716f;multi;1000;10000;;20198;7289;1553264;2541272;10165088;66;14.963504759;2022-02-02@18:09:19 +v2.0.8;imex;1000;10000;;20198;7289;918600;231241;924964;259;58.526293659;2022-02-02@18:22:52 +v2.0.8;imex;1000;10000;;20198;7289;918876;231213;924852;343;77.752204003;2022-02-02@18:24:16 +v2.0.8;imex;1000;10000;;20198;7289;918492;231189;924756;266;60.169002238;2022-02-02@18:25:22 +v2.0.8;imex;1000;10000;;20198;7289;918888;231250;925000;345;78.174168712;2022-02-02@18:26:47 +v2.0.8;imex;1000;10000;;20198;7289;918900;231305;925220;257;58.137123733;2022-02-02@18:27:51 +v2.0.8;imex;1000;10000;;20198;7289;918292;231088;924352;347;78.644603392;2022-02-02@18:29:16 +v2.0.8;imex;1000;10000;;20198;7289;918828;231280;925120;259;58.518265503;2022-02-02@18:30:21 +v2.0.8;imex;1000;10000;;20198;7289;918644;231157;924628;342;77.476259405;2022-02-02@18:31:45 +v2.0.8-169-ga840170e;imex;1000;10000;;20198;7289;942008;267107;1068428;277;62.290351918;2022-02-02@18:32:55 +v2.0.8-169-ga840170e;imex;1000;10000;;20198;7289;938428;266238;1064952;261;58.601389193;2022-02-02@18:33:59 +v2.0.8-169-ga840170e;imex;1000;10000;;20198;7289;942736;267297;1069188;256;57.517160365;2022-02-02@18:35:01 +v2.0.8-169-ga840170e;imex;1000;10000;;20198;7289;967124;273421;1093684;247;55.539658141;2022-02-02@18:36:02 +v2.0.8-169-ga840170e;imex;1000;10000;;20198;7289;959296;271471;1085884;244;54.744832081;2022-02-02@18:37:04 +v2.0.8-169-ga840170e;imex;1000;10000;;20198;7289;950444;269168;1076672;245;54.997048778;2022-02-02@18:38:04 +v2.0.8-169-ga840170e;imex;1000;10000;;20198;7289;952416;269719;1078876;238;53.396354656;2022-02-02@18:39:10 +v2.0.8-169-ga840170e;imex;1000;10000;;20198;7289;950684;269213;1076852;249;55.886498041;2022-02-02@18:40:20 +v2.0.8-191-g68d8716f;imex;1000;10000;;20198;7289;1229516;2380248;9520992;39;8.849477868;2022-02-02@18:40:36 +v2.0.8-191-g68d8716f;imex;1000;10000;;20198;7289;1166328;2378259;9513036;36;8.160477720;2022-02-02@18:40:49 +v2.0.8-191-g68d8716f;imex;1000;10000;;20198;7289;1137688;2378939;9515756;36;8.173673686;2022-02-02@18:41:03 +v2.0.8-191-g68d8716f;imex;1000;10000;;20198;7289;1286048;2413111;9652444;41;9.418611016;2022-02-02@18:41:17 +v2.0.8-191-g68d8716f;imex;1000;10000;;20198;7289;1188564;2380741;9522964;49;11.154219052;2022-02-02@18:41:33 +v2.0.8-191-g68d8716f;imex;1000;10000;;20198;7289;1181600;2379385;9517540;43;9.831544546;2022-02-02@18:41:48 +v2.0.8-191-g68d8716f;imex;1000;10000;;20198;7289;1165704;2379113;9516452;46;10.359286424;2022-02-02@18:42:04 +v2.0.8-191-g68d8716f;imex;1000;10000;;20198;7289;1144084;2378342;9513368;48;10.856140332;2022-02-02@18:42:20 +v2.0.8;single;1000;10000;;20198;7289;43776;12410;49640;247;55.994247859;2022-02-02@18:55:46 +v2.0.8;single;1000;10000;;20198;7289;43648;12416;49664;245;55.550156851;2022-02-02@18:56:47 +v2.0.8;single;1000;10000;;20198;7289;43720;12388;49552;254;57.434214477;2022-02-02@18:57:49 +v2.0.8;single;1000;10000;;20198;7289;43128;12288;49152;250;56.710667003;2022-02-02@18:58:51 +v2.0.8;single;1000;10000;;20198;7289;43544;12453;49812;244;55.216580102;2022-02-02@18:59:51 +v2.0.8;single;1000;10000;;20198;7289;44020;12536;50144;251;56.787332144;2022-02-02@19:00:52 +v2.0.8;single;1000;10000;;20198;7289;44140;12544;50176;255;57.725415078;2022-02-02@19:01:55 +v2.0.8;single;1000;10000;;20198;7289;43264;12299;49196;248;56.105100371;2022-02-02@19:03:00 +v2.0.8-169-ga840170e;single;1000;10000;;20198;7289;46044;13089;52356;204;45.978549547;2022-02-02@19:03:53 +v2.0.8-169-ga840170e;single;1000;10000;;20198;7289;46028;13085;52340;201;45.277937293;2022-02-02@19:04:43 +v2.0.8-169-ga840170e;single;1000;10000;;20198;7289;42820;12241;48964;200;45.077595035;2022-02-02@19:05:33 +v2.0.8-169-ga840170e;single;1000;10000;;20198;7289;42648;12241;48964;203;45.743033047;2022-02-02@19:06:23 +v2.0.8-169-ga840170e;single;1000;10000;;20198;7289;42760;12246;48984;200;45.083305510;2022-02-02@19:07:13 +v2.0.8-169-ga840170e;single;1000;10000;;20198;7289;42716;12267;49068;200;45.136407887;2022-02-02@19:08:03 +v2.0.8-169-ga840170e;single;1000;10000;;20198;7289;42700;12238;48952;201;45.299410040;2022-02-02@19:08:53 +v2.0.8-169-ga840170e;single;1000;10000;;20198;7289;44044;12598;50392;206;46.473973896;2022-02-02@19:09:45 +v2.0.8-191-g68d8716f;single;1000;10000;;20198;7289;459124;2119075;8476300;50;11.724118662;2022-02-02@19:10:03 +v2.0.8-191-g68d8716f;single;1000;10000;;20198;7289;180564;2118151;8472604;34;7.909926062;2022-02-02@19:10:20 +v2.0.8-191-g68d8716f;single;1000;10000;;20198;7289;417388;2120731;8482924;38;8.733552667;2022-02-02@19:10:34 +v2.0.8-191-g68d8716f;single;1000;10000;;20198;7289;363320;2119850;8479400;57;12.946924478;2022-02-02@19:10:52 +v2.0.8-191-g68d8716f;single;1000;10000;;20198;7289;278540;2118588;8474352;113;26.059769770;2022-02-02@19:11:23 +v2.0.8-191-g68d8716f;single;1000;10000;;20198;7289;246504;2118661;8474644;102;23.561329241;2022-02-02@19:11:52 +v2.0.8-191-g68d8716f;single;1000;10000;;20198;7289;263576;2118704;8474816;54;12.555825441;2022-02-02@19:12:09 +v2.0.8-191-g68d8716f;single;1000;10000;;20198;7289;220484;2116832;8467328;71;16.439284499;2022-02-02@19:12:34 +v2.0.8;mulimex;1000;10000;;20198;7289;2711616;679490;2717960;389;87.851509232;2022-02-02@19:26:10 +v2.0.8;mulimex;1000;10000;;20198;7289;2710504;679224;2716896;396;89.521607717;2022-02-02@19:27:52 +v2.0.8;mulimex;1000;10000;;20198;7289;2715028;680241;2720964;386;87.244744526;2022-02-02@19:29:31 +v2.0.8;mulimex;1000;10000;;20198;7289;2711880;679523;2718092;387;87.539170004;2022-02-02@19:31:11 +v2.0.8;mulimex;1000;10000;;20198;7289;2712768;679742;2718968;400;90.444261172;2022-02-02@19:32:54 +v2.0.8;mulimex;1000;10000;;20198;7289;2710560;679180;2716720;398;89.803752427;2022-02-02@19:34:36 +v2.0.8;mulimex;1000;10000;;20198;7289;2711672;679460;2717840;386;87.187275054;2022-02-02@19:36:15 +v2.0.8;mulimex;1000;10000;;20198;7289;2711592;679398;2717592;394;89.032442627;2022-02-02@19:37:57 +v2.0.8-169-ga840170e;mulimex;1000;10000;;20198;7289;2479780;2772503;11090012;175;39.339667844;2022-02-02@19:38:51 +v2.0.8-169-ga840170e;mulimex;1000;10000;;20198;7289;2471832;2781643;11126572;189;42.543192806;2022-02-02@19:39:38 +v2.0.8-169-ga840170e;mulimex;1000;10000;;20198;7289;2512788;2781386;11125544;187;41.961281081;2022-02-02@19:40:26 +v2.0.8-169-ga840170e;mulimex;1000;10000;;20198;7289;2438388;2783094;11132376;194;43.588668140;2022-02-02@19:41:15 +v2.0.8-169-ga840170e;mulimex;1000;10000;;20198;7289;2499408;2775849;11103396;175;39.285009320;2022-02-02@19:42:00 +v2.0.8-169-ga840170e;mulimex;1000;10000;;20198;7289;2419224;2781780;11127120;181;40.621440667;2022-02-02@19:42:46 +v2.0.8-169-ga840170e;mulimex;1000;10000;;20198;7289;2508500;2782415;11129660;194;43.484794727;2022-02-02@19:43:34 +v2.0.8-169-ga840170e;mulimex;1000;10000;;20198;7289;2535668;2779466;11117864;188;42.257747500;2022-02-02@19:44:22 +v2.0.8-191-g68d8716f;mulimex;1000;10000;;20198;7289;2466780;2806621;11226484;84;18.901887754;2022-02-02@19:44:48 +v2.0.8-191-g68d8716f;mulimex;1000;10000;;20198;7289;2547520;2811975;11247900;113;25.470624914;2022-02-02@19:45:19 +v2.0.8-191-g68d8716f;mulimex;1000;10000;;20198;7289;2499896;2798680;11194720;81;18.122502604;2022-02-02@19:45:43 +v2.0.8-191-g68d8716f;mulimex;1000;10000;;20198;7289;2501992;2805419;11221676;96;21.458408316;2022-02-02@19:46:10 +v2.0.8-191-g68d8716f;mulimex;1000;10000;;20198;7289;2523880;2809246;11236984;92;20.631695788;2022-02-02@19:46:36 +v2.0.8-191-g68d8716f;mulimex;1000;10000;;20198;7289;2552108;2810792;11243168;83;18.690704479;2022-02-02@19:47:00 +v2.0.8-191-g68d8716f;mulimex;1000;10000;;20198;7289;2571904;2814192;11256768;99;22.208167519;2022-02-02@19:47:28 +v2.0.8-191-g68d8716f;mulimex;1000;10000;;20198;7289;2598396;2814103;11256412;77;17.280540594;2022-02-02@19:47:50 +v2.0.8;multi;10;31623;;54425;24231;92896;24760;99040;9;2.061135608;2022-02-02@19:52:54 +v2.0.8;multi;10;31623;;54425;24231;92992;24783;99132;10;2.281368313;2022-02-02@19:53:01 +v2.0.8;multi;10;31623;;54425;24231;92876;24785;99140;10;2.276555975;2022-02-02@19:53:08 +v2.0.8;multi;10;31623;;54425;24231;92708;24762;99048;10;2.279739676;2022-02-02@19:53:15 +v2.0.8;multi;10;31623;;54425;24231;93092;24803;99212;10;2.271190989;2022-02-02@19:53:22 +v2.0.8;multi;10;31623;;54425;24231;92952;24770;99080;10;2.305766289;2022-02-02@19:53:29 +v2.0.8;multi;10;31623;;54425;24231;92944;24778;99112;10;2.272949683;2022-02-02@19:53:36 +v2.0.8;multi;10;31623;;54425;24231;92948;24756;99024;10;2.279365827;2022-02-02@19:53:43 +v2.0.8-169-ga840170e;multi;10;31623;;54425;24231;76612;199494;797976;7;1.574790788;2022-02-02@19:53:52 +v2.0.8-169-ga840170e;multi;10;31623;;54425;24231;77336;199547;798188;6;1.363207013;2022-02-02@19:53:58 +v2.0.8-169-ga840170e;multi;10;31623;;54425;24231;76680;199454;797816;6;1.358123909;2022-02-02@19:54:04 +v2.0.8-169-ga840170e;multi;10;31623;;54425;24231;77012;199881;799524;5;1.117990270;2022-02-02@19:54:10 +v2.0.8-169-ga840170e;multi;10;31623;;54425;24231;76856;199437;797748;6;1.377519059;2022-02-02@19:54:16 +v2.0.8-169-ga840170e;multi;10;31623;;54425;24231;77728;199527;798108;5;1.124094229;2022-02-02@19:54:22 +v2.0.8-169-ga840170e;multi;10;31623;;54425;24231;76908;199490;797960;6;1.361653864;2022-02-02@19:54:28 +v2.0.8-169-ga840170e;multi;10;31623;;54425;24231;76908;199876;799504;6;1.360381447;2022-02-02@19:54:34 +v2.0.8-191-g68d8716f;multi;10;31623;;54425;24231;77500;378271;1513084;6;1.321139684;2022-02-02@19:54:43 +v2.0.8-191-g68d8716f;multi;10;31623;;54425;24231;76984;378180;1512720;5;1.139635741;2022-02-02@19:54:48 +v2.0.8-191-g68d8716f;multi;10;31623;;54425;24231;77468;378183;1512732;4;.890615812;2022-02-02@19:54:54 +v2.0.8-191-g68d8716f;multi;10;31623;;54425;24231;76752;378184;1512736;4;.887449038;2022-02-02@19:55:00 +v2.0.8-191-g68d8716f;multi;10;31623;;54425;24231;77188;378215;1512860;4;.888284681;2022-02-02@19:55:06 +v2.0.8-191-g68d8716f;multi;10;31623;;54425;24231;77364;378183;1512732;5;1.119217055;2022-02-02@19:55:11 +v2.0.8-191-g68d8716f;multi;10;31623;;54425;24231;77224;378204;1512816;4;.894053334;2022-02-02@19:55:17 +v2.0.8-191-g68d8716f;multi;10;31623;;54425;24231;75980;378189;1512756;4;.892353838;2022-02-02@19:55:23 +v2.0.8;imex;10;31623;;54425;24231;74984;20328;81312;8;1.793568500;2022-02-02@19:55:36 +v2.0.8;imex;10;31623;;54425;24231;75104;20301;81204;8;1.809987614;2022-02-02@19:55:43 +v2.0.8;imex;10;31623;;54425;24231;75208;20306;81224;8;1.820619754;2022-02-02@19:55:50 +v2.0.8;imex;10;31623;;54425;24231;75300;20331;81324;8;1.812107186;2022-02-02@19:55:56 +v2.0.8;imex;10;31623;;54425;24231;74984;20312;81248;8;1.811914240;2022-02-02@19:56:03 +v2.0.8;imex;10;31623;;54425;24231;75012;20344;81376;8;1.813298263;2022-02-02@19:56:10 +v2.0.8;imex;10;31623;;54425;24231;74916;20328;81312;8;1.828973653;2022-02-02@19:56:16 +v2.0.8;imex;10;31623;;54425;24231;75144;20327;81308;8;1.815619495;2022-02-02@19:56:23 +v2.0.8-169-ga840170e;imex;10;31623;;54425;24231;64104;17996;71984;13;2.958697569;2022-02-02@19:56:33 +v2.0.8-169-ga840170e;imex;10;31623;;54425;24231;64312;17990;71960;12;2.744167826;2022-02-02@19:56:40 +v2.0.8-169-ga840170e;imex;10;31623;;54425;24231;64248;18008;72032;12;2.744094633;2022-02-02@19:56:48 +v2.0.8-169-ga840170e;imex;10;31623;;54425;24231;64444;17983;71932;13;2.971843289;2022-02-02@19:56:56 +v2.0.8-169-ga840170e;imex;10;31623;;54425;24231;64104;17983;71932;13;2.978377168;2022-02-02@19:57:03 +v2.0.8-169-ga840170e;imex;10;31623;;54425;24231;64408;17971;71884;12;2.740160298;2022-02-02@19:57:11 +v2.0.8-169-ga840170e;imex;10;31623;;54425;24231;64236;17991;71964;12;2.740415015;2022-02-02@19:57:19 +v2.0.8-169-ga840170e;imex;10;31623;;54425;24231;64120;17984;71936;12;2.737853597;2022-02-02@19:57:26 +v2.0.8-191-g68d8716f;imex;10;31623;;54425;24231;65740;194933;779732;6;1.366722076;2022-02-02@19:57:34 +v2.0.8-191-g68d8716f;imex;10;31623;;54425;24231;65772;194691;778764;5;1.126984850;2022-02-02@19:57:40 +v2.0.8-191-g68d8716f;imex;10;31623;;54425;24231;65872;194676;778704;5;1.114196721;2022-02-02@19:57:46 +v2.0.8-191-g68d8716f;imex;10;31623;;54425;24231;65700;194855;779420;4;.896245824;2022-02-02@19:57:52 +v2.0.8-191-g68d8716f;imex;10;31623;;54425;24231;65820;194667;778668;4;.884916833;2022-02-02@19:57:58 +v2.0.8-191-g68d8716f;imex;10;31623;;54425;24231;66128;194675;778700;5;1.114432961;2022-02-02@19:58:04 +v2.0.8-191-g68d8716f;imex;10;31623;;54425;24231;65264;194728;778912;4;.881375103;2022-02-02@19:58:09 +v2.0.8-191-g68d8716f;imex;10;31623;;54425;24231;65136;194913;779652;5;1.100753297;2022-02-02@19:58:15 +v2.0.8;single;10;31623;;54425;24231;22700;7279;29116;6;1.371140093;2022-02-02@19:58:29 +v2.0.8;single;10;31623;;54425;24231;22892;7286;29144;7;1.596586117;2022-02-02@19:58:35 +v2.0.8;single;10;31623;;54425;24231;23072;7263;29052;7;1.597030488;2022-02-02@19:58:41 +v2.0.8;single;10;31623;;54425;24231;22784;7261;29044;8;1.811937844;2022-02-02@19:58:48 +v2.0.8;single;10;31623;;54425;24231;22960;7266;29064;7;1.578547748;2022-02-02@19:58:54 +v2.0.8;single;10;31623;;54425;24231;22856;7264;29056;7;1.583096662;2022-02-02@19:59:01 +v2.0.8;single;10;31623;;54425;24231;22720;7254;29016;7;1.584863592;2022-02-02@19:59:07 +v2.0.8;single;10;31623;;54425;24231;22964;7277;29108;7;1.583565953;2022-02-02@19:59:13 +v2.0.8-169-ga840170e;single;10;31623;;54425;24231;18252;6139;24556;8;1.794470355;2022-02-02@19:59:22 +v2.0.8-169-ga840170e;single;10;31623;;54425;24231;18416;6178;24712;7;1.589732994;2022-02-02@19:59:28 +v2.0.8-169-ga840170e;single;10;31623;;54425;24231;18388;6162;24648;7;1.582190172;2022-02-02@19:59:35 +v2.0.8-169-ga840170e;single;10;31623;;54425;24231;18436;6151;24604;7;1.587018099;2022-02-02@19:59:41 +v2.0.8-169-ga840170e;single;10;31623;;54425;24231;18376;6148;24592;7;1.575646700;2022-02-02@19:59:48 +v2.0.8-169-ga840170e;single;10;31623;;54425;24231;18520;6193;24772;7;1.588156849;2022-02-02@19:59:54 +v2.0.8-169-ga840170e;single;10;31623;;54425;24231;18492;6151;24604;7;1.583657796;2022-02-02@20:00:00 +v2.0.8-169-ga840170e;single;10;31623;;54425;24231;18380;6148;24592;7;1.580550469;2022-02-02@20:00:07 +v2.0.8-191-g68d8716f;single;10;31623;;54425;24231;18744;184863;739452;6;1.324379764;2022-02-02@20:00:15 +v2.0.8-191-g68d8716f;single;10;31623;;54425;24231;18788;184860;739440;4;.887870711;2022-02-02@20:00:21 +v2.0.8-191-g68d8716f;single;10;31623;;54425;24231;18800;184863;739452;4;.882343486;2022-02-02@20:00:26 +v2.0.8-191-g68d8716f;single;10;31623;;54425;24231;18476;184860;739440;4;.891660205;2022-02-02@20:00:32 +v2.0.8-191-g68d8716f;single;10;31623;;54425;24231;17968;184856;739424;5;1.111036262;2022-02-02@20:00:38 +v2.0.8-191-g68d8716f;single;10;31623;;54425;24231;18812;184871;739484;4;.902703536;2022-02-02@20:00:44 +v2.0.8-191-g68d8716f;single;10;31623;;54425;24231;18572;184870;739480;4;.892983304;2022-02-02@20:00:49 +v2.0.8-191-g68d8716f;single;10;31623;;54425;24231;18408;184862;739448;5;1.125872220;2022-02-02@20:00:55 +v2.0.8;mulimex;10;31623;;54425;24231;130480;34116;136464;10;2.263970858;2022-02-02@20:01:10 +v2.0.8;mulimex;10;31623;;54425;24231;130328;34141;136564;10;2.283210969;2022-02-02@20:01:17 +v2.0.8;mulimex;10;31623;;54425;24231;130516;34146;136584;11;2.514148666;2022-02-02@20:01:24 +v2.0.8;mulimex;10;31623;;54425;24231;130132;34136;136544;11;2.510524701;2022-02-02@20:01:31 +v2.0.8;mulimex;10;31623;;54425;24231;130376;34114;136456;10;2.284054662;2022-02-02@20:01:38 +v2.0.8;mulimex;10;31623;;54425;24231;130316;34112;136448;11;2.515189072;2022-02-02@20:01:46 +v2.0.8;mulimex;10;31623;;54425;24231;130468;34126;136504;11;2.512798855;2022-02-02@20:01:53 +v2.0.8;mulimex;10;31623;;54425;24231;130360;34115;136460;11;2.516084012;2022-02-02@20:02:01 +v2.0.8-169-ga840170e;mulimex;10;31623;;54425;24231;111272;208471;833884;15;3.442871186;2022-02-02@20:02:11 +v2.0.8-169-ga840170e;mulimex;10;31623;;54425;24231;111388;208588;834352;11;2.518306337;2022-02-02@20:02:18 +v2.0.8-169-ga840170e;mulimex;10;31623;;54425;24231;111288;208451;833804;11;2.524106172;2022-02-02@20:02:26 +v2.0.8-169-ga840170e;mulimex;10;31623;;54425;24231;111792;208586;834344;13;2.994332616;2022-02-02@20:02:33 +v2.0.8-169-ga840170e;mulimex;10;31623;;54425;24231;111780;208452;833808;10;2.286579462;2022-02-02@20:02:40 +v2.0.8-169-ga840170e;mulimex;10;31623;;54425;24231;111400;208481;833924;12;2.771033373;2022-02-02@20:02:48 +v2.0.8-169-ga840170e;mulimex;10;31623;;54425;24231;111280;208429;833716;12;2.770682628;2022-02-02@20:02:56 +v2.0.8-169-ga840170e;mulimex;10;31623;;54425;24231;111484;208494;833976;11;2.524751951;2022-02-02@20:03:03 +v2.0.8-191-g68d8716f;mulimex;10;31623;;54425;24231;112900;387062;1548248;6;1.335525077;2022-02-02@20:03:11 +v2.0.8-191-g68d8716f;mulimex;10;31623;;54425;24231;113664;387062;1548248;4;.884061714;2022-02-02@20:03:17 +v2.0.8-191-g68d8716f;mulimex;10;31623;;54425;24231;113448;387056;1548224;4;.906460210;2022-02-02@20:03:23 +v2.0.8-191-g68d8716f;mulimex;10;31623;;54425;24231;113636;387088;1548352;5;1.129243221;2022-02-02@20:03:29 +v2.0.8-191-g68d8716f;mulimex;10;31623;;54425;24231;113384;387053;1548212;4;.904309508;2022-02-02@20:03:34 +v2.0.8-191-g68d8716f;mulimex;10;31623;;54425;24231;112376;387035;1548140;4;.901388346;2022-02-02@20:03:40 +v2.0.8-191-g68d8716f;mulimex;10;31623;;54425;24231;113152;387057;1548228;4;.912528125;2022-02-02@20:03:46 +v2.0.8-191-g68d8716f;mulimex;10;31623;;54425;24231;113948;387114;1548456;4;.900704740;2022-02-02@20:03:52 +v2.0.8;multi;32;31623;;58800;24186;219368;56367;225468;30;6.885636761;2022-02-02@20:04:11 +v2.0.8;multi;32;31623;;58800;24186;219340;56375;225500;30;6.898206547;2022-02-02@20:04:23 +v2.0.8;multi;32;31623;;58800;24186;219380;56369;225476;30;6.920744328;2022-02-02@20:04:35 +v2.0.8;multi;32;31623;;58800;24186;219364;56356;225424;30;6.889681220;2022-02-02@20:04:47 +v2.0.8;multi;32;31623;;58800;24186;219380;56375;225500;30;6.901653424;2022-02-02@20:04:59 +v2.0.8;multi;32;31623;;58800;24186;219244;56366;225464;30;6.919975031;2022-02-02@20:05:11 +v2.0.8;multi;32;31623;;58800;24186;219212;56371;225484;30;6.903714320;2022-02-02@20:05:23 +v2.0.8;multi;32;31623;;58800;24186;219436;56362;225448;29;6.747508391;2022-02-02@20:05:35 +v2.0.8-169-ga840170e;multi;32;31623;;58800;24186;183604;586911;2347644;11;2.506963770;2022-02-02@20:05:44 +v2.0.8-169-ga840170e;multi;32;31623;;58800;24186;183920;586939;2347756;12;2.746657682;2022-02-02@20:05:52 +v2.0.8-169-ga840170e;multi;32;31623;;58800;24186;182864;588039;2352156;12;2.772625775;2022-02-02@20:05:59 +v2.0.8-169-ga840170e;multi;32;31623;;58800;24186;183024;586886;2347544;11;2.515912071;2022-02-02@20:06:07 +v2.0.8-169-ga840170e;multi;32;31623;;58800;24186;182828;587967;2351868;12;2.751033845;2022-02-02@20:06:14 +v2.0.8-169-ga840170e;multi;32;31623;;58800;24186;183592;588038;2352152;12;2.758063968;2022-02-02@20:06:22 +v2.0.8-169-ga840170e;multi;32;31623;;58800;24186;182556;588038;2352152;11;2.515176260;2022-02-02@20:06:29 +v2.0.8-169-ga840170e;multi;32;31623;;58800;24186;183428;588013;2352052;12;2.754864475;2022-02-02@20:06:37 +v2.0.8-191-g68d8716f;multi;32;31623;;58800;24186;187828;1126365;4505460;7;1.593869377;2022-02-02@20:06:45 +v2.0.8-191-g68d8716f;multi;32;31623;;58800;24186;184660;1126363;4505452;6;1.390524580;2022-02-02@20:06:52 +v2.0.8-191-g68d8716f;multi;32;31623;;58800;24186;187104;1126291;4505164;5;1.163656111;2022-02-02@20:06:58 +v2.0.8-191-g68d8716f;multi;32;31623;;58800;24186;184896;1126312;4505248;5;1.147200457;2022-02-02@20:07:04 +v2.0.8-191-g68d8716f;multi;32;31623;;58800;24186;184920;1126369;4505476;5;1.139531284;2022-02-02@20:07:10 +v2.0.8-191-g68d8716f;multi;32;31623;;58800;24186;186736;1126386;4505544;5;1.139013805;2022-02-02@20:07:16 +v2.0.8-191-g68d8716f;multi;32;31623;;58800;24186;189736;1126336;4505344;5;1.132032293;2022-02-02@20:07:21 +v2.0.8-191-g68d8716f;multi;32;31623;;58800;24186;199924;1126330;4505320;5;1.131235674;2022-02-02@20:07:27 +v2.0.8;imex;32;31623;;58800;24186;143556;37456;149824;20;4.597211749;2022-02-02@20:07:48 +v2.0.8;imex;32;31623;;58800;24186;143720;37450;149800;21;4.800847622;2022-02-02@20:07:57 +v2.0.8;imex;32;31623;;58800;24186;143644;37492;149968;20;4.591868286;2022-02-02@20:08:07 +v2.0.8;imex;32;31623;;58800;24186;143900;37475;149900;20;4.590178281;2022-02-02@20:08:16 +v2.0.8;imex;32;31623;;58800;24186;143568;37475;149900;21;4.804081227;2022-02-02@20:08:26 +v2.0.8;imex;32;31623;;58800;24186;143600;37444;149776;20;4.590194334;2022-02-02@20:08:36 +v2.0.8;imex;32;31623;;58800;24186;143856;37485;149940;21;4.807461635;2022-02-02@20:08:45 +v2.0.8;imex;32;31623;;58800;24186;143520;37449;149796;21;4.798587201;2022-02-02@20:08:55 +v2.0.8-169-ga840170e;imex;32;31623;;58800;24186;128820;34804;139216;25;5.709069932;2022-02-02@20:09:08 +v2.0.8-169-ga840170e;imex;32;31623;;58800;24186;128940;34762;139048;25;5.726877490;2022-02-02@20:09:18 +v2.0.8-169-ga840170e;imex;32;31623;;58800;24186;128600;34732;138928;25;5.735514486;2022-02-02@20:09:29 +v2.0.8-169-ga840170e;imex;32;31623;;58800;24186;128488;34749;138996;25;5.731999686;2022-02-02@20:09:39 +v2.0.8-169-ga840170e;imex;32;31623;;58800;24186;128644;34771;139084;25;5.734470483;2022-02-02@20:09:50 +v2.0.8-169-ga840170e;imex;32;31623;;58800;24186;128772;34763;139052;25;5.727734651;2022-02-02@20:10:00 +v2.0.8-169-ga840170e;imex;32;31623;;58800;24186;129204;34824;139296;25;5.736937580;2022-02-02@20:10:11 +v2.0.8-169-ga840170e;imex;32;31623;;58800;24186;128524;34749;138996;24;5.499779076;2022-02-02@20:10:21 +v2.0.8-191-g68d8716f;imex;32;31623;;58800;24186;134728;571828;2287312;7;1.587289961;2022-02-02@20:10:30 +v2.0.8-191-g68d8716f;imex;32;31623;;58800;24186;134592;571693;2286772;5;1.130302449;2022-02-02@20:10:36 +v2.0.8-191-g68d8716f;imex;32;31623;;58800;24186;136892;571807;2287228;6;1.377142597;2022-02-02@20:10:42 +v2.0.8-191-g68d8716f;imex;32;31623;;58800;24186;134504;572051;2288204;7;1.581604491;2022-02-02@20:10:48 +v2.0.8-191-g68d8716f;imex;32;31623;;58800;24186;134768;571807;2287228;6;1.350384544;2022-02-02@20:10:54 +v2.0.8-191-g68d8716f;imex;32;31623;;58800;24186;135124;572203;2288812;7;1.582746205;2022-02-02@20:11:01 +v2.0.8-191-g68d8716f;imex;32;31623;;58800;24186;133876;571620;2286480;6;1.354121385;2022-02-02@20:11:07 +v2.0.8-191-g68d8716f;imex;32;31623;;58800;24186;134652;571640;2286560;5;1.124964768;2022-02-02@20:11:13 +v2.0.8;single;32;31623;;58800;24186;26340;8108;32432;19;4.347082601;2022-02-02@20:11:33 +v2.0.8;single;32;31623;;58800;24186;26112;8102;32408;19;4.390840325;2022-02-02@20:11:42 +v2.0.8;single;32;31623;;58800;24186;26024;8105;32420;19;4.353837574;2022-02-02@20:11:51 +v2.0.8;single;32;31623;;58800;24186;26456;8106;32424;19;4.371704027;2022-02-02@20:12:00 +v2.0.8;single;32;31623;;58800;24186;26304;8097;32388;20;4.585657323;2022-02-02@20:12:10 +v2.0.8;single;32;31623;;58800;24186;26364;8098;32392;19;4.364567904;2022-02-02@20:12:19 +v2.0.8;single;32;31623;;58800;24186;26196;8116;32464;19;4.351285742;2022-02-02@20:12:28 +v2.0.8;single;32;31623;;58800;24186;26028;8113;32452;19;4.335927422;2022-02-02@20:12:37 +v2.0.8-169-ga840170e;single;32;31623;;58800;24186;21180;6809;27236;18;4.138554191;2022-02-02@20:12:48 +v2.0.8-169-ga840170e;single;32;31623;;58800;24186;21116;6826;27304;19;4.350710800;2022-02-02@20:12:57 +v2.0.8-169-ga840170e;single;32;31623;;58800;24186;21164;6833;27332;19;4.363152968;2022-02-02@20:13:07 +v2.0.8-169-ga840170e;single;32;31623;;58800;24186;21116;6807;27228;18;4.106176339;2022-02-02@20:13:16 +v2.0.8-169-ga840170e;single;32;31623;;58800;24186;21036;6821;27284;18;4.108272955;2022-02-02@20:13:24 +v2.0.8-169-ga840170e;single;32;31623;;58800;24186;21128;6814;27256;19;4.349887495;2022-02-02@20:13:34 +v2.0.8-169-ga840170e;single;32;31623;;58800;24186;21116;6826;27304;19;4.375268837;2022-02-02@20:13:43 +v2.0.8-169-ga840170e;single;32;31623;;58800;24186;21072;6825;27300;18;4.113858814;2022-02-02@20:13:52 +v2.0.8-191-g68d8716f;single;32;31623;;58800;24186;22488;546116;2184464;7;1.570694207;2022-02-02@20:14:00 +v2.0.8-191-g68d8716f;single;32;31623;;58800;24186;22156;546149;2184596;6;1.417918051;2022-02-02@20:14:06 +v2.0.8-191-g68d8716f;single;32;31623;;58800;24186;22388;546135;2184540;5;1.143425094;2022-02-02@20:14:12 +v2.0.8-191-g68d8716f;single;32;31623;;58800;24186;20652;546130;2184520;6;1.379597491;2022-02-02@20:14:18 +v2.0.8-191-g68d8716f;single;32;31623;;58800;24186;21644;546141;2184564;6;1.364964908;2022-02-02@20:14:25 +v2.0.8-191-g68d8716f;single;32;31623;;58800;24186;21892;546128;2184512;7;1.566992279;2022-02-02@20:14:31 +v2.0.8-191-g68d8716f;single;32;31623;;58800;24186;22284;546148;2184592;7;1.565422272;2022-02-02@20:14:37 +v2.0.8-191-g68d8716f;single;32;31623;;58800;24186;21956;546119;2184476;6;1.324000717;2022-02-02@20:14:43 +v2.0.8;mulimex;32;31623;;58800;24186;319956;81515;326060;31;7.128546212;2022-02-02@20:15:06 +v2.0.8;mulimex;32;31623;;58800;24186;319656;81465;325860;31;7.123276328;2022-02-02@20:15:18 +v2.0.8;mulimex;32;31623;;58800;24186;319880;81501;326004;31;7.161056442;2022-02-02@20:15:31 +v2.0.8;mulimex;32;31623;;58800;24186;319736;81520;326080;31;7.139200376;2022-02-02@20:15:43 +v2.0.8;mulimex;32;31623;;58800;24186;320080;81509;326036;32;7.356374620;2022-02-02@20:15:56 +v2.0.8;mulimex;32;31623;;58800;24186;319984;81508;326032;31;7.104872234;2022-02-02@20:16:08 +v2.0.8;mulimex;32;31623;;58800;24186;319904;81497;325988;31;7.121769180;2022-02-02@20:16:21 +v2.0.8;mulimex;32;31623;;58800;24186;319948;81515;326060;32;7.353782542;2022-02-02@20:16:33 +v2.0.8-169-ga840170e;mulimex;32;31623;;58800;24186;278004;611570;2446280;17;3.895777487;2022-02-02@20:16:45 +v2.0.8-169-ga840170e;mulimex;32;31623;;58800;24186;277972;611765;2447060;17;3.908159126;2022-02-02@20:16:53 +v2.0.8-169-ga840170e;mulimex;32;31623;;58800;24186;277940;611822;2447288;17;3.908633757;2022-02-02@20:17:02 +v2.0.8-169-ga840170e;mulimex;32;31623;;58800;24186;277916;612767;2451068;17;3.920093526;2022-02-02@20:17:11 +v2.0.8-169-ga840170e;mulimex;32;31623;;58800;24186;278960;611703;2446812;18;4.136890610;2022-02-02@20:17:20 +v2.0.8-169-ga840170e;mulimex;32;31623;;58800;24186;279468;611945;2447780;17;3.907086532;2022-02-02@20:17:28 +v2.0.8-169-ga840170e;mulimex;32;31623;;58800;24186;278380;612745;2450980;17;3.896484215;2022-02-02@20:17:37 +v2.0.8-169-ga840170e;mulimex;32;31623;;58800;24186;279516;611801;2447204;17;3.919517999;2022-02-02@20:17:46 +v2.0.8-191-g68d8716f;mulimex;32;31623;;58800;24186;282868;1150832;4603328;8;1.819519212;2022-02-02@20:17:55 +v2.0.8-191-g68d8716f;mulimex;32;31623;;58800;24186;283316;1150773;4603092;6;1.376890918;2022-02-02@20:18:01 +v2.0.8-191-g68d8716f;mulimex;32;31623;;58800;24186;284940;1150908;4603632;6;1.374635250;2022-02-02@20:18:07 +v2.0.8-191-g68d8716f;mulimex;32;31623;;58800;24186;287560;1150845;4603380;6;1.378710769;2022-02-02@20:18:13 +v2.0.8-191-g68d8716f;mulimex;32;31623;;58800;24186;283720;1150599;4602396;6;1.390721252;2022-02-02@20:18:20 +v2.0.8-191-g68d8716f;mulimex;32;31623;;58800;24186;283852;1150756;4603024;6;1.366153197;2022-02-02@20:18:26 +v2.0.8-191-g68d8716f;mulimex;32;31623;;58800;24186;285980;1150687;4602748;6;1.369095500;2022-02-02@20:18:32 +v2.0.8-191-g68d8716f;mulimex;32;31623;;58800;24186;284872;1150641;4602564;6;1.375042829;2022-02-02@20:18:38 +v2.0.8;multi;100;31623;;60390;24233;609772;154042;616168;106;24.403749624;2022-02-02@20:19:21 +v2.0.8;multi;100;31623;;60390;24233;599576;151502;606008;103;23.602692608;2022-02-02@20:19:51 +v2.0.8;multi;100;31623;;60390;24233;599396;151404;605616;100;23.043384193;2022-02-02@20:20:20 +v2.0.8;multi;100;31623;;60390;24233;617564;155960;623840;111;25.479996554;2022-02-02@20:20:51 +v2.0.8;multi;100;31623;;60390;24233;606516;153108;612432;107;24.662684893;2022-02-02@20:21:21 +v2.0.8;multi;100;31623;;60390;24233;599540;151445;605780;103;23.767208910;2022-02-02@20:21:51 +v2.0.8;multi;100;31623;;60390;24233;599652;151423;605692;100;22.985136797;2022-02-02@20:22:20 +v2.0.8;multi;100;31623;;60390;24233;609384;153858;615432;106;24.245110006;2022-02-02@20:22:50 +v2.0.8-169-ga840170e;multi;100;31623;;60390;24233;510416;1783869;7135476;37;8.521332192;2022-02-02@20:23:06 +v2.0.8-169-ga840170e;multi;100;31623;;60390;24233;510268;1783458;7133832;36;8.287241595;2022-02-02@20:23:19 +v2.0.8-169-ga840170e;multi;100;31623;;60390;24233;511452;1786942;7147768;37;8.538776257;2022-02-02@20:23:33 +v2.0.8-169-ga840170e;multi;100;31623;;60390;24233;510116;1786810;7147240;35;8.103943459;2022-02-02@20:23:46 +v2.0.8-169-ga840170e;multi;100;31623;;60390;24233;510468;1783372;7133488;36;8.311868790;2022-02-02@20:23:59 +v2.0.8-169-ga840170e;multi;100;31623;;60390;24233;511060;1783471;7133884;36;8.345806458;2022-02-02@20:24:12 +v2.0.8-169-ga840170e;multi;100;31623;;60390;24233;510760;1783361;7133444;36;8.281915512;2022-02-02@20:24:25 +v2.0.8-169-ga840170e;multi;100;31623;;60390;24233;510956;1783407;7133628;36;8.288528196;2022-02-02@20:24:38 +v2.0.8-191-g68d8716f;multi;100;31623;;60390;24233;554216;2209520;8838080;15;3.451486188;2022-02-02@20:24:48 +v2.0.8-191-g68d8716f;multi;100;31623;;60390;24233;558836;2209439;8837756;14;3.213895138;2022-02-02@20:24:56 +v2.0.8-191-g68d8716f;multi;100;31623;;60390;24233;580304;2209498;8837992;14;3.222141351;2022-02-02@20:25:05 +v2.0.8-191-g68d8716f;multi;100;31623;;60390;24233;578248;2209491;8837964;14;3.219908986;2022-02-02@20:25:13 +v2.0.8-191-g68d8716f;multi;100;31623;;60390;24233;573236;2209739;8838956;14;3.245140384;2022-02-02@20:25:21 +v2.0.8-191-g68d8716f;multi;100;31623;;60390;24233;570364;2209481;8837924;14;3.218710894;2022-02-02@20:25:29 +v2.0.8-191-g68d8716f;multi;100;31623;;60390;24233;572240;2210064;8840256;14;3.232105362;2022-02-02@20:25:37 +v2.0.8-191-g68d8716f;multi;100;31623;;60390;24233;560344;2209488;8837952;14;3.192630364;2022-02-02@20:25:45 +v2.0.8;imex;100;31623;;60390;24233;343240;87364;349456;62;14.373490899;2022-02-02@20:26:34 +v2.0.8;imex;100;31623;;60390;24233;343500;87414;349656;63;14.466659803;2022-02-02@20:26:53 +v2.0.8;imex;100;31623;;60390;24233;343628;87402;349608;62;14.215860802;2022-02-02@20:27:13 +v2.0.8;imex;100;31623;;60390;24233;343532;87387;349548;63;14.437585063;2022-02-02@20:27:32 +v2.0.8;imex;100;31623;;60390;24233;343392;87389;349556;63;14.450131995;2022-02-02@20:27:52 +v2.0.8;imex;100;31623;;60390;24233;343604;87408;349632;63;14.442537601;2022-02-02@20:28:12 +v2.0.8;imex;100;31623;;60390;24233;343452;87408;349632;63;14.497646853;2022-02-02@20:28:31 +v2.0.8;imex;100;31623;;60390;24233;343444;87412;349648;62;14.340834752;2022-02-02@20:28:51 +v2.0.8-169-ga840170e;imex;100;31623;;60390;24233;319284;84479;337916;66;15.158155017;2022-02-02@20:29:13 +v2.0.8-169-ga840170e;imex;100;31623;;60390;24233;319104;84394;337576;66;15.146457949;2022-02-02@20:29:33 +v2.0.8-169-ga840170e;imex;100;31623;;60390;24233;319712;84609;338436;67;15.421973968;2022-02-02@20:29:53 +v2.0.8-169-ga840170e;imex;100;31623;;60390;24233;319144;84411;337644;66;15.171973366;2022-02-02@20:30:13 +v2.0.8-169-ga840170e;imex;100;31623;;60390;24233;319252;84425;337700;67;15.392000200;2022-02-02@20:30:34 +v2.0.8-169-ga840170e;imex;100;31623;;60390;24233;319472;84490;337960;66;15.142010833;2022-02-02@20:30:53 +v2.0.8-169-ga840170e;imex;100;31623;;60390;24233;319528;84517;338068;65;14.957823368;2022-02-02@20:31:13 +v2.0.8-169-ga840170e;imex;100;31623;;60390;24233;319248;84434;337736;68;15.610104439;2022-02-02@20:31:34 +v2.0.8-191-g68d8716f;imex;100;31623;;60390;24233;342480;1735591;6942364;12;2.753912946;2022-02-02@20:31:43 +v2.0.8-191-g68d8716f;imex;100;31623;;60390;24233;345536;1736833;6947332;10;2.304458569;2022-02-02@20:31:51 +v2.0.8-191-g68d8716f;imex;100;31623;;60390;24233;340200;1737696;6950784;10;2.261198996;2022-02-02@20:31:58 +v2.0.8-191-g68d8716f;imex;100;31623;;60390;24233;342544;1737195;6948780;10;2.285360797;2022-02-02@20:32:05 +v2.0.8-191-g68d8716f;imex;100;31623;;60390;24233;341972;1735643;6942572;10;2.327064056;2022-02-02@20:32:12 +v2.0.8-191-g68d8716f;imex;100;31623;;60390;24233;344468;1737520;6950080;11;2.554786328;2022-02-02@20:32:19 +v2.0.8-191-g68d8716f;imex;100;31623;;60390;24233;342096;1735691;6942764;10;2.340935971;2022-02-02@20:32:27 +v2.0.8-191-g68d8716f;imex;100;31623;;60390;24233;345176;1737651;6950604;10;2.272069748;2022-02-02@20:32:34 +v2.0.8;single;100;31623;;60390;24233;31076;9315;37260;57;13.196041577;2022-02-02@20:33:21 +v2.0.8;single;100;31623;;60390;24233;31204;9310;37240;57;13.073802136;2022-02-02@20:33:39 +v2.0.8;single;100;31623;;60390;24233;31100;9265;37060;58;13.304486526;2022-02-02@20:33:57 +v2.0.8;single;100;31623;;60390;24233;31332;9336;37344;58;13.381902493;2022-02-02@20:34:15 +v2.0.8;single;100;31623;;60390;24233;31116;9317;37268;58;13.327016466;2022-02-02@20:34:34 +v2.0.8;single;100;31623;;60390;24233;31044;9289;37156;57;13.072699575;2022-02-02@20:34:51 +v2.0.8;single;100;31623;;60390;24233;30884;9304;37216;57;13.084164379;2022-02-02@20:35:09 +v2.0.8;single;100;31623;;60390;24233;31016;9290;37160;59;13.528666585;2022-02-02@20:35:28 +v2.0.8-169-ga840170e;single;100;31623;;60390;24233;25004;7778;31112;53;12.275608428;2022-02-02@20:35:47 +v2.0.8-169-ga840170e;single;100;31623;;60390;24233;24872;7786;31144;55;12.667801365;2022-02-02@20:36:04 +v2.0.8-169-ga840170e;single;100;31623;;60390;24233;24876;7808;31232;54;12.437475344;2022-02-02@20:36:22 +v2.0.8-169-ga840170e;single;100;31623;;60390;24233;24928;7818;31272;55;12.719042482;2022-02-02@20:36:39 +v2.0.8-169-ga840170e;single;100;31623;;60390;24233;24768;7785;31140;54;12.437589859;2022-02-02@20:36:56 +v2.0.8-169-ga840170e;single;100;31623;;60390;24233;24784;7789;31156;53;12.206095233;2022-02-02@20:37:13 +v2.0.8-169-ga840170e;single;100;31623;;60390;24233;24900;7781;31124;55;12.670752311;2022-02-02@20:37:31 +v2.0.8-169-ga840170e;single;100;31623;;60390;24233;24928;7802;31208;56;12.870220856;2022-02-02@20:37:48 +v2.0.8-191-g68d8716f;single;100;31623;;60390;24233;57032;1662861;6651444;11;2.492611619;2022-02-02@20:37:58 +v2.0.8-191-g68d8716f;single;100;31623;;60390;24233;47504;1662801;6651204;10;2.269025127;2022-02-02@20:38:05 +v2.0.8-191-g68d8716f;single;100;31623;;60390;24233;60072;1662896;6651584;9;2.054864106;2022-02-02@20:38:12 +v2.0.8-191-g68d8716f;single;100;31623;;60390;24233;53748;1662827;6651308;10;2.264594583;2022-02-02@20:38:19 +v2.0.8-191-g68d8716f;single;100;31623;;60390;24233;42696;1662738;6650952;10;2.264983192;2022-02-02@20:38:26 +v2.0.8-191-g68d8716f;single;100;31623;;60390;24233;49188;1662803;6651212;9;2.041539185;2022-02-02@20:38:33 +v2.0.8-191-g68d8716f;single;100;31623;;60390;24233;53220;1662839;6651356;10;2.282280543;2022-02-02@20:38:40 +v2.0.8-191-g68d8716f;single;100;31623;;60390;24233;73856;1662921;6651684;10;2.275693343;2022-02-02@20:38:47 +v2.0.8;mulimex;100;31623;;60390;24233;893868;225017;900068;106;24.351250034;2022-02-02@20:39:46 +v2.0.8;mulimex;100;31623;;60390;24233;893972;225027;900108;107;24.579589101;2022-02-02@20:40:17 +v2.0.8;mulimex;100;31623;;60390;24233;905980;228026;912104;106;24.331246341;2022-02-02@20:40:48 +v2.0.8;mulimex;100;31623;;60390;24233;912620;229739;918956;108;24.825167645;2022-02-02@20:41:19 +v2.0.8;mulimex;100;31623;;60390;24233;894172;225065;900260;105;24.131678640;2022-02-02@20:41:50 +v2.0.8;mulimex;100;31623;;60390;24233;896372;225648;902592;105;24.187256143;2022-02-02@20:42:21 +v2.0.8;mulimex;100;31623;;60390;24233;913184;229877;919508;106;24.413003245;2022-02-02@20:42:52 +v2.0.8;mulimex;100;31623;;60390;24233;893864;225026;900104;104;24.052328066;2022-02-02@20:43:22 +v2.0.8-169-ga840170e;mulimex;100;31623;;60390;24233;790552;1856693;7426772;47;10.867123643;2022-02-02@20:43:42 +v2.0.8-169-ga840170e;mulimex;100;31623;;60390;24233;794128;1856617;7426468;47;10.828357246;2022-02-02@20:43:58 +v2.0.8-169-ga840170e;mulimex;100;31623;;60390;24233;791332;1856626;7426504;49;11.323127520;2022-02-02@20:44:14 +v2.0.8-169-ga840170e;mulimex;100;31623;;60390;24233;790848;1856584;7426336;47;10.830449566;2022-02-02@20:44:29 +v2.0.8-169-ga840170e;mulimex;100;31623;;60390;24233;794084;1857098;7428392;48;11.055144634;2022-02-02@20:44:45 +v2.0.8-169-ga840170e;mulimex;100;31623;;60390;24233;791496;1856599;7426396;48;11.115870635;2022-02-02@20:45:01 +v2.0.8-169-ga840170e;mulimex;100;31623;;60390;24233;790940;1860063;7440252;48;11.096586121;2022-02-02@20:45:17 +v2.0.8-169-ga840170e;mulimex;100;31623;;60390;24233;789836;1856695;7426780;49;11.271300841;2022-02-02@20:45:33 +v2.0.8-191-g68d8716f;mulimex;100;31623;;60390;24233;836220;2281855;9127420;18;4.152594171;2022-02-02@20:45:44 +v2.0.8-191-g68d8716f;mulimex;100;31623;;60390;24233;833424;2282037;9128148;19;4.358091221;2022-02-02@20:45:54 +v2.0.8-191-g68d8716f;mulimex;100;31623;;60390;24233;825436;2281321;9125284;16;3.686258530;2022-02-02@20:46:02 +v2.0.8-191-g68d8716f;mulimex;100;31623;;60390;24233;828220;2281841;9127364;16;3.661010565;2022-02-02@20:46:11 +v2.0.8-191-g68d8716f;mulimex;100;31623;;60390;24233;818992;2281632;9126528;17;3.947767346;2022-02-02@20:46:19 +v2.0.8-191-g68d8716f;mulimex;100;31623;;60390;24233;830152;2281628;9126512;16;3.705973347;2022-02-02@20:46:28 +v2.0.8-191-g68d8716f;mulimex;100;31623;;60390;24233;823836;2281340;9125360;16;3.734540217;2022-02-02@20:46:37 +v2.0.8-191-g68d8716f;mulimex;100;31623;;60390;24233;830364;2282082;9128328;16;3.732490512;2022-02-02@20:46:45 +v2.0.8;multi;316;31623;;61364;24592;1816280;455598;1822392;332;77.436715317;2022-02-02@20:49:19 +v2.0.8;multi;316;31623;;61364;24592;1815216;455312;1821248;322;75.081119072;2022-02-02@20:50:43 +v2.0.8;multi;316;31623;;61364;24592;1815684;455524;1822096;326;76.158121754;2022-02-02@20:52:09 +v2.0.8;multi;316;31623;;61364;24592;1816004;455531;1822124;332;77.355584290;2022-02-02@20:53:36 +v2.0.8;multi;316;31623;;61364;24592;1815608;455388;1821552;330;76.769393421;2022-02-02@20:55:03 +v2.0.8;multi;316;31623;;61364;24592;1816080;455532;1822128;338;78.723329865;2022-02-02@20:56:31 +v2.0.8;multi;316;31623;;61364;24592;1815184;455300;1821200;338;78.735088217;2022-02-02@20:57:59 +v2.0.8;multi;316;31623;;61364;24592;1815396;455369;1821476;331;77.115575895;2022-02-02@20:59:26 +v2.0.8-169-ga840170e;multi;316;31623;;61364;24592;1556580;2473658;9894632;109;25.511644772;2022-02-02@21:00:04 +v2.0.8-169-ga840170e;multi;316;31623;;61364;24592;1555712;2473990;9895960;112;26.091256282;2022-02-02@21:00:35 +v2.0.8-169-ga840170e;multi;316;31623;;61364;24592;1548924;2481942;9927768;115;26.733370377;2022-02-02@21:01:07 +v2.0.8-169-ga840170e;multi;316;31623;;61364;24592;1556436;2484036;9936144;107;24.894919247;2022-02-02@21:01:37 +v2.0.8-169-ga840170e;multi;316;31623;;61364;24592;1556400;2473750;9895000;111;25.797810912;2022-02-02@21:02:08 +v2.0.8-169-ga840170e;multi;316;31623;;61364;24592;1555548;2473474;9893896;116;26.935629707;2022-02-02@21:02:40 +v2.0.8-169-ga840170e;multi;316;31623;;61364;24592;1554536;2473497;9893988;109;25.380262714;2022-02-02@21:03:11 +v2.0.8-169-ga840170e;multi;316;31623;;61364;24592;1557064;2473370;9893480;108;25.157586964;2022-02-02@21:03:41 +v2.0.8-191-g68d8716f;multi;316;31623;;61364;24592;1608404;2479793;9919172;44;10.215476372;2022-02-02@21:03:58 +v2.0.8-191-g68d8716f;multi;316;31623;;61364;24592;1608452;2481788;9927152;43;10.012273462;2022-02-02@21:04:14 +v2.0.8-191-g68d8716f;multi;316;31623;;61364;24592;1605776;2481569;9926276;44;10.311323765;2022-02-02@21:04:29 +v2.0.8-191-g68d8716f;multi;316;31623;;61364;24592;1621848;2482295;9929180;43;9.948007871;2022-02-02@21:04:44 +v2.0.8-191-g68d8716f;multi;316;31623;;61364;24592;1616236;2481117;9924468;44;10.251145553;2022-02-02@21:04:59 +v2.0.8-191-g68d8716f;multi;316;31623;;61364;24592;1615248;2481870;9927480;44;10.264449314;2022-02-02@21:05:15 +v2.0.8-191-g68d8716f;multi;316;31623;;61364;24592;1622368;2482145;9928580;45;10.479320573;2022-02-02@21:05:30 +v2.0.8-191-g68d8716f;multi;316;31623;;61364;24592;1633092;2486876;9947504;46;10.816874025;2022-02-02@21:05:46 +v2.0.8;imex;316;31623;;61364;24592;982468;247158;988632;225;52.145060203;2022-02-02@21:08:53 +v2.0.8;imex;316;31623;;61364;24592;981304;246922;987688;222;51.557928112;2022-02-02@21:09:51 +v2.0.8;imex;316;31623;;61364;24592;981524;246909;987636;222;51.408518461;2022-02-02@21:10:49 +v2.0.8;imex;316;31623;;61364;24592;981212;246872;987488;222;51.519757421;2022-02-02@21:11:47 +v2.0.8;imex;316;31623;;61364;24592;981932;247054;988216;222;51.470307221;2022-02-02@21:12:45 +v2.0.8;imex;316;31623;;61364;24592;981500;246919;987676;223;51.764474434;2022-02-02@21:13:43 +v2.0.8;imex;316;31623;;61364;24592;982372;247126;988504;221;51.190135520;2022-02-02@21:14:41 +v2.0.8;imex;316;31623;;61364;24592;982144;247088;988352;223;51.626732127;2022-02-02@21:15:39 +v2.0.8-169-ga840170e;imex;316;31623;;61364;24592;928124;243144;972576;205;47.345308268;2022-02-02@21:16:35 +v2.0.8-169-ga840170e;imex;316;31623;;61364;24592;931488;243934;975736;201;46.577522276;2022-02-02@21:17:26 +v2.0.8-169-ga840170e;imex;316;31623;;61364;24592;930128;243660;974640;206;47.574034068;2022-02-02@21:18:19 +v2.0.8-169-ga840170e;imex;316;31623;;61364;24592;933008;244392;977568;202;46.673453141;2022-02-02@21:19:10 +v2.0.8-169-ga840170e;imex;316;31623;;61364;24592;936116;245149;980596;211;48.719153880;2022-02-02@21:20:04 +v2.0.8-169-ga840170e;imex;316;31623;;61364;24592;931544;243990;975960;206;47.572895613;2022-02-02@21:20:56 +v2.0.8-169-ga840170e;imex;316;31623;;61364;24592;931520;243896;975584;206;47.447554575;2022-02-02@21:21:48 +v2.0.8-169-ga840170e;imex;316;31623;;61364;24592;929352;243445;973780;204;47.139843739;2022-02-02@21:22:40 +v2.0.8-191-g68d8716f;imex;316;31623;;61364;24592;1026812;2322916;9291664;29;6.652073460;2022-02-02@21:22:54 +v2.0.8-191-g68d8716f;imex;316;31623;;61364;24592;1027720;2325004;9300016;32;7.358777220;2022-02-02@21:23:06 +v2.0.8-191-g68d8716f;imex;316;31623;;61364;24592;1015224;2321519;9286076;29;6.600663091;2022-02-02@21:23:18 +v2.0.8-191-g68d8716f;imex;316;31623;;61364;24592;1032756;2324245;9296980;32;7.360553459;2022-02-02@21:23:30 +v2.0.8-191-g68d8716f;imex;316;31623;;61364;24592;1012624;2322745;9290980;31;7.059120867;2022-02-02@21:23:42 +v2.0.8-191-g68d8716f;imex;316;31623;;61364;24592;1007304;2322964;9291856;36;8.190926862;2022-02-02@21:23:55 +v2.0.8-191-g68d8716f;imex;316;31623;;61364;24592;1029756;2323708;9294832;30;6.857123354;2022-02-02@21:24:07 +v2.0.8-191-g68d8716f;imex;316;31623;;61364;24592;1016208;2324010;9296040;33;7.551347495;2022-02-02@21:24:20 +v2.0.8;single;316;31623;;61364;24592;41092;11800;47200;223;51.599431493;2022-02-02@21:27:25 +v2.0.8;single;316;31623;;61364;24592;41544;11883;47532;215;49.846132343;2022-02-02@21:28:19 +v2.0.8;single;316;31623;;61364;24592;40984;11772;47088;219;50.752624784;2022-02-02@21:29:15 +v2.0.8;single;316;31623;;61364;24592;41416;11869;47476;216;50.180805105;2022-02-02@21:30:10 +v2.0.8;single;316;31623;;61364;24592;40636;11616;46464;221;51.179113519;2022-02-02@21:31:06 +v2.0.8;single;316;31623;;61364;24592;40700;11638;46552;217;50.238548418;2022-02-02@21:32:01 +v2.0.8;single;316;31623;;61364;24592;41016;11776;47104;219;50.730275804;2022-02-02@21:32:56 +v2.0.8;single;316;31623;;61364;24592;41180;11841;47364;220;50.999142102;2022-02-02@21:33:52 +v2.0.8-169-ga840170e;single;316;31623;;61364;24592;35132;10354;41416;170;39.342137595;2022-02-02@21:34:39 +v2.0.8-169-ga840170e;single;316;31623;;61364;24592;34908;10340;41360;166;38.376001452;2022-02-02@21:35:22 +v2.0.8-169-ga840170e;single;316;31623;;61364;24592;35080;10400;41600;166;38.405387324;2022-02-02@21:36:05 +v2.0.8-169-ga840170e;single;316;31623;;61364;24592;35016;10347;41388;167;38.616029254;2022-02-02@21:36:48 +v2.0.8-169-ga840170e;single;316;31623;;61364;24592;34936;10366;41464;164;37.971476233;2022-02-02@21:37:31 +v2.0.8-169-ga840170e;single;316;31623;;61364;24592;35120;10335;41340;167;38.636480683;2022-02-02@21:38:15 +v2.0.8-169-ga840170e;single;316;31623;;61364;24592;34892;10350;41400;170;39.358453466;2022-02-02@21:38:59 +v2.0.8-169-ga840170e;single;316;31623;;61364;24592;35100;10364;41456;167;38.626356006;2022-02-02@21:39:42 +v2.0.8-191-g68d8716f;single;316;31623;;61364;24592;141180;2096605;8386420;26;6.033158602;2022-02-02@21:39:55 +v2.0.8-191-g68d8716f;single;316;31623;;61364;24592;113516;2096209;8384836;25;5.795120363;2022-02-02@21:40:06 +v2.0.8-191-g68d8716f;single;316;31623;;61364;24592;88732;2096324;8385296;25;5.812146181;2022-02-02@21:40:16 +v2.0.8-191-g68d8716f;single;316;31623;;61364;24592;117016;2096393;8385572;25;5.811050373;2022-02-02@21:40:27 +v2.0.8-191-g68d8716f;single;316;31623;;61364;24592;120032;2096217;8384868;26;6.007754867;2022-02-02@21:40:38 +v2.0.8-191-g68d8716f;single;316;31623;;61364;24592;116392;2096663;8386652;25;5.767125065;2022-02-02@21:40:48 +v2.0.8-191-g68d8716f;single;316;31623;;61364;24592;103524;2095889;8383556;25;5.736038618;2022-02-02@21:40:59 +v2.0.8-191-g68d8716f;single;316;31623;;61364;24592;93180;2095903;8383612;25;5.856605202;2022-02-02@21:41:10 +v2.0.8;mulimex;316;31623;;61364;24592;2738664;686187;2744748;337;78.612317925;2022-02-02@21:44:44 +v2.0.8;mulimex;316;31623;;61364;24592;2736352;685615;2742460;337;78.656320392;2022-02-02@21:46:14 +v2.0.8;mulimex;316;31623;;61364;24592;2736444;685612;2742448;336;78.391438180;2022-02-02@21:47:44 +v2.0.8;mulimex;316;31623;;61364;24592;2736596;685676;2742704;336;78.396778332;2022-02-02@21:49:14 +v2.0.8;mulimex;316;31623;;61364;24592;2738388;686139;2744556;339;79.084028707;2022-02-02@21:50:45 +v2.0.8;mulimex;316;31623;;61364;24592;2736616;685650;2742600;337;78.655240623;2022-02-02@21:52:15 +v2.0.8;mulimex;316;31623;;61364;24592;2736612;685731;2742924;335;78.163305575;2022-02-02@21:53:45 +v2.0.8;mulimex;316;31623;;61364;24592;2738764;686174;2744696;336;78.301823192;2022-02-02@21:55:15 +v2.0.8-169-ga840170e;mulimex;316;31623;;61364;24592;2439648;2704985;10819940;147;34.064618894;2022-02-02@21:56:03 +v2.0.8-169-ga840170e;mulimex;316;31623;;61364;24592;2437424;2704517;10818068;154;35.523102787;2022-02-02@21:56:44 +v2.0.8-169-ga840170e;mulimex;316;31623;;61364;24592;2436340;2703887;10815548;143;33.098801820;2022-02-02@21:57:22 +v2.0.8-169-ga840170e;mulimex;316;31623;;61364;24592;2440416;2703938;10815752;152;35.205021098;2022-02-02@21:58:03 +v2.0.8-169-ga840170e;mulimex;316;31623;;61364;24592;2430028;2702637;10810548;146;33.710258797;2022-02-02@21:58:42 +v2.0.8-169-ga840170e;mulimex;316;31623;;61364;24592;2424608;2702694;10810776;144;33.375235537;2022-02-02@21:59:20 +v2.0.8-169-ga840170e;mulimex;316;31623;;61364;24592;2439264;2704049;10816196;144;33.395947254;2022-02-02@21:59:59 +v2.0.8-169-ga840170e;mulimex;316;31623;;61364;24592;2436920;2703216;10812864;145;33.643642065;2022-02-02@22:00:37 +v2.0.8-191-g68d8716f;mulimex;316;31623;;61364;24592;2481012;2706644;10826576;65;15.003861162;2022-02-02@22:01:00 +v2.0.8-191-g68d8716f;mulimex;316;31623;;61364;24592;2506084;2708273;10833092;52;12.075097259;2022-02-02@22:01:17 +v2.0.8-191-g68d8716f;mulimex;316;31623;;61364;24592;2505360;2708466;10833864;54;12.790615287;2022-02-02@22:01:35 +v2.0.8-191-g68d8716f;mulimex;316;31623;;61364;24592;2508920;2722988;10891952;54;12.631624324;2022-02-02@22:01:53 +v2.0.8-191-g68d8716f;mulimex;316;31623;;61364;24592;2512252;2707401;10829604;52;12.122919018;2022-02-02@22:02:11 +v2.0.8-191-g68d8716f;mulimex;316;31623;;61364;24592;2490256;2708236;10832944;54;12.591466900;2022-02-02@22:02:29 +v2.0.8-191-g68d8716f;mulimex;316;31623;;61364;24592;2490656;2705477;10821908;54;12.585721138;2022-02-02@22:02:47 +v2.0.8-191-g68d8716f;mulimex;316;31623;;61364;24592;2510588;2707623;10830492;58;13.436823882;2022-02-02@22:03:05 +v2.0.8;multi;1000;31623;;62712;25321;5774112;1445077;5780308;1240;293.086164054;2022-02-02@22:14:41 +v2.0.8;multi;1000;31623;;62712;25321;5778476;1446151;5784604;1246;294.419143257;2022-02-02@22:19:58 +v2.0.8;multi;1000;31623;;62712;25321;5772628;1444693;5778772;1240;293.087164578;2022-02-02@22:25:14 +v2.0.8;multi;1000;31623;;62712;25321;5770852;1444208;5776832;1247;294.509920641;2022-02-02@22:30:31 +v2.0.8;multi;1000;31623;;62712;25321;5779704;1446459;5785836;1248;294.841307128;2022-02-02@22:35:48 +v2.0.8;multi;1000;31623;;62712;25321;5789472;1448918;5795672;1265;299.209784387;2022-02-02@22:41:10 +v2.0.8;multi;1000;31623;;62712;25321;5771092;1444244;5776976;1227;289.644361027;2022-02-02@22:46:22 +v2.0.8;multi;1000;31623;;62712;25321;5770504;1444186;5776744;1203;284.051015429;2022-02-02@22:51:28 +v2.0.8-169-ga840170e;multi;1000;31623;;62712;25321;4920516;3331145;13324580;455;106.094097364;2022-02-02@22:53:37 +v2.0.8-169-ga840170e;multi;1000;31623;;62712;25321;4908820;3351542;13406168;440;102.561138900;2022-02-02@22:55:26 +v2.0.8-169-ga840170e;multi;1000;31623;;62712;25321;4913020;3331474;13325896;457;106.547017307;2022-02-02@22:57:19 +v2.0.8-169-ga840170e;multi;1000;31623;;62712;25321;4911024;3330460;13321840;423;98.890622411;2022-02-02@22:59:03 +v2.0.8-169-ga840170e;multi;1000;31623;;62712;25321;4909816;3329960;13319840;434;101.429949080;2022-02-02@23:00:51 +v2.0.8-169-ga840170e;multi;1000;31623;;62712;25321;4952884;3339613;13358452;434;101.429036554;2022-02-02@23:02:39 +v2.0.8-169-ga840170e;multi;1000;31623;;62712;25321;4913980;3329618;13318472;439;102.199929320;2022-02-02@23:04:27 +v2.0.8-169-ga840170e;multi;1000;31623;;62712;25321;4916828;3331270;13325080;437;102.068495453;2022-02-02@23:06:15 +v2.0.8-191-g68d8716f;multi;1000;31623;;62712;25321;5275964;3365587;13462348;157;36.827212979;2022-02-02@23:07:00 +v2.0.8-191-g68d8716f;multi;1000;31623;;62712;25321;5205452;3384278;13537112;158;37.361298295;2022-02-02@23:07:43 +v2.0.8-191-g68d8716f;multi;1000;31623;;62712;25321;5303300;3369252;13477008;153;35.939883492;2022-02-02@23:08:25 +v2.0.8-191-g68d8716f;multi;1000;31623;;62712;25321;5115856;3365454;13461816;161;37.686384242;2022-02-02@23:09:15 +v2.0.8-191-g68d8716f;multi;1000;31623;;62712;25321;5220888;3368799;13475196;147;34.322271864;2022-02-02@23:09:55 +v2.0.8-191-g68d8716f;multi;1000;31623;;62712;25321;5207600;3365039;13460156;154;36.484503342;2022-02-02@23:10:46 +v2.0.8-191-g68d8716f;multi;1000;31623;;62712;25321;5052176;3363675;13454700;155;36.473683328;2022-02-02@23:11:29 +v2.0.8-191-g68d8716f;multi;1000;31623;;62712;25321;5234004;3364984;13459936;159;37.426300286;2022-02-02@23:12:12 +v2.0.8;imex;1000;31623;;62712;25321;3077080;770775;3083100;932;220.401626049;2022-02-02@23:27:32 +v2.0.8;imex;1000;31623;;62712;25321;3079572;771507;3086028;943;222.831105234;2022-02-02@23:31:27 +v2.0.8;imex;1000;31623;;62712;25321;3081604;771948;3087792;939;222.029646285;2022-02-02@23:35:21 +v2.0.8;imex;1000;31623;;62712;25321;3078008;771043;3084172;909;214.865276918;2022-02-02@23:39:08 +v2.0.8;imex;1000;31623;;62712;25321;2994980;750261;3001044;806;191.020287817;2022-02-02@23:42:31 +v2.0.8;imex;1000;31623;;62712;25321;3086908;773274;3093096;918;217.221657397;2022-02-02@23:46:20 +v2.0.8;imex;1000;31623;;62712;25321;3074460;770136;3080544;921;217.699858960;2022-02-02@23:50:10 +v2.0.8;imex;1000;31623;;62712;25321;3074448;770188;3080752;901;212.932271620;2022-02-02@23:53:55 +v2.0.8-169-ga840170e;imex;1000;31623;;62712;25321;2915956;760653;3042612;753;175.410624708;2022-02-02@23:57:04 +v2.0.8-169-ga840170e;imex;1000;31623;;62712;25321;2948928;768816;3075264;755;175.596397003;2022-02-03@00:00:05 +v2.0.8-169-ga840170e;imex;1000;31623;;62712;25321;2927068;763424;3053696;750;174.520716135;2022-02-03@00:03:05 +v2.0.8-169-ga840170e;imex;1000;31623;;62712;25321;2931580;764516;3058064;754;175.449852605;2022-02-03@00:06:07 +v2.0.8-169-ga840170e;imex;1000;31623;;62712;25321;2925676;763024;3052096;738;171.822788955;2022-02-03@00:09:04 +v2.0.8-169-ga840170e;imex;1000;31623;;62712;25321;2934416;765213;3060852;742;172.524932454;2022-02-03@00:12:02 +v2.0.8-169-ga840170e;imex;1000;31623;;62712;25321;2920640;761788;3047152;754;175.487462819;2022-02-03@00:15:03 +v2.0.8-169-ga840170e;imex;1000;31623;;62712;25321;2941792;767049;3068196;763;177.717125678;2022-02-03@00:18:06 +v2.0.8-191-g68d8716f;imex;1000;31623;;62712;25321;3487596;2865840;11463360;98;22.600772399;2022-02-03@00:18:36 +v2.0.8-191-g68d8716f;imex;1000;31623;;62712;25321;3402028;2854222;11416888;95;21.942213046;2022-02-03@00:19:06 +v2.0.8-191-g68d8716f;imex;1000;31623;;62712;25321;3508612;2851432;11405728;101;23.382506890;2022-02-03@00:19:35 +v2.0.8-191-g68d8716f;imex;1000;31623;;62712;25321;3429564;2852559;11410236;99;22.759707309;2022-02-03@00:20:13 +v2.0.8-191-g68d8716f;imex;1000;31623;;62712;25321;3461048;2851218;11404872;95;22.287236497;2022-02-03@00:20:41 +v2.0.8-191-g68d8716f;imex;1000;31623;;62712;25321;3526920;2853406;11413624;94;21.921398783;2022-02-03@00:21:14 +v2.0.8-191-g68d8716f;imex;1000;31623;;62712;25321;3458984;2916328;11665312;97;22.686502384;2022-02-03@00:21:50 +v2.0.8-191-g68d8716f;imex;1000;31623;;62712;25321;3647060;2850070;11400280;98;22.670127679;2022-02-03@00:22:28 +v2.0.8;single;1000;31623;;62712;25321;123880;32500;130000;938;223.207803674;2022-02-03@00:38:28 +v2.0.8;single;1000;31623;;62712;25321;82632;22155;88620;946;225.574573402;2022-02-03@00:42:20 +v2.0.8;single;1000;31623;;62712;25321;81708;21943;87772;940;223.896770918;2022-02-03@00:46:09 +v2.0.8;single;1000;31623;;62712;25321;87888;23451;93804;939;223.872257110;2022-02-03@00:49:59 +v2.0.8;single;1000;31623;;62712;25321;82476;22084;88336;934;222.361461941;2022-02-03@00:53:47 +v2.0.8;single;1000;31623;;62712;25321;94544;25136;100544;955;227.913353563;2022-02-03@00:57:40 +v2.0.8;single;1000;31623;;62712;25321;82864;22248;88992;956;227.760285555;2022-02-03@01:01:33 +v2.0.8;single;1000;31623;;62712;25321;81296;21834;87336;937;223.145407676;2022-02-03@01:05:22 +v2.0.8-169-ga840170e;single;1000;31623;;62712;25321;63384;17396;69584;619;144.871449929;2022-02-03@01:07:54 +v2.0.8-169-ga840170e;single;1000;31623;;62712;25321;64072;17587;70348;625;146.293002409;2022-02-03@01:10:25 +v2.0.8-169-ga840170e;single;1000;31623;;62712;25321;63808;17536;70144;621;145.315860569;2022-02-03@01:12:55 +v2.0.8-169-ga840170e;single;1000;31623;;62712;25321;63892;17589;70356;620;145.181706825;2022-02-03@01:15:25 +v2.0.8-169-ga840170e;single;1000;31623;;62712;25321;63508;17450;69800;621;145.353670600;2022-02-03@01:17:55 +v2.0.8-169-ga840170e;single;1000;31623;;62712;25321;63540;17454;69816;616;144.258300160;2022-02-03@01:20:25 +v2.0.8-169-ga840170e;single;1000;31623;;62712;25321;63660;17533;70132;628;147.055067150;2022-02-03@01:22:56 +v2.0.8-169-ga840170e;single;1000;31623;;62712;25321;63580;17475;69900;613;143.478846839;2022-02-03@01:25:25 +v2.0.8-191-g68d8716f;single;1000;31623;;62712;25321;2151096;2126622;8506488;294;70.921632233;2022-02-03@01:26:43 +v2.0.8-191-g68d8716f;single;1000;31623;;62712;25321;1917008;2130397;8521588;149;35.171599188;2022-02-03@01:27:26 +v2.0.8-191-g68d8716f;single;1000;31623;;62712;25321;1421528;2125927;8503708;136;32.897053758;2022-02-03@01:28:14 +v2.0.8-191-g68d8716f;single;1000;31623;;62712;25321;1996496;2130830;8523320;142;33.853604252;2022-02-03@01:29:02 +v2.0.8-191-g68d8716f;single;1000;31623;;62712;25321;1292692;2126261;8505044;136;32.673237428;2022-02-03@01:29:49 +v2.0.8-191-g68d8716f;single;1000;31623;;62712;25321;1996200;2136188;8544752;102;24.542073096;2022-02-03@01:30:19 +v2.0.8-191-g68d8716f;single;1000;31623;;62712;25321;1392504;2126797;8507188;127;30.453187877;2022-02-03@01:31:04 +v2.0.8-191-g68d8716f;single;1000;31623;;62712;25321;1791820;2127190;8508760;116;27.350334960;2022-02-03@01:31:37 +v2.0.8;mulimex;1000;31623;;62712;25321;8750396;2189114;8756456;1196;282.407629781;2022-02-03@01:49:04 +v2.0.8;mulimex;1000;31623;;62712;25321;8751288;2189324;8757296;1175;277.642086168;2022-02-03@01:54:13 +v2.0.8;mulimex;1000;31623;;62712;25321;8763704;2192498;8769992;1166;275.682522414;2022-02-03@01:59:17 +v2.0.8;mulimex;1000;31623;;62712;25321;8812544;2204635;8818540;1199;281.864097633;2022-02-03@02:04:28 +v2.0.8;mulimex;1000;31623;;62712;25321;8749816;2188997;8755988;1197;282.906372293;2022-02-03@02:09:41 +v2.0.8;mulimex;1000;31623;;62712;25321;8752016;2189579;8758316;1198;282.545104136;2022-02-03@02:14:54 +v2.0.8;mulimex;1000;31623;;62712;25321;8911316;2229383;8917532;1275;285.535875802;2022-02-03@02:20:09 +v2.0.8;mulimex;1000;31623;;62712;25321;8923108;2232376;8929504;1229;290.099242501;2022-02-03@02:25:30 +v2.0.8-169-ga840170e;mulimex;1000;31623;;62712;25321;7805036;4081565;16326260;548;126.300709104;2022-02-03@02:28:10 +v2.0.8-169-ga840170e;mulimex;1000;31623;;62712;25321;7787812;4077735;16310940;535;124.444522629;2022-02-03@02:30:21 +v2.0.8-169-ga840170e;mulimex;1000;31623;;62712;25321;7813100;4085368;16341472;544;126.802852753;2022-02-03@02:32:34 +v2.0.8-169-ga840170e;mulimex;1000;31623;;62712;25321;7815256;4083757;16335028;569;132.578946304;2022-02-03@02:34:53 +v2.0.8-169-ga840170e;mulimex;1000;31623;;62712;25321;7788196;4079905;16319620;557;130.013811201;2022-02-03@02:37:10 +v2.0.8-169-ga840170e;mulimex;1000;31623;;62712;25321;7787124;4077949;16311796;532;124.077469090;2022-02-03@02:39:21 +v2.0.8-169-ga840170e;mulimex;1000;31623;;62712;25321;7789584;4081063;16324252;558;130.124821167;2022-02-03@02:41:38 +v2.0.8-169-ga840170e;mulimex;1000;31623;;62712;25321;7788372;4095808;16383232;574;134.160317672;2022-02-03@02:43:58 +v2.0.8-191-g68d8716f;mulimex;1000;31623;;62712;25321;7907692;4089987;16359948;213;49.353041968;2022-02-03@02:44:57 +v2.0.8-191-g68d8716f;mulimex;1000;31623;;62712;25321;7955612;4094713;16378852;199;46.856902543;2022-02-03@02:45:50 +v2.0.8-191-g68d8716f;mulimex;1000;31623;;62712;25321;7935572;4095091;16380364;206;48.329116453;2022-02-03@02:46:46 +v2.0.8-191-g68d8716f;mulimex;1000;31623;;62712;25321;7914464;4093911;16375644;237;55.356136965;2022-02-03@02:47:48 +v2.0.8-191-g68d8716f;mulimex;1000;31623;;62712;25321;8006428;4136348;16545392;199;46.405608786;2022-02-03@02:48:50 +v2.0.8-191-g68d8716f;mulimex;1000;31623;;62712;25321;7948884;4100531;16402124;197;46.239262945;2022-02-03@02:49:49 +v2.0.8-191-g68d8716f;mulimex;1000;31623;;62712;25321;7967444;4098904;16395616;206;48.621152065;2022-02-03@02:50:44 +v2.0.8-191-g68d8716f;mulimex;1000;31623;;62712;25321;7951844;4112822;16451288;323;76.509026163;2022-02-03@02:52:08 +v2.0.8;multi;10;100000;;126751;52385;207124;53281;213124;19;4.614935797;2022-02-03@03:05:46 +v2.0.8;multi;10;100000;;126751;52385;207032;53292;213168;20;4.852857172;2022-02-03@03:05:56 +v2.0.8;multi;10;100000;;126751;52385;207124;53296;213184;20;4.851456992;2022-02-03@03:06:05 +v2.0.8;multi;10;100000;;126751;52385;206928;53304;213216;20;4.848927657;2022-02-03@03:06:15 +v2.0.8;multi;10;100000;;126751;52385;207132;53297;213188;20;4.859316113;2022-02-03@03:06:25 +v2.0.8;multi;10;100000;;126751;52385;207160;53296;213184;20;4.856985963;2022-02-03@03:06:34 +v2.0.8;multi;10;100000;;126751;52385;206988;53281;213124;20;4.864978026;2022-02-03@03:06:44 +v2.0.8;multi;10;100000;;126751;52385;207072;53284;213136;20;4.868856010;2022-02-03@03:06:54 +v2.0.8-169-ga840170e;multi;10;100000;;126751;52385;169948;220902;883608;11;2.661599160;2022-02-03@03:07:03 +v2.0.8-169-ga840170e;multi;10;100000;;126751;52385;170740;220948;883792;9;2.197051220;2022-02-03@03:07:10 +v2.0.8-169-ga840170e;multi;10;100000;;126751;52385;170512;220963;883852;10;2.450602942;2022-02-03@03:07:18 +v2.0.8-169-ga840170e;multi;10;100000;;126751;52385;170588;220923;883692;9;2.166589290;2022-02-03@03:07:25 +v2.0.8-169-ga840170e;multi;10;100000;;126751;52385;170080;220934;883736;9;2.211241091;2022-02-03@03:07:32 +v2.0.8-169-ga840170e;multi;10;100000;;126751;52385;170196;220925;883700;9;2.195719282;2022-02-03@03:07:39 +v2.0.8-169-ga840170e;multi;10;100000;;126751;52385;170156;220938;883752;9;2.167987968;2022-02-03@03:07:46 +v2.0.8-169-ga840170e;multi;10;100000;;126751;52385;170484;220947;883788;9;2.183906608;2022-02-03@03:07:53 +v2.0.8-191-g68d8716f;multi;10;100000;;126751;52385;169988;397588;1590352;9;2.127436973;2022-02-03@03:08:02 +v2.0.8-191-g68d8716f;multi;10;100000;;126751;52385;170472;397549;1590196;6;1.427612542;2022-02-03@03:08:08 +v2.0.8-191-g68d8716f;multi;10;100000;;126751;52385;170908;397595;1590380;6;1.429181845;2022-02-03@03:08:14 +v2.0.8-191-g68d8716f;multi;10;100000;;126751;52385;169924;397592;1590368;6;1.460594293;2022-02-03@03:08:21 +v2.0.8-191-g68d8716f;multi;10;100000;;126751;52385;170796;397646;1590584;6;1.414426568;2022-02-03@03:08:27 +v2.0.8-191-g68d8716f;multi;10;100000;;126751;52385;170780;397574;1590296;6;1.427815630;2022-02-03@03:08:33 +v2.0.8-191-g68d8716f;multi;10;100000;;126751;52385;170216;397573;1590292;6;1.440043205;2022-02-03@03:08:39 +v2.0.8-191-g68d8716f;multi;10;100000;;126751;52385;170392;397534;1590136;6;1.461589641;2022-02-03@03:08:46 +v2.0.8;imex;10;100000;;126751;52385;162848;42276;169104;14;3.355771821;2022-02-03@03:09:04 +v2.0.8;imex;10;100000;;126751;52385;163024;42281;169124;14;3.385658766;2022-02-03@03:09:12 +v2.0.8;imex;10;100000;;126751;52385;162856;42261;169044;14;3.393856135;2022-02-03@03:09:20 +v2.0.8;imex;10;100000;;126751;52385;163016;42303;169212;14;3.361237304;2022-02-03@03:09:28 +v2.0.8;imex;10;100000;;126751;52385;162644;42225;168900;14;3.386373061;2022-02-03@03:09:37 +v2.0.8;imex;10;100000;;126751;52385;162840;42258;169032;14;3.374360367;2022-02-03@03:09:45 +v2.0.8;imex;10;100000;;126751;52385;162816;42247;168988;15;3.617011790;2022-02-03@03:09:54 +v2.0.8;imex;10;100000;;126751;52385;162884;42280;169120;15;3.629950751;2022-02-03@03:10:02 +v2.0.8-169-ga840170e;imex;10;100000;;126751;52385;138200;36449;145796;36;8.845786207;2022-02-03@03:10:18 +v2.0.8-169-ga840170e;imex;10;100000;;126751;52385;138260;36506;146024;32;7.908583186;2022-02-03@03:10:31 +v2.0.8-169-ga840170e;imex;10;100000;;126751;52385;138964;36633;146532;34;8.387238847;2022-02-03@03:10:44 +v2.0.8-169-ga840170e;imex;10;100000;;126751;52385;138120;36494;145976;32;7.888674242;2022-02-03@03:10:57 +v2.0.8-169-ga840170e;imex;10;100000;;126751;52385;138012;36376;145504;32;7.858948064;2022-02-03@03:11:09 +v2.0.8-169-ga840170e;imex;10;100000;;126751;52385;138336;36525;146100;32;7.886642353;2022-02-03@03:11:22 +v2.0.8-169-ga840170e;imex;10;100000;;126751;52385;137980;36375;145500;36;8.864683568;2022-02-03@03:11:36 +v2.0.8-169-ga840170e;imex;10;100000;;126751;52385;138004;36396;145584;33;8.122152503;2022-02-03@03:11:49 +v2.0.8-191-g68d8716f;imex;10;100000;;126751;52385;139112;208799;835196;8;1.955140607;2022-02-03@03:11:58 +v2.0.8-191-g68d8716f;imex;10;100000;;126751;52385;138792;208444;833776;7;1.631631517;2022-02-03@03:12:04 +v2.0.8-191-g68d8716f;imex;10;100000;;126751;52385;139884;209155;836620;7;1.660641739;2022-02-03@03:12:11 +v2.0.8-191-g68d8716f;imex;10;100000;;126751;52385;139696;208998;835992;7;1.673483591;2022-02-03@03:12:17 +v2.0.8-191-g68d8716f;imex;10;100000;;126751;52385;139992;209002;836008;7;1.649942621;2022-02-03@03:12:24 +v2.0.8-191-g68d8716f;imex;10;100000;;126751;52385;139612;208961;835844;7;1.636169001;2022-02-03@03:12:30 +v2.0.8-191-g68d8716f;imex;10;100000;;126751;52385;139312;209061;836244;7;1.636019396;2022-02-03@03:12:37 +v2.0.8-191-g68d8716f;imex;10;100000;;126751;52385;139708;208727;834908;6;1.396705344;2022-02-03@03:12:43 +v2.0.8;single;10;100000;;126751;52385;47492;13389;53556;12;2.934239824;2022-02-03@03:13:00 +v2.0.8;single;10;100000;;126751;52385;47800;13489;53956;13;3.148140098;2022-02-03@03:13:08 +v2.0.8;single;10;100000;;126751;52385;47568;13461;53844;13;3.159360711;2022-02-03@03:13:16 +v2.0.8;single;10;100000;;126751;52385;47460;13421;53684;13;3.138111085;2022-02-03@03:13:24 +v2.0.8;single;10;100000;;126751;52385;47732;13462;53848;13;3.155554093;2022-02-03@03:13:32 +v2.0.8;single;10;100000;;126751;52385;47440;13396;53584;13;3.116741909;2022-02-03@03:13:40 +v2.0.8;single;10;100000;;126751;52385;47764;13436;53744;13;3.150074962;2022-02-03@03:13:48 +v2.0.8;single;10;100000;;126751;52385;47532;13415;53660;13;3.132360552;2022-02-03@03:13:56 +v2.0.8-169-ga840170e;single;10;100000;;126751;52385;37052;10874;43496;14;3.298269653;2022-02-03@03:14:06 +v2.0.8-169-ga840170e;single;10;100000;;126751;52385;37256;10919;43676;13;3.155410124;2022-02-03@03:14:14 +v2.0.8-169-ga840170e;single;10;100000;;126751;52385;37588;10944;43776;13;3.145028761;2022-02-03@03:14:22 +v2.0.8-169-ga840170e;single;10;100000;;126751;52385;37132;10868;43472;13;3.160614535;2022-02-03@03:14:30 +v2.0.8-169-ga840170e;single;10;100000;;126751;52385;37552;10952;43808;13;3.140422866;2022-02-03@03:14:38 +v2.0.8-169-ga840170e;single;10;100000;;126751;52385;37424;10932;43728;13;3.112125603;2022-02-03@03:14:46 +v2.0.8-169-ga840170e;single;10;100000;;126751;52385;37116;10879;43516;12;2.855090373;2022-02-03@03:14:54 +v2.0.8-169-ga840170e;single;10;100000;;126751;52385;37288;10883;43532;13;3.106732592;2022-02-03@03:15:02 +v2.0.8-191-g68d8716f;single;10;100000;;126751;52385;37620;187425;749700;7;1.622574067;2022-02-03@03:15:10 +v2.0.8-191-g68d8716f;single;10;100000;;126751;52385;37396;187411;749644;6;1.416909625;2022-02-03@03:15:17 +v2.0.8-191-g68d8716f;single;10;100000;;126751;52385;37184;187414;749656;5;1.207164605;2022-02-03@03:15:23 +v2.0.8-191-g68d8716f;single;10;100000;;126751;52385;36724;187406;749624;7;1.646643947;2022-02-03@03:15:29 +v2.0.8-191-g68d8716f;single;10;100000;;126751;52385;38312;187448;749792;6;1.433157205;2022-02-03@03:15:35 +v2.0.8-191-g68d8716f;single;10;100000;;126751;52385;37392;187413;749652;6;1.390700796;2022-02-03@03:15:42 +v2.0.8-191-g68d8716f;single;10;100000;;126751;52385;37236;187435;749740;7;1.623199711;2022-02-03@03:15:48 +v2.0.8-191-g68d8716f;single;10;100000;;126751;52385;37224;187419;749676;6;1.439987083;2022-02-03@03:15:54 +v2.0.8;mulimex;10;100000;;126751;52385;289576;73874;295496;20;4.863245572;2022-02-03@03:16:14 +v2.0.8;mulimex;10;100000;;126751;52385;289560;73889;295556;21;5.086059576;2022-02-03@03:16:24 +v2.0.8;mulimex;10;100000;;126751;52385;289148;73884;295536;21;5.099663968;2022-02-03@03:16:34 +v2.0.8;mulimex;10;100000;;126751;52385;289232;73840;295360;21;5.124542769;2022-02-03@03:16:44 +v2.0.8;mulimex;10;100000;;126751;52385;289048;73810;295240;21;5.072715666;2022-02-03@03:16:54 +v2.0.8;mulimex;10;100000;;126751;52385;289060;73828;295312;21;5.097667219;2022-02-03@03:17:04 +v2.0.8;mulimex;10;100000;;126751;52385;289680;73888;295552;21;5.090356462;2022-02-03@03:17:14 +v2.0.8;mulimex;10;100000;;126751;52385;289340;73842;295368;21;5.097429754;2022-02-03@03:17:24 +v2.0.8-169-ga840170e;mulimex;10;100000;;126751;52385;246548;240357;961428;34;8.401297531;2022-02-03@03:17:39 +v2.0.8-169-ga840170e;mulimex;10;100000;;126751;52385;245884;240307;961228;31;7.691744238;2022-02-03@03:17:52 +v2.0.8-169-ga840170e;mulimex;10;100000;;126751;52385;246844;240291;961164;30;7.451237762;2022-02-03@03:18:04 +v2.0.8-169-ga840170e;mulimex;10;100000;;126751;52385;245924;240277;961108;32;7.929553124;2022-02-03@03:18:17 +v2.0.8-169-ga840170e;mulimex;10;100000;;126751;52385;247060;240374;961496;30;7.465879614;2022-02-03@03:18:29 +v2.0.8-169-ga840170e;mulimex;10;100000;;126751;52385;246260;240338;961352;31;7.703218633;2022-02-03@03:18:41 +v2.0.8-169-ga840170e;mulimex;10;100000;;126751;52385;245796;240278;961112;30;7.471953366;2022-02-03@03:18:54 +v2.0.8-169-ga840170e;mulimex;10;100000;;126751;52385;246248;240374;961496;31;7.727363332;2022-02-03@03:19:06 +v2.0.8-191-g68d8716f;mulimex;10;100000;;126751;52385;247924;417013;1668052;9;2.155338531;2022-02-03@03:19:15 +v2.0.8-191-g68d8716f;mulimex;10;100000;;126751;52385;248488;417169;1668676;6;1.438671152;2022-02-03@03:19:22 +v2.0.8-191-g68d8716f;mulimex;10;100000;;126751;52385;247888;416907;1667628;7;1.719655371;2022-02-03@03:19:28 +v2.0.8-191-g68d8716f;mulimex;10;100000;;126751;52385;248232;417082;1668328;7;1.690601283;2022-02-03@03:19:35 +v2.0.8-191-g68d8716f;mulimex;10;100000;;126751;52385;248304;417123;1668492;6;1.444054793;2022-02-03@03:19:41 +v2.0.8-191-g68d8716f;mulimex;10;100000;;126751;52385;247964;416967;1667868;6;1.440690962;2022-02-03@03:19:48 +v2.0.8-191-g68d8716f;mulimex;10;100000;;126751;52385;249244;417090;1668360;6;1.449661217;2022-02-03@03:19:54 +v2.0.8-191-g68d8716f;mulimex;10;100000;;126751;52385;248372;417079;1668316;7;1.684171755;2022-02-03@03:20:01 +v2.0.8;multi;32;100000;;166748;52697;585236;147874;591496;75;18.486222358;2022-02-03@03:20:35 +v2.0.8;multi;32;100000;;166748;52697;585232;147885;591540;87;21.354458903;2022-02-03@03:21:02 +v2.0.8;multi;32;100000;;166748;52697;585340;147862;591448;75;18.445704587;2022-02-03@03:21:26 +v2.0.8;multi;32;100000;;166748;52697;585264;147865;591460;76;18.711116125;2022-02-03@03:21:51 +v2.0.8;multi;32;100000;;166748;52697;585456;147915;591660;75;18.495866471;2022-02-03@03:22:15 +v2.0.8;multi;32;100000;;166748;52697;585460;147851;591404;75;18.436913713;2022-02-03@03:22:39 +v2.0.8;multi;32;100000;;166748;52697;585180;147856;591424;74;18.217346286;2022-02-03@03:23:03 +v2.0.8;multi;32;100000;;166748;52697;585332;147902;591608;75;18.411901971;2022-02-03@03:23:28 +v2.0.8-169-ga840170e;multi;32;100000;;166748;52697;484616;657584;2630336;26;6.369710220;2022-02-03@03:23:42 +v2.0.8-169-ga840170e;multi;32;100000;;166748;52697;484540;657594;2630376;24;5.833181408;2022-02-03@03:23:53 +v2.0.8-169-ga840170e;multi;32;100000;;166748;52697;484256;657735;2630940;24;5.893088236;2022-02-03@03:24:03 +v2.0.8-169-ga840170e;multi;32;100000;;166748;52697;484588;657711;2630844;24;5.919665564;2022-02-03@03:24:14 +v2.0.8-169-ga840170e;multi;32;100000;;166748;52697;483660;657838;2631352;24;5.880021438;2022-02-03@03:24:25 +v2.0.8-169-ga840170e;multi;32;100000;;166748;52697;484848;657689;2630756;24;5.868562502;2022-02-03@03:24:35 +v2.0.8-169-ga840170e;multi;32;100000;;166748;52697;484880;657840;2631360;24;5.900194436;2022-02-03@03:24:46 +v2.0.8-169-ga840170e;multi;32;100000;;166748;52697;484788;657590;2630360;24;5.864673127;2022-02-03@03:24:57 +v2.0.8-191-g68d8716f;multi;32;100000;;166748;52697;489016;1193650;4774600;13;3.250847185;2022-02-03@03:25:07 +v2.0.8-191-g68d8716f;multi;32;100000;;166748;52697;484404;1193712;4774848;12;3.063875289;2022-02-03@03:25:15 +v2.0.8-191-g68d8716f;multi;32;100000;;166748;52697;485812;1193762;4775048;12;3.053638778;2022-02-03@03:25:23 +v2.0.8-191-g68d8716f;multi;32;100000;;166748;52697;485004;1196009;4784036;12;3.026271713;2022-02-03@03:25:31 +v2.0.8-191-g68d8716f;multi;32;100000;;166748;52697;484872;1193718;4774872;12;3.007040826;2022-02-03@03:25:39 +v2.0.8-191-g68d8716f;multi;32;100000;;166748;52697;486108;1193686;4774744;12;3.042356648;2022-02-03@03:25:47 +v2.0.8-191-g68d8716f;multi;32;100000;;166748;52697;486652;1193641;4774564;12;3.028977922;2022-02-03@03:25:55 +v2.0.8-191-g68d8716f;multi;32;100000;;166748;52697;485700;1193650;4774600;12;3.085739075;2022-02-03@03:26:03 +v2.0.8;imex;32;100000;;166748;52697;335228;85366;341464;42;10.205459728;2022-02-03@03:26:30 +v2.0.8;imex;32;100000;;166748;52697;335080;85339;341356;42;10.228001944;2022-02-03@03:26:45 +v2.0.8;imex;32;100000;;166748;52697;335248;85366;341464;43;10.483181287;2022-02-03@03:27:00 +v2.0.8;imex;32;100000;;166748;52697;335056;85357;341428;43;10.502112894;2022-02-03@03:27:16 +v2.0.8;imex;32;100000;;166748;52697;335284;85347;341388;41;10.035896550;2022-02-03@03:27:31 +v2.0.8;imex;32;100000;;166748;52697;335160;85359;341436;42;10.246666443;2022-02-03@03:27:47 +v2.0.8;imex;32;100000;;166748;52697;335180;85334;341336;42;10.265953877;2022-02-03@03:28:02 +v2.0.8;imex;32;100000;;166748;52697;335356;85369;341476;42;10.285572607;2022-02-03@03:28:17 +v2.0.8-169-ga840170e;imex;32;100000;;166748;52697;294052;76075;304300;56;13.778641742;2022-02-03@03:28:39 +v2.0.8-169-ga840170e;imex;32;100000;;166748;52697;294116;76112;304448;65;16.014618401;2022-02-03@03:28:59 +v2.0.8-169-ga840170e;imex;32;100000;;166748;52697;294312;76158;304632;65;16.100152767;2022-02-03@03:29:20 +v2.0.8-169-ga840170e;imex;32;100000;;166748;52697;294020;76121;304484;66;16.269488070;2022-02-03@03:29:41 +v2.0.8-169-ga840170e;imex;32;100000;;166748;52697;293816;76066;304264;58;14.269149416;2022-02-03@03:30:01 +v2.0.8-169-ga840170e;imex;32;100000;;166748;52697;293976;76065;304260;58;14.299197839;2022-02-03@03:30:20 +v2.0.8-169-ga840170e;imex;32;100000;;166748;52697;293984;76134;304536;63;15.556897908;2022-02-03@03:30:40 +v2.0.8-169-ga840170e;imex;32;100000;;166748;52697;293996;76104;304416;64;15.681865360;2022-02-03@03:31:00 +v2.0.8-191-g68d8716f;imex;32;100000;;166748;52697;297660;604576;2418304;12;2.898652814;2022-02-03@03:31:10 +v2.0.8-191-g68d8716f;imex;32;100000;;166748;52697;298544;604433;2417732;11;2.636944301;2022-02-03@03:31:18 +v2.0.8-191-g68d8716f;imex;32;100000;;166748;52697;298052;604538;2418152;11;2.640495457;2022-02-03@03:31:25 +v2.0.8-191-g68d8716f;imex;32;100000;;166748;52697;298172;604591;2418364;10;2.462956288;2022-02-03@03:31:33 +v2.0.8-191-g68d8716f;imex;32;100000;;166748;52697;298704;604516;2418064;11;2.670014809;2022-02-03@03:31:40 +v2.0.8-191-g68d8716f;imex;32;100000;;166748;52697;297268;604430;2417720;11;2.626243019;2022-02-03@03:31:48 +v2.0.8-191-g68d8716f;imex;32;100000;;166748;52697;297772;604504;2418016;11;2.795152004;2022-02-03@03:31:55 +v2.0.8-191-g68d8716f;imex;32;100000;;166748;52697;297988;604472;2417888;11;2.632789987;2022-02-03@03:32:03 +v2.0.8;single;32;100000;;166748;52697;63996;17566;70264;38;9.218257705;2022-02-03@03:32:28 +v2.0.8;single;32;100000;;166748;52697;64316;17570;70280;38;9.262111096;2022-02-03@03:32:43 +v2.0.8;single;32;100000;;166748;52697;63944;17565;70260;38;9.251625557;2022-02-03@03:32:57 +v2.0.8;single;32;100000;;166748;52697;64060;17582;70328;38;9.281909278;2022-02-03@03:33:11 +v2.0.8;single;32;100000;;166748;52697;64092;17558;70232;38;9.250030044;2022-02-03@03:33:25 +v2.0.8;single;32;100000;;166748;52697;64116;17574;70296;38;9.293164969;2022-02-03@03:33:39 +v2.0.8;single;32;100000;;166748;52697;63844;17557;70228;38;9.300185852;2022-02-03@03:33:53 +v2.0.8;single;32;100000;;166748;52697;64016;17558;70232;38;9.326301222;2022-02-03@03:34:07 +v2.0.8-169-ga840170e;single;32;100000;;166748;52697;50292;14138;56552;41;9.974790615;2022-02-03@03:34:24 +v2.0.8-169-ga840170e;single;32;100000;;166748;52697;50344;14177;56708;39;9.481383993;2022-02-03@03:34:39 +v2.0.8-169-ga840170e;single;32;100000;;166748;52697;50396;14168;56672;37;8.974590069;2022-02-03@03:34:52 +v2.0.8-169-ga840170e;single;32;100000;;166748;52697;50416;14150;56600;37;8.999044951;2022-02-03@03:35:06 +v2.0.8-169-ga840170e;single;32;100000;;166748;52697;50500;14153;56612;39;9.501545895;2022-02-03@03:35:20 +v2.0.8-169-ga840170e;single;32;100000;;166748;52697;50300;14171;56684;38;9.266433712;2022-02-03@03:35:35 +v2.0.8-169-ga840170e;single;32;100000;;166748;52697;50448;14177;56708;37;9.002393156;2022-02-03@03:35:48 +v2.0.8-169-ga840170e;single;32;100000;;166748;52697;50360;14146;56584;37;8.999302476;2022-02-03@03:36:02 +v2.0.8-191-g68d8716f;single;32;100000;;166748;52697;50116;549758;2199032;10;2.417509163;2022-02-03@03:36:12 +v2.0.8-191-g68d8716f;single;32;100000;;166748;52697;51656;549895;2199580;8;2.037054128;2022-02-03@03:36:19 +v2.0.8-191-g68d8716f;single;32;100000;;166748;52697;50724;549806;2199224;9;2.180783198;2022-02-03@03:36:26 +v2.0.8-191-g68d8716f;single;32;100000;;166748;52697;50932;549784;2199136;9;2.177541835;2022-02-03@03:36:33 +v2.0.8-191-g68d8716f;single;32;100000;;166748;52697;50488;549756;2199024;10;2.418719794;2022-02-03@03:36:40 +v2.0.8-191-g68d8716f;single;32;100000;;166748;52697;49888;549799;2199196;9;2.172596130;2022-02-03@03:36:47 +v2.0.8-191-g68d8716f;single;32;100000;;166748;52697;50720;549780;2199120;10;2.465486684;2022-02-03@03:36:54 +v2.0.8-191-g68d8716f;single;32;100000;;166748;52697;49776;549787;2199148;8;2.084299164;2022-02-03@03:37:01 +v2.0.8;mulimex;32;100000;;166748;52697;811120;204292;817168;78;19.446498700;2022-02-03@03:37:37 +v2.0.8;mulimex;32;100000;;166748;52697;810944;204239;816956;79;19.458937156;2022-02-03@03:38:02 +v2.0.8;mulimex;32;100000;;166748;52697;810864;204292;817168;80;19.656616262;2022-02-03@03:38:28 +v2.0.8;mulimex;32;100000;;166748;52697;810732;204251;817004;79;19.433095414;2022-02-03@03:38:54 +v2.0.8;mulimex;32;100000;;166748;52697;811056;204270;817080;78;19.216247533;2022-02-03@03:39:19 +v2.0.8;mulimex;32;100000;;166748;52697;811068;204285;817140;79;19.417941708;2022-02-03@03:39:45 +v2.0.8;mulimex;32;100000;;166748;52697;811076;204285;817140;78;19.185879127;2022-02-03@03:40:10 +v2.0.8;mulimex;32;100000;;166748;52697;810936;204298;817192;78;19.183132590;2022-02-03@03:40:35 +v2.0.8-169-ga840170e;mulimex;32;100000;;166748;52697;694024;711217;2844868;44;10.890215748;2022-02-03@03:40:55 +v2.0.8-169-ga840170e;mulimex;32;100000;;166748;52697;694264;711273;2845092;44;10.885117803;2022-02-03@03:41:10 +v2.0.8-169-ga840170e;mulimex;32;100000;;166748;52697;695264;711095;2844380;44;10.906228136;2022-02-03@03:41:26 +v2.0.8-169-ga840170e;mulimex;32;100000;;166748;52697;694148;711047;2844188;44;10.861365333;2022-02-03@03:41:42 +v2.0.8-169-ga840170e;mulimex;32;100000;;166748;52697;695224;711212;2844848;44;10.949888719;2022-02-03@03:41:57 +v2.0.8-169-ga840170e;mulimex;32;100000;;166748;52697;694724;711583;2846332;43;10.625223748;2022-02-03@03:42:13 +v2.0.8-169-ga840170e;mulimex;32;100000;;166748;52697;695188;711052;2844208;43;10.669767968;2022-02-03@03:42:28 +v2.0.8-169-ga840170e;mulimex;32;100000;;166748;52697;693784;711064;2844256;44;10.937289159;2022-02-03@03:42:44 +v2.0.8-191-g68d8716f;mulimex;32;100000;;166748;52697;702632;1245382;4981528;14;3.413564323;2022-02-03@03:42:55 +v2.0.8-191-g68d8716f;mulimex;32;100000;;166748;52697;700180;1245477;4981908;14;3.469947154;2022-02-03@03:43:03 +v2.0.8-191-g68d8716f;mulimex;32;100000;;166748;52697;699664;1245456;4981824;13;3.299001177;2022-02-03@03:43:11 +v2.0.8-191-g68d8716f;mulimex;32;100000;;166748;52697;697732;1245341;4981364;14;3.485798201;2022-02-03@03:43:20 +v2.0.8-191-g68d8716f;mulimex;32;100000;;166748;52697;701120;1245404;4981616;14;3.489658214;2022-02-03@03:43:28 +v2.0.8-191-g68d8716f;mulimex;32;100000;;166748;52697;699048;1245320;4981280;14;3.547827353;2022-02-03@03:43:37 +v2.0.8-191-g68d8716f;mulimex;32;100000;;166748;52697;699684;1245477;4981908;13;3.290228948;2022-02-03@03:43:45 +v2.0.8-191-g68d8716f;mulimex;32;100000;;166748;52697;698284;1245349;4981396;14;3.547135679;2022-02-03@03:43:53 +v2.0.8;multi;100;100000;;184114;52738;1713052;429823;1719292;273;67.385808014;2022-02-03@03:45:21 +v2.0.8;multi;100;100000;;184114;52738;1712852;429793;1719172;275;67.757938249;2022-02-03@03:46:38 +v2.0.8;multi;100;100000;;184114;52738;1713168;429842;1719368;274;67.509844463;2022-02-03@03:47:54 +v2.0.8;multi;100;100000;;184114;52738;1713132;429783;1719132;277;68.044733435;2022-02-03@03:49:11 +v2.0.8;multi;100;100000;;184114;52738;1713124;429801;1719204;271;66.940725001;2022-02-03@03:50:28 +v2.0.8;multi;100;100000;;184114;52738;1713312;429840;1719360;274;67.369835399;2022-02-03@03:51:44 +v2.0.8;multi;100;100000;;184114;52738;1712952;429800;1719200;275;67.498930363;2022-02-03@03:53:01 +v2.0.8;multi;100;100000;;184114;52738;1713104;429787;1719148;275;67.725068578;2022-02-03@03:54:18 +v2.0.8-169-ga840170e;multi;100;100000;;184114;52738;1425992;2005657;8022628;83;20.557725451;2022-02-03@03:54:49 +v2.0.8-169-ga840170e;multi;100;100000;;184114;52738;1429844;2005698;8022792;82;20.209845376;2022-02-03@03:55:15 +v2.0.8-169-ga840170e;multi;100;100000;;184114;52738;1429500;2005671;8022684;85;21.015281049;2022-02-03@03:55:41 +v2.0.8-169-ga840170e;multi;100;100000;;184114;52738;1429628;2005825;8023300;83;20.415961317;2022-02-03@03:56:06 +v2.0.8-169-ga840170e;multi;100;100000;;184114;52738;1422632;2005632;8022528;83;20.496795671;2022-02-03@03:56:32 +v2.0.8-169-ga840170e;multi;100;100000;;184114;52738;1430108;2005650;8022600;84;20.734262658;2022-02-03@03:56:57 +v2.0.8-169-ga840170e;multi;100;100000;;184114;52738;1430404;2012302;8049208;87;21.457426752;2022-02-03@03:57:24 +v2.0.8-169-ga840170e;multi;100;100000;;184114;52738;1425324;2005867;8023468;84;20.691418186;2022-02-03@03:57:50 +v2.0.8-191-g68d8716f;multi;100;100000;;184114;52738;1481388;2427324;9709296;35;8.778679458;2022-02-03@03:58:05 +v2.0.8-191-g68d8716f;multi;100;100000;;184114;52738;1442612;2427252;9709008;37;9.336091223;2022-02-03@03:58:20 +v2.0.8-191-g68d8716f;multi;100;100000;;184114;52738;1456140;2427248;9708992;35;8.843064050;2022-02-03@03:58:34 +v2.0.8-191-g68d8716f;multi;100;100000;;184114;52738;1469568;2428023;9712092;34;8.621438359;2022-02-03@03:58:48 +v2.0.8-191-g68d8716f;multi;100;100000;;184114;52738;1466508;2427266;9709064;35;8.815145970;2022-02-03@03:59:01 +v2.0.8-191-g68d8716f;multi;100;100000;;184114;52738;1478856;2427419;9709676;34;8.620417968;2022-02-03@03:59:15 +v2.0.8-191-g68d8716f;multi;100;100000;;184114;52738;1495244;2427218;9708872;35;8.737462480;2022-02-03@03:59:29 +v2.0.8-191-g68d8716f;multi;100;100000;;184114;52738;1492124;2427344;9709376;35;8.768686315;2022-02-03@03:59:43 +v2.0.8;imex;100;100000;;184114;52738;777560;195972;783888;137;33.677154762;2022-02-03@04:00:51 +v2.0.8;imex;100;100000;;184114;52738;777648;195972;783888;138;33.894622326;2022-02-03@04:01:31 +v2.0.8;imex;100;100000;;184114;52738;777880;196007;784028;137;33.626373147;2022-02-03@04:02:11 +v2.0.8;imex;100;100000;;184114;52738;777416;195943;783772;136;33.434963973;2022-02-03@04:02:50 +v2.0.8;imex;100;100000;;184114;52738;777728;196008;784032;138;33.973120680;2022-02-03@04:03:30 +v2.0.8;imex;100;100000;;184114;52738;777736;195952;783808;137;33.790319607;2022-02-03@04:04:09 +v2.0.8;imex;100;100000;;184114;52738;777592;195960;783840;137;33.706548283;2022-02-03@04:04:49 +v2.0.8;imex;100;100000;;184114;52738;777640;195941;783764;136;33.378781803;2022-02-03@04:05:28 +v2.0.8-169-ga840170e;imex;100;100000;;184114;52738;708088;181622;726488;151;37.013249999;2022-02-03@04:06:13 +v2.0.8-169-ga840170e;imex;100;100000;;184114;52738;707980;181589;726356;154;37.662782667;2022-02-03@04:06:56 +v2.0.8-169-ga840170e;imex;100;100000;;184114;52738;707820;181568;726272;153;37.459746076;2022-02-03@04:07:38 +v2.0.8-169-ga840170e;imex;100;100000;;184114;52738;707856;181564;726256;153;37.469682383;2022-02-03@04:08:20 +v2.0.8-169-ga840170e;imex;100;100000;;184114;52738;707912;181609;726436;152;37.283080970;2022-02-03@04:09:02 +v2.0.8-169-ga840170e;imex;100;100000;;184114;52738;708376;181674;726696;155;37.965614917;2022-02-03@04:09:45 +v2.0.8-169-ga840170e;imex;100;100000;;184114;52738;707884;181558;726232;148;36.272936479;2022-02-03@04:10:26 +v2.0.8-169-ga840170e;imex;100;100000;;184114;52738;707956;181631;726524;153;37.403954079;2022-02-03@04:11:09 +v2.0.8-191-g68d8716f;imex;100;100000;;184114;52738;728300;1820218;7280872;23;5.687433724;2022-02-03@04:11:21 +v2.0.8-191-g68d8716f;imex;100;100000;;184114;52738;729376;1820265;7281060;22;5.508918611;2022-02-03@04:11:32 +v2.0.8-191-g68d8716f;imex;100;100000;;184114;52738;721520;1819819;7279276;23;5.761245300;2022-02-03@04:11:43 +v2.0.8-191-g68d8716f;imex;100;100000;;184114;52738;724460;1820191;7280764;23;5.704400797;2022-02-03@04:11:53 +v2.0.8-191-g68d8716f;imex;100;100000;;184114;52738;721860;1819740;7278960;21;5.452494059;2022-02-03@04:12:04 +v2.0.8-191-g68d8716f;imex;100;100000;;184114;52738;723112;1819876;7279504;22;5.496902181;2022-02-03@04:12:14 +v2.0.8-191-g68d8716f;imex;100;100000;;184114;52738;726544;1820444;7281776;23;5.789891400;2022-02-03@04:12:25 +v2.0.8-191-g68d8716f;imex;100;100000;;184114;52738;727744;1820258;7281032;22;5.541548042;2022-02-03@04:12:35 +v2.0.8;single;100;100000;;184114;52738;76400;20696;82784;131;32.358187307;2022-02-03@04:13:43 +v2.0.8;single;100;100000;;184114;52738;76900;20742;82968;123;30.351653399;2022-02-03@04:14:18 +v2.0.8;single;100;100000;;184114;52738;76740;20738;82952;124;30.534422905;2022-02-03@04:14:54 +v2.0.8;single;100;100000;;184114;52738;76812;20722;82888;123;30.281710157;2022-02-03@04:15:29 +v2.0.8;single;100;100000;;184114;52738;76944;20761;83044;124;30.520022777;2022-02-03@04:16:04 +v2.0.8;single;100;100000;;184114;52738;76784;20757;83028;122;29.946760894;2022-02-03@04:16:39 +v2.0.8;single;100;100000;;184114;52738;76388;20702;82808;121;29.785200129;2022-02-03@04:17:13 +v2.0.8;single;100;100000;;184114;52738;76924;20768;83072;122;30.107677983;2022-02-03@04:17:48 +v2.0.8-169-ga840170e;single;100;100000;;184114;52738;62340;17218;68872;116;28.453683467;2022-02-03@04:18:24 +v2.0.8-169-ga840170e;single;100;100000;;184114;52738;62568;17236;68944;116;28.442184734;2022-02-03@04:18:57 +v2.0.8-169-ga840170e;single;100;100000;;184114;52738;62440;17242;68968;116;28.526600914;2022-02-03@04:19:30 +v2.0.8-169-ga840170e;single;100;100000;;184114;52738;62460;17224;68896;117;28.702293593;2022-02-03@04:20:04 +v2.0.8-169-ga840170e;single;100;100000;;184114;52738;62384;17205;68820;118;28.902405376;2022-02-03@04:20:38 +v2.0.8-169-ga840170e;single;100;100000;;184114;52738;62548;17231;68924;126;30.908334968;2022-02-03@04:21:13 +v2.0.8-169-ga840170e;single;100;100000;;184114;52738;62716;17210;68840;116;28.500362944;2022-02-03@04:21:47 +v2.0.8-169-ga840170e;single;100;100000;;184114;52738;62632;17207;68828;116;28.475685239;2022-02-03@04:22:20 +v2.0.8-191-g68d8716f;single;100;100000;;184114;52738;91248;1666616;6666464;17;4.271670995;2022-02-03@04:22:31 +v2.0.8-191-g68d8716f;single;100;100000;;184114;52738;76420;1666473;6665892;17;4.335608306;2022-02-03@04:22:41 +v2.0.8-191-g68d8716f;single;100;100000;;184114;52738;69236;1666528;6666112;17;4.229734845;2022-02-03@04:22:50 +v2.0.8-191-g68d8716f;single;100;100000;;184114;52738;72072;1666426;6665704;18;4.412883654;2022-02-03@04:22:59 +v2.0.8-191-g68d8716f;single;100;100000;;184114;52738;73128;1666487;6665948;17;4.212628622;2022-02-03@04:23:08 +v2.0.8-191-g68d8716f;single;100;100000;;184114;52738;77072;1666460;6665840;18;4.385832007;2022-02-03@04:23:17 +v2.0.8-191-g68d8716f;single;100;100000;;184114;52738;78064;1666492;6665968;18;4.568953528;2022-02-03@04:23:27 +v2.0.8-191-g68d8716f;single;100;100000;;184114;52738;77756;1666414;6665656;18;4.469834074;2022-02-03@04:23:36 +v2.0.8;mulimex;100;100000;;184114;52738;2359508;591472;2365888;287;70.676991979;2022-02-03@04:25:21 +v2.0.8;mulimex;100;100000;;184114;52738;2359816;591543;2366172;288;70.927290312;2022-02-03@04:26:43 +v2.0.8;mulimex;100;100000;;184114;52738;2359824;591512;2366048;286;70.510577014;2022-02-03@04:28:04 +v2.0.8;mulimex;100;100000;;184114;52738;2359636;591461;2365844;288;71.006861767;2022-02-03@04:29:25 +v2.0.8;mulimex;100;100000;;184114;52738;2359928;591515;2366060;285;70.281233979;2022-02-03@04:30:46 +v2.0.8;mulimex;100;100000;;184114;52738;2359656;591457;2365828;286;70.601197140;2022-02-03@04:32:07 +v2.0.8;mulimex;100;100000;;184114;52738;2359812;591476;2365904;286;70.666377892;2022-02-03@04:33:29 +v2.0.8;mulimex;100;100000;;184114;52738;2359708;591514;2366056;287;70.556825506;2022-02-03@04:34:50 +v2.0.8-169-ga840170e;mulimex;100;100000;;184114;52738;2038120;2161261;8645044;118;29.101637190;2022-02-03@04:35:32 +v2.0.8-169-ga840170e;mulimex;100;100000;;184114;52738;2033316;2160761;8643044;118;29.140601512;2022-02-03@04:36:06 +v2.0.8-169-ga840170e;mulimex;100;100000;;184114;52738;2035604;2160436;8641744;116;28.714020616;2022-02-03@04:36:40 +v2.0.8-169-ga840170e;mulimex;100;100000;;184114;52738;2032084;2160283;8641132;118;29.206112580;2022-02-03@04:37:14 +v2.0.8-169-ga840170e;mulimex;100;100000;;184114;52738;2034324;2161417;8645668;116;28.719086136;2022-02-03@04:37:48 +v2.0.8-169-ga840170e;mulimex;100;100000;;184114;52738;2038272;2160535;8642140;119;29.421605527;2022-02-03@04:38:23 +v2.0.8-169-ga840170e;mulimex;100;100000;;184114;52738;2035796;2160192;8640768;120;29.634764100;2022-02-03@04:38:58 +v2.0.8-169-ga840170e;mulimex;100;100000;;184114;52738;2034508;2160224;8640896;119;29.377756160;2022-02-03@04:39:32 +v2.0.8-191-g68d8716f;mulimex;100;100000;;184114;52738;2066540;2577570;10310280;41;10.276458137;2022-02-03@04:39:50 +v2.0.8-191-g68d8716f;mulimex;100;100000;;184114;52738;2062300;2577893;10311572;42;10.449553877;2022-02-03@04:40:05 +v2.0.8-191-g68d8716f;mulimex;100;100000;;184114;52738;2059708;2577368;10309472;42;10.452116857;2022-02-03@04:40:21 +v2.0.8-191-g68d8716f;mulimex;100;100000;;184114;52738;2056856;2578069;10312276;42;10.423925637;2022-02-03@04:40:37 +v2.0.8-191-g68d8716f;mulimex;100;100000;;184114;52738;2053748;2577565;10310260;45;11.163303590;2022-02-03@04:40:53 +v2.0.8-191-g68d8716f;mulimex;100;100000;;184114;52738;2061360;2590324;10361296;43;10.730801046;2022-02-03@04:41:09 +v2.0.8-191-g68d8716f;mulimex;100;100000;;184114;52738;2060692;2577812;10311248;43;10.710891642;2022-02-03@04:41:25 +v2.0.8-191-g68d8716f;mulimex;100;100000;;184114;52738;2063280;2578033;10312132;43;10.684359182;2022-02-03@04:41:41 +v2.0.8;multi;316;100000;;190189;52927;5281860;1321995;5287980;994;245.879640405;2022-02-03@04:46:59 +v2.0.8;multi;316;100000;;190189;52927;5382740;1347278;5389112;1050;257.578737989;2022-02-03@04:51:39 +v2.0.8;multi;316;100000;;190189;52927;5403916;1352524;5410096;1035;253.467316643;2022-02-03@04:56:15 +v2.0.8;multi;316;100000;;190189;52927;5496968;1375750;5503000;1041;257.867202868;2022-02-03@05:00:54 +v2.0.8;multi;316;100000;;190189;52927;5258544;1316143;5264572;960;237.893632545;2022-02-03@05:05:15 +v2.0.8;multi;316;100000;;190189;52927;5348760;1338752;5355008;998;250.531522184;2022-02-03@05:09:47 +v2.0.8;multi;316;100000;;190189;52927;5296112;1325603;5302412;1016;252.767831222;2022-02-03@05:14:23 +v2.0.8;multi;316;100000;;190189;52927;5372000;1344560;5378240;1034;253.495169761;2022-02-03@05:18:59 +v2.0.8-169-ga840170e;multi;316;100000;;190189;52927;4404020;3174481;12697924;276;69.023646352;2022-02-03@05:20:33 +v2.0.8-169-ga840170e;multi;316;100000;;190189;52927;4400612;3173771;12695084;280;70.015554835;2022-02-03@05:21:48 +v2.0.8-169-ga840170e;multi;316;100000;;190189;52927;4429320;3173950;12695800;286;70.681332973;2022-02-03@05:23:05 +v2.0.8-169-ga840170e;multi;316;100000;;190189;52927;4425700;3173919;12695676;286;70.795075847;2022-02-03@05:24:21 +v2.0.8-169-ga840170e;multi;316;100000;;190189;52927;4430492;3173609;12694436;278;69.789081001;2022-02-03@05:25:37 +v2.0.8-169-ga840170e;multi;316;100000;;190189;52927;4429668;3175102;12700408;284;70.196907446;2022-02-03@05:26:53 +v2.0.8-169-ga840170e;multi;316;100000;;190189;52927;4397176;3173123;12692492;283;70.311592696;2022-02-03@05:28:09 +v2.0.8-169-ga840170e;multi;316;100000;;190189;52927;4427280;3174034;12696136;296;74.267391825;2022-02-03@05:29:29 +v2.0.8-191-g68d8716f;multi;316;100000;;190189;52927;4485068;3174288;12697152;114;28.949716281;2022-02-03@05:30:05 +v2.0.8-191-g68d8716f;multi;316;100000;;190189;52927;4469544;3173345;12693380;117;29.661510944;2022-02-03@05:30:41 +v2.0.8-191-g68d8716f;multi;316;100000;;190189;52927;4463320;3174285;12697140;114;29.222807153;2022-02-03@05:31:16 +v2.0.8-191-g68d8716f;multi;316;100000;;190189;52927;4486372;3175018;12700072;116;29.549598654;2022-02-03@05:31:51 +v2.0.8-191-g68d8716f;multi;316;100000;;190189;52927;4438104;3172962;12691848;114;28.843304067;2022-02-03@05:32:26 +v2.0.8-191-g68d8716f;multi;316;100000;;190189;52927;4488232;3173855;12695420;117;29.646877166;2022-02-03@05:33:01 +v2.0.8-191-g68d8716f;multi;316;100000;;190189;52927;4461456;3174340;12697360;115;28.942223081;2022-02-03@05:33:36 +v2.0.8-191-g68d8716f;multi;316;100000;;190189;52927;4454720;3175039;12700156;113;28.743747784;2022-02-03@05:34:11 +v2.0.8;imex;316;100000;;190189;52927;2137860;535979;2143916;495;122.590894535;2022-02-03@05:38:31 +v2.0.8;imex;316;100000;;190189;52927;2137280;535863;2143452;491;121.383961452;2022-02-03@05:40:42 +v2.0.8;imex;316;100000;;190189;52927;2137372;535935;2143740;451;111.418025115;2022-02-03@05:42:43 +v2.0.8;imex;316;100000;;190189;52927;2137700;535986;2143944;459;113.312442412;2022-02-03@05:44:46 +v2.0.8;imex;316;100000;;190189;52927;2138192;536084;2144336;451;111.311870414;2022-02-03@05:46:46 +v2.0.8;imex;316;100000;;190189;52927;2137708;535916;2143664;463;114.303927138;2022-02-03@05:48:50 +v2.0.8;imex;316;100000;;190189;52927;2160324;541594;2166376;568;139.847036587;2022-02-03@05:51:19 +v2.0.8;imex;316;100000;;190189;52927;2137424;535952;2143808;457;113.878936852;2022-02-03@05:53:22 +v2.0.8-169-ga840170e;imex;316;100000;;190189;52927;1996660;510235;2040940;471;116.319749596;2022-02-03@05:55:30 +v2.0.8-169-ga840170e;imex;316;100000;;190189;52927;1995524;510024;2040096;483;118.976521811;2022-02-03@05:57:34 +v2.0.8-169-ga840170e;imex;316;100000;;190189;52927;1998328;510663;2042652;479;118.293786569;2022-02-03@05:59:38 +v2.0.8-169-ga840170e;imex;316;100000;;190189;52927;1999360;510972;2043888;489;120.978658268;2022-02-03@06:01:44 +v2.0.8-169-ga840170e;imex;316;100000;;190189;52927;2000976;511402;2045608;468;115.401895324;2022-02-03@06:03:45 +v2.0.8-169-ga840170e;imex;316;100000;;190189;52927;1996924;510305;2041220;501;123.097728865;2022-02-03@06:05:53 +v2.0.8-169-ga840170e;imex;316;100000;;190189;52927;1997264;510350;2041400;491;120.791956279;2022-02-03@06:07:59 +v2.0.8-169-ga840170e;imex;316;100000;;190189;52927;1997220;510388;2041552;482;118.743311862;2022-02-03@06:10:03 +v2.0.8-191-g68d8716f;imex;316;100000;;190189;52927;2068252;2566018;10264072;59;14.391527906;2022-02-03@06:10:25 +v2.0.8-191-g68d8716f;imex;316;100000;;190189;52927;2088456;2568363;10273452;67;16.644190435;2022-02-03@06:10:47 +v2.0.8-191-g68d8716f;imex;316;100000;;190189;52927;2072596;2566724;10266896;64;16.024444245;2022-02-03@06:11:08 +v2.0.8-191-g68d8716f;imex;316;100000;;190189;52927;2070076;2567913;10271652;66;16.351289470;2022-02-03@06:11:30 +v2.0.8-191-g68d8716f;imex;316;100000;;190189;52927;2078984;2567831;10271324;62;15.238132685;2022-02-03@06:11:50 +v2.0.8-191-g68d8716f;imex;316;100000;;190189;52927;2067560;2565743;10262972;67;16.814082533;2022-02-03@06:12:13 +v2.0.8-191-g68d8716f;imex;316;100000;;190189;52927;2070048;2566418;10265672;61;15.002802592;2022-02-03@06:12:33 +v2.0.8-191-g68d8716f;imex;316;100000;;190189;52927;2071136;2567149;10268596;67;16.353451606;2022-02-03@06:12:55 +v2.0.8;single;316;100000;;190189;52927;172536;44619;178476;458;113.098238068;2022-02-03@06:17:04 +v2.0.8;single;316;100000;;190189;52927;326152;83047;332188;496;122.566699993;2022-02-03@06:19:12 +v2.0.8;single;316;100000;;190189;52927;96068;25471;101884;428;106.050803206;2022-02-03@06:21:03 +v2.0.8;single;316;100000;;190189;52927;261112;66790;267160;486;119.511468952;2022-02-03@06:23:07 +v2.0.8;single;316;100000;;190189;52927;181584;46926;187704;466;115.345875130;2022-02-03@06:25:08 +v2.0.8;single;316;100000;;190189;52927;95156;25249;100996;422;104.911367718;2022-02-03@06:26:58 +v2.0.8;single;316;100000;;190189;52927;204440;52676;210704;464;114.297340504;2022-02-03@06:28:58 +v2.0.8;single;316;100000;;190189;52927;172040;44494;177976;445;109.724622301;2022-02-03@06:30:52 +v2.0.8-169-ga840170e;single;316;100000;;190189;52927;86300;23128;92512;364;90.136167912;2022-02-03@06:32:30 +v2.0.8-169-ga840170e;single;316;100000;;190189;52927;86320;23150;92600;373;92.585121893;2022-02-03@06:34:07 +v2.0.8-169-ga840170e;single;316;100000;;190189;52927;85852;23041;92164;378;93.174950447;2022-02-03@06:35:45 +v2.0.8-169-ga840170e;single;316;100000;;190189;52927;86040;23124;92496;367;90.846414752;2022-02-03@06:37:21 +v2.0.8-169-ga840170e;single;316;100000;;190189;52927;86264;23109;92436;379;93.737167514;2022-02-03@06:39:00 +v2.0.8-169-ga840170e;single;316;100000;;190189;52927;86132;23147;92588;364;90.296516902;2022-02-03@06:40:35 +v2.0.8-169-ga840170e;single;316;100000;;190189;52927;85856;23098;92392;370;91.471385760;2022-02-03@06:42:11 +v2.0.8-169-ga840170e;single;316;100000;;190189;52927;86148;23103;92412;395;97.162799138;2022-02-03@06:43:53 +v2.0.8-191-g68d8716f;single;316;100000;;190189;52927;200012;2101578;8406312;45;11.198236719;2022-02-03@06:44:11 +v2.0.8-191-g68d8716f;single;316;100000;;190189;52927;194384;2100834;8403336;50;12.182006692;2022-02-03@06:44:28 +v2.0.8-191-g68d8716f;single;316;100000;;190189;52927;247016;2101457;8405828;50;12.354683197;2022-02-03@06:44:46 +v2.0.8-191-g68d8716f;single;316;100000;;190189;52927;228096;2102139;8408556;49;12.045194388;2022-02-03@06:45:02 +v2.0.8-191-g68d8716f;single;316;100000;;190189;52927;175404;2100478;8401912;52;12.614416323;2022-02-03@06:45:20 +v2.0.8-191-g68d8716f;single;316;100000;;190189;52927;170236;2100946;8403784;51;12.495446867;2022-02-03@06:45:37 +v2.0.8-191-g68d8716f;single;316;100000;;190189;52927;131204;2099846;8399384;48;12.197375024;2022-02-03@06:45:54 +v2.0.8-191-g68d8716f;single;316;100000;;190189;52927;197968;2101074;8404296;50;12.404942083;2022-02-03@06:46:12 +v2.0.8;mulimex;316;100000;;190189;52927;7332100;1834561;7338244;945;237.399219849;2022-02-03@06:52:27 +v2.0.8;mulimex;316;100000;;190189;52927;7250904;1814304;7257216;943;236.718527622;2022-02-03@06:56:51 +v2.0.8;mulimex;316;100000;;190189;52927;7410312;1854089;7416356;992;248.435463468;2022-02-03@07:01:27 +v2.0.8;mulimex;316;100000;;190189;52927;7612072;1904561;7618244;1011;245.053884674;2022-02-03@07:06:00 +v2.0.8;mulimex;316;100000;;190189;52927;7352760;1839735;7358940;961;242.556831077;2022-02-03@07:10:31 +v2.0.8;mulimex;316;100000;;190189;52927;7317324;1830835;7323340;961;241.287011587;2022-02-03@07:15:00 +v2.0.8;mulimex;316;100000;;190189;52927;7398876;1851282;7405128;971;244.612596444;2022-02-03@07:19:32 +v2.0.8;mulimex;316;100000;;190189;52927;7505984;1878044;7512176;985;245.404879949;2022-02-03@07:24:06 +v2.0.8-169-ga840170e;mulimex;316;100000;;190189;52927;6264840;3650096;14600384;386;96.147257862;2022-02-03@07:26:12 +v2.0.8-169-ga840170e;mulimex;316;100000;;190189;52927;6266104;3649825;14599300;365;91.024647117;2022-02-03@07:27:49 +v2.0.8-169-ga840170e;mulimex;316;100000;;190189;52927;6280208;3653255;14613020;375;93.470309311;2022-02-03@07:29:28 +v2.0.8-169-ga840170e;mulimex;316;100000;;190189;52927;6261960;3648623;14594492;372;92.894013777;2022-02-03@07:31:07 +v2.0.8-169-ga840170e;mulimex;316;100000;;190189;52927;6264724;3651159;14604636;382;95.096312419;2022-02-03@07:32:48 +v2.0.8-169-ga840170e;mulimex;316;100000;;190189;52927;6267244;3649361;14597444;371;92.597706568;2022-02-03@07:34:27 +v2.0.8-169-ga840170e;mulimex;316;100000;;190189;52927;6298528;3651834;14607336;391;96.981682334;2022-02-03@07:36:10 +v2.0.8-169-ga840170e;mulimex;316;100000;;190189;52927;6310992;3653325;14613300;392;97.033327502;2022-02-03@07:37:53 +v2.0.8-191-g68d8716f;mulimex;316;100000;;190189;52927;6363852;3639934;14559736;139;35.152829098;2022-02-03@07:38:37 +v2.0.8-191-g68d8716f;mulimex;316;100000;;190189;52927;6351992;3636596;14546384;136;34.333764587;2022-02-03@07:39:17 +v2.0.8-191-g68d8716f;mulimex;316;100000;;190189;52927;6355956;3636635;14546540;143;36.006970585;2022-02-03@07:40:00 +v2.0.8-191-g68d8716f;mulimex;316;100000;;190189;52927;6363100;3634921;14539684;136;34.464716039;2022-02-03@07:40:40 +v2.0.8-191-g68d8716f;mulimex;316;100000;;190189;52927;6337424;3635356;14541424;140;35.503620575;2022-02-03@07:41:22 +v2.0.8-191-g68d8716f;mulimex;316;100000;;190189;52927;6353340;3636116;14544464;140;35.285220848;2022-02-03@07:42:04 +v2.0.8-191-g68d8716f;mulimex;316;100000;;190189;52927;6347020;3637883;14551532;140;35.529595963;2022-02-03@07:42:45 +v2.0.8-191-g68d8716f;mulimex;316;100000;;190189;52927;6352476;3635825;14543300;136;34.355653514;2022-02-03@07:43:26 +v2.0.8;multi;1000;100000;;193018;53631;17468552;4368669;17474676;3380;863.306128297;2022-02-03@08:07:14 +v2.0.8;multi;1000;100000;;193018;53631;17325700;4332943;17331772;3367;863.931550969;2022-02-03@08:22:50 +v2.0.8;multi;1000;100000;;193018;53631;16552052;4139590;16558360;3186;818.790084808;2022-02-03@08:37:42 +v2.0.8;multi;1000;100000;;193018;53631;16551264;4139311;16557244;3201;822.717123217;2022-02-03@08:52:34 +v2.0.8;multi;1000;100000;;193018;53631;16551788;4139461;16557844;3212;826.138209394;2022-02-03@09:07:27 +v2.0.8;multi;1000;100000;;193018;53631;16600900;4151723;16606892;3241;833.309896852;2022-02-03@09:22:30 +v2.0.8;multi;1000;100000;;193018;53631;16735736;4185443;16741772;3259;824.363579620;2022-02-03@09:37:24 +v2.0.8;multi;1000;100000;;193018;53631;16855612;4215378;16861512;3198;819.069948500;2022-02-03@09:52:10 +v2.0.8-169-ga840170e;multi;1000;100000;;193018;53631;13875876;5534093;22136372;1034;260.436925816;2022-02-03@09:57:43 +v2.0.8-169-ga840170e;multi;1000;100000;;193018;53631;13935584;5545120;22180480;996;251.851710383;2022-02-03@10:02:03 +v2.0.8-169-ga840170e;multi;1000;100000;;193018;53631;13915340;5542966;22171864;991;251.192607776;2022-02-03@10:06:23 +v2.0.8-169-ga840170e;multi;1000;100000;;193018;53631;13900320;5540726;22162904;1036;262.117055373;2022-02-03@10:10:54 +v2.0.8-169-ga840170e;multi;1000;100000;;193018;53631;13902760;5599028;22396112;1036;262.242990863;2022-02-03@10:15:25 +v2.0.8-169-ga840170e;multi;1000;100000;;193018;53631;13895216;5539317;22157268;1010;255.966011201;2022-02-03@10:19:49 +v2.0.8-169-ga840170e;multi;1000;100000;;193018;53631;13900932;5539274;22157096;1031;260.420562920;2022-02-03@10:24:18 +v2.0.8-169-ga840170e;multi;1000;100000;;193018;53631;13902396;5541916;22167664;1025;259.354372779;2022-02-03@10:28:46 +v2.0.8-191-g68d8716f;multi;1000;100000;;193018;53631;14093440;5563748;22254992;371;96.642722708;2022-02-03@10:30:34 +v2.0.8-191-g68d8716f;multi;1000;100000;;193018;53631;14188432;5563990;22255960;374;96.097045592;2022-02-03@10:32:18 +v2.0.8-191-g68d8716f;multi;1000;100000;;193018;53631;14313320;5589110;22356440;375;97.914719400;2022-02-03@10:34:05 +v2.0.8-191-g68d8716f;multi;1000;100000;;193018;53631;14086388;5564886;22259544;377;97.265356716;2022-02-03@10:35:51 +v2.0.8-191-g68d8716f;multi;1000;100000;;193018;53631;14301752;5566175;22264700;373;95.975012014;2022-02-03@10:37:36 +v2.0.8-191-g68d8716f;multi;1000;100000;;193018;53631;14379084;5565276;22261104;379;97.048136130;2022-02-03@10:39:21 +v2.0.8-191-g68d8716f;multi;1000;100000;;193018;53631;14102848;5561945;22247780;364;94.738872113;2022-02-03@10:41:05 +v2.0.8-191-g68d8716f;multi;1000;100000;;193018;53631;14237076;5554384;22217536;372;96.647769907;2022-02-03@10:42:50 +v2.0.8;imex;1000;100000;;193018;53631;6484424;1622679;6490716;1875;482.540425051;2022-02-03@11:02:59 +v2.0.8;imex;1000;100000;;193018;53631;6483852;1622554;6490216;1842;474.208983966;2022-02-03@11:14:45 +v2.0.8;imex;1000;100000;;193018;53631;6483120;1622300;6489200;1826;474.457891592;2022-02-03@11:23:03 +v2.0.8;imex;1000;100000;;193018;53631;6486588;1623136;6492544;1775;461.414092140;2022-02-03@11:31:06 +v2.0.8;imex;1000;100000;;193018;53631;6396260;1600616;6402464;1615;411.187226540;2022-02-03@11:41:36 +v2.0.8;imex;1000;100000;;193018;53631;6484300;1622652;6490608;1873;480.474788391;2022-02-03@11:50:00 +v2.0.8;imex;1000;100000;;193018;53631;6482328;1622165;6488660;1800;466.211549611;2022-02-03@11:58:09 +v2.0.8;imex;1000;100000;;193018;53631;6483020;1622355;6489420;1751;454.190549723;2022-02-03@12:06:05 +v2.0.8-169-ga840170e;imex;1000;100000;;193018;53631;6106832;1558338;6233352;1710;428.516817317;2022-02-03@12:13:38 +v2.0.8-169-ga840170e;imex;1000;100000;;193018;53631;6122324;1562264;6249056;1640;411.982097185;2022-02-03@12:20:36 +v2.0.8-169-ga840170e;imex;1000;100000;;193018;53631;6105360;1557955;6231820;1696;426.530304815;2022-02-03@12:27:49 +v2.0.8-169-ga840170e;imex;1000;100000;;193018;53631;6110212;1559166;6236664;1673;419.725820068;2022-02-03@12:34:55 +v2.0.8-169-ga840170e;imex;1000;100000;;193018;53631;6109680;1559014;6236056;1704;427.558229590;2022-02-03@12:42:09 +v2.0.8-169-ga840170e;imex;1000;100000;;193018;53631;6110564;1559249;6236996;1629;408.460628991;2022-02-03@12:49:04 +v2.0.8-169-ga840170e;imex;1000;100000;;193018;53631;6102580;1557245;6228980;1682;422.337072472;2022-02-03@12:56:13 +v2.0.8-169-ga840170e;imex;1000;100000;;193018;53631;6110072;1559156;6236624;1692;424.285084153;2022-02-03@13:03:23 +v2.0.8-191-g68d8716f;imex;1000;100000;;193018;53631;7321864;3616864;14467456;186;45.712994101;2022-02-03@13:04:18 +v2.0.8-191-g68d8716f;imex;1000;100000;;193018;53631;7282472;3619060;14476240;183;45.781475732;2022-02-03@13:05:20 +v2.0.8-191-g68d8716f;imex;1000;100000;;193018;53631;6666280;3599380;14397520;190;46.622790738;2022-02-03@13:06:22 +v2.0.8-191-g68d8716f;imex;1000;100000;;193018;53631;6522996;3593081;14372324;189;46.317347513;2022-02-03@13:07:24 +v2.0.8-191-g68d8716f;imex;1000;100000;;193018;53631;6758316;3595662;14382648;184;44.881492367;2022-02-03@13:08:25 +v2.0.8-191-g68d8716f;imex;1000;100000;;193018;53631;6430780;3591595;14366380;187;45.282494522;2022-02-03@13:09:26 +v2.0.8-191-g68d8716f;imex;1000;100000;;193018;53631;6612508;3592906;14371624;185;45.514072936;2022-02-03@13:10:27 +v2.0.8-191-g68d8716f;imex;1000;100000;;193018;53631;6454132;3589513;14358052;192;47.232171566;2022-02-03@13:11:30 +v2.0.8;single;1000;100000;;193018;53631;1408264;353580;1414320;1966;515.280917903;2022-02-03@13:32:37 +v2.0.8;single;1000;100000;;193018;53631;6477000;1620691;6482764;2079;542.068793106;2022-02-03@13:41:46 +v2.0.8;single;1000;100000;;193018;53631;142392;37140;148560;1513;391.485474774;2022-02-03@13:48:24 +v2.0.8;single;1000;100000;;193018;53631;626456;158172;632688;1948;511.336938028;2022-02-03@13:57:01 +v2.0.8;single;1000;100000;;193018;53631;143044;37276;149104;1913;501.711617731;2022-02-03@14:05:29 +v2.0.8;single;1000;100000;;193018;53631;152672;39761;159044;1548;401.680514237;2022-02-03@14:12:18 +v2.0.8;single;1000;100000;;193018;53631;141528;36906;147624;1938;508.531319109;2022-02-03@14:20:53 +v2.0.8;single;1000;100000;;193018;53631;2734640;685185;2740740;1665;429.584126719;2022-02-03@14:28:09 +v2.0.8-169-ga840170e;single;1000;100000;;193018;53631;146368;38200;152800;1345;338.466514238;2022-02-03@14:33:56 +v2.0.8-169-ga840170e;single;1000;100000;;193018;53631;147640;38545;154180;1317;332.678695484;2022-02-03@14:39:33 +v2.0.8-169-ga840170e;single;1000;100000;;193018;53631;141888;37061;148244;1320;333.745310462;2022-02-03@14:45:12 +v2.0.8-169-ga840170e;single;1000;100000;;193018;53631;143348;37433;149732;1639;414.009485232;2022-02-03@14:52:11 +v2.0.8-169-ga840170e;single;1000;100000;;193018;53631;143884;37555;150220;1348;340.067197467;2022-02-03@14:57:56 +v2.0.8-169-ga840170e;single;1000;100000;;193018;53631;144476;37754;151016;1341;338.978348933;2022-02-03@15:03:40 +v2.0.8-169-ga840170e;single;1000;100000;;193018;53631;144184;37625;150500;1356;342.926343492;2022-02-03@15:09:27 +v2.0.8-169-ga840170e;single;1000;100000;;193018;53631;143544;37491;149964;1314;331.320578720;2022-02-03@15:15:04 +v2.0.8-191-g68d8716f;single;1000;100000;;193018;53631;3740168;2190531;8762124;151;38.152168921;2022-02-03@15:15:50 +v2.0.8-191-g68d8716f;single;1000;100000;;193018;53631;3313112;2190909;8763636;164;41.809710293;2022-02-03@15:16:46 +v2.0.8-191-g68d8716f;single;1000;100000;;193018;53631;3455476;2136840;8547360;434;118.858650308;2022-02-03@15:19:00 +v2.0.8-191-g68d8716f;single;1000;100000;;193018;53631;3868996;2186787;8747148;257;59.759624992;2022-02-03@15:20:14 +v2.0.8-191-g68d8716f;single;1000;100000;;193018;53631;2764464;2142534;8570136;273;74.020984400;2022-02-03@15:21:43 +v2.0.8-191-g68d8716f;single;1000;100000;;193018;53631;2937188;2157951;8631804;202;50.051248078;2022-02-03@15:22:48 +v2.0.8-191-g68d8716f;single;1000;100000;;193018;53631;3582192;2159308;8637232;251;66.608551466;2022-02-03@15:24:09 +v2.0.8-191-g68d8716f;single;1000;100000;;193018;53631;3226296;2153810;8615240;244;61.470352963;2022-02-03@15:25:25 +v2.0.8;mulimex;1000;100000;;193018;53631;22835728;5710437;22841748;3080;788.018471684;2022-02-03@15:50:54 +v2.0.8;mulimex;1000;100000;;193018;53631;24592688;6149716;24598864;3229;812.944255473;2022-02-03@16:05:55 +v2.0.8;mulimex;1000;100000;;193018;53631;24113228;6029834;24119336;3173;807.567866212;2022-02-03@16:20:54 +v2.0.8;mulimex;1000;100000;;193018;53631;22878472;5721116;22884464;3201;777.645260928;2022-02-03@16:40:50 +v2.0.8;mulimex;1000;100000;;193018;53631;24293768;6074952;24299808;3144;800.867283481;2022-02-03@16:55:36 +v2.0.8;mulimex;1000;100000;;193018;53631;22834128;5710089;22840356;3051;779.932494695;2022-02-03@17:10:07 +v2.0.8;mulimex;1000;100000;;193018;53631;22835368;5710350;22841400;3209;777.752787584;2022-02-03@17:24:32 +v2.0.8;mulimex;1000;100000;;193018;53631;23548064;5888588;23554352;4022;1000.652184486;2022-02-03@17:42:40 +v2.0.8-169-ga840170e;mulimex;1000;100000;;193018;53631;19842736;7054553;28218212;1311;330.180895796;2022-02-03@17:49:42 +v2.0.8-169-ga840170e;mulimex;1000;100000;;193018;53631;19854320;7052744;28210976;1419;353.094363352;2022-02-03@17:55:45 +v2.0.8-169-ga840170e;mulimex;1000;100000;;193018;53631;19808364;7046524;28186096;1370;345.226145164;2022-02-03@18:01:40 +v2.0.8-169-ga840170e;mulimex;1000;100000;;193018;53631;19868820;7055835;28223340;1355;342.605010825;2022-02-03@18:07:37 +v2.0.8-169-ga840170e;mulimex;1000;100000;;193018;53631;19854968;7049060;28196240;1431;355.692300099;2022-02-03@18:13:43 +v2.0.8-169-ga840170e;mulimex;1000;100000;;193018;53631;19859836;7053934;28215736;1343;332.053004678;2022-02-03@18:19:25 +v2.0.8-169-ga840170e;mulimex;1000;100000;;193018;53631;19841016;7055541;28222164;1355;342.505930980;2022-02-03@18:25:17 +v2.0.8-169-ga840170e;mulimex;1000;100000;;193018;53631;19810872;7043420;28173680;1405;350.090272023;2022-02-03@18:31:21 +v2.0.8-191-g68d8716f;mulimex;1000;100000;;193018;53631;19990956;7034428;28137712;470;119.521376634;2022-02-03@18:33:33 +v2.0.8-191-g68d8716f;mulimex;1000;100000;;193018;53631;19967340;7020888;28083552;475;121.982156758;2022-02-03@18:35:51 +v2.0.8-191-g68d8716f;mulimex;1000;100000;;193018;53631;20049492;7057685;28230740;475;119.742134782;2022-02-03@18:38:08 +v2.0.8-191-g68d8716f;mulimex;1000;100000;;193018;53631;20060292;7026102;28104408;474;120.572194285;2022-02-03@18:40:19 +v2.0.8-191-g68d8716f;mulimex;1000;100000;;193018;53631;20033684;7071709;28286836;468;121.085714415;2022-02-03@18:42:37 +v2.0.8-191-g68d8716f;mulimex;1000;100000;;193018;53631;20017876;7073195;28292780;461;117.444891608;2022-02-03@18:44:45 +v2.0.8-191-g68d8716f;mulimex;1000;100000;;193018;53631;19998276;7030067;28120268;474;119.275644121;2022-02-03@18:46:55 +v2.0.8-191-g68d8716f;mulimex;1000;100000;;193018;53631;20038156;7025849;28103396;511;123.896344996;2022-02-03@18:49:11 +v2.0.8;multi;10;316228;;479961;199356;760232;191600;766400;57;18.100669973;2022-02-03@19:03:18 +v2.0.8;multi;10;316228;;479961;199356;760320;191653;766612;56;17.802495851;2022-02-03@19:03:42 +v2.0.8;multi;10;316228;;479961;199356;760964;191723;766892;57;18.088836720;2022-02-03@19:04:06 +v2.0.8;multi;10;316228;;479961;199356;760220;191639;766556;57;18.121039282;2022-02-03@19:04:30 +v2.0.8;multi;10;316228;;479961;199356;760748;191695;766780;57;18.088406992;2022-02-03@19:04:54 +v2.0.8;multi;10;316228;;479961;199356;760460;191648;766592;57;18.073004957;2022-02-03@19:05:18 +v2.0.8;multi;10;316228;;479961;199356;760496;191676;766704;56;17.803915352;2022-02-03@19:05:41 +v2.0.8;multi;10;316228;;479961;199356;760264;191601;766404;57;18.157421154;2022-02-03@19:06:06 +v2.0.8-169-ga840170e;multi;10;316228;;479961;199356;627360;324715;1298860;23;7.601787467;2022-02-03@19:06:21 +v2.0.8-169-ga840170e;multi;10;316228;;479961;199356;627244;324717;1298868;21;7.196022880;2022-02-03@19:06:34 +v2.0.8-169-ga840170e;multi;10;316228;;479961;199356;627076;324665;1298660;21;7.224608226;2022-02-03@19:06:48 +v2.0.8-169-ga840170e;multi;10;316228;;479961;199356;626588;324690;1298760;22;7.380568848;2022-02-03@19:07:00 +v2.0.8-169-ga840170e;multi;10;316228;;479961;199356;627316;324680;1298720;22;7.338933096;2022-02-03@19:07:13 +v2.0.8-169-ga840170e;multi;10;316228;;479961;199356;626984;324704;1298816;21;7.213435195;2022-02-03@19:07:27 +v2.0.8-169-ga840170e;multi;10;316228;;479961;199356;627436;324680;1298720;21;7.112946586;2022-02-03@19:07:40 +v2.0.8-169-ga840170e;multi;10;316228;;479961;199356;626788;324708;1298832;20;6.844253739;2022-02-03@19:07:53 +v2.0.8-191-g68d8716f;multi;10;316228;;479961;199356;632464;491546;1966184;15;4.720728580;2022-02-03@19:08:05 +v2.0.8-191-g68d8716f;multi;10;316228;;479961;199356;631728;491508;1966032;14;4.658141395;2022-02-03@19:08:15 +v2.0.8-191-g68d8716f;multi;10;316228;;479961;199356;630956;491547;1966188;13;4.222976203;2022-02-03@19:08:24 +v2.0.8-191-g68d8716f;multi;10;316228;;479961;199356;630632;491568;1966272;14;4.617645888;2022-02-03@19:08:34 +v2.0.8-191-g68d8716f;multi;10;316228;;479961;199356;628776;491536;1966144;13;4.204276172;2022-02-03@19:08:43 +v2.0.8-191-g68d8716f;multi;10;316228;;479961;199356;630768;491554;1966216;13;4.239881422;2022-02-03@19:08:52 +v2.0.8-191-g68d8716f;multi;10;316228;;479961;199356;630500;491567;1966268;14;4.557912490;2022-02-03@19:09:02 +v2.0.8-191-g68d8716f;multi;10;316228;;479961;199356;629412;491521;1966084;14;4.474037616;2022-02-03@19:09:12 +v2.0.8;imex;10;316228;;479961;199356;594388;150119;600476;39;12.217288652;2022-02-03@19:09:51 +v2.0.8;imex;10;316228;;479961;199356;595116;150346;601384;39;12.375427929;2022-02-03@19:10:09 +v2.0.8;imex;10;316228;;479961;199356;594196;150063;600252;39;12.288175323;2022-02-03@19:10:26 +v2.0.8;imex;10;316228;;479961;199356;594468;150130;600520;40;12.666691255;2022-02-03@19:10:44 +v2.0.8;imex;10;316228;;479961;199356;594160;150126;600504;39;12.327911197;2022-02-03@19:11:02 +v2.0.8;imex;10;316228;;479961;199356;594148;150047;600188;39;12.237630508;2022-02-03@19:11:20 +v2.0.8;imex;10;316228;;479961;199356;594984;150276;601104;40;12.538058437;2022-02-03@19:11:38 +v2.0.8;imex;10;316228;;479961;199356;594356;150148;600592;40;12.633004967;2022-02-03@19:11:56 +v2.0.8-169-ga840170e;imex;10;316228;;479961;199356;504156;127907;511628;231;77.120470289;2022-02-03@19:13:21 +v2.0.8-169-ga840170e;imex;10;316228;;479961;199356;504128;127982;511928;234;77.711870262;2022-02-03@19:14:43 +v2.0.8-169-ga840170e;imex;10;316228;;479961;199356;504364;127949;511796;232;77.211753566;2022-02-03@19:16:06 +v2.0.8-169-ga840170e;imex;10;316228;;479961;199356;503664;127785;511140;229;76.477384898;2022-02-03@19:17:27 +v2.0.8-169-ga840170e;imex;10;316228;;479961;199356;504656;128033;512132;233;77.697383350;2022-02-03@19:18:50 +v2.0.8-169-ga840170e;imex;10;316228;;479961;199356;504064;127910;511640;232;77.401652193;2022-02-03@19:20:12 +v2.0.8-169-ga840170e;imex;10;316228;;479961;199356;503636;127849;511396;232;77.277274203;2022-02-03@19:21:34 +v2.0.8-169-ga840170e;imex;10;316228;;479961;199356;504144;127942;511768;223;73.894835263;2022-02-03@19:22:53 +v2.0.8-191-g68d8716f;imex;10;316228;;479961;199356;503324;278904;1115616;17;5.396802326;2022-02-03@19:23:06 +v2.0.8-191-g68d8716f;imex;10;316228;;479961;199356;504764;278138;1112552;16;5.273096949;2022-02-03@19:23:16 +v2.0.8-191-g68d8716f;imex;10;316228;;479961;199356;504056;276822;1107288;18;5.795243228;2022-02-03@19:23:27 +v2.0.8-191-g68d8716f;imex;10;316228;;479961;199356;503960;278096;1112384;18;5.749869022;2022-02-03@19:23:38 +v2.0.8-191-g68d8716f;imex;10;316228;;479961;199356;504748;278945;1115780;17;5.408554363;2022-02-03@19:23:48 +v2.0.8-191-g68d8716f;imex;10;316228;;479961;199356;503364;276964;1107856;17;5.487876922;2022-02-03@19:23:59 +v2.0.8-191-g68d8716f;imex;10;316228;;479961;199356;504048;277593;1110372;18;5.835502915;2022-02-03@19:24:10 +v2.0.8-191-g68d8716f;imex;10;316228;;479961;199356;504648;278244;1112976;16;5.120643232;2022-02-03@19:24:21 +v2.0.8;single;10;316228;;479961;199356;163828;42541;170164;34;10.670019270;2022-02-03@19:24:59 +v2.0.8;single;10;316228;;479961;199356;164168;42633;170532;34;10.714429291;2022-02-03@19:25:14 +v2.0.8;single;10;316228;;479961;199356;165020;42817;171268;34;10.749774579;2022-02-03@19:25:30 +v2.0.8;single;10;316228;;479961;199356;164696;42766;171064;34;10.689285899;2022-02-03@19:25:46 +v2.0.8;single;10;316228;;479961;199356;163836;42527;170108;35;10.977159838;2022-02-03@19:26:02 +v2.0.8;single;10;316228;;479961;199356;164676;42739;170956;34;10.755818128;2022-02-03@19:26:17 +v2.0.8;single;10;316228;;479961;199356;163928;42575;170300;34;10.667790867;2022-02-03@19:26:33 +v2.0.8;single;10;316228;;479961;199356;164776;42754;171016;36;11.222724330;2022-02-03@19:26:49 +v2.0.8-169-ga840170e;single;10;316228;;479961;199356;127428;33388;133552;35;10.650012677;2022-02-03@19:27:07 +v2.0.8-169-ga840170e;single;10;316228;;479961;199356;127432;33451;133804;34;10.558070103;2022-02-03@19:27:22 +v2.0.8-169-ga840170e;single;10;316228;;479961;199356;127452;33465;133860;34;10.789338092;2022-02-03@19:27:38 +v2.0.8-169-ga840170e;single;10;316228;;479961;199356;127556;33445;133780;34;10.739616650;2022-02-03@19:27:54 +v2.0.8-169-ga840170e;single;10;316228;;479961;199356;127648;33460;133840;35;10.918017304;2022-02-03@19:28:09 +v2.0.8-169-ga840170e;single;10;316228;;479961;199356;127560;33448;133792;34;10.723903688;2022-02-03@19:28:25 +v2.0.8-169-ga840170e;single;10;316228;;479961;199356;127424;33441;133764;33;10.366541502;2022-02-03@19:28:40 +v2.0.8-169-ga840170e;single;10;316228;;479961;199356;127464;33454;133816;34;10.605268363;2022-02-03@19:28:56 +v2.0.8-191-g68d8716f;single;10;316228;;479961;199356;131036;199851;799404;11;3.385104392;2022-02-03@19:29:06 +v2.0.8-191-g68d8716f;single;10;316228;;479961;199356;134128;199904;799616;11;3.145593650;2022-02-03@19:29:16 +v2.0.8-191-g68d8716f;single;10;316228;;479961;199356;133756;200059;800236;11;3.268330570;2022-02-03@19:29:25 +v2.0.8-191-g68d8716f;single;10;316228;;479961;199356;144396;200070;800280;11;3.584803871;2022-02-03@19:29:35 +v2.0.8-191-g68d8716f;single;10;316228;;479961;199356;133700;199984;799936;12;3.608714588;2022-02-03@19:29:43 +v2.0.8-191-g68d8716f;single;10;316228;;479961;199356;135676;199814;799256;11;3.650940127;2022-02-03@19:29:53 +v2.0.8-191-g68d8716f;single;10;316228;;479961;199356;135544;199998;799992;12;3.714757259;2022-02-03@19:30:01 +v2.0.8-191-g68d8716f;single;10;316228;;479961;199356;141052;200065;800260;12;3.811908998;2022-02-03@19:30:11 +v2.0.8;mulimex;10;316228;;479961;199356;1073332;269861;1079444;59;18.991715917;2022-02-03@19:30:58 +v2.0.8;mulimex;10;316228;;479961;199356;1073628;269954;1079816;60;19.115197364;2022-02-03@19:31:24 +v2.0.8;mulimex;10;316228;;479961;199356;1073544;269880;1079520;59;18.783549169;2022-02-03@19:31:49 +v2.0.8;mulimex;10;316228;;479961;199356;1073596;269915;1079660;60;19.196274571;2022-02-03@19:32:15 +v2.0.8;mulimex;10;316228;;479961;199356;1073556;269885;1079540;60;19.041683246;2022-02-03@19:32:41 +v2.0.8;mulimex;10;316228;;479961;199356;1073564;269875;1079500;59;18.771604479;2022-02-03@19:33:07 +v2.0.8;mulimex;10;316228;;479961;199356;1073996;270069;1080276;60;19.010996066;2022-02-03@19:33:32 +v2.0.8;mulimex;10;316228;;479961;199356;1073284;269872;1079488;60;19.011560682;2022-02-03@19:33:58 +v2.0.8-169-ga840170e;mulimex;10;316228;;479961;199356;915388;397043;1588172;240;81.240801889;2022-02-03@19:35:28 +v2.0.8-169-ga840170e;mulimex;10;316228;;479961;199356;914856;397063;1588252;235;79.212343524;2022-02-03@19:36:53 +v2.0.8-169-ga840170e;mulimex;10;316228;;479961;199356;914956;397059;1588236;256;86.601180413;2022-02-03@19:38:26 +v2.0.8-169-ga840170e;mulimex;10;316228;;479961;199356;915440;396938;1587752;238;80.329047239;2022-02-03@19:39:52 +v2.0.8-169-ga840170e;mulimex;10;316228;;479961;199356;914944;397002;1588008;232;78.658030220;2022-02-03@19:41:17 +v2.0.8-169-ga840170e;mulimex;10;316228;;479961;199356;915192;397051;1588204;244;82.485581233;2022-02-03@19:42:45 +v2.0.8-169-ga840170e;mulimex;10;316228;;479961;199356;915172;397014;1588056;252;85.264522152;2022-02-03@19:44:16 +v2.0.8-169-ga840170e;mulimex;10;316228;;479961;199356;914836;396923;1587692;242;81.636058334;2022-02-03@19:45:44 +v2.0.8-191-g68d8716f;mulimex;10;316228;;479961;199356;917424;560939;2243756;17;5.627595395;2022-02-03@19:45:58 +v2.0.8-191-g68d8716f;mulimex;10;316228;;479961;199356;917012;562210;2248840;17;5.511046024;2022-02-03@19:46:09 +v2.0.8-191-g68d8716f;mulimex;10;316228;;479961;199356;916888;561727;2246908;18;5.933457024;2022-02-03@19:46:20 +v2.0.8-191-g68d8716f;mulimex;10;316228;;479961;199356;917204;562535;2250140;17;5.606410980;2022-02-03@19:46:31 +v2.0.8-191-g68d8716f;mulimex;10;316228;;479961;199356;916628;560690;2242760;16;5.224918383;2022-02-03@19:46:41 +v2.0.8-191-g68d8716f;mulimex;10;316228;;479961;199356;918328;560995;2243980;17;5.620913867;2022-02-03@19:46:52 +v2.0.8-191-g68d8716f;mulimex;10;316228;;479961;199356;917760;562706;2250824;17;5.684540260;2022-02-03@19:47:03 +v2.0.8-191-g68d8716f;mulimex;10;316228;;479961;199356;917800;560715;2242860;17;5.651983375;2022-02-03@19:47:13 +v2.0.8;multi;32;316228;;564441;201030;1997396;500875;2003500;196;63.436395638;2022-02-03@19:48:47 +v2.0.8;multi;32;316228;;564441;201030;1995676;500365;2001460;199;63.703843192;2022-02-03@19:50:00 +v2.0.8;multi;32;316228;;564441;201030;1995332;500336;2001344;197;63.016381461;2022-02-03@19:51:11 +v2.0.8;multi;32;316228;;564441;201030;1995688;500483;2001932;198;63.435352883;2022-02-03@19:52:24 +v2.0.8;multi;32;316228;;564441;201030;1995236;500330;2001320;197;63.372110530;2022-02-03@19:53:36 +v2.0.8;multi;32;316228;;564441;201030;1997124;500769;2003076;197;63.481817604;2022-02-03@19:54:49 +v2.0.8;multi;32;316228;;564441;201030;1997332;500872;2003488;197;63.291646500;2022-02-03@19:56:01 +v2.0.8;multi;32;316228;;564441;201030;1995656;500422;2001688;198;63.579733397;2022-02-03@19:57:13 +v2.0.8-169-ga840170e;multi;32;316228;;564441;201030;1672288;944392;3777568;56;18.354787385;2022-02-03@19:57:43 +v2.0.8-169-ga840170e;multi;32;316228;;564441;201030;1672536;944381;3777524;57;18.421398113;2022-02-03@19:58:07 +v2.0.8-169-ga840170e;multi;32;316228;;564441;201030;1674068;944582;3778328;55;18.140361630;2022-02-03@19:58:30 +v2.0.8-169-ga840170e;multi;32;316228;;564441;201030;1673616;944507;3778028;56;18.587431872;2022-02-03@19:58:54 +v2.0.8-169-ga840170e;multi;32;316228;;564441;201030;1670112;943920;3775680;55;18.436486504;2022-02-03@19:59:18 +v2.0.8-169-ga840170e;multi;32;316228;;564441;201030;1670628;944066;3776264;56;18.324174921;2022-02-03@19:59:41 +v2.0.8-169-ga840170e;multi;32;316228;;564441;201030;1670780;943927;3775708;57;18.645134883;2022-02-03@20:00:05 +v2.0.8-169-ga840170e;multi;32;316228;;564441;201030;1673580;944627;3778508;56;18.524527870;2022-02-03@20:00:29 +v2.0.8-191-g68d8716f;multi;32;316228;;564441;201030;1677620;1468271;5873084;28;9.677386591;2022-02-03@20:00:46 +v2.0.8-191-g68d8716f;multi;32;316228;;564441;201030;1689044;1468309;5873236;27;9.412043603;2022-02-03@20:01:01 +v2.0.8-191-g68d8716f;multi;32;316228;;564441;201030;1684744;1468094;5872376;28;9.679222041;2022-02-03@20:01:16 +v2.0.8-191-g68d8716f;multi;32;316228;;564441;201030;1677052;1468293;5873172;28;9.585466010;2022-02-03@20:01:31 +v2.0.8-191-g68d8716f;multi;32;316228;;564441;201030;1679316;1468485;5873940;28;9.841863348;2022-02-03@20:01:46 +v2.0.8-191-g68d8716f;multi;32;316228;;564441;201030;1693272;1468259;5873036;27;9.443133693;2022-02-03@20:02:01 +v2.0.8-191-g68d8716f;multi;32;316228;;564441;201030;1680508;1468316;5873264;28;9.717036506;2022-02-03@20:02:16 +v2.0.8-191-g68d8716f;multi;32;316228;;564441;201030;1676248;1467854;5871416;28;9.557940355;2022-02-03@20:02:31 +v2.0.8;imex;32;316228;;564441;201030;1198808;301225;1204900;120;37.800512864;2022-02-03@20:03:39 +v2.0.8;imex;32;316228;;564441;201030;1199248;301360;1205440;118;36.955478693;2022-02-03@20:04:23 +v2.0.8;imex;32;316228;;564441;201030;1197900;301059;1204236;116;36.297098568;2022-02-03@20:05:07 +v2.0.8;imex;32;316228;;564441;201030;1196664;300707;1202828;118;37.106370172;2022-02-03@20:05:51 +v2.0.8;imex;32;316228;;564441;201030;1197160;300862;1203448;119;37.460994264;2022-02-03@20:06:35 +v2.0.8;imex;32;316228;;564441;201030;1196988;300846;1203384;116;36.406368297;2022-02-03@20:07:19 +v2.0.8;imex;32;316228;;564441;201030;1197832;300955;1203820;117;36.635464337;2022-02-03@20:08:02 +v2.0.8;imex;32;316228;;564441;201030;1197092;300886;1203544;116;36.827039557;2022-02-03@20:08:46 +v2.0.8-169-ga840170e;imex;32;316228;;564441;201030;1054744;266200;1064800;309;102.506706700;2022-02-03@20:10:38 +v2.0.8-169-ga840170e;imex;32;316228;;564441;201030;1057188;266875;1067500;315;104.945146914;2022-02-03@20:12:29 +v2.0.8-169-ga840170e;imex;32;316228;;564441;201030;1056300;266576;1066304;297;98.656621485;2022-02-03@20:14:13 +v2.0.8-169-ga840170e;imex;32;316228;;564441;201030;1055792;266540;1066160;294;97.682145307;2022-02-03@20:15:57 +v2.0.8-169-ga840170e;imex;32;316228;;564441;201030;1057436;266939;1067756;316;105.331285315;2022-02-03@20:17:49 +v2.0.8-169-ga840170e;imex;32;316228;;564441;201030;1058612;267151;1068604;319;105.880776701;2022-02-03@20:19:41 +v2.0.8-169-ga840170e;imex;32;316228;;564441;201030;1057116;266886;1067544;310;103.304779955;2022-02-03@20:21:30 +v2.0.8-169-ga840170e;imex;32;316228;;564441;201030;1057992;267067;1068268;322;107.374461715;2022-02-03@20:23:23 +v2.0.8-191-g68d8716f;imex;32;316228;;564441;201030;1060576;770614;3082456;29;9.601403230;2022-02-03@20:23:41 +v2.0.8-191-g68d8716f;imex;32;316228;;564441;201030;1061860;770794;3083176;29;9.778064195;2022-02-03@20:23:56 +v2.0.8-191-g68d8716f;imex;32;316228;;564441;201030;1060608;770404;3081616;28;9.534692749;2022-02-03@20:24:11 +v2.0.8-191-g68d8716f;imex;32;316228;;564441;201030;1060400;770741;3082964;28;9.292749167;2022-02-03@20:24:25 +v2.0.8-191-g68d8716f;imex;32;316228;;564441;201030;1061592;770686;3082744;28;9.438102784;2022-02-03@20:24:40 +v2.0.8-191-g68d8716f;imex;32;316228;;564441;201030;1063232;770969;3083876;28;9.443758386;2022-02-03@20:24:55 +v2.0.8-191-g68d8716f;imex;32;316228;;564441;201030;1061964;770566;3082264;27;9.250639284;2022-02-03@20:25:09 +v2.0.8-191-g68d8716f;imex;32;316228;;564441;201030;1062796;770885;3083540;28;9.226445198;2022-02-03@20:25:25 +v2.0.8;single;32;316228;;564441;201030;204940;52784;211136;105;33.015951290;2022-02-03@20:26:28 +v2.0.8;single;32;316228;;564441;201030;205248;52923;211692;104;32.618852204;2022-02-03@20:27:07 +v2.0.8;single;32;316228;;564441;201030;204344;52610;210440;102;32.064591280;2022-02-03@20:27:44 +v2.0.8;single;32;316228;;564441;201030;203836;52517;210068;101;31.922112197;2022-02-03@20:28:22 +v2.0.8;single;32;316228;;564441;201030;204808;52729;210916;102;32.143658751;2022-02-03@20:29:00 +v2.0.8;single;32;316228;;564441;201030;204376;52654;210616;103;32.409855416;2022-02-03@20:29:38 +v2.0.8;single;32;316228;;564441;201030;203968;52542;210168;102;32.237741123;2022-02-03@20:30:17 +v2.0.8;single;32;316228;;564441;201030;204588;52669;210676;101;31.887046376;2022-02-03@20:30:54 +v2.0.8-169-ga840170e;single;32;316228;;564441;201030;158804;41287;165148;101;31.611179206;2022-02-03@20:31:33 +v2.0.8-169-ga840170e;single;32;316228;;564441;201030;159052;41354;165416;101;31.480480280;2022-02-03@20:32:10 +v2.0.8-169-ga840170e;single;32;316228;;564441;201030;158920;41344;165376;101;31.303404256;2022-02-03@20:32:48 +v2.0.8-169-ga840170e;single;32;316228;;564441;201030;158636;41260;165040;100;31.163432847;2022-02-03@20:33:25 +v2.0.8-169-ga840170e;single;32;316228;;564441;201030;158888;41307;165228;102;31.848213884;2022-02-03@20:34:03 +v2.0.8-169-ga840170e;single;32;316228;;564441;201030;158940;41291;165164;102;31.673911144;2022-02-03@20:34:41 +v2.0.8-169-ga840170e;single;32;316228;;564441;201030;158768;41270;165080;100;31.212337613;2022-02-03@20:35:18 +v2.0.8-169-ga840170e;single;32;316228;;564441;201030;158684;41301;165204;100;31.105116696;2022-02-03@20:35:55 +v2.0.8-191-g68d8716f;single;32;316228;;564441;201030;183752;564245;2256980;18;6.329625566;2022-02-03@20:36:10 +v2.0.8-191-g68d8716f;single;32;316228;;564441;201030;178496;564177;2256708;17;5.903963683;2022-02-03@20:36:22 +v2.0.8-191-g68d8716f;single;32;316228;;564441;201030;166360;564180;2256720;18;5.939968628;2022-02-03@20:36:34 +v2.0.8-191-g68d8716f;single;32;316228;;564441;201030;182332;564248;2256992;18;6.271316493;2022-02-03@20:36:46 +v2.0.8-191-g68d8716f;single;32;316228;;564441;201030;163680;564188;2256752;18;5.959872843;2022-02-03@20:36:59 +v2.0.8-191-g68d8716f;single;32;316228;;564441;201030;175380;564188;2256752;18;6.105659248;2022-02-03@20:37:11 +v2.0.8-191-g68d8716f;single;32;316228;;564441;201030;158744;563903;2255612;18;5.789413145;2022-02-03@20:37:23 +v2.0.8-191-g68d8716f;single;32;316228;;564441;201030;178404;564257;2257028;17;6.217304008;2022-02-03@20:37:35 +v2.0.8;mulimex;32;316228;;564441;201030;2843832;712480;2849920;218;69.009013307;2022-02-03@20:39:16 +v2.0.8;mulimex;32;316228;;564441;201030;2843436;712368;2849472;214;67.545477823;2022-02-03@20:40:35 +v2.0.8;mulimex;32;316228;;564441;201030;2845360;712878;2851512;215;67.915526880;2022-02-03@20:41:54 +v2.0.8;mulimex;32;316228;;564441;201030;2843612;712463;2849852;218;68.953625815;2022-02-03@20:43:15 +v2.0.8;mulimex;32;316228;;564441;201030;2843792;712435;2849740;215;68.021109810;2022-02-03@20:44:34 +v2.0.8;mulimex;32;316228;;564441;201030;2843512;712401;2849604;214;67.425542564;2022-02-03@20:45:53 +v2.0.8;mulimex;32;316228;;564441;201030;2843592;712424;2849696;215;67.893724804;2022-02-03@20:47:12 +v2.0.8;mulimex;32;316228;;564441;201030;2843776;712520;2850080;216;68.207891812;2022-02-03@20:48:32 +v2.0.8-169-ga840170e;mulimex;32;316228;;564441;201030;2463024;1134768;4539072;209;70.721863363;2022-02-03@20:49:56 +v2.0.8-169-ga840170e;mulimex;32;316228;;564441;201030;2462100;1134870;4539480;218;74.159586631;2022-02-03@20:51:16 +v2.0.8-169-ga840170e;mulimex;32;316228;;564441;201030;2459872;1133519;4534076;222;75.475383659;2022-02-03@20:52:37 +v2.0.8-169-ga840170e;mulimex;32;316228;;564441;201030;2460992;1134091;4536364;222;75.298175308;2022-02-03@20:53:57 +v2.0.8-169-ga840170e;mulimex;32;316228;;564441;201030;2458812;1133416;4533664;217;73.250632776;2022-02-03@20:55:16 +v2.0.8-169-ga840170e;mulimex;32;316228;;564441;201030;2459068;1133469;4533876;217;74.311785905;2022-02-03@20:56:35 +v2.0.8-169-ga840170e;mulimex;32;316228;;564441;201030;2459212;1142113;4568452;221;74.829166716;2022-02-03@20:57:55 +v2.0.8-169-ga840170e;mulimex;32;316228;;564441;201030;2459060;1141989;4567956;222;75.985762215;2022-02-03@20:59:17 +v2.0.8-191-g68d8716f;mulimex;32;316228;;564441;201030;2470184;1665411;6661644;37;12.685265036;2022-02-03@20:59:37 +v2.0.8-191-g68d8716f;mulimex;32;316228;;564441;201030;2468568;1665423;6661692;39;13.388871975;2022-02-03@20:59:56 +v2.0.8-191-g68d8716f;mulimex;32;316228;;564441;201030;2469704;1665339;6661356;37;12.756166268;2022-02-03@21:00:14 +v2.0.8-191-g68d8716f;mulimex;32;316228;;564441;201030;2469360;1665592;6662368;38;13.017830546;2022-02-03@21:00:33 +v2.0.8-191-g68d8716f;mulimex;32;316228;;564441;201030;2469536;1665623;6662492;38;13.199590092;2022-02-03@21:00:51 +v2.0.8-191-g68d8716f;mulimex;32;316228;;564441;201030;2469820;1665593;6662372;39;13.421426497;2022-02-03@21:01:10 +v2.0.8-191-g68d8716f;mulimex;32;316228;;564441;201030;2469316;1665388;6661552;38;12.991844484;2022-02-03@21:01:29 +v2.0.8-191-g68d8716f;mulimex;32;316228;;564441;201030;2468440;1665167;6660668;38;13.038986850;2022-02-03@21:01:47 +v2.0.8;multi;100;316228;;594700;201496;5655716;1415485;5661940;701;219.556105830;2022-02-03@21:06:01 +v2.0.8;multi;100;316228;;594700;201496;5655584;1415439;5661756;693;217.811588652;2022-02-03@21:09:59 +v2.0.8;multi;100;316228;;594700;201496;5655520;1415411;5661644;682;215.243894128;2022-02-03@21:13:55 +v2.0.8;multi;100;316228;;594700;201496;5655676;1415440;5661760;686;215.832614301;2022-02-03@21:17:51 +v2.0.8;multi;100;316228;;594700;201496;5655800;1415478;5661912;687;215.907078157;2022-02-03@21:21:47 +v2.0.8;multi;100;316228;;594700;201496;5655752;1415474;5661896;681;214.325194434;2022-02-03@21:25:41 +v2.0.8;multi;100;316228;;594700;201496;5655740;1415431;5661724;680;214.475993046;2022-02-03@21:29:36 +v2.0.8;multi;100;316228;;594700;201496;5655788;1415440;5661760;692;217.781143001;2022-02-03@21:33:34 +v2.0.8-169-ga840170e;multi;100;316228;;594700;201496;4802040;2837518;11350072;203;64.043727066;2022-02-03@21:35:00 +v2.0.8-169-ga840170e;multi;100;316228;;594700;201496;4810660;2810954;11243816;202;64.190775229;2022-02-03@21:36:11 +v2.0.8-169-ga840170e;multi;100;316228;;594700;201496;4799472;2811050;11244200;204;64.909993937;2022-02-03@21:37:21 +v2.0.8-169-ga840170e;multi;100;316228;;594700;201496;4802516;2837441;11349764;204;64.791092462;2022-02-03@21:38:32 +v2.0.8-169-ga840170e;multi;100;316228;;594700;201496;4801976;2811105;11244420;203;64.474865085;2022-02-03@21:39:43 +v2.0.8-169-ga840170e;multi;100;316228;;594700;201496;4810804;2811124;11244496;205;64.752235416;2022-02-03@21:40:53 +v2.0.8-169-ga840170e;multi;100;316228;;594700;201496;4809620;2811609;11246436;203;64.776016272;2022-02-03@21:42:04 +v2.0.8-169-ga840170e;multi;100;316228;;594700;201496;4811300;2837490;11349960;200;64.131733712;2022-02-03@21:43:14 +v2.0.8-191-g68d8716f;multi;100;316228;;594700;201496;4810868;3218565;12874260;83;28.217756981;2022-02-03@21:43:50 +v2.0.8-191-g68d8716f;multi;100;316228;;594700;201496;4810892;3218677;12874708;81;27.082966319;2022-02-03@21:44:24 +v2.0.8-191-g68d8716f;multi;100;316228;;594700;201496;4812432;3218565;12874260;84;27.458714401;2022-02-03@21:44:57 +v2.0.8-191-g68d8716f;multi;100;316228;;594700;201496;4823940;3219747;12878988;84;27.734992960;2022-02-03@21:45:31 +v2.0.8-191-g68d8716f;multi;100;316228;;594700;201496;4800040;3219346;12877384;82;27.510986056;2022-02-03@21:46:04 +v2.0.8-191-g68d8716f;multi;100;316228;;594700;201496;4804652;3218791;12875164;84;28.089037904;2022-02-03@21:46:38 +v2.0.8-191-g68d8716f;multi;100;316228;;594700;201496;4816344;3218763;12875052;82;27.470560658;2022-02-03@21:47:12 +v2.0.8-191-g68d8716f;multi;100;316228;;594700;201496;4817688;3218740;12874960;82;27.684297873;2022-02-03@21:47:46 +v2.0.8;imex;100;316228;;594700;201496;2846280;713088;2852352;359;109.324085092;2022-02-03@21:50:13 +v2.0.8;imex;100;316228;;594700;201496;2846072;713099;2852396;357;109.583646410;2022-02-03@21:52:14 +v2.0.8;imex;100;316228;;594700;201496;2846232;713128;2852512;358;109.796284523;2022-02-03@21:54:16 +v2.0.8;imex;100;316228;;594700;201496;2846100;713075;2852300;358;109.680396857;2022-02-03@21:56:17 +v2.0.8;imex;100;316228;;594700;201496;2846572;713149;2852596;371;113.979027421;2022-02-03@21:58:22 +v2.0.8;imex;100;316228;;594700;201496;2845788;713027;2852108;366;111.930538820;2022-02-03@22:00:26 +v2.0.8;imex;100;316228;;594700;201496;2846224;713073;2852292;353;108.346703218;2022-02-03@22:02:26 +v2.0.8;imex;100;316228;;594700;201496;2846080;713053;2852212;353;108.921417143;2022-02-03@22:04:26 +v2.0.8-169-ga840170e;imex;100;316228;;594700;201496;2590248;652189;2608756;437;134.270602484;2022-02-03@22:06:54 +v2.0.8-169-ga840170e;imex;100;316228;;594700;201496;2589720;652041;2608164;426;131.452951788;2022-02-03@22:09:12 +v2.0.8-169-ga840170e;imex;100;316228;;594700;201496;2590144;652179;2608716;424;130.091674709;2022-02-03@22:11:27 +v2.0.8-169-ga840170e;imex;100;316228;;594700;201496;2590752;652284;2609136;428;132.716559979;2022-02-03@22:13:45 +v2.0.8-169-ga840170e;imex;100;316228;;594700;201496;2590392;652263;2609052;438;134.817149170;2022-02-03@22:16:06 +v2.0.8-169-ga840170e;imex;100;316228;;594700;201496;2590656;652302;2609208;444;137.595680607;2022-02-03@22:18:29 +v2.0.8-169-ga840170e;imex;100;316228;;594700;201496;2590680;652275;2609100;432;133.020608126;2022-02-03@22:20:47 +v2.0.8-169-ga840170e;imex;100;316228;;594700;201496;2591476;652504;2610016;427;131.395060773;2022-02-03@22:23:04 +v2.0.8-191-g68d8716f;imex;100;316228;;594700;201496;2617456;2239425;8957700;63;20.810603066;2022-02-03@22:23:33 +v2.0.8-191-g68d8716f;imex;100;316228;;594700;201496;2612872;2238941;8955764;64;20.886209203;2022-02-03@22:23:59 +v2.0.8-191-g68d8716f;imex;100;316228;;594700;201496;2612564;2239061;8956244;62;21.050117907;2022-02-03@22:24:25 +v2.0.8-191-g68d8716f;imex;100;316228;;594700;201496;2615516;2239169;8956676;66;21.690930407;2022-02-03@22:24:52 +v2.0.8-191-g68d8716f;imex;100;316228;;594700;201496;2614636;2239109;8956436;62;21.159461065;2022-02-03@22:25:19 +v2.0.8-191-g68d8716f;imex;100;316228;;594700;201496;2610700;2238792;8955168;63;20.997612770;2022-02-03@22:25:46 +v2.0.8-191-g68d8716f;imex;100;316228;;594700;201496;2613788;2239036;8956144;61;20.485384055;2022-02-03@22:26:12 +v2.0.8-191-g68d8716f;imex;100;316228;;594700;201496;2611312;2238890;8955560;61;20.899023946;2022-02-03@22:26:39 +v2.0.8;single;100;316228;;594700;201496;229896;58998;235992;321;98.252233154;2022-02-03@22:28:55 +v2.0.8;single;100;316228;;594700;201496;230224;59119;236476;331;101.128840133;2022-02-03@22:30:41 +v2.0.8;single;100;316228;;594700;201496;230008;59031;236124;321;98.033606210;2022-02-03@22:32:25 +v2.0.8;single;100;316228;;594700;201496;229872;59030;236120;312;95.545400348;2022-02-03@22:34:05 +v2.0.8;single;100;316228;;594700;201496;229900;59031;236124;308;94.663559456;2022-02-03@22:35:45 +v2.0.8;single;100;316228;;594700;201496;230120;59030;236120;316;96.820833087;2022-02-03@22:37:28 +v2.0.8;single;100;316228;;594700;201496;230036;59066;236264;313;95.584435122;2022-02-03@22:39:08 +v2.0.8;single;100;316228;;594700;201496;230216;59020;236080;313;95.716079587;2022-02-03@22:40:49 +v2.0.8-169-ga840170e;single;100;316228;;594700;201496;189564;48968;195872;301;92.699525571;2022-02-03@22:42:30 +v2.0.8-169-ga840170e;single;100;316228;;594700;201496;189852;49040;196160;304;93.288557938;2022-02-03@22:44:09 +v2.0.8-169-ga840170e;single;100;316228;;594700;201496;189556;49008;196032;301;92.447279218;2022-02-03@22:45:48 +v2.0.8-169-ga840170e;single;100;316228;;594700;201496;189700;49009;196036;303;93.232235527;2022-02-03@22:47:27 +v2.0.8-169-ga840170e;single;100;316228;;594700;201496;189512;49021;196084;306;93.833998975;2022-02-03@22:49:07 +v2.0.8-169-ga840170e;single;100;316228;;594700;201496;189820;49025;196100;304;93.885631448;2022-02-03@22:50:47 +v2.0.8-169-ga840170e;single;100;316228;;594700;201496;189936;49024;196096;307;93.718667948;2022-02-03@22:52:27 +v2.0.8-169-ga840170e;single;100;316228;;594700;201496;189684;49048;196192;311;95.479295293;2022-02-03@22:54:09 +v2.0.8-191-g68d8716f;single;100;316228;;594700;201496;278044;1681838;6727352;39;12.991570954;2022-02-03@22:54:30 +v2.0.8-191-g68d8716f;single;100;316228;;594700;201496;284024;1681676;6726704;43;13.628427391;2022-02-03@22:54:50 +v2.0.8-191-g68d8716f;single;100;316228;;594700;201496;274952;1681556;6726224;43;13.712076806;2022-02-03@22:55:10 +v2.0.8-191-g68d8716f;single;100;316228;;594700;201496;273044;1681485;6725940;42;13.567492096;2022-02-03@22:55:30 +v2.0.8-191-g68d8716f;single;100;316228;;594700;201496;270316;1681490;6725960;44;14.081979842;2022-02-03@22:55:50 +v2.0.8-191-g68d8716f;single;100;316228;;594700;201496;285300;1681663;6726652;42;13.549905521;2022-02-03@22:56:10 +v2.0.8-191-g68d8716f;single;100;316228;;594700;201496;286388;1681718;6726872;41;13.619843838;2022-02-03@22:56:30 +v2.0.8-191-g68d8716f;single;100;316228;;594700;201496;294848;1681529;6726116;41;13.088778724;2022-02-03@22:56:49 +v2.0.8;mulimex;100;316228;;594700;201496;8107348;2028392;8113568;744;232.149537321;2022-02-03@23:01:19 +v2.0.8;mulimex;100;316228;;594700;201496;8107244;2028310;8113240;736;229.958512113;2022-02-03@23:05:37 +v2.0.8;mulimex;100;316228;;594700;201496;8106976;2028275;8113100;743;231.654842647;2022-02-03@23:09:56 +v2.0.8;mulimex;100;316228;;594700;201496;8106992;2028273;8113092;746;232.129673523;2022-02-03@23:14:17 +v2.0.8;mulimex;100;316228;;594700;201496;8106600;2028210;8112840;737;229.554222979;2022-02-03@23:18:34 +v2.0.8;mulimex;100;316228;;594700;201496;8107712;2028471;8113884;751;234.494652088;2022-02-03@23:22:57 +v2.0.8;mulimex;100;316228;;594700;201496;8107796;2028488;8113952;752;234.014058385;2022-02-03@23:27:19 +v2.0.8;mulimex;100;316228;;594700;201496;8106820;2028306;8113224;742;232.352721373;2022-02-03@23:31:39 +v2.0.8-169-ga840170e;mulimex;100;316228;;594700;201496;7087564;3385224;13540896;341;109.590811701;2022-02-03@23:33:59 +v2.0.8-169-ga840170e;mulimex;100;316228;;594700;201496;7099004;3410833;13643332;340;109.371342924;2022-02-03@23:35:55 +v2.0.8-169-ga840170e;mulimex;100;316228;;594700;201496;7093720;3410517;13642068;341;109.316081405;2022-02-03@23:37:51 +v2.0.8-169-ga840170e;mulimex;100;316228;;594700;201496;7097424;3410895;13643580;347;111.311301898;2022-02-03@23:39:48 +v2.0.8-169-ga840170e;mulimex;100;316228;;594700;201496;7095676;3410748;13642992;337;107.727156113;2022-02-03@23:41:43 +v2.0.8-169-ga840170e;mulimex;100;316228;;594700;201496;7095960;3410745;13642980;341;109.315866822;2022-02-03@23:43:38 +v2.0.8-169-ga840170e;mulimex;100;316228;;594700;201496;7095160;3410836;13643344;343;109.834171047;2022-02-03@23:45:35 +v2.0.8-169-ga840170e;mulimex;100;316228;;594700;201496;7086284;3410741;13642964;336;108.454875353;2022-02-03@23:47:29 +v2.0.8-191-g68d8716f;mulimex;100;316228;;594700;201496;7127860;3766550;15066200;110;36.141478852;2022-02-03@23:48:14 +v2.0.8-191-g68d8716f;mulimex;100;316228;;594700;201496;7088924;3766959;15067836;113;37.105573021;2022-02-03@23:48:58 +v2.0.8-191-g68d8716f;mulimex;100;316228;;594700;201496;7113216;3767180;15068720;108;35.893775294;2022-02-03@23:49:41 +v2.0.8-191-g68d8716f;mulimex;100;316228;;594700;201496;7117152;3766154;15064616;108;36.226685625;2022-02-03@23:50:24 +v2.0.8-191-g68d8716f;mulimex;100;316228;;594700;201496;7128784;3767280;15069120;112;37.084410516;2022-02-03@23:51:07 +v2.0.8-191-g68d8716f;mulimex;100;316228;;594700;201496;7119932;3766496;15065984;107;35.669195527;2022-02-03@23:51:50 +v2.0.8-191-g68d8716f;mulimex;100;316228;;594700;201496;7122968;3766800;15067200;111;36.608013515;2022-02-03@23:52:33 +v2.0.8-191-g68d8716f;mulimex;100;316228;;594700;201496;7116372;3766900;15067600;107;35.877353209;2022-02-03@23:53:16 +v2.0.8;multi;316;316228;;605518;201425;17307992;4328576;17314304;2809;870.551840019;2022-02-04@00:09:04 +v2.0.8;multi;316;316228;;605518;201425;17207996;4303513;17214052;2698;829.071886658;2022-02-04@00:23:56 +v2.0.8;multi;316;316228;;605518;201425;17208308;4303605;17214420;2674;819.361342283;2022-02-04@00:38:35 +v2.0.8;multi;316;316228;;605518;201425;17208004;4303551;17214204;2670;823.315155878;2022-02-04@00:53:21 +v2.0.8;multi;316;316228;;605518;201425;17208836;4303729;17214916;2492;772.014621618;2022-02-04@01:07:14 +v2.0.8;multi;316;316228;;605518;201425;17243636;4312452;17249808;2792;875.779224129;2022-02-04@01:22:50 +v2.0.8;multi;316;316228;;605518;201425;17245172;4312881;17251524;2831;873.660704816;2022-02-04@01:38:26 +v2.0.8;multi;316;316228;;605518;201425;17300016;4326527;17306108;2769;867.511493212;2022-02-04@01:53:56 +v2.0.8-169-ga840170e;multi;316;316228;;605518;201425;14792416;5658059;22632236;756;235.643579755;2022-02-04@01:58:55 +v2.0.8-169-ga840170e;multi;316;316228;;605518;201425;14821224;5659807;22639228;752;238.248681634;2022-02-04@02:03:02 +v2.0.8-169-ga840170e;multi;316;316228;;605518;201425;14798724;5658831;22635324;746;233.427721359;2022-02-04@02:07:04 +v2.0.8-169-ga840170e;multi;316;316228;;605518;201425;14841148;5659475;22637900;745;232.379694235;2022-02-04@02:11:04 +v2.0.8-169-ga840170e;multi;316;316228;;605518;201425;14805648;5658484;22633936;729;229.517788038;2022-02-04@02:15:02 +v2.0.8-169-ga840170e;multi;316;316228;;605518;201425;14804976;5658262;22633048;716;226.744668934;2022-02-04@02:18:58 +v2.0.8-169-ga840170e;multi;316;316228;;605518;201425;14788832;5663254;22653016;756;235.082023175;2022-02-04@02:23:01 +v2.0.8-169-ga840170e;multi;316;316228;;605518;201425;14804096;5659887;22639548;735;230.637917609;2022-02-04@02:27:01 +v2.0.8-191-g68d8716f;multi;316;316228;;605518;201425;14763464;5634658;22538632;279;92.779800466;2022-02-04@08:26:22 +v2.0.8-191-g68d8716f;multi;316;316228;;605518;201425;14735604;5631130;22524520;292;96.090570635;2022-02-04@08:28:07 +v2.0.8-191-g68d8716f;multi;316;316228;;605518;201425;14787760;5632334;22529336;290;95.511633749;2022-02-04@08:29:51 +v2.0.8-191-g68d8716f;multi;316;316228;;605518;201425;14778740;5633729;22534916;288;95.175872462;2022-02-04@08:31:35 +v2.0.8-191-g68d8716f;multi;316;316228;;605518;201425;14756132;5633118;22532472;281;93.642143708;2022-02-04@08:33:18 +v2.0.8-191-g68d8716f;multi;316;316228;;605518;201425;14758256;5631060;22524240;281;93.073872008;2022-02-04@08:35:01 +v2.0.8-191-g68d8716f;multi;316;316228;;605518;201425;14775988;5631445;22525780;279;92.396968930;2022-02-04@08:36:42 +v2.0.8-191-g68d8716f;multi;316;316228;;605518;201425;14762508;5633703;22534812;285;93.461486369;2022-02-04@08:38:25 +v2.0.8;imex;316;316228;;605518;201425;7980864;1996762;7987048;1506;457.425045540;2022-02-04@08:48:22 +v2.0.8;imex;316;316228;;605518;201425;7980804;1996782;7987128;1305;403.727207492;2022-02-04@08:55:34 +v2.0.8;imex;316;316228;;605518;201425;7980404;1996584;7986336;1550;476.769339022;2022-02-04@09:03:59 +v2.0.8;imex;316;316228;;605518;201425;7981236;1996916;7987664;1270;389.463041735;2022-02-04@09:10:57 +v2.0.8;imex;316;316228;;605518;201425;7981284;1996872;7987488;1286;397.470156101;2022-02-04@09:18:01 +v2.0.8;imex;316;316228;;605518;201425;7980524;1996715;7986860;1399;426.729209665;2022-02-04@09:25:36 +v2.0.8;imex;316;316228;;605518;201425;7981252;1996885;7987540;1326;410.426199039;2022-02-04@09:32:55 +v2.0.8;imex;316;316228;;605518;201425;7980892;1996811;7987244;1357;415.256561958;2022-02-04@09:40:18 +v2.0.8-169-ga840170e;imex;316;316228;;605518;201425;7405736;1862510;7450040;1450;444.886006164;2022-02-04@09:48:13 +v2.0.8-169-ga840170e;imex;316;316228;;605518;201425;7402644;1861797;7447188;1476;452.510565340;2022-02-04@09:55:52 +v2.0.8-169-ga840170e;imex;316;316228;;605518;201425;7404632;1862271;7449084;1452;447.399196936;2022-02-04@10:03:26 +v2.0.8-169-ga840170e;imex;316;316228;;605518;201425;7405164;1862336;7449344;1482;454.833471197;2022-02-04@10:11:08 +v2.0.8-169-ga840170e;imex;316;316228;;605518;201425;7409544;1863466;7453864;1459;448.235195972;2022-02-04@10:18:43 +v2.0.8-169-ga840170e;imex;316;316228;;605518;201425;7405004;1862319;7449276;1445;446.163542914;2022-02-04@10:26:16 +v2.0.8-169-ga840170e;imex;316;316228;;605518;201425;7406596;1862759;7451036;1438;440.176631357;2022-02-04@10:33:43 +v2.0.8-169-ga840170e;imex;316;316228;;605518;201425;7408616;1863264;7453056;1458;447.140033673;2022-02-04@10:41:17 +v2.0.8-191-g68d8716f;imex;316;316228;;605518;201425;7557196;3812196;15248784;180;58.596244368;2022-02-04@10:42:24 +v2.0.8-191-g68d8716f;imex;316;316228;;605518;201425;7554484;3811724;15246896;172;54.001143070;2022-02-04@10:43:26 +v2.0.8-191-g68d8716f;imex;316;316228;;605518;201425;7579636;3829985;15319940;171;54.666351487;2022-02-04@10:44:27 +v2.0.8-191-g68d8716f;imex;316;316228;;605518;201425;7589172;3829683;15318732;172;54.598314694;2022-02-04@10:45:29 +v2.0.8-191-g68d8716f;imex;316;316228;;605518;201425;7576196;3814594;15258376;166;53.493274344;2022-02-04@10:46:30 +v2.0.8-191-g68d8716f;imex;316;316228;;605518;201425;7586412;3814603;15258412;179;56.936863522;2022-02-04@10:47:34 +v2.0.8-191-g68d8716f;imex;316;316228;;605518;201425;7566520;3828995;15315980;164;52.511771033;2022-02-04@10:48:34 +v2.0.8-191-g68d8716f;imex;316;316228;;605518;201425;7567552;3812995;15251980;175;55.069025368;2022-02-04@10:49:36 +v2.0.8;single;316;316228;;605518;201425;509324;128865;515460;1380;415.648631744;2022-02-04@10:58:50 +v2.0.8;single;316;316228;;605518;201425;966508;243161;972644;1516;468.456778094;2022-02-04@11:06:45 +v2.0.8;single;316;316228;;605518;201425;276532;70609;282436;1219;378.805497653;2022-02-04@11:13:11 +v2.0.8;single;316;316228;;605518;201425;278040;71016;284064;1149;358.263179534;2022-02-04@11:19:16 +v2.0.8;single;316;316228;;605518;201425;392924;99730;398920;1327;404.128967370;2022-02-04@11:26:06 +v2.0.8;single;316;316228;;605518;201425;673448;169888;679552;1351;416.628110316;2022-02-04@11:33:10 +v2.0.8;single;316;316228;;605518;201425;278084;71045;284180;1208;370.203251669;2022-02-04@11:39:26 +v2.0.8;single;316;316228;;605518;201425;548584;138660;554640;1279;395.891527753;2022-02-04@11:46:09 +v2.0.8-169-ga840170e;single;316;316228;;605518;201425;260072;66622;266488;1096;340.041956132;2022-02-04@11:51:58 +v2.0.8-169-ga840170e;single;316;316228;;605518;201425;259648;66508;266032;1078;335.014727662;2022-02-04@11:57:39 +v2.0.8-169-ga840170e;single;316;316228;;605518;201425;259848;66565;266260;1073;331.370046549;2022-02-04@12:03:17 +v2.0.8-169-ga840170e;single;316;316228;;605518;201425;259428;66423;265692;1068;332.814228795;2022-02-04@12:08:56 +v2.0.8-169-ga840170e;single;316;316228;;605518;201425;260168;66647;266588;1118;348.011919095;2022-02-04@12:14:50 +v2.0.8-169-ga840170e;single;316;316228;;605518;201425;259892;66578;266312;1131;348.822271704;2022-02-04@12:20:45 +v2.0.8-169-ga840170e;single;316;316228;;605518;201425;259480;66508;266032;1061;331.195207230;2022-02-04@12:26:23 +v2.0.8-169-ga840170e;single;316;316228;;605518;201425;260200;66607;266428;1087;338.285705124;2022-02-04@12:32:07 +v2.0.8-191-g68d8716f;single;316;316228;;605518;201425;911804;2118525;8474100;125;39.518096999;2022-02-04@12:32:55 +v2.0.8-191-g68d8716f;single;316;316228;;605518;201425;815276;2118169;8472676;120;36.844198798;2022-02-04@12:33:39 +v2.0.8-191-g68d8716f;single;316;316228;;605518;201425;681948;2118037;8472148;124;36.959847432;2022-02-04@12:34:22 +v2.0.8-191-g68d8716f;single;316;316228;;605518;201425;816200;2118201;8472804;130;39.074425331;2022-02-04@12:35:07 +v2.0.8-191-g68d8716f;single;316;316228;;605518;201425;1063488;2135067;8540268;133;38.955417885;2022-02-04@12:35:53 +v2.0.8-191-g68d8716f;single;316;316228;;605518;201425;1005012;2117852;8471408;127;37.833442816;2022-02-04@12:36:37 +v2.0.8-191-g68d8716f;single;316;316228;;605518;201425;950012;2134617;8538468;130;38.286585221;2022-02-04@12:37:21 +v2.0.8-191-g68d8716f;single;316;316228;;605518;201425;894232;2118110;8472440;130;38.689491626;2022-02-04@12:38:06 +v2.0.8;mulimex;316;316228;;605518;201425;24734548;6185147;24740588;2536;789.955851713;2022-02-04@12:53:37 +v2.0.8;mulimex;316;316228;;605518;201425;24815564;6205449;24821796;2600;807.273637047;2022-02-04@13:08:32 +v2.0.8;mulimex;316;316228;;605518;201425;24797948;6200990;24803960;2651;820.672513394;2022-02-04@13:23:40 +v2.0.8;mulimex;316;316228;;605518;201425;24775484;6195433;24781732;2628;805.891996416;2022-02-04@13:38:36 +v2.0.8;mulimex;316;316228;;605518;201425;24876948;6220750;24883000;2605;808.632610690;2022-02-04@13:53:33 +v2.0.8;mulimex;316;316228;;605518;201425;24899644;6226481;24905924;2712;816.544034297;2022-02-04@14:08:39 +v2.0.8;mulimex;316;316228;;605518;201425;24955640;6240487;24961948;2705;820.108112366;2022-02-04@14:23:47 +v2.0.8;mulimex;316;316228;;605518;201425;24840172;6211627;24846508;2578;803.511887403;2022-02-04@14:38:39 +v2.0.8-169-ga840170e;mulimex;316;316228;;605518;201425;21820368;7422244;29688976;1073;333.583600379;2022-02-04@14:45:43 +v2.0.8-169-ga840170e;mulimex;316;316228;;605518;201425;21839208;7423739;29694956;1079;334.957842467;2022-02-04@14:51:28 +v2.0.8-169-ga840170e;mulimex;316;316228;;605518;201425;21827228;7424919;29699676;1058;328.452798694;2022-02-04@14:57:07 +v2.0.8-169-ga840170e;mulimex;316;316228;;605518;201425;21833420;7424204;29696816;1065;331.454453671;2022-02-04@15:02:49 +v2.0.8-169-ga840170e;mulimex;316;316228;;605518;201425;21818232;7424229;29696916;1049;326.951643633;2022-02-04@15:08:26 +v2.0.8-169-ga840170e;mulimex;316;316228;;605518;201425;21828132;7423116;29692464;1047;325.806422532;2022-02-04@15:14:02 +v2.0.8-169-ga840170e;mulimex;316;316228;;605518;201425;21855080;7426232;29704928;1084;334.913148342;2022-02-04@15:19:47 +v2.0.8-169-ga840170e;mulimex;316;316228;;605518;201425;21835420;7424973;29699892;1048;323.582718950;2022-02-04@15:25:21 +v2.0.8-191-g68d8716f;mulimex;316;316228;;605518;201425;21869936;7319450;29277800;359;116.841816757;2022-02-04@15:27:30 +v2.0.8-191-g68d8716f;mulimex;316;316228;;605518;201425;21804616;7317773;29271092;358;116.057090932;2022-02-04@15:29:38 +v2.0.8-191-g68d8716f;mulimex;316;316228;;605518;201425;21861600;7319248;29276992;361;115.904053186;2022-02-04@15:31:44 +v2.0.8-191-g68d8716f;mulimex;316;316228;;605518;201425;21866584;7318595;29274380;368;120.459762331;2022-02-04@15:33:56 +v2.0.8-191-g68d8716f;mulimex;316;316228;;605518;201425;21880744;7318389;29273556;352;113.731656309;2022-02-04@15:36:01 +v2.0.8-191-g68d8716f;mulimex;316;316228;;605518;201425;21883128;7321479;29285916;348;113.307114826;2022-02-04@15:38:05 +v2.0.8-191-g68d8716f;mulimex;316;316228;;605518;201425;21891432;7322635;29290540;360;116.228471720;2022-02-04@15:40:13 +v2.0.8-191-g68d8716f;mulimex;316;316228;;605518;201425;21870960;7317581;29270324;354;115.435152216;2022-02-04@15:42:20 +v2.0.8;imex;1000;316228;;609729;202295;24622920;6157260;24629040;5938;2002.821686171;2022-02-04@17:39:58 +v2.0.8;imex;1000;316228;;609729;202295;24273696;6069967;24279868;5595;1930.856731525;2022-02-04@18:13:42 +v2.0.8;imex;1000;316228;;609729;202295;24271368;6069397;24277588;5962;1920.432548555;2022-02-04@18:47:53 +v2.0.8;imex;1000;316228;;609729;202295;24274296;6070117;24280468;5588;1931.745936351;2022-02-04@19:21:24 +v2.0.8;imex;1000;316228;;609729;202295;23692748;5924760;23699040;4347;1453.827263562;2022-02-04@19:46:58 +v2.0.8;imex;1000;316228;;609729;202295;24275116;6070322;24281288;5529;1930.265015200;2022-02-04@20:20:53 +v2.0.8;imex;1000;316228;;609729;202295;24274860;6070289;24281156;5623;1947.827149176;2022-02-04@20:55:29 +v2.0.8;imex;1000;316228;;609729;202295;24275892;6070487;24281948;5490;1911.765756494;2022-02-04@21:28:47 +v2.0.8-169-ga840170e;imex;1000;316228;;609729;202295;22684812;5735494;22941976;4841;1530.477395432;2022-02-04@21:56:00 +v2.0.8-169-ga840170e;imex;1000;316228;;609729;202295;22673652;5700034;22800136;4974;1552.738683247;2022-02-04@22:22:04 +v2.0.8-169-ga840170e;imex;1000;316228;;609729;202295;22665560;5698052;22792208;4956;1546.399044334;2022-02-04@22:48:02 +v2.0.8-169-ga840170e;imex;1000;316228;;609729;202295;22677224;5700869;22803476;4812;1544.484917526;2022-02-04@23:13:58 +v2.0.8-169-ga840170e;imex;1000;316228;;609729;202295;22687808;5703564;22814256;4993;1557.960861845;2022-02-04@23:40:07 +v2.0.8-169-ga840170e;imex;1000;316228;;609729;202295;22677220;5700937;22803748;5010;1555.873035787;2022-02-05@00:06:15 +v2.0.8-169-ga840170e;imex;1000;316228;;609729;202295;22681472;5702011;22808044;5015;1564.670112520;2022-02-05@00:32:32 +v2.0.8-169-ga840170e;imex;1000;316228;;609729;202295;22683124;5702408;22809632;4981;1560.490669282;2022-02-05@00:58:44 +v2.0.8-191-g68d8716f;imex;1000;316228;;609729;202295;25052564;7506753;30027012;546;166.701338606;2022-02-05@01:01:44 +v2.0.8-191-g68d8716f;imex;1000;316228;;609729;202295;26078556;7564950;30259800;576;171.186004132;2022-02-05@01:04:52 +v2.0.8-191-g68d8716f;imex;1000;316228;;609729;202295;26137948;7583714;30334856;565;170.165447838;2022-02-05@01:08:02 +v2.0.8-191-g68d8716f;imex;1000;316228;;609729;202295;25577612;7546220;30184880;563;172.713776047;2022-02-05@01:11:12 +v2.0.8-191-g68d8716f;imex;1000;316228;;609729;202295;25481304;7559229;30236916;554;169.639453386;2022-02-05@01:14:21 +v2.0.8-191-g68d8716f;imex;1000;316228;;609729;202295;25983844;7549779;30199116;540;170.372893769;2022-02-05@01:17:27 +v2.0.8-191-g68d8716f;imex;1000;316228;;609729;202295;26315352;7656935;30627740;623;183.826687009;2022-02-05@01:20:48 +v2.0.8-191-g68d8716f;imex;1000;316228;;609729;202295;27625032;7749186;30996744;721;229.231241024;2022-02-05@01:30:17 +v2.0.8;single;1000;316228;;609729;202295;10792640;2699685;10798740;5912;2036.834114064;2022-02-05@02:16:59 +v2.0.8;single;1000;316228;;609729;202295;6098948;1526244;6104976;5806;2044.103052699;2022-02-05@02:55:06 +v2.0.8;single;1000;316228;;609729;202295;10465428;2617842;10471368;5694;2007.650305528;2022-02-05@03:28:44 +v2.0.8;single;1000;316228;;609729;202295;1073948;270018;1080072;5636;1983.623219556;2022-02-05@04:06:04 +v2.0.8;single;1000;316228;;609729;202295;12223736;3057419;12229676;6758;2204.906028987;2022-02-05@04:50:23 +v2.0.8;single;1000;316228;;609729;202295;403600;102476;409904;5513;1929.831781026;2022-02-05@05:22:42 +v2.0.8;single;1000;316228;;609729;202295;8320348;2081604;8326416;5719;2036.542076734;2022-02-05@05:56:48 +v2.0.8;single;1000;316228;;609729;202295;11171468;2794388;11177552;6136;2138.570605368;2022-02-05@06:32:37 +v2.0.8-169-ga840170e;single;1000;316228;;609729;202295;431804;109511;438044;3766;1174.736554296;2022-02-05@06:52:24 +v2.0.8-169-ga840170e;single;1000;316228;;609729;202295;424320;107641;430564;3721;1177.436043110;2022-02-05@07:12:08 +v2.0.8-169-ga840170e;single;1000;316228;;609729;202295;432144;109601;438404;3773;1187.099384005;2022-02-05@07:32:02 +v2.0.8-169-ga840170e;single;1000;316228;;609729;202295;430932;109314;437256;3859;1212.350914498;2022-02-05@07:52:20 +v2.0.8-169-ga840170e;single;1000;316228;;609729;202295;428912;108789;435156;3736;1173.267382896;2022-02-05@08:12:00 +v2.0.8-169-ga840170e;single;1000;316228;;609729;202295;432600;109734;438936;3838;1192.131359003;2022-02-05@08:31:59 +v2.0.8-169-ga840170e;single;1000;316228;;609729;202295;435392;110442;441768;3857;1203.855684546;2022-02-05@08:52:09 +v2.0.8-169-ga840170e;single;1000;316228;;609729;202295;432156;109626;438504;3690;1148.847959233;2022-02-05@09:11:24 +v2.0.8-191-g68d8716f;single;1000;316228;;609729;202295;12629088;4108840;16435360;711;244.839083367;2022-02-05@09:15:38 +v2.0.8-191-g68d8716f;single;1000;316228;;609729;202295;11800340;3941170;15764680;731;254.074450970;2022-02-05@09:20:07 +v2.0.8-191-g68d8716f;single;1000;316228;;609729;202295;14532820;4757847;19031388;881;308.014000549;2022-02-05@09:33:14 +v2.0.8-191-g68d8716f;single;1000;316228;;609729;202295;13171428;4439572;17758288;796;244.992738331;2022-02-05@09:37:26 +v2.0.8-191-g68d8716f;single;1000;316228;;609729;202295;13561724;4545775;18183100;715;248.739982640;2022-02-05@09:45:16 +v2.0.8-191-g68d8716f;single;1000;316228;;609729;202295;12543864;4265013;17060052;698;242.845807132;2022-02-05@09:49:34 +v2.0.8-191-g68d8716f;single;1000;316228;;609729;202295;12744408;4202327;16809308;800;286.580612795;2022-02-05@09:58:04 +v2.0.8-191-g68d8716f;single;1000;316228;;609729;202295;12966908;4350806;17403224;928;337.771646463;2022-02-05@10:03:56 +v2.0.8;multi;10;1000000;;1316089;765345;2173232;544852;2179408;104;54.325874816;2022-02-05@10:10:05 +v2.0.8;multi;10;1000000;;1316089;765345;2173628;544984;2179936;105;54.988035724;2022-02-05@10:11:09 +v2.0.8;multi;10;1000000;;1316089;765345;2173456;544869;2179476;103;54.051979815;2022-02-05@10:12:12 +v2.0.8;multi;10;1000000;;1316089;765345;2173000;544834;2179336;105;54.244819351;2022-02-05@10:13:14 +v2.0.8;multi;10;1000000;;1316089;765345;2173844;544972;2179888;107;55.518375233;2022-02-05@10:14:19 +v2.0.8;multi;10;1000000;;1316089;765345;2172860;544799;2179196;104;54.477336274;2022-02-05@10:15:22 +v2.0.8;multi;10;1000000;;1316089;765345;2173272;544877;2179508;104;54.368082128;2022-02-05@10:16:25 +v2.0.8;multi;10;1000000;;1316089;765345;2173008;544756;2179024;105;54.847246134;2022-02-05@10:17:28 +v2.0.8-169-ga840170e;multi;10;1000000;;1316089;765345;1835436;603275;2413100;35;21.093173544;2022-02-05@10:18:00 +v2.0.8-169-ga840170e;multi;10;1000000;;1316089;765345;1835108;603242;2412968;36;21.250465165;2022-02-05@10:18:29 +v2.0.8-169-ga840170e;multi;10;1000000;;1316089;765345;1835120;603283;2413132;36;21.454543594;2022-02-05@10:18:57 +v2.0.8-169-ga840170e;multi;10;1000000;;1316089;765345;1835240;603293;2413172;35;21.205366308;2022-02-05@10:19:26 +v2.0.8-169-ga840170e;multi;10;1000000;;1316089;765345;1834924;603259;2413036;37;21.584010857;2022-02-05@10:19:54 +v2.0.8-169-ga840170e;multi;10;1000000;;1316089;765345;1835096;603278;2413112;37;21.747764589;2022-02-05@10:20:23 +v2.0.8-169-ga840170e;multi;10;1000000;;1316089;765345;1835464;603311;2413244;37;21.554958843;2022-02-05@10:20:52 +v2.0.8-169-ga840170e;multi;10;1000000;;1316089;765345;1835020;603257;2413028;36;20.796240505;2022-02-05@10:21:20 +v2.0.8-191-g68d8716f;multi;10;1000000;;1316089;765345;1851596;748048;2992192;21;11.470545795;2022-02-05@10:21:41 +v2.0.8-191-g68d8716f;multi;10;1000000;;1316089;765345;1874960;748320;2993280;21;12.510108288;2022-02-05@10:22:00 +v2.0.8-191-g68d8716f;multi;10;1000000;;1316089;765345;1853388;747957;2991828;21;11.339037879;2022-02-05@10:22:19 +v2.0.8-191-g68d8716f;multi;10;1000000;;1316089;765345;1860752;747947;2991788;20;11.458786975;2022-02-05@10:22:38 +v2.0.8-191-g68d8716f;multi;10;1000000;;1316089;765345;1849636;747809;2991236;21;11.184670493;2022-02-05@10:22:56 +v2.0.8-191-g68d8716f;multi;10;1000000;;1316089;765345;1869088;748443;2993772;20;11.344524211;2022-02-05@10:23:15 +v2.0.8-191-g68d8716f;multi;10;1000000;;1316089;765345;1860416;748197;2992788;20;11.148555078;2022-02-05@10:23:33 +v2.0.8-191-g68d8716f;multi;10;1000000;;1316089;765345;1877784;748194;2992776;21;11.657953273;2022-02-05@10:23:52 +v2.0.8;imex;10;1000000;;1316089;765345;1849452;463888;1855552;84;44.039838432;2022-02-05@10:25:38 +v2.0.8;imex;10;1000000;;1316089;765345;1849296;463912;1855648;87;45.434500563;2022-02-05@10:26:31 +v2.0.8;imex;10;1000000;;1316089;765345;1849876;463979;1855916;88;44.898942311;2022-02-05@10:27:24 +v2.0.8;imex;10;1000000;;1316089;765345;1849696;463966;1855864;86;44.551704143;2022-02-05@10:28:16 +v2.0.8;imex;10;1000000;;1316089;765345;1849596;463982;1855928;86;44.011534730;2022-02-05@10:29:08 +v2.0.8;imex;10;1000000;;1316089;765345;1850236;464093;1856372;86;44.756151119;2022-02-05@10:30:01 +v2.0.8;imex;10;1000000;;1316089;765345;1849324;463866;1855464;86;44.534863766;2022-02-05@10:30:53 +v2.0.8;imex;10;1000000;;1316089;765345;1849504;463889;1855556;86;45.118214507;2022-02-05@10:31:46 +v2.0.8;imex;10;1000000;;1316089;765345;1849640;463989;1855956;87;45.411629456;2022-02-05@10:58:28 +v2.0.8;imex;10;1000000;;1316089;765345;1849124;463858;1855432;83;44.270380028;2022-02-05@10:59:20 +v2.0.8;imex;10;1000000;;1316089;765345;1849604;463949;1855796;84;44.338739798;2022-02-05@11:00:12 +v2.0.8;imex;10;1000000;;1316089;765345;1849468;463900;1855600;85;45.175721747;2022-02-05@11:01:05 +v2.0.8;imex;10;1000000;;1316089;765345;1849732;463968;1855872;87;44.639490530;2022-02-05@11:01:58 +v2.0.8;imex;10;1000000;;1316089;765345;1849844;463994;1855976;88;45.333969551;2022-02-05@11:02:51 +v2.0.8;imex;10;1000000;;1316089;765345;1849036;463848;1855392;85;44.340897712;2022-02-05@11:03:43 +v2.0.8;imex;10;1000000;;1316089;765345;1849352;463855;1855420;89;45.636895457;2022-02-05@11:04:37 +v2.0.8-191-g68d8716f;imex;10;1000000;;1316089;765345;1591172;517388;2069552;52;32.538620092;2022-02-05@11:05:19 +v2.0.8-191-g68d8716f;imex;10;1000000;;1316089;765345;1592704;512529;2050116;56;34.382643326;2022-02-05@11:06:01 +v2.0.8-191-g68d8716f;imex;10;1000000;;1316089;765345;1592636;509587;2038348;52;32.563343526;2022-02-05@11:06:40 +v2.0.8-191-g68d8716f;imex;10;1000000;;1316089;765345;1591848;515413;2061652;53;33.543034954;2022-02-05@11:07:21 +v2.0.8-191-g68d8716f;imex;10;1000000;;1316089;765345;1591700;517549;2070196;55;35.501331671;2022-02-05@11:08:04 +v2.0.8-191-g68d8716f;imex;10;1000000;;1316089;765345;1592640;514462;2057848;56;35.311793038;2022-02-05@11:08:46 +v2.0.8-191-g68d8716f;imex;10;1000000;;1316089;765345;1590428;513287;2053148;53;32.513421822;2022-02-05@11:09:26 +v2.0.8-191-g68d8716f;imex;10;1000000;;1316089;765345;1590960;513253;2053012;50;32.078524668;2022-02-05@11:10:05 +v2.0.8;single;10;1000000;;1316089;765345;439732;111491;445964;72;36.311908285;2022-02-05@11:11:42 +v2.0.8;single;10;1000000;;1316089;765345;440264;111625;446500;73;37.613376453;2022-02-05@11:12:27 +v2.0.8;single;10;1000000;;1316089;765345;439540;111446;445784;70;36.683987170;2022-02-05@11:13:10 +v2.0.8;single;10;1000000;;1316089;765345;438744;111278;445112;71;36.868889074;2022-02-05@11:13:53 +v2.0.8;single;10;1000000;;1316089;765345;439964;111538;446152;74;38.256904022;2022-02-05@11:14:38 +v2.0.8;single;10;1000000;;1316089;765345;439368;111411;445644;76;38.532687586;2022-02-05@11:15:24 +v2.0.8;single;10;1000000;;1316089;765345;438584;111225;444900;74;37.600545026;2022-02-05@11:16:08 +v2.0.8;single;10;1000000;;1316089;765345;440156;111554;446216;70;36.656141061;2022-02-05@11:16:52 +v2.0.8-191-g68d8716f;single;10;1000000;;1316089;765345;380392;231103;924412;17;9.703857291;2022-02-05@11:17:11 +v2.0.8-191-g68d8716f;single;10;1000000;;1316089;765345;422384;247511;990044;18;10.692671055;2022-02-05@11:17:29 +v2.0.8-191-g68d8716f;single;10;1000000;;1316089;765345;380240;231058;924232;17;8.949187928;2022-02-05@11:17:45 +v2.0.8-191-g68d8716f;single;10;1000000;;1316089;765345;393276;231150;924600;18;9.433902188;2022-02-05@11:18:02 +v2.0.8-191-g68d8716f;single;10;1000000;;1316089;765345;390440;231129;924516;19;10.199531182;2022-02-05@11:18:20 +v2.0.8-191-g68d8716f;single;10;1000000;;1316089;765345;415924;247448;989792;19;11.302476591;2022-02-05@11:18:38 +v2.0.8-191-g68d8716f;single;10;1000000;;1316089;765345;422040;247504;990016;17;10.620269079;2022-02-05@11:18:56 +v2.0.8-191-g68d8716f;single;10;1000000;;1316089;765345;386500;231073;924292;18;9.503013716;2022-02-05@11:19:13 +v2.0.8;mulimex;10;1000000;;1316089;765345;3275008;820299;3281196;113;58.588564011;2022-02-05@11:21:13 +v2.0.8;mulimex;10;1000000;;1316089;765345;3275776;820478;3281912;114;59.085267626;2022-02-05@11:22:23 +v2.0.8;mulimex;10;1000000;;1316089;765345;3275652;820459;3281836;113;58.765284124;2022-02-05@11:23:33 +v2.0.8;mulimex;10;1000000;;1316089;765345;3275836;820493;3281972;115;59.770207368;2022-02-05@11:24:44 +v2.0.8;mulimex;10;1000000;;1316089;765345;3276304;820586;3282344;114;58.986978166;2022-02-05@11:25:54 +v2.0.8;mulimex;10;1000000;;1316089;765345;3275260;820374;3281496;114;59.079053422;2022-02-05@11:27:04 +v2.0.8;mulimex;10;1000000;;1316089;765345;3275640;820472;3281888;113;58.736825804;2022-02-05@11:28:14 +v2.0.8;mulimex;10;1000000;;1316089;765345;3275372;820384;3281536;113;58.829616165;2022-02-05@11:29:24 +v2.0.8-191-g68d8716f;mulimex;10;1000000;;1316089;765345;2859128;993453;3973812;46;28.670792321;2022-02-05@11:30:06 +v2.0.8-191-g68d8716f;mulimex;10;1000000;;1316089;765345;2859276;993396;3973584;43;26.726314187;2022-02-05@11:30:40 +v2.0.8-191-g68d8716f;mulimex;10;1000000;;1316089;765345;2859228;995567;3982268;45;28.225805211;2022-02-05@11:31:14 +v2.0.8-191-g68d8716f;mulimex;10;1000000;;1316089;765345;2859584;994596;3978384;46;29.223023400;2022-02-05@11:31:49 +v2.0.8-191-g68d8716f;mulimex;10;1000000;;1316089;765345;2859780;995682;3982728;44;27.779189264;2022-02-05@11:32:24 +v2.0.8-191-g68d8716f;mulimex;10;1000000;;1316089;765345;2858928;995613;3982452;45;27.548950169;2022-02-05@11:32:57 +v2.0.8-191-g68d8716f;mulimex;10;1000000;;1316089;765345;2858364;993644;3974576;43;27.176190346;2022-02-05@11:33:31 +v2.0.8-191-g68d8716f;mulimex;10;1000000;;1316089;765345;2859172;995506;3982024;45;28.009507315;2022-02-05@11:34:06 +v2.0.8;multi;32;1000000;;1699523;774910;6199248;1551351;6205404;386;207.328060631;2022-02-05@11:38:47 +v2.0.8;multi;32;1000000;;1699523;774910;6199004;1551266;6205064;384;207.438266755;2022-02-05@11:42:33 +v2.0.8;multi;32;1000000;;1699523;774910;6199416;1551404;6205616;386;208.684548210;2022-02-05@11:46:21 +v2.0.8;multi;32;1000000;;1699523;774910;6199124;1551308;6205232;391;208.834112866;2022-02-05@11:50:08 +v2.0.8;multi;32;1000000;;1699523;774910;6199664;1551439;6205756;385;207.896302830;2022-02-05@11:53:55 +v2.0.8;multi;32;1000000;;1699523;774910;6199792;1551470;6205880;386;207.940466723;2022-02-05@11:57:41 +v2.0.8;multi;32;1000000;;1699523;774910;6202604;1552126;6208504;385;207.592725766;2022-02-05@12:01:28 +v2.0.8;multi;32;1000000;;1699523;774910;6199716;1551502;6206008;385;206.669155734;2022-02-05@12:05:13 +v2.0.8-191-g68d8716f;multi;32;1000000;;1699523;774910;5295736;2302668;9210672;43;28.939887118;2022-02-05@12:06:02 +v2.0.8-191-g68d8716f;multi;32;1000000;;1699523;774910;5297564;2302827;9211308;43;28.965262088;2022-02-05@12:06:38 +v2.0.8-191-g68d8716f;multi;32;1000000;;1699523;774910;5288448;2302738;9210952;45;28.851224962;2022-02-05@12:07:14 +v2.0.8-191-g68d8716f;multi;32;1000000;;1699523;774910;5283444;2302568;9210272;44;29.476861072;2022-02-05@12:07:50 +v2.0.8-191-g68d8716f;multi;32;1000000;;1699523;774910;5299844;2302667;9210668;43;29.546638147;2022-02-05@12:08:26 +v2.0.8-191-g68d8716f;multi;32;1000000;;1699523;774910;5293508;2302839;9211356;45;28.784280992;2022-02-05@12:09:02 +v2.0.8-191-g68d8716f;multi;32;1000000;;1699523;774910;5282368;2302344;9209376;48;32.269508612;2022-02-05@12:09:41 +v2.0.8-191-g68d8716f;multi;32;1000000;;1699523;774910;5285388;2302969;9211876;43;28.206513692;2022-02-05@12:10:21 +v2.0.8;imex;32;1000000;;1699523;774910;4174980;1045341;4181364;275;143.531939230;2022-02-05@12:13:59 +v2.0.8;imex;32;1000000;;1699523;774910;4174476;1045178;4180712;275;145.072610373;2022-02-05@12:16:38 +v2.0.8;imex;32;1000000;;1699523;774910;4175652;1045487;4181948;263;139.194764481;2022-02-05@12:19:11 +v2.0.8;imex;32;1000000;;1699523;774910;4174324;1045133;4180532;262;139.065497607;2022-02-05@12:21:43 +v2.0.8;imex;32;1000000;;1699523;774910;4176580;1045726;4182904;269;143.323853780;2022-02-05@12:24:21 +v2.0.8;imex;32;1000000;;1699523;774910;4174076;1045054;4180216;268;143.944790262;2022-02-05@12:26:58 +v2.0.8;imex;32;1000000;;1699523;774910;4175076;1045344;4181376;265;141.771928835;2022-02-05@12:29:34 +v2.0.8;imex;32;1000000;;1699523;774910;4174860;1045238;4180952;270;143.180922398;2022-02-05@12:32:11 +v2.0.8-191-g68d8716f;imex;32;1000000;;1699523;774910;3704768;1379658;5518632;75;50.430233611;2022-02-05@12:33:17 +v2.0.8-191-g68d8716f;imex;32;1000000;;1699523;774910;3706024;1379966;5519864;78;52.239238793;2022-02-05@12:34:17 +v2.0.8-191-g68d8716f;imex;32;1000000;;1699523;774910;3706524;1379806;5519224;79;52.422872807;2022-02-05@12:35:17 +v2.0.8-191-g68d8716f;imex;32;1000000;;1699523;774910;3705172;1379800;5519200;80;52.544108937;2022-02-05@12:36:17 +v2.0.8-191-g68d8716f;imex;32;1000000;;1699523;774910;3705520;1380045;5520180;76;51.262736863;2022-02-05@12:37:15 +v2.0.8-191-g68d8716f;imex;32;1000000;;1699523;774910;3704716;1379694;5518776;79;53.586894813;2022-02-05@12:38:16 +v2.0.8-191-g68d8716f;imex;32;1000000;;1699523;774910;3704884;1379897;5519588;76;51.340094014;2022-02-05@12:39:15 +v2.0.8-191-g68d8716f;imex;32;1000000;;1699523;774910;3703700;1379644;5518576;78;52.650961543;2022-02-05@12:40:15 +v2.0.8;single;32;1000000;;1699523;774910;584644;147700;590800;221;115.561012475;2022-02-05@12:43:25 +v2.0.8;single;32;1000000;;1699523;774910;585052;147812;591248;218;116.154549958;2022-02-05@12:45:29 +v2.0.8;single;32;1000000;;1699523;774910;585692;147991;591964;227;119.816137749;2022-02-05@12:47:36 +v2.0.8;single;32;1000000;;1699523;774910;585920;147978;591912;218;115.920501519;2022-02-05@12:49:39 +v2.0.8;single;32;1000000;;1699523;774910;584736;147730;590920;222;116.844915404;2022-02-05@12:51:44 +v2.0.8;single;32;1000000;;1699523;774910;585232;147805;591220;220;116.102990014;2022-02-05@12:53:47 +v2.0.8;single;32;1000000;;1699523;774910;585228;147820;591280;225;118.512725032;2022-02-05@12:55:53 +v2.0.8;single;32;1000000;;1699523;774910;583712;147436;589744;219;114.983142926;2022-02-05@12:57:56 +v2.0.8-191-g68d8716f;single;32;1000000;;1699523;774910;601776;620654;2482616;33;21.499598073;2022-02-05@12:58:27 +v2.0.8-191-g68d8716f;single;32;1000000;;1699523;774910;563960;620669;2482676;37;22.997979497;2022-02-05@12:58:58 +v2.0.8-191-g68d8716f;single;32;1000000;;1699523;774910;599224;620658;2482632;35;20.756789147;2022-02-05@12:59:27 +v2.0.8-191-g68d8716f;single;32;1000000;;1699523;774910;574468;604265;2417060;34;20.968939650;2022-02-05@12:59:55 +v2.0.8-191-g68d8716f;single;32;1000000;;1699523;774910;585688;620643;2482572;34;20.971547157;2022-02-05@13:00:24 +v2.0.8-191-g68d8716f;single;32;1000000;;1699523;774910;574828;620645;2482580;37;22.899177590;2022-02-05@13:00:55 +v2.0.8-191-g68d8716f;single;32;1000000;;1699523;774910;582804;620643;2482572;37;23.201426719;2022-02-05@13:01:26 +v2.0.8-191-g68d8716f;single;32;1000000;;1699523;774910;580488;620703;2482812;33;21.535547640;2022-02-05@13:01:55 +v2.0.8;mulimex;32;1000000;;1699523;774910;9376028;2345542;9382168;426;225.043996185;2022-02-05@13:06:57 +v2.0.8;mulimex;32;1000000;;1699523;774910;9375216;2345323;9381292;424;224.030730591;2022-02-05@13:11:09 +v2.0.8;mulimex;32;1000000;;1699523;774910;9375456;2345336;9381344;423;224.891252999;2022-02-05@13:15:23 +v2.0.8;mulimex;32;1000000;;1699523;774910;9375216;2345384;9381536;421;224.156344279;2022-02-05@13:19:35 +v2.0.8;mulimex;32;1000000;;1699523;774910;9374592;2345196;9380784;427;227.180265334;2022-02-05@13:23:51 +v2.0.8;mulimex;32;1000000;;1699523;774910;9374496;2345190;9380760;428;226.327899792;2022-02-05@13:28:06 +v2.0.8;mulimex;32;1000000;;1699523;774910;9374784;2345239;9380956;428;227.141943116;2022-02-05@13:32:22 +v2.0.8;mulimex;32;1000000;;1699523;774910;9375216;2345348;9381392;427;225.976576860;2022-02-05@13:36:36 +v2.0.8-191-g68d8716f;mulimex;32;1000000;;1699523;774910;8226656;3036427;12145708;95;61.612434783;2022-02-05@13:38:08 +v2.0.8-191-g68d8716f;mulimex;32;1000000;;1699523;774910;8227896;3036353;12145412;94;62.019259615;2022-02-05@13:39:18 +v2.0.8-191-g68d8716f;mulimex;32;1000000;;1699523;774910;8226268;3036186;12144744;96;62.048104203;2022-02-05@13:40:28 +v2.0.8-191-g68d8716f;mulimex;32;1000000;;1699523;774910;8226444;3036468;12145872;94;60.630507651;2022-02-05@13:41:36 +v2.0.8-191-g68d8716f;mulimex;32;1000000;;1699523;774910;8225848;3036274;12145096;93;61.394216566;2022-02-05@13:42:45 +v2.0.8-191-g68d8716f;mulimex;32;1000000;;1699523;774910;8225644;3036198;12144792;96;62.742032127;2022-02-05@13:43:56 +v2.0.8-191-g68d8716f;mulimex;32;1000000;;1699523;774910;8225940;3036350;12145400;94;61.260405248;2022-02-05@13:45:05 +v2.0.8-191-g68d8716f;mulimex;32;1000000;;1699523;774910;8225844;3036232;12144928;96;61.768891642;2022-02-05@13:46:15 +v2.0.8;multi;100;1000000;;1850595;774906;18181288;4546881;18187524;1362;723.826224972;2022-02-05@13:59:43 +v2.0.8;multi;100;1000000;;1850595;774906;18179196;4546362;18185448;1353;723.766027174;2022-02-05@14:12:43 +v2.0.8;multi;100;1000000;;1850595;774906;18181804;4546978;18187912;1323;709.892586705;2022-02-05@14:25:30 +v2.0.8;multi;100;1000000;;1850595;774906;18180964;4546737;18186948;1356;723.369298512;2022-02-05@14:38:28 +v2.0.8;multi;100;1000000;;1850595;774906;18181028;4546797;18187188;1373;725.807064145;2022-02-05@14:51:30 +v2.0.8;multi;100;1000000;;1850595;774906;18181512;4546947;18187788;1371;724.396930561;2022-02-05@15:04:31 +v2.0.8;multi;100;1000000;;1850595;774906;18181812;4546973;18187892;1329;707.344611202;2022-02-05@15:17:14 +v2.0.8;multi;100;1000000;;1850595;774906;18180828;4546740;18186960;1346;718.505171052;2022-02-05@15:30:08 +v2.0.8-191-g68d8716f;multi;100;1000000;;1850595;774906;15578332;5860000;23440000;149;86.934491755;2022-02-05@15:32:33 +v2.0.8-191-g68d8716f;multi;100;1000000;;1850595;774906;15574768;5859238;23436952;149;88.587973265;2022-02-05@15:34:11 +v2.0.8-191-g68d8716f;multi;100;1000000;;1850595;774906;15575476;5859288;23437152;149;89.273338309;2022-02-05@15:35:51 +v2.0.8-191-g68d8716f;multi;100;1000000;;1850595;774906;15576692;5858918;23435672;153;88.019030286;2022-02-05@15:37:29 +v2.0.8-191-g68d8716f;multi;100;1000000;;1850595;774906;15579784;5859598;23438392;150;89.904531723;2022-02-05@15:39:09 +v2.0.8-191-g68d8716f;multi;100;1000000;;1850595;774906;15577956;5859738;23438952;150;88.175351234;2022-02-05@15:40:47 +v2.0.8-191-g68d8716f;multi;100;1000000;;1850595;774906;15580964;5859216;23436864;151;89.891753211;2022-02-05@15:42:27 +v2.0.8-191-g68d8716f;multi;100;1000000;;1850595;774906;15577132;5859328;23437312;152;89.232704147;2022-02-05@15:44:06 +v2.0.8;imex;100;1000000;;1850595;774906;10532972;2634781;10539124;862;433.301725886;2022-02-05@15:52:49 +v2.0.8;imex;100;1000000;;1850595;774906;10530516;2634104;10536416;867;437.732405753;2022-02-05@16:00:40 +v2.0.8;imex;100;1000000;;1850595;774906;10530844;2634274;10537096;845;432.392108833;2022-02-05@16:08:24 +v2.0.8;imex;100;1000000;;1850595;774906;10539636;2636538;10546152;856;435.052248234;2022-02-05@16:16:11 +v2.0.8;imex;100;1000000;;1850595;774906;10530684;2634253;10537012;864;439.776782900;2022-02-05@16:24:04 +v2.0.8;imex;100;1000000;;1850595;774906;10529488;2633951;10535804;865;438.289669443;2022-02-05@16:31:55 +v2.0.8;imex;100;1000000;;1850595;774906;10538308;2636130;10544520;869;440.148196898;2022-02-05@16:39:48 +v2.0.8;imex;100;1000000;;1850595;774906;10529548;2633975;10535900;871;436.884153410;2022-02-05@16:47:37 +v2.0.8-191-g68d8716f;imex;100;1000000;;1850595;774906;9623644;3964392;15857568;177;108.112807424;2022-02-05@16:50:01 +v2.0.8-191-g68d8716f;imex;100;1000000;;1850595;774906;9628400;3964670;15858680;171;107.956290725;2022-02-05@16:51:57 +v2.0.8-191-g68d8716f;imex;100;1000000;;1850595;774906;9629944;3964390;15857560;173;109.504775126;2022-02-05@16:53:55 +v2.0.8-191-g68d8716f;imex;100;1000000;;1850595;774906;9618932;3963398;15853592;170;105.854461943;2022-02-05@16:55:49 +v2.0.8-191-g68d8716f;imex;100;1000000;;1850595;774906;9633072;3963771;15855084;166;104.777816772;2022-02-05@16:57:42 +v2.0.8-191-g68d8716f;imex;100;1000000;;1850595;774906;9622912;3963295;15853180;175;111.980341915;2022-02-05@16:59:43 +v2.0.8-191-g68d8716f;imex;100;1000000;;1850595;774906;9623776;3963462;15853848;169;104.894534387;2022-02-05@17:01:36 +v2.0.8-191-g68d8716f;imex;100;1000000;;1850595;774906;9622028;3963678;15854712;170;107.391482679;2022-02-05@17:03:32 +v2.0.8;single;100;1000000;;1850595;774906;679140;171404;685616;697;358.381163366;2022-02-05@17:10:58 +v2.0.8;single;100;1000000;;1850595;774906;686080;173036;692144;699;358.341566070;2022-02-05@17:17:03 +v2.0.8;single;100;1000000;;1850595;774906;681764;172002;688008;697;360.435852469;2022-02-05@17:23:10 +v2.0.8;single;100;1000000;;1850595;774906;687088;173364;693456;701;359.305831640;2022-02-05@17:29:16 +v2.0.8;single;100;1000000;;1850595;774906;685352;172894;691576;715;367.350519611;2022-02-05@17:35:31 +v2.0.8;single;100;1000000;;1850595;774906;682160;172095;688380;717;370.549735284;2022-02-05@17:41:48 +v2.0.8;single;100;1000000;;1850595;774906;687208;173336;693344;713;366.740814475;2022-02-05@17:48:01 +v2.0.8;single;100;1000000;;1850595;774906;684264;172584;690336;717;370.407455817;2022-02-05@17:54:19 +v2.0.8-191-g68d8716f;single;100;1000000;;1850595;774906;1909064;1744323;6977292;88;50.457323999;2022-02-05@17:55:18 +v2.0.8-191-g68d8716f;single;100;1000000;;1850595;774906;1911704;1744279;6977116;81;48.009843424;2022-02-05@17:56:15 +v2.0.8-191-g68d8716f;single;100;1000000;;1850595;774906;1927700;1727894;6911576;80;46.040963014;2022-02-05@17:57:09 +v2.0.8-191-g68d8716f;single;100;1000000;;1850595;774906;2102624;1727928;6911712;73;45.154658709;2022-02-05@17:58:03 +v2.0.8-191-g68d8716f;single;100;1000000;;1850595;774906;1999780;1744290;6977160;75;45.320106646;2022-02-05@17:58:57 +v2.0.8-191-g68d8716f;single;100;1000000;;1850595;774906;1849620;1727877;6911508;81;45.344112731;2022-02-05@17:59:50 +v2.0.8-191-g68d8716f;single;100;1000000;;1850595;774906;2195280;1744262;6977048;83;49.307507134;2022-02-05@18:00:48 +v2.0.8-191-g68d8716f;single;100;1000000;;1850595;774906;2122772;1744314;6977256;83;48.885739566;2022-02-05@18:01:45 +v2.0.8;mulimex;100;1000000;;1850595;774906;27538684;6886450;27545800;1501;771.549366259;2022-02-05@18:16:04 +v2.0.8;mulimex;100;1000000;;1850595;774906;27543460;6887382;27549528;1500;763.970036677;2022-02-05@18:30:16 +v2.0.8;mulimex;100;1000000;;1850595;774906;27543024;6887585;27550340;1529;785.017708441;2022-02-05@18:44:48 +v2.0.8;mulimex;100;1000000;;1850595;774906;27542992;6887238;27548952;1537;788.560879095;2022-02-05@18:59:24 +v2.0.8;mulimex;100;1000000;;1850595;774906;27540988;6886722;27546888;1526;780.469105467;2022-02-05@19:13:53 +v2.0.8;mulimex;100;1000000;;1850595;774906;27540736;6886707;27546828;1494;761.272494529;2022-02-05@19:28:01 +v2.0.8;mulimex;100;1000000;;1850595;774906;27539324;6886404;27545616;1503;773.100628946;2022-02-05@19:42:21 +v2.0.8;mulimex;100;1000000;;1850595;774906;27544724;6887658;27550632;1531;784.312494214;2022-02-05@19:56:53 +v2.0.8-191-g68d8716f;mulimex;100;1000000;;1850595;774906;24303324;8034422;32137688;255;151.266685842;2022-02-05@20:00:55 +v2.0.8-191-g68d8716f;mulimex;100;1000000;;1850595;774906;24299220;8034486;32137944;255;151.735213648;2022-02-05@20:03:39 +v2.0.8-191-g68d8716f;mulimex;100;1000000;;1850595;774906;24300540;8035684;32142736;259;152.859662854;2022-02-05@20:06:25 +v2.0.8-191-g68d8716f;mulimex;100;1000000;;1850595;774906;24299092;8034016;32136064;253;152.038598172;2022-02-05@20:09:09 +v2.0.8-191-g68d8716f;mulimex;100;1000000;;1850595;774906;24290004;8033225;32132900;257;154.580068271;2022-02-05@20:11:57 +v2.0.8-191-g68d8716f;mulimex;100;1000000;;1850595;774906;24295968;8034657;32138628;255;152.730881611;2022-02-05@20:14:43 +v2.0.8-191-g68d8716f;mulimex;100;1000000;;1850595;774906;24296716;8033090;32132360;251;150.853322625;2022-02-05@20:17:27 +v2.0.8-191-g68d8716f;mulimex;100;1000000;;1850595;774906;24307072;8034328;32137312;251;151.143574226;2022-02-05@20:20:10 +v2.0.8;single;316;1000000;;1904334;774924;775872;195473;781892;2348;1174.577249348;2022-02-05@22:17:37 +v2.0.8;single;316;1000000;;1904334;774924;776112;195574;782296;2466;1206.370934164;2022-02-05@22:37:55 +v2.0.8;single;316;1000000;;1904334;774924;883280;222354;889416;3720;2037.159169159;2022-02-05@23:12:03 +v2.0.8;single;316;1000000;;1904334;774924;1103508;277363;1109452;3956;2202.485440220;2022-02-05@23:48:57 +v2.0.8;single;316;1000000;;1904334;774924;778572;196189;784756;2353;1168.519093026;2022-02-06@00:08:37 +v2.0.8;single;316;1000000;;1904334;774924;895896;225477;901908;3898;2212.139663429;2022-02-06@00:45:41 +v2.0.8;single;316;1000000;;1904334;774924;933612;234961;939844;3550;1911.990475277;2022-02-06@01:17:43 +v2.0.8;single;316;1000000;;1904334;774924;776832;195814;783256;2885;1384.335300260;2022-02-06@01:40:58 +v2.0.8-191-g68d8716f;single;316;1000000;;1904334;774924;2099000;2200608;8802432;297;146.881032759;2022-02-06@01:43:39 +v2.0.8-191-g68d8716f;single;316;1000000;;1904334;774924;2021504;2184216;8736864;271;142.265301817;2022-02-06@01:46:10 +v2.0.8-191-g68d8716f;single;316;1000000;;1904334;774924;2019184;2183596;8734384;280;145.881691306;2022-02-06@01:48:44 +v2.0.8-191-g68d8716f;single;316;1000000;;1904334;774924;2114844;2184232;8736928;283;144.454957472;2022-02-06@01:51:18 +v2.0.8-191-g68d8716f;single;316;1000000;;1904334;774924;3202660;2202504;8810016;251;139.810589922;2022-02-06@01:53:46 +v2.0.8-191-g68d8716f;single;316;1000000;;1904334;774924;2358196;2168710;8674840;244;137.155072737;2022-02-06@01:56:12 +v2.0.8-191-g68d8716f;single;316;1000000;;1904334;774924;2351692;2184810;8739240;262;142.477408473;2022-02-06@01:58:43 +v2.0.8-191-g68d8716f;single;316;1000000;;1904334;774924;2203488;2184041;8736164;274;140.694525782;2022-02-06@02:01:13 +v2.0.8;single;1000;1000000;;1921645;775122;10172940;2544765;10179060;12699;7751.345015169;2022-02-06@04:19:19 +v2.0.8;single;1000;1000000;;1921645;775122;10765548;2692881;10771524;12721;7847.362800203;2022-02-06@06:30:31 +v2.0.8;single;1000;1000000;;1921645;775122;6931664;1734436;6937744;11924;7679.360650451;2022-02-06@08:38:52 +v2.0.8;single;1000;1000000;;1921645;775122;2880676;721670;2886680;11966;7472.979289279;2022-02-06@10:43:48 +v2.0.8;single;1000;1000000;;1921645;775122;1791404;449352;1797408;8893;4837.344280205;2022-02-06@12:04:47 +v2.0.8;single;1000;1000000;;1921645;775122;1102328;277096;1108384;11546;7431.205042891;2022-02-06@14:13:21 +v2.0.8;single;1000;1000000;;1921645;775122;3931932;984508;3938032;11545;7470.880615272;2022-02-06@16:18:11 +v2.0.8;single;1000;1000000;;1921645;775122;8973476;2244831;8979324;12756;7968.283077393;2022-02-06@18:31:21 |