Files
gocryptotrader/testdata/binance_BTCUSDT_24h-trades_2020_11_16.csv
Scott 46f71952f9 Feature: GoCryptoTrader Backtester (#622)
* Backtester: event handler completed, basic back tester support is working

* Backtester: support for ticker data added, general code clean up, start of risk & size manageR

* Backtester: WIP

* Me: I am going to write tests and comment as I go this time, also me: doesn't write any tests or comments as i go

* Backtester: work on orderbook system to track orders, increased test coverage

* Backtester: further test coverage, output json, start of js chart output

* Backtester: test coverage, output strat name

* Backtester: WIP

* WIP backtest charts

* WIP on template

* Backtester: further test coverage added

* Backtester: WIP

* backtester: attempting easier to read template for backtesting output

* comments, and tests

* Backtester: end of day WIP started work on risk management for handling leveraged positions

* Backtester: WIP

* Backtester: started heavy documentation phase for handover

* Backtester: started heavy documentation phase for handover

* Backtester: further comments, also work on making chart solution modular to allow for usage outside backtester (e.g OHCLV data)

* Backtester: CHART LIBRARY

* Backtester: move backtester over to new chart library

* Backtester: removed old chart templates, template updates

* Chart: add advancedintervaldata, convert from stats -> chart

* Chart: gctscript hookup to generate chart from OHLCV data

* Chart: reworked template to load from generated data if no template path is set

* chart: template wip

* correclty generate backtester readme, readme generation for charts, chart data generation

* Removed old read file methods

* Removed chart library from backtest as its now standalone

* Remove reference to unfinish TA code. Removes value calculation from order signal. It belongs with portfolio signal

* regen

* Re-jiggles everything around to not have import cycle issues and makes it look like a normal application

* End of day commit creates a new function to setup a backtester from a settings struct. Doesn't work though lol

* Builds up more backtest work to allow to be run from the command line

* Regen RPC

* End of day mind mine field of RSI calculation5

* Finishes basic main.go application

* Minor updates while theorising

* Rearranging things like the size and data types. Adds portfolio setup like a normal human. Allows positions to be decimal based since this is for CRYPTOCURRENCIES :o

* Moves code around to related positions. Adds compatibility to ordermanager to handle order submission. Fails to do things

* End of day commit. Adding config based loading for indiviual strats. Attempting to allow for multiple cps per strategy as well as loading fees

* End of day commit. Expanding config definition and loading implementation. Attempting to setup backtester wide multi currency support in a strategy.

* Moves risk, attempts to revert multi currency, but also supports more in depth multi currency for later...... in the portfolio

* End of day commit for realsies. Updates the strat and sets the invalid backtester

* No more panics. Finishes config loading. Renames buyandhold to dollarcostaverage

* Extends strategy to include a reason why its performing an action. Adds 420blazeit.strat. Expands statistics output. Moves folders around some more. Reduces amount of processing when "DO NOTHING" is the direction

* Commit before home time. Looks to expand the order manager to cater to the backtester. Fleshes out risk manager to think about leverage and holdings in other currencies

* Some basic expanding of strategy definitions. Changes weird package naming.

* Expands size and risk validations. Expands config settings for the validation. Starts looking at loading from live data source

* Merge branch 'master' into backscratcher

* Work towards having backtester load data

* Adds support and tests for all data source loading except for LIVE

* Some basic additions looking to append to data streams instead of load all at once, for the purpose of live data analysis

* End of day commit where I broke functions

* Adds live backtesting

* Adds FANCY MATHS to correctly size orders before  slippage. Rearranges minmaxing in config and strats

* Prints out initial settings. Creates a lame slippage calculator. Ensures that order price/amounts respect OHLCV data. Adds customisable config variables that can influence a strategy

* Fixes minor issues with rendering. Fixes portfolio buying and selling now

* ALL OVER THE PLACE END OF DAY COMMIT! In order to expand stats, thing must be tracked appropriately, which they arent. Here we add the addition of a compliance.go to track orders specifically. This will allow for the holdings manager to keep track of base stats such as how much we hold versus whats in use along with profits Compliance holds snapshots of every tick and what orders were there across exchanges. Also added a random slippage calculator which will allow a user to set their own slippage rates

* Another fun end of day commit where nothing works. In order to have accurate stats, you need accurate positions, to have accurate positions you need to break things down to individual levels and store them. This is part of that process of ensuring that we can have multiple settings and everything processed appropriately.

* Finalises multi currency config and support at most levels with exception to data loading.
Simplifies some struct property definitions by removing redundancy
Allows tracking of entire portfolio snapshots after each interval to track the entire process
Lowercases use of exchange names

* Sets the different prices to track across time. Attempts to sort out compliance snapshots

* end of day commit. Moving compliance to the portfolio to manager and track all transactions at each interval.

* Moves compliance calculation to portfolio.go. Adds a nice little decorator on the compliance manager orders to keep track of slippage, cost basis, volume adjusted price and close price. Moves "positions" to "hodlings" to be more accurate. Ensures exchange value calculations are accurate. Begins looking at Statistics and hodlings

* Moves statistics to eventhandlers. Removes ticker work as not needed. Redefines hodler properties

* hodlings are actually part of the portfolio

* Renamed 420blazeit.strat file. Renamed hodlings to holdings. Moved Datahandler to data_types.go. Expanded holdings calculations, doesn't work, but we're getting somewhere. Renamed bad var names in backtest.go. Added new order side types to highlight lack of action reasons

* Adds tests for holdings to ensure that holding snapshot calculation is accurate for the length of a strategy. Removes portfolio.Funds because its now handled via the holdings snapshots. Adds helper functions to Holding snapshots to retrieve relevant holdings. Updates sizing calculation to properly handle sell events. Expands holdings definitions to allow for comparison. Expands risk calculations to include holding snapshots so as to analyse all positions simultaneously

* Changing the statistics results to consider all datas, with the ultimate goal to replace the current statistics package with this multi currency output

* Made "Why" more generic. Expands statistics output. Removes time tying to stats map. Moves order event to correct location. Removes some debug lines.

* Adds some raw funky drawdown statistics 🎉

* End of day commit. experimentation leaves little code changes

* An attempt at expanding statistics. Need to have ones dedicated to exchange, asset, pair. Early work for having global map to track all the asset things to minimise all the maps throughout the application

* 🎉 ADDS MULTI CURRENCY SUPPORT TO FOR THE BACKTESTER 🎉 Can either execute strategies by assessing multiple currencies individually, or as a group and make strategic decisions on what currency to signal in. Adds new strat files to demonstrate

* End of day shenanigans. Moving codes around, making more fun stats. Expanding DCA strat to check if DCA is better than the market longer term

* Adds sharpe ratio and total stats for final output if more than one currency is considered

* Adds sortino ratio and test for validation

* Adds information ratio

* Adds calmar ratio

* Adds CAGR

* Slims down the statistics file to only include my work. Updates everything to use interfaces rather than direct code references to make it easier to swap out codes. Begins looking at serialising statistics for reports

* More neatening. Removal of old FAKE tests. Can now output a report in JSON

* End of day commit. Creation of reporting. Uses tradingview charting library and some basic bootstrap CDN to render content nicely. Will be updating everything to have a special kline item to annotate chart results

* Minor formatting changes before all the reviews

* End of day commit. Expands reporting to have an enhanced candle. These candles contain metadata on whether an order has been placed and to mark charts appropriately. This will be expanded to have all the stats and make it pretty

* Extra code I forgot to commit!

* Fixes an issue where data cannot render above 1,100 candles by stopping it from rendering more than that..

* End of day commit. There is no inclusivity with candle requests and I cant figure it out right now.

* Fixes issue with missing data by adding events when data isnt present and classifying it. Adds new way for klines to verify data with a bit more clarity

* Completes report generation

* Improves cagr. removes butts. Replaces old kline function with new supercalc

* Adds readme templates and files across whole backtester. Renames 420rsi to more appropriate name. Moves interfaces to common

* Some extra documentation

* New header

* Adds some nice coverage to backtest.go. Updats readmes to use new backtester header template

* End of day crappy test commit

* Adds report coverage... Somewhat. Adds template path and output path to allow custom properties and easier testing. Fixes interface duplication

* Adds some lame tests.

* Fixes test

* Adds coverage to the exchange event handler

* Minor test changes

* Fixes slippage calculations based on buying and selling. Adds more tests to compliance and holdings

* Rejiggles risk assessment to properly consider leverage if it were ever to be implemented fully. Removes bot dependency and adds coverage to the risk package

* Expands coverage to sizing

* Rejiggles code to add coverage for the portfolio package and its compatriots.

* Adds additional testing to the backtester along with some data gathering tests

* Tried and failed attempt to expand testing for the database.

* Adds testing for kline, data, statistics

* into the 70%s of coverage! Adds tests for base, DCA, statistics

* Adds test coverage of strategies

* Adds test coerage to statistics. updates template generation to not require CurrencyStatistics to have EAP. Removes EAP from currencystatistics

* Adds coverage to currencystatistics.go BUT ITS NOT COMPLETE

* 86% coverage wow. Fixes 2 tests

* Fixes data races due to engine dependency craziness. Changes order manager to not have a global dependency

* Completes currencystatistics test coverage

* Some linting fixes

* Adds new documentation to the bakctester config. Updates how risk leverage/ratios work with a single map.

* Minor documentation changes. Its difficult to describe how it all works

* Redefines strats and strat tests. Adds some really light documentation

* Updates some basic documentation.

* Fixes lazy bugs

* Fixes bug in fill event processing. Fixes bug in statistics crashing. Fixes report generation. Fixes multi-currency processing to still process non-errored signals

* More documentation.

* Fixes ALL LINTING ISSUES

* Cuts off unnecessary limbs/interface functions. linting. Adding comments to all functions. Adding ability to use whalebomb to calculate slippage for live orders. Adds testing for it too. Simplifies adding events to statistics.

* Removes a weird overlap of holding features that made no sense and the writer of those functions should be ASHAMED. Adds additional documentation

* Fixes issue with data being outside ranges. Adds some extra validation to areas where people can mess around. Makes generating configs easier with consistent dates. Adds more documentation. Cleans up okex/okcoin implementation to some functions since people aren't understanding that they share a based okgroup and that anything that is the same between two functions only needs to be written once...................... Also fixes some bad gct script code

* Updated image and slight change to readme

* Removes unused code. Fixes up verbose and removes old comment

* Fixes issues with data validation for other data sources. Fixes bad reference in template

* Fixes missing data problem for last candle considered missing. Fixes issue where fill order crashes when sizing error occurs. Adds documentation

* Fixes issue with drawdown calculations. Fixes live data usage

* Adds some comments for good measure

* Default strat fix

* Fixes surprise linting issues

* gofmt

* New linting issue with every commit

* Fixes testing. Adds new config setting to set a custom gocryptotrader config path. Updates config tests to use dryrun. Results now include the nickname in the file for easier identification

* Fixes live testing bitstamp. Fixes some template issues. Adds comments.

* Updates max drawdown calculation to go peak vs trough. Fixes minor return issue. Removes unnecessary Data implementations. Removes weird verbose false. Fixes holdings calculations for boughtvalue. Removes Swingholder and just uses Swing. Fixes time calculation issue in kline

* End of day commit that breaks things. Fixes issue with documentation generation only going one space deep. Adds exchange name to warnings of missing candle data. Renames missing candle data function. Adds some testing to kline functions. Adds new ability to size modified orders to portfolio allowance. Addresses defer close and other small nits. Fixes slow loop

* End of day commit. There are too many mini changes to list. DateType to int. Default switch case. Returning earlier. Nil returns instead of ok. High low price in data, now used in max drop down. Missing data shown in the report.

* End of day commit moving things from stats to maths.

* Move the rest to math package and add testing

* Ammends slippage calculations for live. Adds sizing funds to order event. Improves CAGR calculation

* Mini fix commit for test

* End of day mini change for documentation

* Fixes in documentation and expanded error messages. Pretties up the report

* minor adjustments to sharpe ratio and other ratio calculations

* Fixes test by taking it out back. linting

* Fixes tests

* Fixes some tests, addresses some poor nits

* More test and lint fixes

* Fixes binance translation issue

* Further craziness into reducing the concurrent test issues

* lint

* Mini fix

* Geometric average added and tested. Adjusts application to support it. End of day experiementation with negative geometric mean. Fixes typo in currencystatistics package name

* Fixes geometric calculation. Adds sweet CMD logo

* fixes geometric mean 😆 can now disable logo output if you hate everything good in life

* lint

* Should fix test in appveyor by not being nil

* Fixes chance of getting no trades error. Maybe making nil events in the test will stop this poorly formed appveyor error

* Forgotten Y tail

* Check-ch-check-check-check-ch-check it out, minimising stutter is what its all about... Also provides more verbose error messages

* de-ooopsies the whoopsie

* Attempts to further address race issues when using global logs during start stop process

* Includes a copy of the logger itself when logging so that no log.Debug action can create a data race upon being changed globally

* Reduces bot usage further

* Removes sharpie from b-acktester

* comments, renames and bears, oh my!

* Fixes git merge issues/tests. Splits average calculation into their own functions. Clarifies math function and sell position comments. Removes taker fee from final report. Adds warning when maker and taker aren't appropriately set. Fixes config testing issue where the config was saved when running exchange_template tests. Adds new test to ensure the testconfig isn't changed unnecessarily

* More why to reason

* Remove test due to hash discrepancy.

* Updates maths to use errors. Updates tests to support it.

* Fixes error handling for some packages. Uses position value instead of position size. Fixes leverage ratio work. Removes extra binance windows

* Removes references to "multi currency" to shiny new verbiage "simultaneous processing"

* Fixes issue with extra data be appended and then declared missing

* Removes redundant code via code removal

* Does a larger transition to using error types. Addresses math related nits

* eat a mint while you lint

* Completes err definition sweep

* replaces over 80 instances of the same typo!

* Renames more properties with Maximum ratios. Adds examples to config readme. Updates config maker takers. Adds cool kline error

* Adds 'InclusiveEndDate' config property to API and Database datas. Adds testing for it. Updates readme for it

* splint

* Minor naming fix. Minor drawdown fix. Attempts to lower the bot usage when heaps of candles are requested.

* Large data set processing improvements

* Speeds up backtesting processing. Ensures rate limits are set

Processing of most events is done in a linear fashion. So functions that
relied on checking an events time for example, will now check the latest
before processing every interval. The functions will still work normally
in the event that someone wishes to use them out of order, but for
general backtesting, it greatly speeds up all processing.

Further, rather than comparing times all the time, I've introduced
offsets for comparisons of ints for events and with candle data tests

* Fixes build issue

* Adds committed funds stat. Adds config goal

Committed funds are calculated as the total amount of money currently in position
It allows for a strategist to get the maximum returns for the smallest funds

The goal function is to allow a strategist to set a goal description

* Fixes data race

* Adds unfinished config builder application

* End of day broken commit

I focussed on too many things at once and there are many things left to resolve

* Fixees panics

* Finishes config builder

* Fixes order manager start/stop. Improves config manager

* Fixes writefile reference

* Adds some extra readme

* Makes a more user friendly config builder. Fixes initial nil. Adds more order size reasons

* lint

* Adds warnings for when data is missing and ratios will be skewed

* bodMISSED bodmas

* Does not consider initial entry in performance calculations

Adds strategy description field
Adds cost basis to chart
Fixes time rendering on default configs

* Fixes bug in ratio calculations

* saveConfig := !(!false != !true) == true

* lint

* Fixes start end single day drawdowns. Expands cmd drawdown explanation

* Comment on rounding, updated report rounding

* Addresses readme link issues

* Actually fixes readme references

* Should truly solve readme links....

* Includes filename for report log

* Fixes panics, reduces csv trade candle size, no more science

* Removes more science

* test123

* Adds extra config validation

* Fixes the date validation

* Shows smaller fees

* Changes perfectly cromulent error message to start >= end

Co-authored-by: Andrew Jackson <andrew@disvelop.net>
2021-03-22 09:26:17 +11:00

31 KiB

1160549984615993.50.026472ANY
2160549984615994.960.227ANY
3160549984615994.510.07ANY
4160549984615994.50.006957ANY
5160549984615994.180.012845ANY
61605499846159940.0375ANY
7160549984615994.970.0069ANY
8160549984715993.210.0069ANY
9160549984715992.980.014742ANY
10160549984715992.970.336319ANY
11160549984715992.980.003479ANY
12160549984715992.980.01373ANY
13160549984715992.980.012689ANY
14160549984715992.970.000736ANY
15160549984815992.970.162945ANY
16160549984815992.970.0069ANY
17160549984815992.70.07984ANY
18160549984815992.710.067413ANY
19160549984915992.710.001562ANY
20160549984915992.70.1ANY
21160549984915992.70.031264ANY
22160549984915992.710.011888ANY
23160549984915992.710.0022ANY
24160549984915992.710.003183ANY
25160549985015992.710.003627ANY
26160549985015992.710.010606ANY
27160549985015992.710.0088ANY
28160549985015992.710.001821ANY
29160549985115992.710.059331ANY
30160549985115992.710.0531ANY
31160549985115992.710.00167ANY
32160549985115992.710.00167ANY
33160549985115992.710.045888ANY
34160549985115992.710.002ANY
35160549985115992.710.002437ANY
36160549985115992.710.001666ANY
37160549985115992.710.002ANY
38160549985115992.710.002ANY
39160549985115992.850.003332ANY
40160549985115992.730.001666ANY
41160549985115992.750.001666ANY
42160549985115992.850.003568ANY
43160549985115992.910.019788ANY
44160549985115992.910.003336ANY
45160549985115992.980.001799ANY
46160549985115992.980.001765ANY
47160549985115992.980.00762ANY
48160549985115993.10.000989ANY
49160549985115992.980.054881ANY
50160549985115993.10.00591ANY
51160549985115993.11e-06ANY
52160549985115993.180.006899ANY
53160549985115994.250.0069ANY
54160549985115993.180.000725ANY
55160549985115993.50.018369ANY
56160549985115994.970.01ANY
57160549985115994.981.839006ANY
58160549985115994.980.12658ANY
59160549985115994.980.034414ANY
60160549985115994.980.001585ANY
611605499851159950.001501ANY
621605499851159950.03475ANY
631605499851159950.001249ANY
64160549985115995.210.005651ANY
65160549985115995.210.03127ANY
66160549985115995.210.033079ANY
67160549985115995.220.004421ANY
68160549985115995.220.002479ANY
69160549985115995.320.004421ANY
70160549985115995.320.03033ANY
71160549985115995.50.00717ANY
72160549985115995.160.01723ANY
73160549985115995.160.017556ANY
74160549985115995.850.0069ANY
75160549985115996.240.005109ANY
76160549985115996.240.006061ANY
77160549985115996.240.001874ANY
78160549985115995.850.087789ANY
79160549985115995.990.024761ANY
80160549985115995.990.0069ANY
81160549985115995.990.003125ANY
82160549985115996.240.003775ANY
83160549985115996.240.000412ANY
84160549985115996.80.0375ANY
85160549985115996.790.399ANY
86160549985115996.790.001ANY
87160549985115996.790.004439ANY
88160549985115996.790.001845ANY
89160549985115996.790.002931ANY
901605499852159960.073885ANY
911605499852159960.005641ANY
92160549985215996.010.0075ANY
931605499852159960.01457ANY
94160549985315996.010.012106ANY
951605499853159960.002685ANY
961605499854159960.002852ANY
971605499854159960.031257ANY
981605499855159960.002464ANY
991605499855159960.028307ANY
1001605499855159960.002ANY
1011605499855159960.034633ANY
1021605499855159960.049351ANY
1031605499855159960.010002ANY
104160549985515995.530.002959ANY
105160549985515995.540.001845ANY
106160549985515995.530.004299ANY
107160549985515995.210.016942ANY
1081605499855159950.068831ANY
109160549985515993.980.01ANY
110160549985515993.970.299928ANY
111160549985515993.980.049352ANY
112160549985515993.980.00434ANY
113160549985615993.970.000726ANY
114160549985715993.970.006174ANY
115160549985715993.970.013536ANY
116160549985815993.970.002ANY
117160549985815993.180.00125ANY
118160549985815992.770.003599ANY
119160549985815992.780.046902ANY
120160549985815992.780.0074ANY
121160549986015993.370.011689ANY
122160549986015993.370.002987ANY
123160549986215993.370.005667ANY
124160549986315993.370.000695ANY
125160549986315993.370.0008ANY
126160549986315993.380.001729ANY
127160549986415993.370.000706ANY
128160549986515993.380.000688ANY
129160549986615993.370.00098ANY
130160549986615993.370.112825ANY
131160549986615993.370.000756ANY
132160549986615993.370.000762ANY
133160549986615993.370.00076ANY
134160549986615993.370.026799ANY
135160549986615993.370.000755ANY
136160549986615993.370.00082ANY
137160549986615993.370.000838ANY
138160549986615993.370.000756ANY
139160549986615993.370.000828ANY
140160549986615993.370.001727ANY
141160549986615993.370.002485ANY
142160549986615993.370.000759ANY
143160549986615993.370.000876ANY
144160549986615993.370.000769ANY
145160549986615993.370.001413ANY
146160549986615993.370.000804ANY
147160549986615993.370.00076ANY
148160549986615993.370.000763ANY
149160549986615993.370.001015ANY
150160549986615993.370.000995ANY
151160549986615993.370.001248ANY
152160549986615993.370.00076ANY
153160549986615993.370.000832ANY
154160549986615993.370.000745ANY
155160549986615993.370.000764ANY
156160549986615993.370.002374ANY
157160549986615993.370.001015ANY
158160549986615993.370.000756ANY
159160549986615993.370.000849ANY
160160549986615993.370.000778ANY
161160549986615993.370.000994ANY
162160549986615993.370.000775ANY
163160549986615993.370.000847ANY
164160549986615993.370.001122ANY
165160549986615993.377e-06ANY
166160549986615993.080.001214ANY
167160549986615993.080.009387ANY
168160549986615993.080.013613ANY
169160549986615993.080.019088ANY
170160549986615993.080.026912ANY
171160549986615993.080.000761ANY
172160549986615993.080.000753ANY
173160549986615993.080.000855ANY
174160549986615993.080.000843ANY
175160549986615993.080.000871ANY
176160549986615993.080.000756ANY
177160549986615993.070.029ANY
178160549986615993.070.015926ANY
179160549986615993.070.0069ANY
180160549986615993.080.000755ANY
181160549986615993.080.0011ANY
182160549986715993.080.000756ANY
183160549986715993.080.001808ANY
184160549986715993.080.000752ANY
185160549986715993.080.001165ANY
186160549986715993.080.000827ANY
187160549986715993.080.000983ANY
188160549986715993.080.002121ANY
189160549986715993.080.00079ANY
190160549986715993.080.000756ANY
191160549986715993.080.000855ANY
192160549986715993.080.000836ANY
193160549986715993.080.000869ANY
194160549986815993.080.000996ANY
195160549986815993.080.000921ANY
196160549986815993.080.001324ANY
197160549986815993.080.001111ANY
198160549986815993.080.000871ANY
199160549986815993.080.001223ANY
200160549986815993.080.000756ANY
201160549986815993.080.00077ANY
202160549986815993.080.00085ANY
203160549986815993.080.000986ANY
204160549986815993.080.001179ANY
205160549986915993.080.000761ANY
206160549986915993.080.000753ANY
207160549986915993.080.001148ANY
208160549986915993.080.000771ANY
209160549986915993.080.000756ANY
210160549986915993.080.001246ANY
211160549986915993.080.000773ANY
212160549987015993.080.000994ANY
213160549987015993.080.000774ANY
214160549987015993.080.0378ANY
215160549987015993.080.000763ANY
216160549987015993.080.000772ANY
217160549987015993.080.00134ANY
218160549987015993.080.000816ANY
219160549987015993.080.000753ANY
220160549987015993.080.00099ANY
221160549987015993.080.000882ANY
222160549987015993.080.001264ANY
223160549987115993.080.001805ANY
224160549987115993.080.000769ANY
225160549987115993.080.000825ANY
226160549987115993.080.003748ANY
227160549987215993.080.001768ANY
228160549987215993.070.000745ANY
229160549987415993.080.14039ANY
230160549987515993.070.002919ANY
231160549987715993.080.001643ANY
232160549987815993.080.00343ANY
233160549987915992.70.035325ANY
234160549987915993.060.029ANY
235160549987915992.770.003301ANY
236160549987915993.070.085525ANY
237160549987915992.770.0069ANY
238160549987915992.710.003458ANY
239160549988015992.70.000697ANY
240160549988115992.70.031259ANY
241160549988215992.710.000819ANY
242160549988215992.70.051037ANY
243160549988215992.70.036101ANY
244160549988215992.70.00722ANY
245160549988215992.70.021661ANY
246160549988215992.70.040447ANY
247160549988215992.70.028881ANY
248160549988315992.70.021661ANY
249160549988315992.70.225711ANY
250160549988315992.70.0069ANY
251160549988315992.70.006899ANY
252160549988315992.71e-06ANY
253160549988315992.510.002ANY
254160549988315992.510.002ANY
255160549988315992.510.002ANY
256160549988315992.510.006989ANY
257160549988315992.512e-06ANY
258160549988315990.650.006818ANY
259160549988315990.640.028607ANY
260160549988315990.650.008754ANY
261160549988415990.650.009063ANY
262160549988415990.650.001918ANY
263160549988415990.640.001823ANY
264160549988415990.640.001427ANY
265160549988515990.640.00365ANY
266160549988515990.640.001342ANY
267160549988715990.560.004066ANY
268160549988815990.560.004ANY
269160549988815990.560.000719ANY
270160549988815990.550.000739ANY
271160549989215990.550.006162ANY
272160549989215990.560.000769ANY
273160549989315990.550.029453ANY
274160549989315990.550.063646ANY
275160549989315990.550.0069ANY
276160549989315990.550.273083ANY
277160549989315990.550.032489ANY
278160549989315990.550.086034ANY
279160549989415990.550.10839ANY
280160549989415990.554e-06ANY
281160549989415990.090.014687ANY
282160549989415990.080.002531ANY
283160549989415990.080.003559ANY
284160549989415990.080.00019ANY
285160549989415990.080.006708ANY
286160549989415990.082e-06ANY
287160549989415990.080.006398ANY
2881605499894159900.01718ANY
2891605499894159900.01282ANY
290160549989415989.50.5ANY
291160549989415989.220.0069ANY
2921605499894159900.0069ANY
293160549989415989.760.017182ANY
2941605499894159870.01ANY
295160549989415988.440.019216ANY
296160549989415987.50.0375ANY
297160549989415987.230.0069ANY
298160549989415987.120.6ANY
2991605499894159870.0375ANY
300160549989415986.660.117884ANY
301160549989415988.440.05ANY
302160549989415986.340.050984ANY
303160549989415986.660.062116ANY
304160549989415986.510.15ANY
305160549989415986.660.0069ANY
306160549989415986.350.16166ANY
307160549989415986.350.283656ANY
308160549989415986.350.043089ANY
309160549989415986.350.1ANY
310160549989515986.350.002ANY
311160549989515986.350.000655ANY
312160549989515988.40.01602ANY
313160549989515986.440.0069ANY
314160549989515988.390.039393ANY
315160549989515986.350.001345ANY
316160549989515987.380.006888ANY
317160549989515987.370.0069ANY
318160549989515987.370.008275ANY
319160549989515987.370.062505ANY
320160549989515987.370.12502ANY
321160549989615987.840.088353ANY
322160549989615987.840.0069ANY
323160549989615987.840.029557ANY
324160549989615987.840.014027ANY
325160549989615987.840.003316ANY
326160549989715987.620.00075ANY
327160549989715987.620.003316ANY
328160549989815987.620.002834ANY
329160549989815987.620.0069ANY
330160549989815987.620.009771ANY
331160549989815987.380.022151ANY
332160549990015987.370.04ANY
333160549990015987.370.005ANY
334160549990015987.370.001892ANY
335160549990115990.960.015798ANY
336160549990115987.380.006079ANY
337160549990115987.380.002419ANY
338160549990115987.380.002ANY
339160549990115987.380.024712ANY
340160549990115987.380.002ANY
341160549990115987.380.002ANY
342160549990115987.50.157569ANY
343160549990115987.510.0069ANY
344160549990115987.610.1ANY
345160549990115987.620.4384ANY
346160549990115987.630.004895ANY
347160549990115987.740.0069ANY
348160549990115987.850.006378ANY
349160549990115988.160.2ANY
350160549990115988.170.018019ANY
351160549990115988.370.00125ANY
352160549990115988.990.2ANY
3531605499901159890.0375ANY
354160549990115987.380.075ANY
355160549990115989.210.112548ANY
356160549990115989.50.0375ANY
357160549990115989.980.01ANY
358160549990115989.990.08ANY
3591605499901159900.0375ANY
360160549990115990.050.0069ANY
361160549990115990.080.018597ANY
362160549990115990.330.0069ANY
363160549990115990.450.264401ANY
364160549990115990.50.0375ANY
365160549990115990.560.002512ANY
366160549990115990.60.703972ANY
367160549990115990.610.0069ANY
368160549990115990.950.2ANY
369160549990115989.120.0069ANY
370160549990115990.980.193845ANY
371160549990115986.460.010184ANY
372160549990115986.920.0069ANY
373160549990115987.850.006317ANY
374160549990115988.170.013809ANY
375160549990115988.370.04ANY
376160549990115990.820.00385ANY
377160549990115990.960.000713ANY
378160549990115990.960.03198ANY
379160549990115990.960.006703ANY
380160549990215990.960.002ANY
381160549990215990.960.002ANY
382160549990215990.960.000474ANY
383160549990215990.960.065799ANY
384160549990215990.960.008098ANY
385160549990215990.960.019137ANY
386160549990215990.960.002194ANY
387160549990215990.970.000964ANY
388160549990215990.960.277864ANY
389160549990215990.970.000966ANY
390160549990315990.260.014737ANY
391160549990515990.260.000706ANY
392160549990615990.260.001686ANY
393160549990615990.260.469314ANY
394160549990715989.470.015554ANY
395160549990715990.260.04ANY
396160549990715989.980.002ANY
397160549990715989.790.009318ANY
398160549990715990.260.029ANY
399160549990715988.390.043037ANY
400160549990715988.460.0049ANY
401160549990915989.340.0069ANY
402160549990915989.340.0069ANY
403160549990915989.340.04ANY
404160549990915990.240.012351ANY
405160549991015990.170.00624ANY
406160549991015990.170.00066ANY
407160549991015990.170.0069ANY
408160549991015990.080.0712ANY
409160549991015989.770.000663ANY
410160549991015989.770.006237ANY
411160549991015988.340.04ANY
412160549991015989.770.006237ANY
413160549991015988.890.0069ANY
414160549991015988.390.0069ANY
415160549991015988.150.012507ANY
416160549991015988.130.326206ANY
417160549991015988.370.00125ANY
418160549991015988.140.001975ANY
419160549991115988.140.003226ANY
420160549991115988.510.000666ANY
421160549991115988.510.000667ANY
422160549991115988.510.000666ANY
423160549991115988.520.001931ANY
424160549991115988.520.004969ANY
425160549991115988.520.0069ANY
426160549991115990.130.011098ANY
427160549991215990.110.004228ANY
428160549991215990.110.01ANY
429160549991315990.110.00187ANY
430160549991315990.110.000934ANY
431160549991315990.110.000716ANY
432160549991615990.120.024334ANY
433160549991615990.120.0069ANY
434160549991615990.120.015666ANY
435160549991715990.130.004262ANY
436160549991715990.130.005757ANY
437160549991715990.140.003924ANY
438160549991815990.130.012615ANY
439160549991815990.130.014329ANY
440160549991815990.130.030571ANY
441160549991915990.130.010019ANY
442160549992015990.120.000807ANY
443160549992015990.120.00081ANY
444160549992015990.120.000753ANY
445160549992015990.120.000811ANY
446160549992015990.120.000811ANY
447160549992015990.120.000785ANY
448160549992115990.120.000777ANY
449160549992115990.120.00076ANY
450160549992115990.120.001805ANY
451160549992115990.120.00081ANY
452160549992115990.120.000811ANY
453160549992115990.110.000726ANY
454160549992215990.120.000794ANY
455160549992215990.110.010019ANY
456160549992215990.120.001727ANY
457160549992215990.120.002484ANY
458160549992215990.120.000807ANY
459160549992215990.120.000784ANY
460160549992215990.120.000809ANY
461160549992215990.120.001176ANY
462160549992215990.110.006664ANY
463160549992215990.120.000754ANY
464160549992215990.120.000756ANY
465160549992315990.120.00077ANY
466160549992315990.120.000811ANY
467160549992315990.120.000807ANY
468160549992315990.120.000811ANY
469160549992315990.120.000806ANY
470160549992415990.120.000777ANY
471160549992415990.120.000809ANY
472160549992415990.120.000809ANY
473160549992415990.120.00078ANY
474160549992415990.120.000759ANY
475160549992415990.120.000761ANY
476160549992415990.110.001291ANY
477160549992415990.120.002374ANY
478160549992415990.120.000804ANY
479160549992415990.120.000809ANY
480160549992515990.120.000809ANY
481160549992515990.110.004348ANY
482160549992515990.110.063308ANY
483160549992515990.120.000777ANY
484160549992515990.110.032245ANY
485160549992515990.120.000788ANY
486160549992515990.110.002295ANY
487160549992515990.120.000775ANY
488160549992615990.120.000751ANY
489160549992615990.120.001214ANY
490160549992615990.120.000775ANY
491160549992615990.120.000756ANY
492160549992615990.120.000469ANY
493160549992615990.120.002ANY
494160549992615990.120.006564ANY
495160549992615990.120.002ANY
496160549992615990.120.007972ANY
497160549992615990.120.000804ANY
498160549992715990.120.000763ANY
499160549992715990.120.002121ANY
500160549992715990.120.007945ANY
501160549992715990.120.025487ANY
502160549992715990.120.006565ANY
503160549992715990.590.009073ANY
504160549992715990.120.003689ANY
505160549992715990.140.002976ANY
506160549992715990.150.014139ANY
507160549992715990.220.0069ANY
508160549992715990.250.0069ANY
509160549992715990.122.5e-05ANY
510160549992715990.90.049895ANY
511160549992715990.910.008554ANY
512160549992815990.910.0069ANY
513160549992815990.910.002ANY
514160549992815990.910.002ANY
515160549992815991.380.004741ANY
516160549992815991.260.04ANY
517160549992815991.380.002451ANY
518160549992815991.380.0069ANY
519160549992815991.70.015175ANY
520160549992815992.480.15ANY
521160549992815992.620.0069ANY
522160549992815992.90.0069ANY
523160549992815992.90.0069ANY
524160549992815993.060.004453ANY
525160549992815993.060.026004ANY
526160549992815993.060.0074ANY
527160549992815993.060.016533ANY
528160549992915993.070.0062ANY
529160549992915993.070.004831ANY
530160549992915993.060.077685ANY
531160549992915993.060.09181ANY
532160549992915993.090.084336ANY
533160549993015993.090.00073ANY
534160549993215993.090.004995ANY
535160549993315993.090.040716ANY
536160549993315993.090.006692ANY
537160549993815993.090.000749ANY
538160549993815993.10.003889ANY
539160549993815993.090.00194ANY
540160549993815993.10.014386ANY
541160549993815993.090.00194ANY
542160549993815993.090.0032ANY
543160549993815993.10.000807ANY
544160549993815993.10.000767ANY
545160549993915993.10.000807ANY
546160549993915993.10.000772ANY
547160549993915993.10.000811ANY
548160549994015993.090.004853ANY
549160549994215993.10.050375ANY
550160549994215993.10.041338ANY
551160549994415993.090.000762ANY
552160549994415993.090.000756ANY
553160549994415993.090.000768ANY
554160549994415993.090.000811ANY
555160549994415993.090.000808ANY
556160549994415993.090.000766ANY
557160549994415993.090.039806ANY
558160549994415993.090.000807ANY
559160549994415993.090.001325ANY
560160549994415993.090.000775ANY
561160549994415993.090.000809ANY
562160549994415993.090.000807ANY
563160549994415993.090.00069ANY
564160549994415993.10.000789ANY
565160549994415993.10.49045ANY
566160549994515993.10.194809ANY
567160549994515993.10.0069ANY
568160549994515993.10.15ANY
569160549994515993.10.002221ANY
570160549994515993.10.001847ANY
571160549994515993.10.001846ANY
572160549994515993.10.001847ANY
573160549994515993.10.001847ANY
574160549994515993.10.002ANY
575160549994515993.10.002ANY
576160549994515993.10.002ANY
577160549994515993.10.003693ANY
578160549994515993.370.013544ANY
579160549994515993.380.004483ANY
580160549994515993.380.0069ANY
581160549994515993.40.625752ANY
582160549994515993.370.0069ANY
583160549994515993.570.00162ANY
584160549994515993.570.0069ANY
585160549994515993.90.703972ANY
586160549994515994.10.014257ANY
587160549994515994.170.002ANY
588160549994515994.760.0069ANY
589160549994515995.030.0069ANY
5901605499945159960.006878ANY
5911605499946159960.002ANY
592160549994615996.22.1e-05ANY
593160549994615996.20.001516ANY
594160549994715996.20.000463ANY
595160549994715996.20.0069ANY
596160549994715996.20.001985ANY
597160549994715996.21.5e-05ANY
598160549994715996.20.001978ANY
599160549994815996.22.2e-05ANY
600160549994815996.20.039979ANY
601160549994815996.22.1e-05ANY
602160549994815996.820.054143ANY
603160549994815996.820.161661ANY
604160549994815996.820.004984ANY
605160549994815996.820.161659ANY
606160549994815996.820.07172ANY
607160549994815996.820.542714ANY
608160549994815996.820.512167ANY
609160549994815996.820.09ANY
610160549994815996.820.002ANY
611160549994815996.190.003368ANY
612160549994915996.190.003532ANY
613160549994915996.190.029038ANY
614160549995015996.20.002ANY
615160549995015996.20.009233ANY
616160549995015996.20.015773ANY
617160549995215996.190.001806ANY
618160549995215996.190.000727ANY
619160549995515996.190.003273ANY
620160549995515996.190.002927ANY
621160549995615996.20.001846ANY
622160549995615996.20.001847ANY
623160549995615996.530.006898ANY
624160549995615996.20.003694ANY
625160549995615996.530.006874ANY
626160549995615996.532e-06ANY
627160549995615996.532.6e-05ANY
628160549995615996.820.003923ANY
629160549995615996.820.010848ANY
630160549995715996.820.015401ANY
631160549995715996.820.368828ANY
632160549995715996.820.149435ANY
633160549995715996.820.012224ANY
634160549995715996.820.017074ANY
635160549995715996.820.0037ANY
636160549995715996.820.00251ANY
637160549995815996.830.0069ANY
638160549995815996.830.0069ANY
639160549995815996.830.002ANY
640160549995815996.830.002ANY
641160549995815996.830.078034ANY
642160549995815996.820.095631ANY
643160549995815996.820.000916ANY
644160549995815996.820.04183ANY
645160549995815996.820.042374ANY
646160549995915996.820.001284ANY
647160549995915996.820.006657ANY
648160549995915996.820.01272ANY
649160549996015996.820.000753ANY
650160549996115996.821.1ANY
651160549996215996.820.00093ANY
652160549996215996.830.012215ANY
653160549996215996.821.817857ANY
654160549996215996.820.002ANY
655160549996215996.820.055143ANY
656160549996215996.820.032701ANY
657160549996215996.820.024933ANY
658160549996215996.820.006393ANY
659160549996215996.680.0069ANY
660160549996215996.630.002ANY
661160549996215996.630.002ANY
662160549996215996.360.0021ANY
663160549996215996.360.0048ANY
664160549996215996.350.0013ANY
665160549996215996.350.004802ANY
666160549996215996.20.000704ANY
667160549996215996.190.000494ANY
668160549996215996.090.0069ANY
669160549996215996.030.017566ANY
670160549996215996.190.000579ANY
671160549996315994.140.007154ANY
6721605499963159960.002ANY
6731605499963159960.002ANY
6741605499963159960.002ANY
675160549996315995.80.002ANY
676160549996315995.610.0069ANY
677160549996315994.140.01ANY
678160549996315995.20.04ANY
679160549996315994.010.003735ANY
680160549996415994.010.038966ANY
681160549996415994.010.034911ANY
6821605499964159940.000799ANY
683160549996415994.010.060565ANY
6841605499965159940.001587ANY
6851605499966159920.01ANY
6861605499966159940.002ANY
6871605499966159940.000802ANY
688160549996615993.230.0069ANY
689160549996615993.110.0243ANY
690160549996615993.10.062526ANY
691160549996615993.080.0069ANY
692160549996615992.90.002ANY
693160549996615992.90.002ANY
694160549996615992.90.002ANY
6951605499966159920.0375ANY
696160549996615993.460.0069ANY
697160549996615991.540.026445ANY
698160549996615993.090.0037ANY
699160549996615993.090.0037ANY
700160549996615993.080.001893ANY
701160549996715993.080.06191ANY
702160549996715993.080.109629ANY
703160549996815993.080.002127ANY
704160549996915993.080.000695ANY
705160549997115993.090.02ANY
706160549997215993.080.007351ANY
707160549997315992.360.048148ANY
708160549997315992.360.006747ANY
709160549997315992.360.000153ANY
710160549997515991.570.000667ANY
711160549997615991.570.002ANY
712160549997615991.570.006233ANY
713160549997615991.550.00125ANY
714160549997615991.530.0069ANY
715160549997615991.570.04ANY
716160549997715991.140.00196ANY
717160549997715991.140.0069ANY
718160549997715991.140.00494ANY
719160549997715991.10.008551ANY
720160549997715991.10.000306ANY
721160549997715990.780.016174ANY
722160549997715990.710.002ANY
723160549997715990.780.000307ANY
724160549997715990.710.001693ANY
725160549997715989.690.037556ANY
726160549997715990.710.0069ANY
727160549997715990.350.0069ANY
728160549997715990.110.235893ANY
729160549997715990.110.143937ANY
730160549997715990.710.000307ANY
731160549997715989.920.002ANY
732160549997715989.920.002ANY
733160549997715989.920.002ANY
7341605499977159900.012507ANY
735160549997715989.690.025931ANY
736160549997715989.320.006069ANY
737160549997715989.320.000831ANY
738160549997715989.120.031791ANY
739160549997715989.120.008209ANY
740160549997715988.320.0069ANY
741160549997715988.160.02261ANY
742160549997715988.160.029523ANY
743160549997715987.990.098843ANY
744160549997715988.110.027015ANY
745160549997715988.130.0069ANY
746160549997715987.80.18ANY
747160549997715987.790.000724ANY
748160549997715987.80.0037ANY
749160549997715987.790.002844ANY
750160549997715987.80.16839ANY
751160549997715987.790.37983ANY
752160549997715987.790.024678ANY
753160549997715987.790.468422ANY
754160549997715987.790.0069ANY
755160549997815987.790.118126ANY
756160549997815987.80.086163ANY
757160549997815988.620.012399ANY
758160549997815988.630.04722ANY
759160549997915988.620.002047ANY
760160549998015988.620.003786ANY
761160549998115988.620.000769ANY
762160549998115988.620.001067ANY
763160549998115988.620.000807ANY
764160549998115988.620.000872ANY
765160549998115988.620.000753ANY
766160549998115988.620.000872ANY
767160549998115988.620.001806ANY
768160549998115988.620.000868ANY
769160549998115988.620.000874ANY
770160549998115988.620.000619ANY
771160549998115988.620.000165ANY
772160549998115988.620.000981ANY
773160549998115988.390.000838ANY
774160549998215988.390.001727ANY
775160549998215988.390.002485ANY
776160549998215988.390.000872ANY
777160549998215988.390.001178ANY
778160549998215988.390.033019ANY
779160549998215988.390.1ANY
780160549998215988.390.002ANY
781160549998215988.390.000821ANY
782160549998215988.390.001179ANY
783160549998215988.510.0069ANY
784160549998215988.630.004185ANY
785160549998215988.620.009038ANY
786160549998215988.620.003495ANY
787160549998215988.620.003892ANY
788160549998215988.630.0069ANY
789160549998215988.740.0069ANY
790160549998215988.850.040158ANY
791160549998215988.850.004338ANY
792160549998215988.860.002562ANY
793160549998215988.630.001842ANY
794160549998215988.980.005169ANY
795160549998215988.860.005121ANY
796160549998215988.870.0069ANY
797160549998215988.980.107379ANY
798160549998215989.180.005081ANY
799160549998215989.180.012112ANY
800160549998215989.180.0069ANY
801160549998215990.420.0069ANY
802160549998215991.20.0069ANY
803160549998215991.130.0069ANY
804160549998215991.490.003475ANY
805160549998315991.570.003451ANY
806160549998315991.570.003752ANY
807160549998415991.580.117ANY
808160549998515991.570.000706ANY
809160549998515991.570.00172ANY
810160549998515991.580.000806ANY
811160549998515991.580.00087ANY
812160549998615991.580.001214ANY
813160549998615991.580.000856ANY
814160549998615991.570.016354ANY
815160549998615991.570.002848ANY
816160549998615991.580.000864ANY
817160549998615991.580.000755ANY
818160549998615991.570.010622ANY
819160549998615991.580.0011ANY
820160549998615991.580.00083ANY
821160549998615991.580.000874ANY
822160549998715991.570.010622ANY
823160549998715991.580.001165ANY
824160549998715991.580.000982ANY
825160549998715991.570.145565ANY
826160549998715991.570.075306ANY
827160549998715991.580.002121ANY
828160549998715991.570.001254ANY
829160549998715991.570.000816ANY
830160549998715991.570.000775ANY
831160549998715991.570.001125ANY
832160549998715991.570.000835ANY
833160549998715991.570.002374ANY
834160549998715991.570.001015ANY
835160549998715991.570.000874ANY
836160549998715991.570.000994ANY
837160549998715991.570.001249ANY
838160549998715991.580.000854ANY
839160549998715991.580.002944ANY
840160549998815991.580.000797ANY
841160549998815991.580.001324ANY
842160549998815991.580.000967ANY
843160549998815991.580.000798ANY
844160549998815991.580.001224ANY
845160549998815991.530.001266ANY
846160549998815991.550.001266ANY
847160549998815991.571.2e-05ANY
848160549998815991.080.009886ANY
849160549998815990.950.0069ANY
850160549998815990.50.019611ANY
851160549998815990.040.011158ANY
852160549998815990.680.00118ANY
853160549998915990.670.0069ANY
854160549998915990.670.023358ANY
855160549998915990.680.001247ANY
856160549998915990.680.000688ANY
857160549999015990.820.0069ANY
858160549999015991.570.01ANY
859160549999015991.580.7841ANY
860160549999015991.580.795ANY
861160549999015992.160.042085ANY
862160549999015991.580.282555ANY
863160549999015991.580.0069ANY
864160549999015992.370.056774ANY
865160549999015991.770.002ANY
866160549999015991.980.0069ANY
8671605499990159920.00594ANY
868160549999015991.580.001846ANY
869160549999015992.370.795ANY
870160549999015992.370.399ANY
871160549999015992.370.0069ANY
872160549999015992.360.005986ANY
873160549999015992.570.04ANY
874160549999015992.730.0069ANY
875160549999015992.570.0069ANY
876160549999015993.080.077225ANY
877160549999015993.080.017821ANY
878160549999015993.080.091204ANY
879160549999315993.080.000693ANY
880160549999315993.090.002404ANY
881160549999315993.090.004496ANY
882160549999315993.090.002ANY
883160549999315993.090.002ANY
884160549999315993.090.027499ANY
885160549999315993.080.00069ANY
886160549999415993.080.081955ANY
887160549999415993.080.038198ANY
888160549999415993.080.004791ANY
889160549999715993.090.002699ANY
890160549999815993.090.009802ANY
8911605499998159940.00125ANY
892160549999815994.010.002218ANY
893160549999815994.010.052688ANY
894160549999815994.010.028747ANY
895160549999815994.010.094217ANY
896160549999815994.040.032701ANY
897160549999815994.040.491947ANY
898160549999815994.040.014386ANY
899160549999815994.040.011758ANY
900160549999815994.040.485259ANY
901160549999815994.040.005555ANY
902160549999915994.040.109186ANY
903160549999915994.020.0069ANY
904160549999915994.020.529018ANY
905160549999915994.020.47432ANY
906160549999915994.020.307847ANY
907160549999915994.020.0277ANY
908160549999915994.020.020941ANY
909160550000115994.050.0069ANY
910160550000115994.20.001877ANY
911160550000115994.190.000739ANY
912160550000115994.20.000123ANY
913160550000115994.20.006887ANY
914160550000315994.20.000808ANY
915160550000315994.20.001192ANY
916160550000315994.20.000221ANY
917160550000315994.20.000856ANY
918160550000415994.20.001987ANY
919160550000415994.20.000923ANY
9201605500007159960.01ANY
921160550000715994.21.3e-05ANY
922160550000715995.750.015008ANY
9231605500007159960.0375ANY
924160550000715996.230.031376ANY
925160550000715996.450.140035ANY
926160550000715995.510.00992ANY
927160550000815995.320.539238ANY
928160550000815995.320.0069ANY
929160550000815995.320.021084ANY
930160550000815995.320.043916ANY
931160550000815994.780.0069ANY
932160550000815994.780.0069ANY
933160550000815994.190.000823ANY
934160550001015994.190.008042ANY
935160550001015994.190.000703ANY
936160550001015994.190.003125ANY
937160550001015994.190.021824ANY
938160550001015994.190.0069ANY
939160550001015994.190.003214ANY
940160550001015994.190.021825ANY
941160550001015994.190.013673ANY
9421605500010159940.002ANY
943160550001015994.190.001288ANY
944160550001015994.190.002ANY
945160550001015994.120.0069ANY
9461605500010159940.008143ANY
9471605500010159940.002ANY
9481605500010159940.002ANY
949160550001015992.910.001278ANY
950160550001015992.910.002945ANY
951160550001015992.910.01645ANY
952160550001115992.910.002407ANY
953160550001115992.90.000833ANY
954160550001215992.90.001079ANY
955160550001215992.90.0069ANY
956160550001215992.90.004988ANY
957160550001215992.90.00249ANY
958160550001315992.890.001277ANY
959160550001315992.890.000723ANY
960160550001315992.890.001998ANY
961160550001315992.892e-06ANY
962160550001315992.470.001197ANY
963160550001315992.460.006899ANY
964160550001315992.461e-06ANY
965160550001315992.090.001332ANY
966160550001415992.090.015ANY
967160550001415992.090.244311ANY
968160550001415992.090.023668ANY
969160550001415992.090.0069ANY
970160550001515992.090.032274ANY
971160550001615992.10.030411ANY
972160550001615992.090.000698ANY
973160550001615992.10.002842ANY
974160550001815992.090.001999ANY
975160550002015992.10.039976ANY
976160550002015992.12.4e-05ANY
977160550002015992.290.006878ANY
978160550002015992.292.2e-05ANY
979160550002115992.630.1ANY
980160550002215992.640.001486ANY
981160550002215992.640.004057ANY
982160550002215992.640.001357ANY
983160550002215992.640.123113ANY
984160550002415992.630.047182ANY
985160550002415992.630.048577ANY
986160550002415992.630.049041ANY
987160550002415992.640.001459ANY
988160550002415992.630.00073ANY
989160550002415992.640.001155ANY
990160550002415992.640.000541ANY
991160550002415992.640.002ANY
992160550002515993.090.00674ANY
993160550002515993.090.019522ANY
994160550002715992.860.0069ANY
995160550002715992.860.038049ANY
996160550002715992.860.002ANY
997160550002715992.860.015107ANY
998160550002915992.470.016795ANY
999160550002915992.470.008015ANY
1000160550003015992.460.003705ANY