Systems Workshop: "Buttonwood" E-mini daytrading system

Post anything related to mechanical systems and automated trading here.
Post Reply
User avatar
earik
Site Admin
Posts: 474
Joined: Mon Dec 01, 2014 12:41 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by earik » Mon Oct 26, 2015 6:44 pm

Hi Orionsbelt,

One more point of clarification... Indicators and functions are both scripts, but indicators are like the "master" script, and functions are sub-scripts that we use within the indicators. You don't *have* to do it that way, but it keeps things cleaner and easier to work on. So if you look at the main Buttonwood_v4 script, it doesn't want to care about how the signals are generated, it just wants to know whether to buy or sell. So it basically subcontracts that whole thing out to a function. That's where we get the...

signal2 = Channel_Breakout(5);

...function call. So basically, give me a buy/sell signal, and put it in "signal2". If you want to change the buy/sell signal, the you can go edit the Channel_Breakout function, which only cares about generating those +1/-1 signals, and doesn't need to know anything else about how any of it is used. Keeps things in their own little containers, so it's easy to add/remove/edit the pieces and parts without having to work on a massive script, with the added benefit of not accidentally breaking other components that are already working.

So if you want to upgrade the Channel_Breakout function to use AMAs, go into that function (open it up in the QScript editor), rename it to something else (to preserve the original), then change it around as you see fit. If you see what sbank did there, he used call to another function ("average( )") that returns a simple moving average. You need to replace that with a call to Wave59's built in AMA functions instead. The one you built isn't an AMA, but just another simple moving average, so I don't think it's what you intended. You don't have to reinvent how to do the AMAs themselves, as W59 already knows how to do them, so just edit the signal generator itself and that should get you closer.

Hope that helps. Let us know if any of this isn't clear. Scripting can be a little confusing sometimes. ;)

Regards,

Earik

orionsbelt
Posts: 33
Joined: Tue Jul 21, 2015 9:19 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by orionsbelt » Mon Oct 26, 2015 10:09 pm

first off thanks for everyone's help. so, in my attempt to place the AMA into the channel_breakout function instead of the simple average i modified it into the following function and named it Channel_Breakout_v1.

Code: Select all

#length: 5
input:length,f1,f2,f3;

if (barnum==barsback) {
    signal=0;
}

high_channel=AMA(high,length,f1,f2,f3);
low_channel=AMA(low,length,f1,f2,f3);

if (close > high_channel) {
    signal = -1;
}
if (close < low_channel) {
    signal = 1;
}

return signal;
then i added it to buttonwood_v4

Code: Select all

signal1 = Buttonwood_Signal(8,34);
signal2 = Channel_Breakout_v1(5,0.5,0.65,0.85);
signal = signal1 + signal2;
and here are the results
Sytemreport1.png
Sytemreport1.png (55.69 KiB) Viewed 23802 times
Sytemreport2.png
Sytemreport2.png (39.19 KiB) Viewed 23802 times
does my process seem correct to everyone?
thanks

User avatar
earik
Site Admin
Posts: 474
Joined: Mon Dec 01, 2014 12:41 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by earik » Tue Oct 27, 2015 12:24 am

Hi orionsbelt,

Yes, you did that right. A couple suggestions:

1) Change the symbol to @ES#C rather than @ES#. The #C gives you a backadjusted chart, which will elminiate gaps on rollovers. It's not a huge deal, but you will have 4 days a year that don't really match up quite right otherwise.

2) What about running an optimization to see how the lengths look? A length of 5 for a simple average is very different than a length of 5 for an AMA. To do that, you need to move the first parameter up to the input line. So you make up a name there, like the others, set it to 5, then put that placeholder name in the Channel_breakout_v1 function. Hopefully that's not confusing! Once you do that, you can use W59's optimizer to check a range of lengths and see how they all stack up. Is 5 what we want? Do lots of different lengths work (a robust approach), or do we have to use just the right one in order to get good results (a brittle approach)?

After that, give us the blow-by-blow, and tell us whether we need to be using simple averages or AMAs. :)

Thanks!

Earik

orionsbelt
Posts: 33
Joined: Tue Jul 21, 2015 9:19 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by orionsbelt » Tue Oct 27, 2015 1:10 am

i will watch the instructional video on optimization and see what i can do.
thanks

orionsbelt
Posts: 33
Joined: Tue Jul 21, 2015 9:19 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by orionsbelt » Wed Oct 28, 2015 1:28 am

sorry, but i have never used the optimizer before and i have no idea how to change the scripts or whether or not i am to change the indicators or the functions. i watched all the videos i could find and messed around with some of the scripts and even attempted to use the optimizer to no avail. is there anyway Earik or someone can get us started and run thru the whole process of optimization. here are the next couple of steps i was hoping to accomplish and which Earik was trying to get me started in a recent post.

i was hoping to change this "signal1 = Buttonwood_Signal(8,34)" to use the AMA and not the simple moving average
and to change the "signal2 = Channel_Breakout_v2(5,0.5,0.65,0.85);" to actually use the AMA and not the simple moving average
and then to figure out how to setup for and then actually run an optimization of different AMA vs simple moving average parameters in the 2 separate signals above.

any help would be greatly appreciated.
thanks again :)

User avatar
earik
Site Admin
Posts: 474
Joined: Mon Dec 01, 2014 12:41 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by earik » Wed Oct 28, 2015 5:59 pm

Hi orionsbelt,

I remember doing a movie on that at some point, but can't remember exactly which one it was. Check the webinar archives (http://www.wave59.com/webinar_archives.asp) and look at the March 9, 2010, or April 16, 2010 webinars. It was probably in one of those.

Basically, the optimizer lets you run system reports on a whole range of parameter settings. The first step is that you need to move your parameters up to the "input" line at the top, which is how you let the user change the value. If you just put:

Code: Select all

signal1 = Buttonwood_Signal(8,34);
..then there's no way for the user to change the 8 and 34 values there, as they're hard-coded into the script. But if you move them up to the input line, like:

Code: Select all

input: len1(8),len2(34);

signal1 = Buttonwood_Signal(len1,len2);
...then now you can go format - indicators, and change the values around. This will also allow you to run those parameters through the optimizer, trying all the different combinations you want, and can get a big table of the results (like I've posted a lot of times in this thread). You can use it to solve for the best settings over a given period, but more importantly, you can use it to explore around and test the robustness of a particular approach.

In your case, that means you have two things to do. First, move all your hard-coded paramter values (like 5, 8, and 34) up to the input line, and then learn how to run the systems within the optimizer itself.

Hope that helps,

Earik

orionsbelt
Posts: 33
Joined: Tue Jul 21, 2015 9:19 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by orionsbelt » Thu Oct 29, 2015 2:02 am

i am running some numbers now but probably won' be able to post something until tomorrow

orionsbelt
Posts: 33
Joined: Tue Jul 21, 2015 9:19 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by orionsbelt » Fri Oct 30, 2015 4:01 am

here is what i did.i added the parameters to the input line as below. does this seem correct?

Code: Select all

input:progressed_thresh(3),spherical_thresh(6),astro_once_per_day(true),len1(8),len2(34),len3(5);

signal1 = Buttonwood_Signal(len1,len2);
signal2 = Channel_Breakout_v1(len3,0.5,0.65,0.85);
and here are the trading signals. are they correct?

Code: Select all

signal1 = Buttonwood_Signal(len1,len2);
signal2 = Channel_Breakout_v1(len3,0.5,0.65,0.85);
signal = signal1 + signal2;  
here is how i set up the optimization, which i made too big and it took 26 hours. is there an easier way to do this or just simply use smaller parameters each time?
how to optimize multiple inputs.png
how to optimize multiple inputs.png (30.41 KiB) Viewed 23723 times
here is the long list from the optimizer

Code: Select all

Parameters,Profit/Loss,Accuracy,Num. Trades,Avg. Win,Avg. Loss,Avg. Trade,Win/Loss Ratio,Profit Factor,Max. Drawdown,Max. DD %
#1#=2#2#=18#3#=2,$39412.50,44.89%,2865,$203.21,($140.54),$13.76,1.4,1.2,($7962.50),-30.43%
#1#=2#2#=18#3#=3,$43875.00,45.08%,3030,$200.79,($138.46),$14.48,1.5,1.2,($9725.00),-37.12%
#1#=2#2#=18#3#=4,$49312.50,44.34%,3171,$203.00,($133.77),$15.55,1.5,1.2,($9175.00),-34.95%
#1#=2#2#=18#3#=5,$68275.00,44.63%,3325,$203.42,($126.89),$20.53,1.6,1.3,($10137.50),-39.79%
#1#=2#2#=18#3#=6,$65937.50,44.39%,3366,$202.19,($126.14),$19.59,1.6,1.3,($11975.00),-46.60%
#1#=2#2#=18#3#=7,$70625.00,44.61%,3414,$201.12,($124.63),$20.69,1.6,1.3,($11000.00),-42.25%
#1#=2#2#=18#3#=8,$68387.50,44.45%,3381,$202.05,($125.29),$20.23,1.6,1.3,($10787.50),-41.49%
#1#=2#2#=18#3#=9,$67712.50,44.40%,3383,$203.33,($126.36),$20.02,1.6,1.3,($8975.00),-34.92%
#1#=2#2#=18#3#=10,$62387.50,44.41%,3319,$202.10,($127.65),$18.80,1.6,1.3,($8412.50),-33.99%
#1#=2#2#=18#3#=11,$52987.50,44.08%,3301,$200.50,($129.33),$16.05,1.6,1.2,($8662.50),-34.56%
#1#=2#2#=18#3#=12,$55412.50,43.84%,3241,$204.09,($128.90),$17.10,1.6,1.2,($8725.00),-34.67%
#1#=2#2#=18#3#=13,$58025.00,44.10%,3211,$206.67,($130.71),$18.07,1.6,1.2,($8862.50),-35.00%
#1#=2#2#=18#3#=14,$56150.00,43.83%,3169,$207.90,($130.69),$17.72,1.6,1.2,($9400.00),-36.83%
#1#=2#2#=18#3#=15,$58012.50,44.29%,3134,$206.58,($131.00),$18.51,1.6,1.3,($8812.50),-35.48%
#1#=2#2#=22#3#=2,$44250.00,45.33%,2709,$211.30,($145.32),$16.33,1.5,1.2,($6900.00),-26.56%
#1#=2#2#=22#3#=3,$48625.00,45.09%,2839,$211.30,($142.29),$17.13,1.5,1.2,($7850.00),-30.18%
#1#=2#2#=22#3#=4,$57000.00,44.69%,2949,$214.21,($138.15),$19.33,1.6,1.3,($7312.50),-27.91%
#1#=2#2#=22#3#=5,$65925.00,44.64%,3089,$211.84,($132.28),$21.34,1.6,1.3,($7200.00),-28.33%
#1#=2#2#=22#3#=6,$62025.00,44.32%,3100,$211.09,($132.10),$20.01,1.6,1.3,($9050.00),-35.39%
#1#=2#2#=22#3#=7,$64775.00,44.41%,3141,$210.29,($130.91),$20.62,1.6,1.3,($8612.50),-33.17%
#1#=2#2#=22#3#=8,$63150.00,44.46%,3102,$211.22,($132.40),$20.36,1.6,1.3,($8662.50),-33.41%
#1#=2#2#=22#3#=9,$63300.00,44.30%,3099,$212.83,($132.63),$20.43,1.6,1.3,($7450.00),-28.89%
#1#=2#2#=22#3#=10,$61887.50,44.21%,3058,$213.42,($132.85),$20.24,1.6,1.3,($7650.00),-31.02%
#1#=2#2#=22#3#=11,$55287.50,43.70%,3041,$213.84,($133.71),$18.18,1.6,1.2,($7725.00),-30.84%
#1#=2#2#=22#3#=12,$61287.50,44.01%,2997,$217.13,($134.16),$20.45,1.6,1.3,($7537.50),-29.91%
#1#=2#2#=22#3#=13,$61950.00,44.01%,2974,$220.30,($135.99),$20.83,1.6,1.3,($7100.00),-28.30%
#1#=2#2#=22#3#=14,$56525.00,43.68%,2949,$220.10,($136.64),$19.17,1.6,1.2,($7875.00),-31.34%
#1#=2#2#=22#3#=15,$60025.00,44.34%,2916,$218.18,($136.84),$20.58,1.6,1.3,($8175.00),-33.38%
#1#=2#2#=26#3#=2,$59025.00,45.72%,2548,$223.95,($145.97),$23.17,1.5,1.3,($7187.50),-27.15%
#1#=2#2#=26#3#=3,$63750.00,45.99%,2659,$221.84,($144.54),$23.98,1.5,1.3,($7562.50),-28.52%
#1#=2#2#=26#3#=4,$67637.50,45.42%,2743,$224.87,($141.98),$24.66,1.6,1.3,($7500.00),-28.40%
#1#=2#2#=26#3#=5,$72300.00,45.29%,2857,$222.48,($137.93),$25.31,1.6,1.3,($7675.00),-30.13%
#1#=2#2#=26#3#=6,$69025.00,44.66%,2864,$223.76,($137.01),$24.10,1.6,1.3,($9350.00),-36.40%
#1#=2#2#=26#3#=7,$73550.00,44.86%,2889,$224.02,($136.08),$25.46,1.6,1.3,($8512.50),-33.14%
#1#=2#2#=26#3#=8,$70337.50,44.41%,2860,$226.40,($136.60),$24.59,1.7,1.3,($8525.00),-33.11%
#1#=2#2#=26#3#=9,$70900.00,44.38%,2864,$227.39,($136.92),$24.76,1.7,1.3,($7462.50),-29.14%
#1#=2#2#=26#3#=10,$68075.00,44.24%,2830,$227.53,($137.38),$24.05,1.7,1.3,($8350.00),-34.13%
#1#=2#2#=26#3#=11,$64250.00,44.19%,2806,$226.90,($138.63),$22.90,1.6,1.3,($8450.00),-33.43%
#1#=2#2#=26#3#=12,$66987.50,44.32%,2773,$229.31,($139.14),$24.16,1.6,1.3,($8537.50),-33.65%
#1#=2#2#=26#3#=13,$65562.50,44.29%,2741,$232.09,($141.58),$23.92,1.6,1.3,($7537.50),-29.43%
#1#=2#2#=26#3#=14,$61875.00,43.99%,2710,$233.07,($142.26),$22.83,1.6,1.3,($8100.00),-31.64%
#1#=2#2#=26#3#=15,$66762.50,44.61%,2672,$233.68,($143.10),$24.99,1.6,1.3,($8312.50),-33.47%
#1#=2#2#=30#3#=2,$53937.50,45.38%,2380,$232.95,($152.04),$22.66,1.5,1.3,($6912.50),-26.35%
#1#=2#2#=30#3#=3,$60525.00,45.78%,2477,$232.00,($150.83),$24.43,1.5,1.3,($9250.00),-35.12%
#1#=2#2#=30#3#=4,$65400.00,45.28%,2562,$235.09,($147.86),$25.53,1.6,1.3,($9900.00),-37.73%
#1#=2#2#=30#3#=5,$73025.00,45.45%,2671,$231.36,($142.66),$27.34,1.6,1.4,($9375.00),-36.87%
#1#=2#2#=30#3#=6,$72050.00,44.92%,2667,$233.11,($141.06),$27.02,1.7,1.3,($10150.00),-39.19%
#1#=2#2#=30#3#=7,$80712.50,45.30%,2689,$234.37,($139.19),$30.02,1.7,1.4,($9412.50),-36.15%
#1#=2#2#=30#3#=8,$76562.50,44.70%,2671,$237.65,($140.28),$28.66,1.7,1.4,($9200.00),-35.64%
#1#=2#2#=30#3#=9,$76362.50,44.68%,2679,$237.00,($139.90),$28.50,1.7,1.4,($7675.00),-29.89%
#1#=2#2#=30#3#=10,$74787.50,45.02%,2628,$236.68,($142.01),$28.46,1.7,1.4,($8125.00),-33.37%
#1#=2#2#=30#3#=11,$69937.50,44.77%,2618,$235.42,($142.44),$26.71,1.7,1.3,($7500.00),-29.81%
#1#=2#2#=30#3#=12,$72275.00,44.82%,2568,$239.59,($143.60),$28.14,1.7,1.4,($7175.00),-27.97%
#1#=2#2#=30#3#=13,$73587.50,44.87%,2545,$242.25,($144.73),$28.91,1.7,1.4,($6125.00),-23.39%
#1#=2#2#=30#3#=14,$72850.00,45.01%,2506,$244.24,($147.06),$29.07,1.7,1.4,($6225.00),-24.80%
#1#=2#2#=30#3#=15,$73900.00,45.11%,2472,$246.09,($147.74),$29.89,1.7,1.4,($5312.50),-21.56%
#1#=2#2#=34#3#=2,$58062.50,45.35%,2247,$244.27,($155.42),$25.84,1.6,1.3,($6400.00),-24.94%
#1#=2#2#=34#3#=3,$66312.50,45.76%,2321,$245.00,($153.99),$28.57,1.6,1.3,($8300.00),-31.66%
#1#=2#2#=34#3#=4,$70150.00,45.13%,2413,$247.41,($150.51),$29.07,1.6,1.4,($9500.00),-36.38%
#1#=2#2#=34#3#=5,$79737.50,45.61%,2508,$242.35,($144.80),$31.79,1.7,1.4,($8525.00),-33.85%
#1#=2#2#=34#3#=6,$79312.50,44.95%,2516,$245.04,($142.83),$31.52,1.7,1.4,($9725.00),-38.17%
#1#=2#2#=34#3#=7,$86012.50,45.10%,2532,$247.21,($141.22),$33.97,1.8,1.4,($8687.50),-33.92%
#1#=2#2#=34#3#=8,$82787.50,44.81%,2504,$249.87,($142.95),$33.06,1.7,1.4,($8875.00),-35.17%
#1#=2#2#=34#3#=9,$81062.50,45.09%,2517,$246.22,($143.56),$32.21,1.7,1.4,($7575.00),-30.18%
#1#=2#2#=34#3#=10,$80275.00,45.68%,2463,$244.99,($145.99),$32.59,1.7,1.4,($7537.50),-30.27%
#1#=2#2#=34#3#=11,$75037.50,44.96%,2460,$245.73,($145.30),$30.50,1.7,1.4,($6825.00),-27.38%
#1#=2#2#=34#3#=12,$76912.50,45.36%,2416,$247.19,($146.98),$31.83,1.7,1.4,($6812.50),-27.30%
#1#=2#2#=34#3#=13,$79950.00,45.28%,2383,$252.55,($147.66),$33.55,1.7,1.4,($6000.00),-22.96%
#1#=2#2#=34#3#=14,$76587.50,45.07%,2343,$255.53,($150.16),$32.69,1.7,1.4,($6962.50),-27.93%
#1#=2#2#=34#3#=15,$74662.50,45.11%,2312,$255.61,($151.25),$32.29,1.7,1.4,($5925.00),-23.57%
#1#=2#2#=38#3#=2,$62337.50,45.68%,2119,$254.53,($159.90),$29.42,1.6,1.3,($5075.00),-19.77%
#1#=2#2#=38#3#=3,$67812.50,45.88%,2197,$254.24,($158.51),$30.87,1.6,1.4,($5787.50),-22.07%
#1#=2#2#=38#3#=4,$73162.50,45.38%,2274,$255.89,($153.71),$32.17,1.7,1.4,($6775.00),-25.93%
#1#=2#2#=38#3#=5,$79537.50,45.74%,2361,$250.42,($149.03),$33.69,1.7,1.4,($7075.00),-28.10%
#1#=2#2#=38#3#=6,$79625.00,45.24%,2385,$250.41,($145.91),$33.39,1.7,1.4,($7837.50),-30.78%
#1#=2#2#=38#3#=7,$89412.50,45.07%,2405,$256.86,($143.09),$37.18,1.8,1.5,($7037.50),-27.38%
#1#=2#2#=38#3#=8,$83675.00,44.90%,2381,$257.07,($145.68),$35.14,1.8,1.4,($6625.00),-26.16%
#1#=2#2#=38#3#=9,$84250.00,44.75%,2389,$257.47,($144.69),$35.27,1.8,1.4,($5425.00),-21.54%
#1#=2#2#=38#3#=10,$87050.00,46.01%,2343,$253.27,($147.02),$37.15,1.7,1.5,($5162.50),-20.35%
#1#=2#2#=38#3#=11,$84762.50,45.54%,2323,$256.19,($147.26),$36.49,1.7,1.5,($5075.00),-19.99%
#1#=2#2#=38#3#=12,$84925.00,45.70%,2289,$257.16,($148.08),$37.10,1.7,1.5,($4712.50),-15.89%
#1#=2#2#=38#3#=13,$82862.50,45.34%,2263,$262.51,($150.75),$36.62,1.7,1.4,($4837.50),-14.55%
#1#=2#2#=38#3#=14,$81225.00,45.32%,2222,$265.62,($153.29),$36.55,1.7,1.4,($4912.50),-17.45%
#1#=2#2#=38#3#=15,$81475.00,45.52%,2201,$265.54,($153.96),$37.02,1.7,1.4,($5437.50),-17.48%
#1#=2#2#=42#3#=2,$62437.50,45.61%,2037,$262.72,($163.92),$30.65,1.6,1.3,($5200.00),-16.35%
#1#=2#2#=42#3#=3,$67775.00,45.88%,2114,$260.39,($161.54),$32.06,1.6,1.4,($5425.00),-17.26%
#1#=2#2#=42#3#=4,$71862.50,45.41%,2178,$261.26,($156.88),$32.99,1.7,1.4,($5962.50),-22.34%
#1#=2#2#=42#3#=5,$74812.50,45.80%,2262,$254.55,($154.08),$33.07,1.7,1.4,($6275.00),-23.56%
#1#=2#2#=42#3#=6,$73175.00,45.32%,2286,$253.51,($151.57),$32.01,1.7,1.4,($7362.50),-28.20%
#1#=2#2#=42#3#=7,$83887.50,45.06%,2310,$260.34,($147.46),$36.31,1.8,1.4,($6450.00),-24.48%
#1#=2#2#=42#3#=8,$80162.50,45.74%,2276,$256.87,($151.61),$35.22,1.7,1.4,($6850.00),-25.93%
#1#=2#2#=42#3#=9,$80775.00,45.49%,2282,$258.94,($151.13),$35.40,1.7,1.4,($6337.50),-24.12%
#1#=2#2#=42#3#=10,$78900.00,45.86%,2248,$256.92,($152.82),$35.10,1.7,1.4,($5087.50),-19.40%
#1#=2#2#=42#3#=11,$78737.50,45.61%,2232,$259.88,($153.07),$35.28,1.7,1.4,($7325.00),-19.79%
#1#=2#2#=42#3#=12,$79325.00,45.72%,2196,$261.45,($153.67),$36.12,1.7,1.4,($6537.50),-13.82%
#1#=2#2#=42#3#=13,$74512.50,45.55%,2182,$262.50,($156.91),$34.15,1.7,1.4,($6262.50),-14.59%
#1#=2#2#=42#3#=14,$73150.00,45.49%,2150,$264.57,($158.36),$34.02,1.7,1.4,($6712.50),-16.67%
#1#=2#2#=42#3#=15,$71637.50,45.34%,2137,$265.72,($159.12),$33.52,1.7,1.4,($6625.00),-16.65%
#1#=2#2#=46#3#=2,$68562.50,46.23%,1951,$271.65,($168.22),$35.14,1.6,1.4,($4625.00),-13.34%
#1#=2#2#=46#3#=3,$78112.50,46.69%,2011,$270.41,($163.99),$38.84,1.6,1.4,($4275.00),-14.12%
#1#=2#2#=46#3#=4,$81762.50,45.84%,2066,$273.80,($158.65),$39.58,1.7,1.5,($4500.00),-16.71%
#1#=2#2#=46#3#=5,$85687.50,46.27%,2129,$269.38,($157.04),$40.25,1.7,1.5,($5450.00),-15.56%
#1#=2#2#=46#3#=6,$80987.50,45.57%,2155,$268.00,($155.32),$37.58,1.7,1.4,($5450.00),-20.88%
#1#=2#2#=46#3#=7,$91100.00,45.55%,2180,$272.80,($151.46),$41.79,1.8,1.5,($5075.00),-17.54%
#1#=2#2#=46#3#=8,$86162.50,45.90%,2161,$270.07,($155.47),$39.87,1.7,1.5,($5075.00),-18.74%
#1#=2#2#=46#3#=9,$89212.50,45.57%,2168,$272.33,($152.42),$41.15,1.8,1.5,($4837.50),-18.50%
#1#=2#2#=46#3#=10,$87325.00,46.05%,2137,$269.08,($153.90),$40.86,1.7,1.5,($4325.00),-13.67%
#1#=2#2#=46#3#=11,$85587.50,45.73%,2117,$272.70,($155.25),$40.43,1.8,1.5,($7262.50),-14.17%
#1#=2#2#=46#3#=12,$86475.00,45.98%,2077,$273.99,($156.14),$41.63,1.8,1.5,($6400.00),-12.16%
#1#=2#2#=46#3#=13,$83812.50,45.95%,2074,$274.30,($158.43),$40.41,1.7,1.5,($5675.00),-12.53%
#1#=2#2#=46#3#=14,$79250.00,45.77%,2045,$275.40,($160.98),$38.75,1.7,1.4,($6312.50),-13.61%
#1#=2#2#=46#3#=15,$74787.50,45.55%,2044,$274.52,($162.43),$36.59,1.7,1.4,($6125.00),-13.62%
#1#=2#2#=50#3#=2,$70800.00,46.40%,1888,$277.53,($170.27),$37.50,1.6,1.4,($5600.00),-12.48%
#1#=2#2#=50#3#=3,$80187.50,47.18%,1935,$275.21,($167.39),$41.44,1.6,1.5,($4825.00),-13.66%
#1#=2#2#=50#3#=4,$81162.50,46.24%,1983,$278.91,($163.79),$40.93,1.7,1.5,($4200.00),-15.86%
#1#=2#2#=50#3#=5,$84087.50,45.91%,2054,$278.18,($160.43),$40.94,1.7,1.5,($5925.00),-17.02%
#1#=2#2#=50#3#=6,$79937.50,45.42%,2072,$276.18,($159.11),$38.58,1.7,1.4,($5925.00),-21.97%
#1#=2#2#=50#3#=7,$90262.50,45.73%,2075,$281.39,($156.99),$43.50,1.8,1.5,($6250.00),-18.69%
#1#=2#2#=50#3#=8,$87537.50,46.40%,2056,$276.83,($160.22),$42.58,1.7,1.5,($5325.00),-19.86%
#1#=2#2#=50#3#=9,$83850.00,46.09%,2072,$275.84,($160.77),$40.47,1.7,1.5,($5312.50),-19.92%
#1#=2#2#=50#3#=10,$84137.50,46.89%,2043,$271.59,($162.26),$41.18,1.7,1.5,($5625.00),-15.16%
#1#=2#2#=50#3#=11,$84775.00,46.57%,2029,$275.30,($161.80),$41.78,1.7,1.5,($7012.50),-15.57%
#1#=2#2#=50#3#=12,$89262.50,46.85%,1998,$278.23,($161.17),$44.68,1.7,1.5,($5900.00),-12.73%
#1#=2#2#=50#3#=13,$86912.50,46.65%,1985,$280.51,($163.21),$43.78,1.7,1.5,($6012.50),-11.91%
#1#=2#2#=50#3#=14,$81487.50,46.32%,1954,$283.11,($166.56),$41.70,1.7,1.5,($6112.50),-14.14%
#1#=2#2#=50#3#=15,$78787.50,46.26%,1950,$282.65,($168.09),$40.40,1.7,1.4,($6062.50),-13.87%
#1#=2#2#=54#3#=2,$70812.50,46.44%,1839,$280.23,($171.07),$38.51,1.6,1.4,($5150.00),-11.90%
#1#=2#2#=54#3#=3,$77800.00,46.65%,1882,$280.41,($167.73),$41.34,1.7,1.5,($4537.50),-13.15%
#1#=2#2#=54#3#=4,$78375.00,46.07%,1932,$282.40,($165.99),$40.57,1.7,1.5,($4587.50),-16.89%
#1#=2#2#=54#3#=5,$80300.00,45.33%,2001,$284.59,($162.55),$40.13,1.8,1.5,($5925.00),-14.10%
#1#=2#2#=54#3#=6,$76662.50,44.99%,2025,$281.56,($161.43),$37.86,1.7,1.4,($5925.00),-18.65%
#1#=2#2#=54#3#=7,$83962.50,45.11%,2033,$285.81,($159.61),$41.30,1.8,1.5,($6250.00),-15.20%
#1#=2#2#=54#3#=8,$81662.50,45.58%,2025,$281.65,($161.80),$40.33,1.7,1.5,($5075.00),-18.84%
#1#=2#2#=54#3#=9,$74987.50,45.26%,2035,$280.40,($164.51),$36.85,1.7,1.4,($5075.00),-17.09%
#1#=2#2#=54#3#=10,$76650.00,45.97%,1999,$278.24,($165.79),$38.34,1.7,1.4,($5625.00),-12.61%
#1#=2#2#=54#3#=11,$76687.50,45.64%,1994,$280.01,($164.32),$38.46,1.7,1.4,($6275.00),-13.99%
#1#=2#2#=54#3#=12,$79825.00,45.79%,1961,$282.91,($163.90),$40.71,1.7,1.5,($6175.00),-11.58%
#1#=2#2#=54#3#=13,$78625.00,45.65%,1952,$285.28,($165.47),$40.28,1.7,1.4,($6212.50),-11.66%
#1#=2#2#=54#3#=14,$75000.00,45.26%,1909,$290.60,($168.49),$39.29,1.7,1.4,($6525.00),-14.81%
#1#=2#2#=54#3#=15,$71225.00,45.31%,1909,$288.05,($170.44),$37.31,1.7,1.4,($6212.50),-14.98%
#1#=2#2#=58#3#=2,$67462.50,46.22%,1800,$284.41,($174.75),$37.48,1.6,1.4,($4812.50),-11.87%
#1#=2#2#=58#3#=3,$71875.00,46.02%,1847,$285.51,($171.33),$38.91,1.7,1.4,($4575.00),-13.11%
#1#=2#2#=58#3#=4,$70825.00,45.79%,1898,$283.86,($170.89),$37.32,1.7,1.4,($5162.50),-13.40%
#1#=2#2#=58#3#=5,$70262.50,44.71%,1957,$287.11,($167.25),$35.90,1.7,1.4,($5925.00),-13.53%
#1#=2#2#=58#3#=6,$68687.50,44.86%,1973,$283.19,($167.22),$34.81,1.7,1.4,($5925.00),-18.08%
#1#=2#2#=58#3#=7,$74862.50,44.83%,2001,$285.83,($164.42),$37.41,1.7,1.4,($6250.00),-14.73%
#1#=2#2#=58#3#=8,$72912.50,45.39%,1985,$283.19,($168.12),$36.73,1.7,1.4,($6250.00),-16.88%
#1#=2#2#=58#3#=9,$70562.50,45.31%,1982,$283.83,($170.03),$35.60,1.7,1.4,($6475.00),-14.73%
#1#=2#2#=58#3#=10,$69775.00,45.68%,1946,$282.59,($171.67),$35.86,1.6,1.4,($6550.00),-13.72%
#1#=2#2#=58#3#=11,$69837.50,45.40%,1947,$283.67,($170.20),$35.87,1.7,1.4,($7550.00),-14.12%
#1#=2#2#=58#3#=12,$72862.50,45.45%,1914,$287.33,($169.65),$38.07,1.7,1.4,($6962.50),-12.96%
#1#=2#2#=58#3#=13,$70962.50,45.17%,1893,$290.79,($171.16),$37.49,1.7,1.4,($6562.50),-12.12%
#1#=2#2#=58#3#=14,$67812.50,44.77%,1865,$295.00,($173.31),$36.36,1.7,1.4,($6925.00),-14.91%
#1#=2#2#=58#3#=15,$65575.00,45.02%,1859,$293.65,($176.33),$35.27,1.7,1.4,($6937.50),-14.46%
#1#=4#2#=18#3#=2,$54837.50,48.67%,3310,$179.45,($137.88),$16.57,1.3,1.2,($5700.00),-16.79%
#1#=4#2#=18#3#=3,$56712.50,48.36%,3476,$178.00,($135.10),$16.32,1.3,1.2,($5687.50),-21.72%
#1#=4#2#=18#3#=4,$62037.50,47.73%,3612,$179.44,($130.99),$17.18,1.4,1.3,($6500.00),-24.39%
#1#=4#2#=18#3#=5,$75250.00,47.46%,3763,$180.12,($124.65),$20.00,1.4,1.3,($6562.50),-24.86%
#1#=4#2#=18#3#=6,$75400.00,47.20%,3803,$180.23,($123.56),$19.83,1.5,1.3,($5812.50),-22.12%
#1#=4#2#=18#3#=7,$79325.00,47.12%,3852,$181.02,($122.35),$20.59,1.5,1.3,($5062.50),-18.97%
#1#=4#2#=18#3#=8,$81000.00,47.20%,3839,$180.87,($121.73),$21.10,1.5,1.3,($5950.00),-22.33%
#1#=4#2#=18#3#=9,$80250.00,47.27%,3861,$180.49,($122.37),$20.78,1.5,1.3,($5162.50),-19.63%
#1#=4#2#=18#3#=10,$76587.50,47.54%,3814,$179.76,($124.60),$20.08,1.4,1.3,($6387.50),-25.97%
#1#=4#2#=18#3#=11,$65175.00,47.13%,3817,$176.95,($125.45),$17.07,1.4,1.3,($6387.50),-26.11%
#1#=4#2#=18#3#=12,$67262.50,47.27%,3768,$177.92,($125.62),$17.85,1.4,1.3,($6100.00),-24.61%
#1#=4#2#=18#3#=13,$67012.50,47.44%,3750,$178.38,($127.00),$17.87,1.4,1.3,($6287.50),-26.14%
#1#=4#2#=18#3#=14,$63762.50,47.62%,3719,$177.27,($128.43),$17.15,1.4,1.3,($6912.50),-28.82%
#1#=4#2#=18#3#=15,$66262.50,48.03%,3683,$176.99,($128.96),$17.99,1.4,1.3,($6675.00),-28.33%
#1#=4#2#=22#3#=2,$45225.00,47.51%,3111,$186.60,($141.19),$14.54,1.3,1.2,($6450.00),-24.99%
#1#=4#2#=22#3#=3,$49062.50,47.43%,3228,$186.94,($139.74),$15.20,1.3,1.2,($6475.00),-25.13%
#1#=4#2#=22#3#=4,$54637.50,46.73%,3321,$189.84,($135.66),$16.45,1.4,1.2,($6187.50),-22.87%
#1#=4#2#=22#3#=5,$63075.00,46.76%,3443,$188.55,($131.20),$18.32,1.4,1.3,($6637.50),-25.86%
#1#=4#2#=22#3#=6,$58525.00,46.22%,3466,$188.65,($130.73),$16.89,1.4,1.2,($8025.00),-31.32%
#1#=4#2#=22#3#=7,$64862.50,46.43%,3498,$188.56,($128.80),$18.54,1.5,1.3,($7100.00),-27.40%
#1#=4#2#=22#3#=8,$64787.50,46.41%,3486,$189.03,($129.05),$18.59,1.5,1.3,($7537.50),-29.13%
#1#=4#2#=22#3#=9,$64437.50,46.40%,3500,$189.79,($129.94),$18.41,1.5,1.3,($6850.00),-26.76%
#1#=4#2#=22#3#=10,$61987.50,46.92%,3463,$188.08,($132.56),$17.90,1.4,1.3,($6750.00),-27.14%
#1#=4#2#=22#3#=11,$55087.50,46.63%,3453,$186.82,($133.31),$15.95,1.4,1.2,($6937.50),-27.69%
#1#=4#2#=22#3#=12,$58975.00,46.68%,3406,$190.09,($133.96),$17.32,1.4,1.2,($6712.50),-26.90%
#1#=4#2#=22#3#=13,$60475.00,46.67%,3383,$192.27,($134.76),$17.88,1.4,1.2,($6312.50),-24.93%
#1#=4#2#=22#3#=14,$54625.00,46.64%,3362,$190.49,($136.04),$16.25,1.4,1.2,($6875.00),-27.19%
#1#=4#2#=22#3#=15,$55950.00,46.70%,3334,$191.20,($136.04),$16.78,1.4,1.2,($7037.50),-28.31%
#1#=4#2#=26#3#=2,$52287.50,47.60%,2878,$199.19,($146.29),$18.17,1.4,1.2,($6550.00),-24.87%
#1#=4#2#=26#3#=3,$51262.50,47.13%,2979,$199.79,($145.55),$17.21,1.4,1.2,($6800.00),-25.87%
#1#=4#2#=26#3#=4,$56412.50,46.59%,3054,$202.53,($142.11),$18.47,1.4,1.2,($7362.50),-28.11%
#1#=4#2#=26#3#=5,$65150.00,46.57%,3165,$201.33,($136.97),$20.58,1.5,1.3,($6612.50),-25.91%
#1#=4#2#=26#3#=6,$63612.50,46.03%,3170,$203.26,($136.14),$20.07,1.5,1.3,($8100.00),-31.47%
#1#=4#2#=26#3#=7,$71412.50,46.22%,3213,$203.47,($133.53),$22.23,1.5,1.3,($7125.00),-27.67%
#1#=4#2#=26#3#=8,$64937.50,45.59%,3198,$204.73,($134.23),$20.31,1.5,1.3,($7537.50),-29.20%
#1#=4#2#=26#3#=9,$65375.00,45.66%,3206,$204.72,($134.52),$20.39,1.5,1.3,($6500.00),-25.38%
#1#=4#2#=26#3#=10,$65937.50,46.19%,3185,$202.86,($135.63),$20.70,1.5,1.3,($6450.00),-25.68%
#1#=4#2#=26#3#=11,$62075.00,46.04%,3167,$202.73,($136.63),$19.60,1.5,1.3,($6475.00),-25.44%
#1#=4#2#=26#3#=12,$66525.00,46.13%,3137,$205.29,($136.41),$21.21,1.5,1.3,($6812.50),-26.93%
#1#=4#2#=26#3#=13,$67925.00,46.48%,3094,$207.44,($139.12),$21.95,1.5,1.3,($5775.00),-22.61%
#1#=4#2#=26#3#=14,$65475.00,46.59%,3069,$206.48,($140.20),$21.33,1.5,1.3,($6687.50),-26.28%
#1#=4#2#=26#3#=15,$68200.00,46.86%,3041,$207.09,($140.41),$22.43,1.5,1.3,($6575.00),-26.27%
#1#=4#2#=30#3#=2,$60187.50,48.03%,2696,$208.55,($149.81),$22.32,1.4,1.3,($7400.00),-28.41%
#1#=4#2#=30#3#=3,$64450.00,47.71%,2775,$211.11,($148.22),$23.23,1.4,1.3,($7675.00),-29.52%
#1#=4#2#=30#3#=4,$70125.00,47.02%,2850,$214.58,($143.98),$24.61,1.5,1.3,($8187.50),-31.61%
#1#=4#2#=30#3#=5,$78700.00,47.21%,2955,$211.69,($138.85),$26.63,1.5,1.4,($6987.50),-27.69%
#1#=4#2#=30#3#=6,$73650.00,46.08%,2958,$215.22,($137.74),$24.90,1.6,1.3,($7612.50),-29.91%
#1#=4#2#=30#3#=7,$80975.00,46.66%,2996,$214.42,($136.91),$27.03,1.6,1.4,($6850.00),-26.90%
#1#=4#2#=30#3#=8,$77625.00,45.93%,2983,$217.18,($136.34),$26.02,1.6,1.4,($7225.00),-28.31%
#1#=4#2#=30#3#=9,$79612.50,46.21%,2993,$216.57,($136.58),$26.60,1.6,1.4,($6225.00),-24.52%
#1#=4#2#=30#3#=10,$78912.50,46.89%,2958,$214.39,($139.05),$26.68,1.5,1.4,($6325.00),-24.69%
#1#=4#2#=30#3#=11,$72937.50,46.53%,2940,$214.37,($140.16),$24.81,1.5,1.3,($6650.00),-25.90%
#1#=4#2#=30#3#=12,$73625.00,46.53%,2910,$216.12,($140.75),$25.30,1.5,1.3,($6362.50),-24.93%
#1#=4#2#=30#3#=13,$73925.00,46.73%,2887,$217.59,($142.78),$25.61,1.5,1.3,($6000.00),-23.29%
#1#=4#2#=30#3#=14,$69437.50,46.70%,2863,$216.93,($144.56),$24.25,1.5,1.3,($6325.00),-24.69%
#1#=4#2#=30#3#=15,$71850.00,46.98%,2835,$217.20,($144.69),$25.34,1.5,1.3,($6012.50),-23.68%
#1#=4#2#=34#3#=2,$63650.00,47.91%,2530,$219.06,($153.15),$25.16,1.4,1.3,($6550.00),-25.36%
#1#=4#2#=34#3#=3,$68375.00,47.77%,2604,$220.99,($151.87),$26.26,1.5,1.3,($6650.00),-25.70%
#1#=4#2#=34#3#=4,$72712.50,47.10%,2671,$223.77,($147.76),$27.22,1.5,1.3,($7225.00),-28.03%
#1#=4#2#=34#3#=5,$81600.00,47.57%,2752,$220.54,($143.51),$29.65,1.5,1.4,($5737.50),-22.85%
#1#=4#2#=34#3#=6,$78250.00,46.60%,2762,$224.09,($142.47),$28.33,1.6,1.4,($7000.00),-27.67%
#1#=4#2#=34#3#=7,$83912.50,46.74%,2792,$225.57,($141.53),$30.05,1.6,1.4,($6100.00),-24.10%
#1#=4#2#=34#3#=8,$81200.00,46.58%,2776,$225.54,($141.89),$29.25,1.6,1.4,($6587.50),-25.96%
#1#=4#2#=34#3#=9,$83400.00,46.89%,2796,$223.80,($141.41),$29.83,1.6,1.4,($5387.50),-21.35%
#1#=4#2#=34#3#=10,$82837.50,47.57%,2754,$222.17,($144.18),$30.08,1.5,1.4,($5150.00),-20.23%
#1#=4#2#=34#3#=11,$77912.50,47.57%,2756,$219.85,($145.54),$28.27,1.5,1.4,($5450.00),-21.06%
#1#=4#2#=34#3#=12,$78575.00,47.54%,2728,$221.55,($145.89),$28.80,1.5,1.4,($5300.00),-20.74%
#1#=4#2#=34#3#=13,$80800.00,47.75%,2712,$223.70,($147.42),$29.79,1.5,1.4,($5100.00),-19.91%
#1#=4#2#=34#3#=14,$77112.50,47.63%,2675,$224.86,($149.44),$28.83,1.5,1.4,($5925.00),-23.27%
#1#=4#2#=34#3#=15,$79062.50,48.00%,2650,$224.13,($149.51),$29.83,1.5,1.4,($5337.50),-21.15%
#1#=4#2#=38#3#=2,$66137.50,48.04%,2377,$228.04,($157.32),$27.82,1.4,1.3,($5575.00),-21.20%
#1#=4#2#=38#3#=3,$72750.00,48.24%,2440,$229.41,($156.19),$29.82,1.5,1.4,($5487.50),-20.76%
#1#=4#2#=38#3#=4,$77375.00,47.66%,2505,$231.96,($152.24),$30.89,1.5,1.4,($5712.50),-21.69%
#1#=4#2#=38#3#=5,$85600.00,47.98%,2595,$228.05,($146.91),$32.99,1.6,1.4,($5237.50),-20.39%
#1#=4#2#=38#3#=6,$78162.50,46.72%,2620,$230.00,($145.68),$29.83,1.6,1.4,($6737.50),-26.08%
#1#=4#2#=38#3#=7,$85512.50,46.74%,2642,$232.73,($143.51),$32.37,1.6,1.4,($5937.50),-22.86%
#1#=4#2#=38#3#=8,$81975.00,46.84%,2630,$231.71,($145.56),$31.17,1.6,1.4,($6787.50),-26.07%
#1#=4#2#=38#3#=9,$83862.50,46.88%,2645,$231.74,($144.84),$31.71,1.6,1.4,($5337.50),-20.61%
#1#=4#2#=38#3#=10,$85650.00,47.72%,2613,$229.92,($147.19),$32.78,1.6,1.4,($5012.50),-19.17%
#1#=4#2#=38#3#=11,$83112.50,47.68%,2611,$228.89,($147.77),$31.83,1.5,1.4,($6975.00),-19.55%
#1#=4#2#=38#3#=12,$83862.50,47.69%,2573,$230.81,($148.10),$32.59,1.6,1.4,($6062.50),-15.71%
#1#=4#2#=38#3#=13,$85400.00,47.62%,2564,$233.72,($148.90),$33.31,1.6,1.4,($5787.50),-16.79%
#1#=4#2#=38#3#=14,$78975.00,47.37%,2544,$233.23,($150.91),$31.04,1.5,1.4,($5737.50),-17.41%
#1#=4#2#=38#3#=15,$80537.50,47.63%,2515,$233.36,($151.12),$32.02,1.5,1.4,($5487.50),-16.88%
#1#=4#2#=42#3#=2,$67112.50,47.33%,2282,$240.01,($159.82),$29.41,1.5,1.3,($5375.00),-20.01%
#1#=4#2#=42#3#=3,$70600.00,47.00%,2347,$242.53,($158.29),$30.08,1.5,1.4,($5787.50),-19.75%
#1#=4#2#=42#3#=4,$74412.50,46.61%,2405,$242.67,($153.91),$30.94,1.6,1.4,($5862.50),-21.04%
#1#=4#2#=42#3#=5,$78750.00,46.89%,2491,$237.79,($150.41),$31.61,1.6,1.4,($5450.00),-16.68%
#1#=4#2#=42#3#=6,$76875.00,46.29%,2517,$237.49,($147.78),$30.54,1.6,1.4,($5812.50),-22.16%
#1#=4#2#=42#3#=7,$85787.50,46.44%,2539,$240.43,($145.35),$33.79,1.7,1.4,($5012.50),-18.94%
#1#=4#2#=42#3#=8,$78987.50,46.44%,2528,$238.01,($148.03),$31.25,1.6,1.4,($5962.50),-22.48%
#1#=4#2#=42#3#=9,$78762.50,46.20%,2539,$238.93,($147.51),$31.02,1.6,1.4,($5812.50),-19.61%
#1#=4#2#=42#3#=10,$77862.50,46.83%,2511,$236.27,($149.80),$31.01,1.6,1.4,($6550.00),-18.02%
#1#=4#2#=42#3#=11,$77400.00,46.82%,2501,$237.05,($150.52),$30.95,1.6,1.4,($9662.50),-18.38%
#1#=4#2#=42#3#=12,$77937.50,46.79%,2473,$238.60,($150.55),$31.52,1.6,1.4,($8850.00),-16.79%
#1#=4#2#=42#3#=13,$78687.50,47.03%,2456,$239.77,($152.38),$32.04,1.6,1.4,($9100.00),-17.73%
#1#=4#2#=42#3#=14,$73700.00,47.19%,2437,$238.46,($155.81),$30.24,1.5,1.4,($8762.50),-18.16%
#1#=4#2#=42#3#=15,$75937.50,47.48%,2418,$238.44,($155.74),$31.41,1.5,1.4,($7725.00),-18.05%
#1#=4#2#=46#3#=2,$71900.00,47.51%,2185,$247.92,($161.67),$32.91,1.5,1.4,($5137.50),-19.13%
#1#=4#2#=46#3#=3,$77100.00,47.32%,2240,$249.87,($159.12),$34.42,1.6,1.4,($4775.00),-17.75%
#1#=4#2#=46#3#=4,$76962.50,47.05%,2306,$247.37,($156.79),$33.37,1.6,1.4,($5475.00),-20.43%
#1#=4#2#=46#3#=5,$83612.50,47.11%,2371,$246.04,($152.48),$35.26,1.6,1.4,($5450.00),-15.54%
#1#=4#2#=46#3#=6,$79500.00,46.38%,2391,$246.29,($151.04),$33.25,1.6,1.4,($5487.50),-20.93%
#1#=4#2#=46#3#=7,$86737.50,46.56%,2414,$247.70,($148.59),$35.93,1.7,1.5,($5500.00),-17.48%
#1#=4#2#=46#3#=8,$82950.00,46.76%,2410,$245.55,($151.04),$34.42,1.6,1.4,($5500.00),-19.97%
#1#=4#2#=46#3#=9,$82350.00,46.34%,2415,$246.88,($149.62),$34.10,1.7,1.4,($5500.00),-19.46%
#1#=4#2#=46#3#=10,$78275.00,46.81%,2397,$242.96,($152.41),$32.66,1.6,1.4,($6225.00),-18.77%
#1#=4#2#=46#3#=11,$77225.00,46.81%,2395,$242.55,($152.81),$32.24,1.6,1.4,($8425.00),-19.30%
#1#=4#2#=46#3#=12,$79062.50,47.29%,2364,$242.78,($154.38),$33.44,1.6,1.4,($7112.50),-16.54%
#1#=4#2#=46#3#=13,$78512.50,47.54%,2356,$243.04,($156.71),$33.32,1.6,1.4,($7137.50),-17.48%
#1#=4#2#=46#3#=14,$74425.00,47.62%,2333,$242.64,($159.70),$31.90,1.5,1.4,($6962.50),-18.77%
#1#=4#2#=46#3#=15,$73650.00,47.69%,2319,$242.70,($160.57),$31.76,1.5,1.4,($6975.00),-18.25%
#1#=4#2#=50#3#=2,$70450.00,47.76%,2100,$250.85,($165.13),$33.55,1.5,1.4,($6350.00),-17.54%
#1#=4#2#=50#3#=3,$77450.00,47.45%,2156,$253.89,($160.88),$35.92,1.6,1.4,($5862.50),-16.04%
#1#=4#2#=50#3#=4,$79012.50,47.07%,2201,$254.33,($158.35),$35.90,1.6,1.4,($5137.50),-18.93%
#1#=4#2#=50#3#=5,$84912.50,47.05%,2255,$254.52,($155.06),$37.66,1.6,1.5,($5475.00),-16.18%
#1#=4#2#=50#3#=6,$81837.50,46.53%,2278,$253.60,($153.51),$35.93,1.7,1.4,($5612.50),-21.70%
#1#=4#2#=50#3#=7,$87937.50,46.47%,2296,$256.70,($151.31),$38.30,1.7,1.5,($6000.00),-17.09%
#1#=4#2#=50#3#=8,$84712.50,46.59%,2286,$255.26,($153.27),$37.06,1.7,1.5,($5287.50),-20.32%
#1#=4#2#=50#3#=9,$82600.00,46.61%,2304,$252.89,($153.66),$35.85,1.6,1.4,($5462.50),-20.49%
#1#=4#2#=50#3#=10,$80125.00,47.12%,2288,$248.65,($155.31),$35.02,1.6,1.4,($5925.00),-18.83%
#1#=4#2#=50#3#=11,$78300.00,47.13%,2283,$248.42,($156.59),$34.30,1.6,1.4,($8262.50),-19.56%
#1#=4#2#=50#3#=12,$83687.50,47.55%,2244,$251.24,($156.66),$37.29,1.6,1.5,($7450.00),-16.77%
#1#=4#2#=50#3#=13,$83737.50,47.65%,2237,$252.58,($158.42),$37.43,1.6,1.5,($7662.50),-16.04%
#1#=4#2#=50#3#=14,$80025.00,47.52%,2214,$253.16,($160.33),$36.14,1.6,1.4,($7137.50),-18.33%
#1#=4#2#=50#3#=15,$78600.00,47.53%,2203,$253.53,($161.63),$35.68,1.6,1.4,($6900.00),-17.83%
#1#=4#2#=54#3#=2,$65712.50,47.79%,2036,$252.47,($169.27),$32.28,1.5,1.4,($6287.50),-15.98%
#1#=4#2#=54#3#=3,$72762.50,47.36%,2082,$257.48,($165.25),$34.95,1.6,1.4,($5837.50),-14.84%
#1#=4#2#=54#3#=4,$75600.00,47.00%,2134,$257.54,($161.55),$35.43,1.6,1.4,($5287.50),-19.74%
#1#=4#2#=54#3#=5,$78725.00,46.36%,2183,$261.07,($158.39),$36.06,1.6,1.4,($5625.00),-18.26%
#1#=4#2#=54#3#=6,$72687.50,45.91%,2202,$258.61,($158.49),$33.01,1.6,1.4,($6137.50),-23.80%
#1#=4#2#=54#3#=7,$78775.00,45.97%,2223,$260.86,($156.39),$35.44,1.7,1.4,($6150.00),-19.24%
#1#=4#2#=54#3#=8,$75400.00,46.04%,2209,$259.98,($158.56),$34.13,1.6,1.4,($5637.50),-21.81%
#1#=4#2#=54#3#=9,$73050.00,45.83%,2219,$260.08,($159.28),$32.92,1.6,1.4,($5525.00),-21.60%
#1#=4#2#=54#3#=10,$71725.00,46.52%,2199,$255.67,($161.42),$32.62,1.6,1.4,($5625.00),-19.88%
#1#=4#2#=54#3#=11,$68037.50,46.28%,2191,$256.30,($163.00),$31.05,1.6,1.4,($7687.50),-21.49%
#1#=4#2#=54#3#=12,$70912.50,46.48%,2162,$258.63,($163.36),$32.80,1.6,1.4,($7075.00),-20.84%
#1#=4#2#=54#3#=13,$73137.50,46.75%,2154,$260.04,($164.54),$33.95,1.6,1.4,($6937.50),-20.06%
#1#=4#2#=54#3#=14,$70037.50,46.41%,2129,$262.49,($165.91),$32.90,1.6,1.4,($6987.50),-22.38%
#1#=4#2#=54#3#=15,$68337.50,46.40%,2114,$262.82,($167.24),$32.33,1.6,1.4,($7175.00),-21.91%
#1#=4#2#=58#3#=2,$65712.50,47.51%,1989,$258.04,($170.63),$33.04,1.5,1.4,($6137.50),-13.48%
#1#=4#2#=58#3#=3,$68962.50,46.99%,2041,$260.06,($166.76),$33.79,1.6,1.4,($5887.50),-14.06%
#1#=4#2#=58#3#=4,$71075.00,46.96%,2089,$259.17,($165.32),$34.02,1.6,1.4,($5675.00),-17.42%
#1#=4#2#=58#3#=5,$74687.50,46.47%,2141,$261.26,($161.66),$34.88,1.6,1.4,($6237.50),-15.69%
#1#=4#2#=58#3#=6,$72000.00,46.52%,2158,$257.43,($161.58),$33.36,1.6,1.4,($5787.50),-20.75%
#1#=4#2#=58#3#=7,$76112.50,46.24%,2182,$260.57,($159.25),$34.88,1.6,1.4,($6150.00),-16.09%
#1#=4#2#=58#3#=8,$72137.50,46.23%,2174,$259.89,($161.72),$33.18,1.6,1.4,($6150.00),-18.18%
#1#=4#2#=58#3#=9,$71450.00,46.39%,2175,$259.89,($163.61),$32.85,1.6,1.4,($6375.00),-17.94%
#1#=4#2#=58#3#=10,$69975.00,47.13%,2145,$256.47,($166.94),$32.62,1.5,1.4,($7275.00),-16.23%
#1#=4#2#=58#3#=11,$68437.50,46.76%,2143,$258.02,($166.61),$31.94,1.5,1.4,($8637.50),-18.08%
#1#=4#2#=58#3#=12,$70275.00,46.93%,2116,$259.68,($167.04),$33.21,1.6,1.4,($8250.00),-17.62%
#1#=4#2#=58#3#=13,$72775.00,47.29%,2106,$260.81,($168.46),$34.56,1.5,1.4,($7800.00),-17.65%
#1#=4#2#=58#3#=14,$69225.00,46.82%,2091,$262.77,($169.09),$33.11,1.6,1.4,($7812.50),-20.55%
#1#=4#2#=58#3#=15,$68600.00,46.99%,2075,$262.73,($170.51),$33.06,1.5,1.4,($7525.00),-20.07%
#1#=6#2#=18#3#=2,$51362.50,48.41%,3297,$179.99,($138.68),$15.58,1.3,1.2,($6575.00),-18.11%
#1#=6#2#=18#3#=3,$56375.00,47.96%,3407,$182.55,($136.44),$16.55,1.3,1.2,($6125.00),-20.21%
#1#=6#2#=18#3#=4,$56662.50,46.86%,3508,$184.94,($132.71),$16.15,1.4,1.2,($6675.00),-25.48%
#1#=6#2#=18#3#=5,$69062.50,46.21%,3597,$189.41,($127.00),$19.20,1.5,1.3,($6675.00),-26.10%
#1#=6#2#=18#3#=6,$63800.00,45.65%,3643,$188.70,($126.27),$17.51,1.5,1.3,($6187.50),-24.34%
#1#=6#2#=18#3#=7,$69162.50,45.91%,3683,$188.41,($125.22),$18.78,1.5,1.3,($5312.50),-19.59%
#1#=6#2#=18#3#=8,$71112.50,46.04%,3675,$188.60,($125.06),$19.35,1.5,1.3,($5250.00),-20.35%
#1#=6#2#=18#3#=9,$71250.00,45.74%,3701,$189.35,($124.16),$19.25,1.5,1.3,($4550.00),-17.83%
#1#=6#2#=18#3#=10,$67150.00,46.03%,3680,$187.74,($126.33),$18.25,1.5,1.3,($5625.00),-22.57%
#1#=6#2#=18#3#=11,$61287.50,45.91%,3688,$185.46,($126.67),$16.62,1.5,1.2,($5925.00),-23.55%
#1#=6#2#=18#3#=12,$65387.50,46.10%,3668,$185.63,($125.70),$17.83,1.5,1.3,($5950.00),-23.62%
#1#=6#2#=18#3#=13,$69100.00,46.51%,3668,$185.99,($126.50),$18.84,1.5,1.3,($6187.50),-24.34%
#1#=6#2#=18#3#=14,$65137.50,46.70%,3651,$184.07,($127.80),$17.84,1.4,1.3,($6750.00),-26.44%
#1#=6#2#=18#3#=15,$65075.00,47.32%,3637,$181.57,($129.13),$17.89,1.4,1.3,($6675.00),-26.51%
#1#=6#2#=22#3#=2,$48300.00,48.05%,3084,$187.11,($142.95),$15.66,1.3,1.2,($7225.00),-28.59%
#1#=6#2#=22#3#=3,$51875.00,47.47%,3147,$191.48,($141.68),$16.48,1.4,1.2,($6712.50),-26.70%
#1#=6#2#=22#3#=4,$58237.50,47.18%,3205,$195.29,($140.01),$18.17,1.4,1.2,($6087.50),-23.86%
#1#=6#2#=22#3#=5,$69962.50,46.92%,3267,$198.24,($134.91),$21.41,1.5,1.3,($6012.50),-24.20%
#1#=6#2#=22#3#=6,$66600.00,46.18%,3287,$199.56,($133.60),$20.26,1.5,1.3,($7525.00),-30.18%
#1#=6#2#=22#3#=7,$71412.50,46.29%,3327,$199.07,($131.60),$21.46,1.5,1.3,($6612.50),-26.44%
#1#=6#2#=22#3#=8,$72325.00,46.09%,3328,$199.92,($130.63),$21.73,1.5,1.3,($7100.00),-28.32%
#1#=6#2#=22#3#=9,$73300.00,45.95%,3334,$201.13,($130.31),$21.99,1.5,1.3,($6287.50),-25.35%
#1#=6#2#=22#3#=10,$70412.50,46.17%,3320,$199.57,($131.80),$21.21,1.5,1.3,($5937.50),-24.41%
#1#=6#2#=22#3#=11,$63750.00,45.90%,3327,$197.90,($132.47),$19.16,1.5,1.3,($6412.50),-26.00%
#1#=6#2#=22#3#=12,$70075.00,46.27%,3315,$198.90,($131.97),$21.14,1.5,1.3,($6287.50),-25.65%
#1#=6#2#=22#3#=13,$69525.00,46.57%,3311,$198.91,($134.08),$21.00,1.5,1.3,($6325.00),-25.56%
#1#=6#2#=22#3#=14,$65175.00,46.60%,3298,$197.32,($135.21),$19.76,1.5,1.3,($6987.50),-28.18%
#1#=6#2#=22#3#=15,$65487.50,46.90%,3292,$195.23,($134.98),$19.89,1.4,1.3,($6725.00),-27.59%
#1#=6#2#=26#3#=2,$57300.00,48.00%,2802,$203.62,($148.64),$20.45,1.4,1.3,($6437.50),-24.55%
#1#=6#2#=26#3#=3,$59800.00,47.68%,2865,$206.58,($148.36),$20.87,1.4,1.3,($6100.00),-23.54%
#1#=6#2#=26#3#=4,$65925.00,47.03%,2917,$210.52,($144.28),$22.60,1.5,1.3,($6225.00),-24.07%
#1#=6#2#=26#3#=5,$74812.50,46.51%,2984,$212.83,($138.22),$25.07,1.5,1.3,($5562.50),-21.94%
#1#=6#2#=26#3#=6,$72412.50,45.91%,2997,$213.99,($136.98),$24.16,1.6,1.3,($6762.50),-26.52%
#1#=6#2#=26#3#=7,$79450.00,46.38%,3023,$213.75,($135.86),$26.28,1.6,1.4,($5887.50),-22.92%
#1#=6#2#=26#3#=8,$75037.50,45.84%,3019,$214.56,($135.73),$24.86,1.6,1.3,($6487.50),-25.29%
#1#=6#2#=26#3#=9,$77012.50,45.87%,3030,$214.82,($135.11),$25.42,1.6,1.3,($5450.00),-21.48%
#1#=6#2#=26#3#=10,$76450.00,46.27%,3015,$212.60,($135.88),$25.36,1.6,1.3,($6025.00),-24.22%
#1#=6#2#=26#3#=11,$70137.50,46.36%,3022,$209.49,($137.79),$23.21,1.5,1.3,($6200.00),-24.08%
#1#=6#2#=26#3#=12,$74462.50,46.62%,3005,$210.79,($137.69),$24.78,1.5,1.3,($6437.50),-25.36%
#1#=6#2#=26#3#=13,$74625.00,46.80%,3000,$210.59,($138.50),$24.88,1.5,1.3,($6050.00),-23.80%
#1#=6#2#=26#3#=14,$71812.50,46.95%,2986,$209.76,($140.33),$24.05,1.5,1.3,($6237.50),-25.05%
#1#=6#2#=26#3#=15,$74275.00,47.30%,2979,$208.69,($139.98),$24.93,1.5,1.3,($6075.00),-24.82%
#1#=6#2#=30#3#=2,$53550.00,47.31%,2623,$215.19,($154.49),$20.42,1.4,1.3,($6612.50),-25.31%
#1#=6#2#=30#3#=3,$62012.50,47.40%,2673,$218.71,($152.98),$23.20,1.4,1.3,($6850.00),-25.91%
#1#=6#2#=30#3#=4,$68225.00,46.78%,2719,$222.91,($148.80),$25.09,1.5,1.3,($7137.50),-27.28%
#1#=6#2#=30#3#=5,$78162.50,47.16%,2780,$221.90,($144.83),$28.12,1.5,1.4,($6287.50),-24.23%
#1#=6#2#=30#3#=6,$75212.50,46.56%,2794,$222.97,($143.92),$26.92,1.5,1.4,($7387.50),-28.55%
#1#=6#2#=30#3#=7,$80925.00,46.58%,2821,$225.06,($142.53),$28.69,1.6,1.4,($7012.50),-26.98%
#1#=6#2#=30#3#=8,$77525.00,46.19%,2821,$225.04,($142.09),$27.48,1.6,1.4,($7250.00),-27.94%
#1#=6#2#=30#3#=9,$79162.50,46.16%,2840,$225.38,($141.47),$27.87,1.6,1.4,($6250.00),-24.27%
#1#=6#2#=30#3#=10,$77150.00,46.75%,2817,$222.55,($143.97),$27.39,1.5,1.4,($6112.50),-24.04%
#1#=6#2#=30#3#=11,$70987.50,46.27%,2818,$222.43,($144.69),$25.19,1.5,1.3,($6312.50),-24.99%
#1#=6#2#=30#3#=12,$73175.00,46.34%,2803,$223.56,($144.43),$26.11,1.5,1.3,($6575.00),-26.00%
#1#=6#2#=30#3#=13,$73250.00,46.56%,2807,$222.96,($145.44),$26.10,1.5,1.3,($6087.50),-23.57%
#1#=6#2#=30#3#=14,$69837.50,46.51%,2795,$222.08,($146.40),$24.99,1.5,1.3,($5900.00),-23.32%
#1#=6#2#=30#3#=15,$72962.50,46.95%,2788,$220.94,($146.21),$26.17,1.5,1.3,($5412.50),-21.69%
#1#=6#2#=34#3#=2,$63850.00,47.87%,2446,$225.85,($157.35),$26.10,1.4,1.3,($5487.50),-20.98%
#1#=6#2#=34#3#=3,$72537.50,47.97%,2487,$230.58,($156.53),$29.17,1.5,1.4,($4525.00),-17.21%
#1#=6#2#=34#3#=4,$76100.00,46.93%,2538,$235.24,($151.50),$29.98,1.6,1.4,($5150.00),-19.50%
#1#=6#2#=34#3#=5,$82962.50,47.01%,2589,$234.86,($147.86),$32.04,1.6,1.4,($4362.50),-16.94%
#1#=6#2#=34#3#=6,$79750.00,46.45%,2603,$235.45,($147.00),$30.64,1.6,1.4,($5762.50),-22.25%
#1#=6#2#=34#3#=7,$86075.00,46.44%,2625,$238.23,($145.32),$32.79,1.6,1.4,($5087.50),-19.54%
#1#=6#2#=34#3#=8,$84737.50,46.45%,2620,$236.97,($145.15),$32.34,1.6,1.4,($5412.50),-20.74%
#1#=6#2#=34#3#=9,$85525.00,46.46%,2641,$236.30,($144.56),$32.38,1.6,1.4,($4712.50),-18.19%
#1#=6#2#=34#3#=10,$84200.00,46.92%,2615,$234.37,($146.52),$32.20,1.6,1.4,($4462.50),-16.98%
#1#=6#2#=34#3#=11,$78412.50,46.59%,2627,$233.12,($147.49),$29.85,1.6,1.4,($5162.50),-16.96%
#1#=6#2#=34#3#=12,$80450.00,46.79%,2620,$232.95,($147.17),$30.71,1.6,1.4,($4312.50),-16.37%
#1#=6#2#=34#3#=13,$83587.50,47.14%,2620,$233.18,($147.57),$31.90,1.6,1.4,($4650.00),-17.50%
#1#=6#2#=34#3#=14,$80075.00,47.06%,2603,$232.82,($148.86),$30.76,1.6,1.4,($4387.50),-16.84%
#1#=6#2#=34#3#=15,$80625.00,47.36%,2593,$231.24,($148.97),$31.09,1.6,1.4,($4425.00),-17.08%
#1#=6#2#=38#3#=2,$69087.50,47.93%,2322,$235.51,($159.67),$29.75,1.5,1.4,($5937.50),-22.29%
#1#=6#2#=38#3#=3,$76212.50,47.83%,2375,$239.34,($157.93),$32.09,1.5,1.4,($5700.00),-21.29%
#1#=6#2#=38#3#=4,$77475.00,47.09%,2408,$242.26,($154.83),$32.17,1.6,1.4,($6187.50),-23.20%
#1#=6#2#=38#3#=5,$83062.50,46.82%,2452,$244.46,($151.51),$33.88,1.6,1.4,($5487.50),-21.34%
#1#=6#2#=38#3#=6,$79062.50,46.25%,2480,$243.06,($149.83),$31.88,1.6,1.4,($6312.50),-24.57%
#1#=6#2#=38#3#=7,$86962.50,46.35%,2496,$246.25,($147.83),$34.84,1.7,1.4,($5462.50),-21.04%
#1#=6#2#=38#3#=8,$80525.00,46.03%,2492,$245.24,($149.27),$32.31,1.6,1.4,($6287.50),-24.16%
#1#=6#2#=38#3#=9,$82587.50,45.81%,2506,$246.83,($147.85),$32.96,1.7,1.4,($5262.50),-20.38%
#1#=6#2#=38#3#=10,$82750.00,46.70%,2488,$242.41,($150.02),$33.26,1.6,1.4,($4937.50),-18.79%
#1#=6#2#=38#3#=11,$80237.50,46.45%,2495,$242.52,($150.33),$32.16,1.6,1.4,($7237.50),-18.88%
#1#=6#2#=38#3#=12,$81125.00,46.77%,2491,$240.77,($150.36),$32.57,1.6,1.4,($6250.00),-18.51%
#1#=6#2#=38#3#=13,$79025.00,46.79%,2494,$240.39,($151.86),$31.69,1.6,1.4,($5975.00),-19.79%
#1#=6#2#=38#3#=14,$76225.00,47.13%,2470,$239.22,($154.84),$30.86,1.5,1.4,($5812.50),-22.51%
#1#=6#2#=38#3#=15,$77062.50,47.46%,2465,$237.41,($154.99),$31.26,1.5,1.4,($6225.00),-23.66%
#1#=6#2#=42#3#=2,$66087.50,47.45%,2257,$239.57,($160.61),$29.28,1.5,1.3,($5925.00),-21.91%
#1#=6#2#=42#3#=3,$73225.00,47.71%,2297,$242.80,($160.61),$31.88,1.5,1.4,($6000.00),-20.97%
#1#=6#2#=42#3#=4,$74012.50,46.80%,2329,$246.08,($156.75),$31.78,1.6,1.4,($6125.00),-22.92%
#1#=6#2#=42#3#=5,$79800.00,46.44%,2375,$248.22,($152.51),$33.60,1.6,1.4,($5250.00),-20.23%
#1#=6#2#=42#3#=6,$76787.50,45.95%,2398,$247.77,($151.43),$32.02,1.6,1.4,($7300.00),-24.57%
#1#=6#2#=42#3#=7,$83650.00,46.06%,2414,$250.03,($149.30),$34.65,1.7,1.4,($6050.00),-20.70%
#1#=6#2#=42#3#=8,$80800.00,46.44%,2414,$246.26,($151.02),$33.47,1.6,1.4,($6487.50),-22.78%
#1#=6#2#=42#3#=9,$81462.50,46.12%,2422,$247.80,($149.67),$33.63,1.7,1.4,($6750.00),-21.88%
#1#=6#2#=42#3#=10,$77850.00,46.83%,2415,$242.04,($152.57),$32.24,1.6,1.4,($8687.50),-20.07%
#1#=6#2#=42#3#=11,$75837.50,46.33%,2411,$244.47,($152.42),$31.45,1.6,1.4,($9175.00),-20.31%
#1#=6#2#=42#3#=12,$76412.50,46.74%,2409,$242.30,($153.09),$31.72,1.6,1.4,($7887.50),-18.89%
#1#=6#2#=42#3#=13,$77962.50,46.92%,2402,$243.66,($154.23),$32.46,1.6,1.4,($7962.50),-19.57%
#1#=6#2#=42#3#=14,$72850.00,46.91%,2392,$242.36,($156.75),$30.46,1.5,1.4,($7637.50),-21.53%
#1#=6#2#=42#3#=15,$72850.00,47.30%,2387,$240.09,($157.56),$30.52,1.5,1.4,($7600.00),-21.06%
#1#=6#2#=46#3#=2,$62100.00,46.50%,2170,$248.95,($162.87),$28.62,1.5,1.3,($5637.50),-15.12%
#1#=6#2#=46#3#=3,$69987.50,46.73%,2204,$252.28,($161.72),$31.75,1.6,1.4,($5962.50),-14.70%
#1#=6#2#=46#3#=4,$69700.00,46.18%,2239,$253.75,($159.90),$31.13,1.6,1.4,($4900.00),-18.33%
#1#=6#2#=46#3#=5,$71187.50,45.63%,2279,$256.29,($157.67),$31.24,1.6,1.4,($5450.00),-17.03%
#1#=6#2#=46#3#=6,$69012.50,45.14%,2295,$255.85,($155.72),$30.07,1.6,1.4,($6512.50),-21.19%
#1#=6#2#=46#3#=7,$76612.50,45.57%,2315,$256.37,($153.86),$33.09,1.7,1.4,($5675.00),-16.69%
#1#=6#2#=46#3#=8,$75237.50,46.28%,2310,$251.72,($156.20),$32.57,1.6,1.4,($5775.00),-19.23%
#1#=6#2#=46#3#=9,$79662.50,45.77%,2318,$255.48,($152.27),$34.37,1.7,1.4,($6012.50),-18.99%
#1#=6#2#=46#3#=10,$76337.50,46.48%,2304,$249.88,($155.14),$33.13,1.6,1.4,($7875.00),-17.16%
#1#=6#2#=46#3#=11,$76512.50,46.33%,2305,$250.81,($154.69),$33.19,1.6,1.4,($8900.00),-17.06%
#1#=6#2#=46#3#=12,$79337.50,46.89%,2297,$249.18,($154.94),$34.54,1.6,1.4,($7712.50),-15.37%
#1#=6#2#=46#3#=13,$79362.50,47.15%,2301,$248.80,($156.73),$34.49,1.6,1.4,($7487.50),-14.30%
#1#=6#2#=46#3#=14,$74487.50,47.03%,2288,$248.07,($158.78),$32.56,1.6,1.4,($7337.50),-17.09%
#1#=6#2#=46#3#=15,$75900.00,47.27%,2287,$246.73,($158.22),$33.19,1.6,1.4,($6675.00),-16.59%
#1#=6#2#=50#3#=2,$63137.50,47.12%,2082,$251.59,($166.83),$30.33,1.5,1.3,($6162.50),-13.94%
#1#=6#2#=50#3#=3,$68662.50,46.90%,2111,$256.36,($165.15),$32.53,1.6,1.4,($6012.50),-13.84%
#1#=6#2#=50#3#=4,$70550.00,46.30%,2136,$260.05,($162.72),$33.03,1.6,1.4,($4825.00),-17.40%
#1#=6#2#=50#3#=5,$72887.50,46.23%,2174,$260.58,($161.68),$33.53,1.6,1.4,($6262.50),-15.36%
#1#=6#2#=50#3#=6,$69400.00,45.62%,2192,$260.48,($160.30),$31.66,1.6,1.4,($6262.50),-20.86%
#1#=6#2#=50#3#=7,$76400.00,45.95%,2209,$262.17,($158.88),$34.59,1.7,1.4,($7187.50),-16.29%
#1#=6#2#=50#3#=8,$75525.00,46.33%,2208,$259.24,($160.06),$34.21,1.6,1.4,($6037.50),-18.87%
#1#=6#2#=50#3#=9,$74637.50,46.14%,2213,$259.61,($159.75),$33.73,1.6,1.4,($6350.00),-18.38%
#1#=6#2#=50#3#=10,$71537.50,46.89%,2205,$252.79,($162.13),$32.44,1.6,1.4,($7925.00),-17.15%
#1#=6#2#=50#3#=11,$71950.00,46.58%,2209,$253.92,($160.46),$32.57,1.6,1.4,($8900.00),-17.34%
#1#=6#2#=50#3#=12,$76462.50,46.82%,2200,$254.90,($159.05),$34.76,1.6,1.4,($8362.50),-16.40%
#1#=6#2#=50#3#=13,$77687.50,47.07%,2201,$255.20,($160.26),$35.30,1.6,1.4,($8162.50),-15.28%
#1#=6#2#=50#3#=14,$74525.00,47.00%,2185,$255.20,($161.97),$34.11,1.6,1.4,($7737.50),-18.48%
#1#=6#2#=50#3#=15,$73975.00,47.09%,2185,$253.79,($161.92),$33.86,1.6,1.4,($8150.00),-17.98%
#1#=6#2#=54#3#=2,$56662.50,46.52%,2010,$258.41,($172.05),$28.19,1.5,1.3,($6500.00),-13.66%
#1#=6#2#=54#3#=3,$62262.50,46.05%,2039,$264.54,($169.22),$30.54,1.6,1.3,($6187.50),-13.84%
#1#=6#2#=54#3#=4,$62250.00,45.55%,2055,$268.04,($168.58),$30.29,1.6,1.3,($5750.00),-17.55%
#1#=6#2#=54#3#=5,$65775.00,45.48%,2091,$269.07,($166.77),$31.46,1.6,1.3,($5962.50),-14.84%
#1#=6#2#=54#3#=6,$63525.00,44.96%,2113,$268.75,($164.91),$30.06,1.6,1.3,($6100.00),-20.41%
#1#=6#2#=54#3#=7,$69800.00,45.11%,2135,$270.11,($162.38),$32.69,1.7,1.4,($6887.50),-15.83%
#1#=6#2#=54#3#=8,$65662.50,45.43%,2124,$267.71,($166.24),$30.91,1.6,1.3,($6887.50),-18.42%
#1#=6#2#=54#3#=9,$64362.50,45.22%,2134,$268.76,($166.80),$30.16,1.6,1.3,($7112.50),-18.08%
#1#=6#2#=54#3#=10,$61700.00,46.05%,2124,$261.94,($169.70),$29.05,1.5,1.3,($7637.50),-16.86%
#1#=6#2#=54#3#=11,$60750.00,45.54%,2130,$263.80,($168.22),$28.52,1.6,1.3,($8800.00),-18.99%
#1#=6#2#=54#3#=12,$63362.50,46.02%,2123,$261.90,($167.99),$29.85,1.6,1.3,($8287.50),-17.55%
#1#=6#2#=54#3#=13,$64750.00,46.44%,2121,$261.31,($169.58),$30.53,1.5,1.3,($7925.00),-16.24%
#1#=6#2#=54#3#=14,$61225.00,46.02%,2110,$263.01,($170.47),$29.02,1.5,1.3,($7775.00),-19.35%
#1#=6#2#=54#3#=15,$61425.00,46.07%,2110,$262.18,($169.96),$29.11,1.5,1.3,($8237.50),-18.85%
#1#=6#2#=58#3#=2,$60750.00,47.26%,1951,$261.10,($174.91),$31.14,1.5,1.3,($6425.00),-13.05%
#1#=6#2#=58#3#=3,$64862.50,46.49%,1981,$267.29,($171.05),$32.74,1.6,1.4,($5762.50),-13.39%
#1#=6#2#=58#3#=4,$67300.00,46.45%,2000,$269.03,($170.52),$33.65,1.6,1.4,($5662.50),-13.99%
#1#=6#2#=58#3#=5,$71962.50,46.37%,2036,$270.72,($168.13),$35.35,1.6,1.4,($6100.00),-12.65%
#1#=6#2#=58#3#=6,$68762.50,46.04%,2048,$269.80,($168.02),$33.58,1.6,1.4,($5962.50),-12.90%
#1#=6#2#=58#3#=7,$73237.50,45.85%,2070,$272.14,($165.05),$35.38,1.6,1.4,($6712.50),-14.00%
#1#=6#2#=58#3#=8,$70437.50,45.93%,2066,$271.11,($167.28),$34.09,1.6,1.4,($6712.50),-14.15%
#1#=6#2#=58#3#=9,$71075.00,45.99%,2072,$271.24,($167.48),$34.30,1.6,1.4,($6937.50),-14.85%
#1#=6#2#=58#3#=10,$69025.00,46.70%,2062,$265.65,($169.97),$33.47,1.6,1.4,($6650.00),-14.13%
#1#=6#2#=58#3#=11,$66500.00,46.18%,2066,$267.37,($169.58),$32.19,1.6,1.4,($7987.50),-16.16%
#1#=6#2#=58#3#=12,$68575.00,46.52%,2057,$266.39,($169.42),$33.34,1.6,1.4,($7887.50),-15.68%
#1#=6#2#=58#3#=13,$68512.50,46.64%,2054,$267.16,($171.01),$33.36,1.6,1.4,($7312.50),-14.31%
#1#=6#2#=58#3#=14,$65537.50,46.14%,2044,$269.06,($170.92),$32.06,1.6,1.3,($7325.00),-15.07%
#1#=6#2#=58#3#=15,$67400.00,46.35%,2041,$268.74,($170.62),$33.02,1.6,1.4,($7737.50),-15.97%
#1#=8#2#=18#3#=2,$50387.50,47.78%,3223,$184.73,($139.10),$15.63,1.3,1.2,($6812.50),-18.42%
#1#=8#2#=18#3#=3,$54962.50,47.12%,3298,$190.59,($138.31),$16.67,1.4,1.2,($6362.50),-17.18%
#1#=8#2#=18#3#=4,$56787.50,46.36%,3369,$193.65,($135.96),$16.86,1.4,1.2,($7150.00),-25.53%
#1#=8#2#=18#3#=5,$67725.00,45.76%,3431,$197.21,($129.98),$19.74,1.5,1.3,($6412.50),-25.80%
#1#=8#2#=18#3#=6,$69675.00,45.22%,3459,$199.29,($127.71),$20.14,1.6,1.3,($5887.50),-23.37%
#1#=8#2#=18#3#=7,$75462.50,45.09%,3493,$200.98,($125.70),$21.60,1.6,1.3,($4962.50),-19.62%
#1#=8#2#=18#3#=8,$72475.00,44.72%,3493,$201.14,($125.17),$20.75,1.6,1.3,($5612.50),-22.14%
#1#=8#2#=18#3#=9,$74600.00,44.59%,3521,$202.42,($124.65),$21.19,1.6,1.3,($4662.50),-18.54%
#1#=8#2#=18#3#=10,$67462.50,44.83%,3513,$198.71,($126.68),$19.20,1.6,1.3,($5737.50),-23.51%
#1#=8#2#=18#3#=11,$63300.00,44.92%,3531,$195.83,($127.14),$17.93,1.5,1.3,($6087.50),-24.41%
#1#=8#2#=18#3#=12,$67562.50,45.22%,3527,$195.01,($126.02),$19.16,1.5,1.3,($5487.50),-22.14%
#1#=8#2#=18#3#=13,$69787.50,45.16%,3536,$196.54,($125.88),$19.74,1.6,1.3,($6150.00),-24.58%
#1#=8#2#=18#3#=14,$65837.50,45.26%,3526,$194.55,($126.77),$18.67,1.5,1.3,($7150.00),-28.46%
#1#=8#2#=18#3#=15,$64950.00,45.53%,3523,$192.61,($127.15),$18.44,1.5,1.3,($7062.50),-29.15%
#1#=8#2#=22#3#=2,$48825.00,47.41%,2951,$196.79,($145.93),$16.55,1.3,1.2,($7187.50),-27.37%
#1#=8#2#=22#3#=3,$50100.00,46.90%,2998,$200.84,($145.91),$16.71,1.4,1.2,($6937.50),-27.42%
#1#=8#2#=22#3#=4,$56487.50,46.09%,3044,$207.35,($142.85),$18.56,1.5,1.2,($7175.00),-28.18%
#1#=8#2#=22#3#=5,$67062.50,45.59%,3084,$211.63,($137.36),$21.75,1.5,1.3,($7487.50),-30.19%
#1#=8#2#=22#3#=6,$65325.00,44.99%,3105,$212.71,($135.73),$21.04,1.6,1.3,($8412.50),-33.68%
#1#=8#2#=22#3#=7,$71550.00,45.27%,3130,$212.84,($134.29),$22.86,1.6,1.3,($7337.50),-29.38%
#1#=8#2#=22#3#=8,$67987.50,44.92%,3130,$213.38,($134.59),$21.72,1.6,1.3,($7375.00),-29.46%
#1#=8#2#=22#3#=9,$71375.00,45.13%,3144,$213.86,($134.54),$22.70,1.6,1.3,($6862.50),-27.63%
#1#=8#2#=22#3#=10,$70175.00,45.43%,3150,$211.04,($134.86),$22.28,1.6,1.3,($6050.00),-25.45%
#1#=8#2#=22#3#=11,$63912.50,45.18%,3145,$210.09,($136.09),$20.32,1.5,1.3,($6850.00),-27.77%
#1#=8#2#=22#3#=12,$68062.50,45.36%,3139,$210.21,($134.85),$21.68,1.6,1.3,($6775.00),-27.64%
#1#=8#2#=22#3#=13,$68450.00,45.16%,3149,$211.41,($134.44),$21.74,1.6,1.3,($6762.50),-28.15%
#1#=8#2#=22#3#=14,$63775.00,45.16%,3138,$209.27,($135.25),$20.32,1.5,1.3,($7575.00),-31.46%
#1#=8#2#=22#3#=15,$64875.00,45.20%,3128,$209.29,($134.81),$20.74,1.6,1.3,($7362.50),-31.13%
#1#=8#2#=26#3#=2,$59025.00,47.16%,2731,$213.16,($149.36),$21.61,1.4,1.3,($5962.50),-22.37%
#1#=8#2#=26#3#=3,$62950.00,46.55%,2765,$218.74,($147.88),$22.77,1.5,1.3,($5637.50),-22.12%
#1#=8#2#=26#3#=4,$67587.50,46.10%,2792,$223.46,($146.18),$24.21,1.5,1.3,($6137.50),-24.18%
#1#=8#2#=26#3#=5,$76837.50,46.07%,2837,$224.96,($141.95),$27.08,1.6,1.4,($6212.50),-25.13%
#1#=8#2#=26#3#=6,$75825.00,45.44%,2859,$226.29,($139.82),$26.52,1.6,1.3,($7150.00),-28.74%
#1#=8#2#=26#3#=7,$81625.00,45.59%,2882,$227.49,($138.58),$28.32,1.6,1.4,($6400.00),-25.61%
#1#=8#2#=26#3#=8,$77250.00,45.04%,2875,$228.21,($138.16),$26.87,1.7,1.4,($7062.50),-28.31%
#1#=8#2#=26#3#=9,$79387.50,45.26%,2890,$227.95,($138.29),$27.47,1.6,1.4,($6150.00),-24.85%
#1#=8#2#=26#3#=10,$79300.00,45.57%,2892,$225.65,($138.57),$27.42,1.6,1.4,($5750.00),-23.57%
#1#=8#2#=26#3#=11,$74962.50,45.58%,2896,$223.77,($139.86),$25.88,1.6,1.3,($6162.50),-24.52%
#1#=8#2#=26#3#=12,$76550.00,45.59%,2889,$223.51,($138.56),$26.50,1.6,1.4,($6300.00),-25.21%
#1#=8#2#=26#3#=13,$78200.00,45.84%,2888,$223.28,($139.02),$27.08,1.6,1.4,($5837.50),-22.87%
#1#=8#2#=26#3#=14,$74500.00,45.81%,2875,$222.39,($140.17),$25.91,1.6,1.3,($5550.00),-22.07%
#1#=8#2#=26#3#=15,$76500.00,46.03%,2874,$222.41,($140.39),$26.62,1.6,1.4,($5662.50),-23.62%
#1#=8#2#=30#3#=2,$65350.00,47.80%,2548,$221.33,($153.55),$25.65,1.4,1.3,($5762.50),-22.43%
#1#=8#2#=30#3#=3,$69062.50,47.23%,2581,$227.56,($152.96),$26.76,1.5,1.3,($5787.50),-22.68%
#1#=8#2#=30#3#=4,$72337.50,46.56%,2616,$231.67,($150.10),$27.65,1.5,1.3,($6337.50),-24.94%
#1#=8#2#=30#3#=5,$80825.00,46.83%,2650,$232.47,($147.39),$30.50,1.6,1.4,($5425.00),-21.92%
#1#=8#2#=30#3#=6,$80937.50,46.42%,2667,$233.35,($145.52),$30.35,1.6,1.4,($6512.50),-26.15%
#1#=8#2#=30#3#=7,$87425.00,46.45%,2687,$236.39,($144.26),$32.54,1.6,1.4,($5862.50),-23.49%
#1#=8#2#=30#3#=8,$80862.50,45.97%,2691,$235.04,($144.35),$30.05,1.6,1.4,($6412.50),-25.69%
#1#=8#2#=30#3#=9,$81387.50,45.89%,2702,$235.66,($144.20),$30.12,1.6,1.4,($5037.50),-20.34%
#1#=8#2#=30#3#=10,$83050.00,46.22%,2696,$234.25,($144.02),$30.80,1.6,1.4,($5162.50),-20.82%
#1#=8#2#=30#3#=11,$78512.50,46.04%,2702,$232.74,($144.73),$29.06,1.6,1.4,($5150.00),-20.78%
#1#=8#2#=30#3#=12,$79862.50,45.98%,2686,$234.07,($144.19),$29.73,1.6,1.4,($5362.50),-21.77%
#1#=8#2#=30#3#=13,$80462.50,46.01%,2693,$234.41,($144.41),$29.88,1.6,1.4,($5050.00),-20.06%
#1#=8#2#=30#3#=14,$75687.50,46.04%,2676,$233.09,($146.45),$28.28,1.6,1.4,($5200.00),-20.97%
#1#=8#2#=30#3#=15,$76850.00,46.40%,2677,$231.18,($146.53),$28.71,1.6,1.4,($5000.00),-19.18%
#1#=8#2#=34#3#=2,$71775.00,48.17%,2350,$233.79,($158.35),$30.54,1.5,1.4,($4587.50),-14.01%
#1#=8#2#=34#3#=3,$81275.00,48.48%,2374,$238.64,($158.14),$34.24,1.5,1.4,($4775.00),-14.23%
#1#=8#2#=34#3#=4,$83325.00,47.68%,2414,$241.53,($154.14),$34.52,1.6,1.4,($4400.00),-16.12%
#1#=8#2#=34#3#=5,$88462.50,47.89%,2445,$241.59,($152.62),$36.18,1.6,1.5,($3962.50),-15.20%
#1#=8#2#=34#3#=6,$87350.00,47.24%,2449,$244.14,($151.03),$35.67,1.6,1.4,($4275.00),-16.63%
#1#=8#2#=34#3#=7,$93412.50,47.03%,2471,$248.41,($149.15),$37.80,1.7,1.5,($4237.50),-15.28%
#1#=8#2#=34#3#=8,$89250.00,46.78%,2469,$247.00,($149.19),$36.15,1.7,1.5,($4237.50),-15.26%
#1#=8#2#=34#3#=9,$90737.50,46.56%,2483,$248.49,($148.09),$36.54,1.7,1.5,($4237.50),-12.32%
#1#=8#2#=34#3#=10,$88750.00,46.73%,2474,$246.36,($148.74),$35.87,1.7,1.5,($4300.00),-12.03%
#1#=8#2#=34#3#=11,$87412.50,46.57%,2478,$246.25,($148.61),$35.28,1.7,1.4,($4875.00),-11.72%
#1#=8#2#=34#3#=12,$88200.00,46.74%,2469,$245.57,($148.43),$35.72,1.7,1.5,($4637.50),-11.48%
#1#=8#2#=34#3#=13,$88925.00,46.58%,2473,$246.37,($147.53),$35.96,1.7,1.5,($4412.50),-12.33%
#1#=8#2#=34#3#=14,$86512.50,46.83%,2458,$244.84,($149.43),$35.20,1.6,1.4,($4475.00),-11.74%
#1#=8#2#=34#3#=15,$87962.50,47.04%,2453,$243.87,($148.93),$35.86,1.6,1.5,($4812.50),-11.44%
#1#=8#2#=38#3#=2,$69387.50,48.14%,2264,$238.46,($162.30),$30.65,1.5,1.4,($4925.00),-15.19%
#1#=8#2#=38#3#=3,$73375.00,47.79%,2287,$244.54,($162.41),$32.08,1.5,1.4,($4687.50),-15.43%
#1#=8#2#=38#3#=4,$78325.00,47.48%,2306,$248.39,($159.92),$33.97,1.6,1.4,($4525.00),-17.16%
#1#=8#2#=38#3#=5,$84062.50,47.30%,2332,$250.71,($156.61),$36.05,1.6,1.4,($4162.50),-16.43%
#1#=8#2#=38#3#=6,$82225.00,46.76%,2348,$250.83,($154.55),$35.02,1.6,1.4,($5750.00),-22.25%
#1#=8#2#=38#3#=7,$87200.00,46.78%,2362,$254.13,($154.03),$36.92,1.6,1.5,($4737.50),-18.14%
#1#=8#2#=38#3#=8,$80237.50,46.58%,2357,$252.40,($156.39),$34.04,1.6,1.4,($5700.00),-21.78%
#1#=8#2#=38#3#=9,$81500.00,46.64%,2378,$251.50,($155.57),$34.27,1.6,1.4,($4900.00),-18.86%
#1#=8#2#=38#3#=10,$82337.50,46.91%,2379,$249.44,($155.22),$34.61,1.6,1.4,($5237.50),-17.67%
#1#=8#2#=38#3#=11,$83312.50,46.95%,2377,$250.57,($155.69),$35.05,1.6,1.4,($6275.00),-17.03%
#1#=8#2#=38#3#=12,$83087.50,46.88%,2372,$249.78,($154.49),$35.03,1.6,1.4,($5825.00),-15.23%
#1#=8#2#=38#3#=13,$84937.50,46.89%,2376,$250.44,($153.76),$35.75,1.6,1.4,($5587.50),-14.47%
#1#=8#2#=38#3#=14,$77962.50,46.71%,2357,$249.86,($156.96),$33.08,1.6,1.4,($5725.00),-15.47%
#1#=8#2#=38#3#=15,$80475.00,47.13%,2353,$248.76,($157.07),$34.20,1.6,1.4,($5637.50),-15.93%
#1#=8#2#=42#3#=2,$62537.50,47.33%,2189,$243.99,($164.99),$28.57,1.5,1.3,($5750.00),-15.54%
#1#=8#2#=42#3#=3,$68412.50,47.40%,2211,$249.38,($165.90),$30.94,1.5,1.4,($6737.50),-15.68%
#1#=8#2#=42#3#=4,$69075.00,46.74%,2236,$252.09,($163.19),$30.89,1.5,1.4,($6400.00),-20.59%
#1#=8#2#=42#3#=5,$72475.00,46.38%,2264,$255.54,($161.32),$32.01,1.6,1.4,($6112.50),-19.84%
#1#=8#2#=42#3#=6,$74687.50,46.25%,2283,$253.42,($157.23),$32.71,1.6,1.4,($6162.50),-20.86%
#1#=8#2#=42#3#=7,$78975.00,46.39%,2300,$255.46,($157.02),$34.34,1.6,1.4,($5512.50),-19.32%
#1#=8#2#=42#3#=8,$75400.00,46.32%,2295,$254.86,($158.70),$32.85,1.6,1.4,($5862.50),-20.49%
#1#=8#2#=42#3#=9,$76562.50,46.36%,2306,$254.14,($157.73),$33.20,1.6,1.4,($6937.50),-19.57%
#1#=8#2#=42#3#=10,$75012.50,46.54%,2299,$251.90,($158.28),$32.63,1.6,1.4,($8537.50),-18.62%
#1#=8#2#=42#3#=11,$74712.50,46.41%,2301,$253.29,($158.80),$32.47,1.6,1.4,($9250.00),-18.30%
#1#=8#2#=42#3#=12,$76400.00,46.71%,2295,$251.95,($158.37),$33.29,1.6,1.4,($8637.50),-15.29%
#1#=8#2#=42#3#=13,$78237.50,46.82%,2298,$253.07,($158.81),$34.05,1.6,1.4,($8437.50),-14.56%
#1#=8#2#=42#3#=14,$71475.00,46.62%,2293,$251.45,($161.21),$31.17,1.6,1.4,($8575.00),-16.95%
#1#=8#2#=42#3#=15,$73062.50,46.79%,2289,$251.11,($160.82),$31.92,1.6,1.4,($7637.50),-16.46%
#1#=8#2#=46#3#=2,$56437.50,46.37%,2064,$255.88,($170.22),$27.34,1.5,1.3,($5425.00),-14.59%
#1#=8#2#=46#3#=3,$65637.50,46.79%,2090,$258.74,($168.54),$31.41,1.5,1.4,($5900.00),-16.58%
#1#=8#2#=46#3#=4,$66850.00,46.10%,2115,$262.85,($166.16),$31.61,1.6,1.4,($6425.00),-24.02%
#1#=8#2#=46#3#=5,$71762.50,46.37%,2146,$263.13,($165.12),$33.44,1.6,1.4,($5487.50),-20.71%
#1#=8#2#=46#3#=6,$71650.00,45.95%,2161,$263.77,($162.91),$33.16,1.6,1.4,($6225.00),-20.65%
#1#=8#2#=46#3#=7,$80050.00,46.25%,2175,$266.34,($160.72),$36.80,1.7,1.4,($6050.00),-13.42%
#1#=8#2#=46#3#=8,$73300.00,46.20%,2173,$263.99,($164.03),$33.73,1.6,1.4,($6662.50),-15.54%
#1#=8#2#=46#3#=9,$72662.50,45.98%,2179,$264.22,($163.20),$33.35,1.6,1.4,($7162.50),-15.60%
#1#=8#2#=46#3#=10,$67987.50,46.21%,2177,$259.21,($164.62),$31.23,1.6,1.4,($8725.00),-18.60%
#1#=8#2#=46#3#=11,$70812.50,45.95%,2183,$261.86,($162.57),$32.44,1.6,1.4,($10037.50),-19.49%
#1#=8#2#=46#3#=12,$72837.50,46.04%,2172,$262.66,($161.97),$33.53,1.6,1.4,($9137.50),-17.59%
#1#=8#2#=46#3#=13,$74325.00,46.36%,2168,$262.66,($163.07),$34.28,1.6,1.4,($8537.50),-15.85%
#1#=8#2#=46#3#=14,$69950.00,46.09%,2161,$262.15,($164.08),$32.37,1.6,1.4,($8625.00),-17.22%
#1#=8#2#=46#3#=15,$71625.00,46.32%,2161,$261.21,($163.66),$33.14,1.6,1.4,($7625.00),-15.01%
#1#=8#2#=50#3#=2,$63875.00,47.14%,1994,$261.18,($172.33),$32.03,1.5,1.4,($5750.00),-12.88%
#1#=8#2#=50#3#=3,$71950.00,47.28%,2022,$264.55,($169.76),$35.58,1.6,1.4,($5525.00),-13.06%
#1#=8#2#=50#3#=4,$72087.50,46.35%,2039,$270.22,($167.53),$35.35,1.6,1.4,($5537.50),-19.18%
#1#=8#2#=50#3#=5,$73250.00,46.01%,2069,$272.61,($166.76),$35.40,1.6,1.4,($6262.50),-16.29%
#1#=8#2#=50#3#=6,$68937.50,45.47%,2087,$272.26,($166.47),$33.03,1.6,1.4,($6262.50),-18.20%
#1#=8#2#=50#3#=7,$74687.50,45.81%,2098,$273.53,($165.50),$35.60,1.7,1.4,($7562.50),-16.12%
#1#=8#2#=50#3#=8,$74662.50,45.95%,2098,$272.00,($165.39),$35.59,1.6,1.4,($6412.50),-16.42%
#1#=8#2#=50#3#=9,$74525.00,45.82%,2104,$271.68,($164.36),$35.42,1.7,1.4,($7062.50),-14.77%
#1#=8#2#=50#3#=10,$72162.50,46.34%,2102,$265.90,($165.63),$34.33,1.6,1.4,($8275.00),-16.24%
#1#=8#2#=50#3#=11,$70787.50,45.87%,2108,$267.41,($164.59),$33.58,1.6,1.4,($9625.00),-18.95%
#1#=8#2#=50#3#=12,$72412.50,46.05%,2100,$267.33,($164.25),$34.48,1.6,1.4,($9125.00),-17.95%
#1#=8#2#=50#3#=13,$75800.00,46.55%,2099,$266.63,($164.62),$36.11,1.6,1.4,($9050.00),-16.62%
#1#=8#2#=50#3#=14,$72212.50,46.31%,2086,$266.74,($165.59),$34.62,1.6,1.4,($8800.00),-19.41%
#1#=8#2#=50#3#=15,$74587.50,46.69%,2084,$265.79,($165.64),$35.79,1.6,1.4,($8550.00),-16.92%
#1#=8#2#=54#3#=2,$64375.00,47.14%,1920,$267.91,($175.46),$33.53,1.5,1.4,($5450.00),-12.62%
#1#=8#2#=54#3#=3,$70500.00,46.97%,1948,$272.01,($172.69),$36.19,1.6,1.4,($5125.00),-12.78%
#1#=8#2#=54#3#=4,$69500.00,46.06%,1965,$277.51,($171.37),$35.37,1.6,1.4,($5737.50),-16.61%
#1#=8#2#=54#3#=5,$73037.50,46.11%,1991,$278.54,($170.24),$36.68,1.6,1.4,($7162.50),-15.45%
#1#=8#2#=54#3#=6,$69275.00,45.79%,2005,$277.90,($170.96),$34.55,1.6,1.4,($7162.50),-15.44%
#1#=8#2#=54#3#=7,$72462.50,45.57%,2021,$281.05,($169.44),$35.85,1.7,1.4,($8462.50),-17.99%
#1#=8#2#=54#3#=8,$70525.00,45.81%,2017,$279.44,($171.71),$34.97,1.6,1.4,($8462.50),-17.92%
#1#=8#2#=54#3#=9,$69562.50,45.53%,2023,$280.33,($171.17),$34.39,1.6,1.4,($8687.50),-18.94%
#1#=8#2#=54#3#=10,$67762.50,46.16%,2017,$274.27,($172.73),$33.60,1.6,1.4,($7562.50),-16.97%
#1#=8#2#=54#3#=11,$64425.00,45.32%,2030,$277.45,($171.91),$31.74,1.6,1.3,($8425.00),-17.78%
#1#=8#2#=54#3#=12,$64525.00,45.53%,2023,$275.94,($172.06),$31.90,1.6,1.3,($8625.00),-18.23%
#1#=8#2#=54#3#=13,$66475.00,45.92%,2021,$275.53,($173.11),$32.89,1.6,1.4,($8525.00),-17.27%
#1#=8#2#=54#3#=14,$63600.00,45.62%,2010,$276.77,($174.02),$31.64,1.6,1.3,($8575.00),-18.57%
#1#=8#2#=54#3#=15,$65125.00,46.01%,2006,$275.27,($174.47),$32.47,1.6,1.3,($8500.00),-18.14%
#1#=8#2#=58#3#=2,$58912.50,47.14%,1886,$268.05,($179.93),$31.24,1.5,1.3,($5825.00),-13.91%
#1#=8#2#=58#3#=3,$62075.00,46.61%,1905,$274.39,($178.55),$32.59,1.5,1.3,($5787.50),-13.57%
#1#=8#2#=58#3#=4,$62362.50,45.88%,1918,$279.62,($176.97),$32.51,1.6,1.3,($6450.00),-15.53%
#1#=8#2#=58#3#=5,$66587.50,46.05%,1939,$280.96,($176.21),$34.34,1.6,1.4,($6862.50),-15.21%
#1#=8#2#=58#3#=6,$65325.00,46.06%,1956,$278.84,($176.22),$33.40,1.6,1.4,($6862.50),-15.18%
#1#=8#2#=58#3#=7,$66412.50,45.53%,1981,$281.57,($173.83),$33.52,1.6,1.4,($7787.50),-17.31%
#1#=8#2#=58#3#=8,$64387.50,45.79%,1972,$280.25,($176.50),$32.65,1.6,1.3,($7787.50),-17.27%
#1#=8#2#=58#3#=9,$64362.50,45.58%,1981,$280.79,($175.50),$32.49,1.6,1.3,($8012.50),-18.13%
#1#=8#2#=58#3#=10,$63650.00,46.41%,1976,$274.29,($177.41),$32.21,1.5,1.3,($7262.50),-16.83%
#1#=8#2#=58#3#=11,$60937.50,45.72%,1984,$276.75,($176.49),$30.71,1.6,1.3,($8237.50),-17.66%
#1#=8#2#=58#3#=12,$61900.00,45.76%,1980,$276.37,($175.50),$31.26,1.6,1.3,($8125.00),-17.14%
#1#=8#2#=58#3#=13,$62400.00,46.08%,1977,$276.34,($177.63),$31.56,1.6,1.3,($7550.00),-15.81%
#1#=8#2#=58#3#=14,$60300.00,45.43%,1968,$279.03,($176.12),$30.64,1.6,1.3,($7500.00),-16.76%
#1#=8#2#=58#3#=15,$62200.00,45.63%,1966,$278.58,($175.57),$31.64,1.6,1.3,($7250.00),-16.19%
#1#=10#2#=18#3#=2,$52600.00,47.98%,3122,$189.04,($141.99),$16.85,1.3,1.2,($6662.50),-26.02%
#1#=10#2#=18#3#=3,$57987.50,47.47%,3181,$194.78,($141.31),$18.23,1.4,1.2,($7225.00),-24.68%
#1#=10#2#=18#3#=4,$62162.50,46.64%,3242,$199.31,($138.26),$19.17,1.4,1.3,($7812.50),-24.18%
#1#=10#2#=18#3#=5,$72537.50,46.50%,3282,$201.74,($134.01),$22.10,1.5,1.3,($6875.00),-27.75%
#1#=10#2#=18#3#=6,$69575.00,45.79%,3313,$203.56,($133.20),$21.00,1.5,1.3,($8087.50),-32.61%
#1#=10#2#=18#3#=7,$77487.50,46.10%,3343,$203.20,($130.76),$23.18,1.6,1.3,($7175.00),-28.13%
#1#=10#2#=18#3#=8,$73562.50,45.48%,3333,$204.15,($129.84),$22.07,1.6,1.3,($7125.00),-28.46%
#1#=10#2#=18#3#=9,$73275.00,45.22%,3350,$205.38,($129.63),$21.87,1.6,1.3,($6725.00),-25.90%
#1#=10#2#=18#3#=10,$69125.00,45.22%,3348,$203.68,($130.45),$20.65,1.6,1.3,($5825.00),-24.05%
#1#=10#2#=18#3#=11,$63525.00,45.02%,3356,$201.60,($130.67),$18.93,1.5,1.3,($6112.50),-25.06%
#1#=10#2#=18#3#=12,$65962.50,45.41%,3365,$199.74,($130.23),$19.60,1.5,1.3,($5925.00),-22.18%
#1#=10#2#=18#3#=13,$69325.00,45.28%,3370,$201.92,($129.51),$20.57,1.6,1.3,($6600.00),-22.22%
#1#=10#2#=18#3#=14,$64137.50,45.32%,3363,$199.55,($130.49),$19.07,1.5,1.3,($6687.50),-26.20%
#1#=10#2#=18#3#=15,$65325.00,45.47%,3369,$197.81,($129.41),$19.39,1.5,1.3,($6887.50),-25.36%
#1#=10#2#=22#3#=2,$50900.00,47.28%,2851,$202.75,($147.98),$17.85,1.4,1.2,($7887.50),-31.19%
#1#=10#2#=22#3#=3,$55200.00,46.76%,2900,$208.25,($147.14),$19.03,1.4,1.2,($7250.00),-28.73%
#1#=10#2#=22#3#=4,$56737.50,46.00%,2935,$213.69,($146.21),$19.33,1.5,1.2,($8875.00),-34.96%
#1#=10#2#=22#3#=5,$62725.00,45.46%,2972,$217.23,($142.35),$21.11,1.5,1.3,($9462.50),-38.27%
#1#=10#2#=22#3#=6,$61362.50,45.04%,2982,$218.75,($141.81),$20.58,1.5,1.3,($10187.50),-40.95%
#1#=10#2#=22#3#=7,$67775.00,45.20%,3011,$218.67,($139.30),$22.51,1.6,1.3,($8800.00),-35.27%
#1#=10#2#=22#3#=8,$65687.50,44.70%,3009,$220.10,($138.43),$21.83,1.6,1.3,($9337.50),-37.33%
#1#=10#2#=22#3#=9,$68087.50,44.99%,3016,$220.27,($139.13),$22.58,1.6,1.3,($8425.00),-34.06%
#1#=10#2#=22#3#=10,$64625.00,45.32%,3014,$216.44,($140.19),$21.44,1.5,1.3,($8112.50),-34.12%
#1#=10#2#=22#3#=11,$62762.50,45.02%,3023,$216.13,($139.22),$20.76,1.6,1.3,($8425.00),-34.48%
#1#=10#2#=22#3#=12,$66000.00,45.29%,3018,$216.09,($138.95),$21.87,1.6,1.3,($8475.00),-34.89%
#1#=10#2#=22#3#=13,$68175.00,45.39%,3023,$217.15,($139.16),$22.55,1.6,1.3,($7987.50),-33.25%
#1#=10#2#=22#3#=14,$63700.00,45.15%,3012,$215.95,($139.22),$21.15,1.6,1.3,($7975.00),-33.13%
#1#=10#2#=22#3#=15,$67075.00,45.30%,3013,$215.94,($138.16),$22.26,1.6,1.3,($7487.50),-31.66%
#1#=10#2#=26#3#=2,$61362.50,47.27%,2598,$220.81,($153.13),$23.62,1.4,1.3,($5825.00),-21.04%
#1#=10#2#=26#3#=3,$62225.00,46.40%,2640,$225.85,($151.55),$23.57,1.5,1.3,($5512.50),-21.39%
#1#=10#2#=26#3#=4,$68925.00,46.07%,2657,$231.48,($149.62),$25.94,1.5,1.3,($6337.50),-24.68%
#1#=10#2#=26#3#=5,$73550.00,45.95%,2690,$232.60,($147.14),$27.34,1.6,1.3,($6162.50),-24.64%
#1#=10#2#=26#3#=6,$71500.00,45.45%,2693,$234.24,($146.50),$26.55,1.6,1.3,($7612.50),-30.25%
#1#=10#2#=26#3#=7,$81475.00,45.80%,2714,$236.43,($144.40),$30.02,1.6,1.4,($6650.00),-26.35%
#1#=10#2#=26#3#=8,$79237.50,45.24%,2708,$238.06,($143.21),$29.26,1.7,1.4,($7262.50),-28.71%
#1#=10#2#=26#3#=9,$80362.50,45.45%,2724,$237.02,($143.38),$29.50,1.7,1.4,($5950.00),-23.72%
#1#=10#2#=26#3#=10,$79662.50,45.62%,2727,$235.33,($143.69),$29.21,1.6,1.4,($5737.50),-23.44%
#1#=10#2#=26#3#=11,$74100.00,45.40%,2729,$234.01,($144.86),$27.15,1.6,1.3,($6275.00),-24.94%
#1#=10#2#=26#3#=12,$74400.00,45.29%,2727,$234.02,($143.84),$27.28,1.6,1.3,($5987.50),-23.94%
#1#=10#2#=26#3#=13,$76062.50,45.59%,2724,$233.76,($144.58),$27.92,1.6,1.4,($5150.00),-20.40%
#1#=10#2#=26#3#=14,$72225.00,45.11%,2720,$234.23,($144.12),$26.55,1.6,1.3,($5375.00),-19.47%
#1#=10#2#=26#3#=15,$75675.00,45.43%,2716,$234.02,($143.79),$27.86,1.6,1.4,($4687.50),-17.51%
#1#=10#2#=30#3#=2,$67925.00,47.34%,2427,$233.50,($156.78),$27.99,1.5,1.3,($5275.00),-18.55%
#1#=10#2#=30#3#=3,$71950.00,46.45%,2452,$242.63,($155.67),$29.34,1.6,1.4,($5475.00),-19.95%
#1#=10#2#=30#3#=4,$73937.50,45.87%,2479,$246.01,($153.33),$29.83,1.6,1.4,($6587.50),-25.40%
#1#=10#2#=30#3#=5,$76912.50,46.28%,2511,$245.11,($154.11),$30.63,1.6,1.4,($5512.50),-21.81%
#1#=10#2#=30#3#=6,$78537.50,45.94%,2514,$246.62,($151.81),$31.24,1.6,1.4,($6862.50),-27.35%
#1#=10#2#=30#3#=7,$85250.00,46.00%,2524,$249.67,($150.12),$33.78,1.7,1.4,($5937.50),-23.47%
#1#=10#2#=30#3#=8,$79087.50,45.38%,2512,$251.39,($151.24),$31.48,1.7,1.4,($6475.00),-25.53%
#1#=10#2#=30#3#=9,$78562.50,45.44%,2522,$250.44,($151.48),$31.15,1.7,1.4,($5300.00),-21.01%
#1#=10#2#=30#3#=10,$76875.00,45.41%,2519,$249.50,($151.67),$30.52,1.6,1.4,($5012.50),-19.43%
#1#=10#2#=30#3#=11,$73137.50,44.88%,2527,$250.76,($151.63),$28.94,1.7,1.3,($5487.50),-20.47%
#1#=10#2#=30#3#=12,$73687.50,45.05%,2526,$249.22,($151.24),$29.17,1.6,1.4,($5387.50),-18.13%
#1#=10#2#=30#3#=13,$73862.50,45.01%,2535,$249.13,($150.93),$29.14,1.7,1.4,($6287.50),-17.01%
#1#=10#2#=30#3#=14,$70162.50,44.83%,2532,$247.86,($151.15),$27.71,1.6,1.3,($6475.00),-16.23%
#1#=10#2#=30#3#=15,$73400.00,45.08%,2531,$247.27,($150.17),$29.00,1.6,1.4,($5812.50),-14.92%
#1#=10#2#=34#3#=2,$74075.00,48.38%,2286,$238.37,($160.65),$32.40,1.5,1.4,($4675.00),-14.12%
#1#=10#2#=34#3#=3,$78512.50,48.05%,2312,$244.73,($161.02),$33.96,1.5,1.4,($4400.00),-14.36%
#1#=10#2#=34#3#=4,$80750.00,47.22%,2336,$249.75,($157.93),$34.57,1.6,1.4,($5050.00),-18.78%
#1#=10#2#=34#3#=5,$82237.50,47.15%,2354,$251.79,($158.56),$34.94,1.6,1.4,($5450.00),-16.49%
#1#=10#2#=34#3#=6,$83537.50,46.88%,2359,$252.62,($156.31),$35.41,1.6,1.4,($5350.00),-21.21%
#1#=10#2#=34#3#=7,$90375.00,46.84%,2374,$255.92,($153.89),$38.07,1.7,1.5,($4562.50),-17.89%
#1#=10#2#=34#3#=8,$83912.50,46.59%,2363,$255.90,($156.77),$35.51,1.6,1.4,($5312.50),-20.78%
#1#=10#2#=34#3#=9,$84012.50,46.46%,2374,$256.04,($156.10),$35.39,1.6,1.4,($4725.00),-18.58%
#1#=10#2#=34#3#=10,$82325.00,46.27%,2373,$255.66,($155.60),$34.69,1.6,1.4,($5187.50),-17.41%
#1#=10#2#=34#3#=11,$81050.00,45.83%,2376,$257.98,($155.31),$34.11,1.7,1.4,($4887.50),-17.34%
#1#=10#2#=34#3#=12,$82512.50,46.07%,2381,$256.32,($154.73),$34.65,1.7,1.4,($4612.50),-15.71%
#1#=10#2#=34#3#=13,$83837.50,46.01%,2380,$256.94,($153.71),$35.23,1.7,1.4,($5312.50),-15.00%
#1#=10#2#=34#3#=14,$81412.50,46.08%,2372,$255.32,($154.53),$34.32,1.7,1.4,($5450.00),-14.45%
#1#=10#2#=34#3#=15,$82850.00,46.37%,2368,$254.21,($154.55),$34.99,1.6,1.4,($5362.50),-14.09%
#1#=10#2#=38#3#=2,$63137.50,46.85%,2173,$250.05,($165.73),$29.06,1.5,1.3,($5137.50),-16.96%
#1#=10#2#=38#3#=3,$65962.50,46.59%,2198,$255.26,($166.46),$30.01,1.5,1.3,($6025.00),-16.60%
#1#=10#2#=38#3#=4,$69787.50,46.16%,2212,$259.75,($164.07),$31.55,1.6,1.4,($5425.00),-19.50%
#1#=10#2#=38#3#=5,$73162.50,45.94%,2240,$261.94,($162.16),$32.66,1.6,1.4,($5537.50),-16.53%
#1#=10#2#=38#3#=6,$73562.50,45.99%,2255,$259.78,($160.78),$32.62,1.6,1.4,($5537.50),-21.95%
#1#=10#2#=38#3#=7,$78450.00,46.12%,2268,$261.54,($159.68),$34.59,1.6,1.4,($4712.50),-18.33%
#1#=10#2#=38#3#=8,$76687.50,46.26%,2261,$261.56,($162.06),$33.92,1.6,1.4,($5487.50),-21.47%
#1#=10#2#=38#3#=9,$77237.50,46.30%,2268,$261.17,($161.73),$34.06,1.6,1.4,($4825.00),-18.78%
#1#=10#2#=38#3#=10,$77737.50,46.31%,2265,$260.24,($160.57),$34.32,1.6,1.4,($5362.50),-17.75%
#1#=10#2#=38#3#=11,$76000.00,45.99%,2268,$262.36,($161.34),$33.51,1.6,1.4,($6400.00),-17.69%
#1#=10#2#=38#3#=12,$74725.00,45.92%,2265,$261.51,($161.02),$32.99,1.6,1.4,($6237.50),-16.74%
#1#=10#2#=38#3#=13,$76100.00,46.08%,2270,$261.28,($161.11),$33.52,1.6,1.4,($5675.00),-17.65%
#1#=10#2#=38#3#=14,$70912.50,45.79%,2258,$261.11,($162.64),$31.41,1.6,1.4,($5725.00),-17.54%
#1#=10#2#=38#3#=15,$74125.00,46.17%,2257,$259.88,($161.87),$32.84,1.6,1.4,($5587.50),-17.82%
#1#=10#2#=42#3#=2,$60387.50,46.48%,2087,$257.93,($169.92),$28.94,1.5,1.3,($6137.50),-17.26%
#1#=10#2#=42#3#=3,$66825.00,46.82%,2104,$261.70,($170.64),$31.76,1.5,1.3,($6750.00),-18.66%
#1#=10#2#=42#3#=4,$69550.00,46.30%,2123,$265.82,($168.20),$32.76,1.6,1.4,($7725.00),-29.58%
#1#=10#2#=42#3#=5,$72025.00,46.41%,2146,$266.65,($168.32),$33.56,1.6,1.4,($6512.50),-25.89%
#1#=10#2#=42#3#=6,$69662.50,46.31%,2157,$264.94,($168.40),$32.30,1.6,1.4,($6850.00),-27.26%
#1#=10#2#=42#3#=7,$79662.50,46.67%,2164,$268.32,($165.80),$36.81,1.6,1.4,($5750.00),-20.95%
#1#=10#2#=42#3#=8,$72887.50,46.66%,2169,$265.42,($169.16),$33.60,1.6,1.4,($6587.50),-25.96%
#1#=10#2#=42#3#=9,$76062.50,46.60%,2176,$265.24,($166.00),$34.96,1.6,1.4,($7137.50),-23.35%
#1#=10#2#=42#3#=10,$73787.50,46.38%,2171,$264.40,($165.35),$33.99,1.6,1.4,($8650.00),-21.51%
#1#=10#2#=42#3#=11,$73087.50,46.29%,2171,$265.34,($166.02),$33.67,1.6,1.4,($10062.50),-19.67%
#1#=10#2#=42#3#=12,$73150.00,46.34%,2173,$263.95,($165.22),$33.66,1.6,1.4,($9050.00),-19.01%
#1#=10#2#=42#3#=13,$74387.50,46.59%,2172,$264.60,($166.71),$34.25,1.6,1.4,($9337.50),-19.90%
#1#=10#2#=42#3#=14,$68675.00,46.06%,2169,$264.26,($166.94),$31.66,1.6,1.4,($9175.00),-22.38%
#1#=10#2#=42#3#=15,$72687.50,46.38%,2171,$263.54,($165.55),$33.48,1.6,1.4,($8375.00),-21.10%
#1#=10#2#=46#3#=2,$63100.00,46.60%,2000,$263.08,($170.49),$31.55,1.5,1.3,($5400.00),-15.82%
#1#=10#2#=46#3#=3,$69925.00,47.06%,2023,$265.45,($170.67),$34.57,1.6,1.4,($5512.50),-16.01%
#1#=10#2#=46#3#=4,$72300.00,46.49%,2039,$271.53,($169.67),$35.46,1.6,1.4,($6375.00),-24.01%
#1#=10#2#=46#3#=5,$77037.50,46.53%,2061,$273.24,($167.88),$37.38,1.6,1.4,($6437.50),-18.30%
#1#=10#2#=46#3#=6,$74900.00,46.14%,2074,$273.09,($166.92),$36.11,1.6,1.4,($6412.50),-20.44%
#1#=10#2#=46#3#=7,$81412.50,46.31%,2086,$275.35,($164.80),$39.03,1.7,1.4,($6412.50),-15.80%
#1#=10#2#=46#3#=8,$76925.00,46.38%,2083,$273.82,($167.94),$36.93,1.6,1.4,($6412.50),-19.91%
#1#=10#2#=46#3#=9,$79450.00,46.26%,2086,$274.83,($165.71),$38.09,1.7,1.4,($6412.50),-17.99%
#1#=10#2#=46#3#=10,$75637.50,45.99%,2083,$273.26,($165.47),$36.31,1.7,1.4,($7450.00),-18.33%
#1#=10#2#=46#3#=11,$74512.50,45.85%,2085,$273.76,($165.81),$35.74,1.7,1.4,($8850.00),-19.48%
#1#=10#2#=46#3#=12,$74700.00,46.25%,2080,$270.66,($166.08),$35.91,1.6,1.4,($7900.00),-19.28%
#1#=10#2#=46#3#=13,$77637.50,46.39%,2080,$272.50,($166.21),$37.33,1.6,1.4,($7875.00),-19.77%
#1#=10#2#=46#3#=14,$74462.50,46.22%,2079,$271.27,($166.57),$35.82,1.6,1.4,($7925.00),-21.70%
#1#=10#2#=46#3#=15,$78750.00,46.68%,2078,$270.59,($165.82),$37.90,1.6,1.4,($7525.00),-19.48%
#1#=10#2#=50#3#=2,$67050.00,47.34%,1933,$267.02,($174.14),$34.69,1.5,1.4,($6612.50),-14.13%
#1#=10#2#=50#3#=3,$73600.00,47.28%,1952,$272.25,($172.68),$37.70,1.6,1.4,($6687.50),-14.34%
#1#=10#2#=50#3#=4,$76362.50,46.80%,1970,$276.55,($170.43),$38.76,1.6,1.4,($6300.00),-22.91%
#1#=10#2#=50#3#=5,$78487.50,46.67%,1995,$278.42,($169.85),$39.34,1.6,1.4,($7162.50),-18.80%
#1#=10#2#=50#3#=6,$75650.00,46.74%,2007,$276.00,($171.41),$37.69,1.6,1.4,($7162.50),-19.02%
#1#=10#2#=50#3#=7,$76862.50,46.30%,2015,$280.25,($170.62),$38.15,1.6,1.4,($8162.50),-16.66%
#1#=10#2#=50#3#=8,$74050.00,46.12%,2010,$280.18,($171.45),$36.84,1.6,1.4,($7012.50),-18.19%
#1#=10#2#=50#3#=9,$73850.00,45.94%,2018,$279.71,($169.97),$36.60,1.6,1.4,($7025.00),-16.35%
#1#=10#2#=50#3#=10,$71537.50,46.13%,2018,$275.59,($170.23),$35.45,1.6,1.4,($8287.50),-16.30%
#1#=10#2#=50#3#=11,$70262.50,45.77%,2021,$277.70,($170.27),$34.77,1.6,1.4,($9850.00),-18.74%
#1#=10#2#=50#3#=12,$72537.50,45.86%,2015,$277.80,($168.79),$36.00,1.6,1.4,($8700.00),-18.13%
#1#=10#2#=50#3#=13,$75137.50,46.28%,2018,$277.64,($169.90),$37.23,1.6,1.4,($8675.00),-17.08%
#1#=10#2#=50#3#=14,$72612.50,46.12%,2008,$277.69,($170.54),$36.16,1.6,1.4,($8300.00),-19.68%
#1#=10#2#=50#3#=15,$75062.50,46.59%,2007,$275.83,($170.56),$37.40,1.6,1.4,($8675.00),-16.73%
#1#=10#2#=54#3#=2,$64112.50,46.87%,1871,$274.27,($177.49),$34.27,1.5,1.4,($6112.50),-12.64%
#1#=10#2#=54#3#=3,$67612.50,46.73%,1894,$278.36,($177.14),$35.70,1.6,1.4,($5725.00),-12.86%
#1#=10#2#=54#3#=4,$69600.00,46.07%,1908,$282.92,($174.04),$36.48,1.6,1.4,($5275.00),-18.09%
#1#=10#2#=54#3#=5,$71612.50,46.17%,1932,$284.12,($174.83),$37.07,1.6,1.4,($7162.50),-15.15%
#1#=10#2#=54#3#=6,$70062.50,46.36%,1937,$282.50,($176.73),$36.17,1.6,1.4,($7162.50),-15.74%
#1#=10#2#=54#3#=7,$71037.50,45.84%,1948,$287.09,($175.68),$36.47,1.6,1.4,($8162.50),-17.20%
#1#=10#2#=54#3#=8,$67187.50,45.73%,1944,$286.08,($177.38),$34.56,1.6,1.4,($6962.50),-15.03%
#1#=10#2#=54#3#=9,$66975.00,45.57%,1953,$285.83,($176.31),$34.29,1.6,1.4,($6962.50),-15.52%
#1#=10#2#=54#3#=10,$65225.00,45.93%,1951,$281.25,($177.04),$33.43,1.6,1.3,($7650.00),-15.24%
#1#=10#2#=54#3#=11,$64287.50,45.25%,1958,$284.72,($175.35),$32.83,1.6,1.3,($8625.00),-17.36%
#1#=10#2#=54#3#=12,$65275.00,45.54%,1952,$282.71,($175.02),$33.44,1.6,1.4,($8087.50),-16.10%
#1#=10#2#=54#3#=13,$67375.00,46.08%,1953,$281.17,($176.33),$34.50,1.6,1.4,($7912.50),-15.04%
#1#=10#2#=54#3#=14,$64587.50,45.91%,1945,$281.15,($177.26),$33.21,1.6,1.3,($7937.50),-15.86%
#1#=10#2#=54#3#=15,$66050.00,46.32%,1945,$279.05,($177.56),$33.96,1.6,1.4,($7387.50),-14.69%
#1#=10#2#=58#3#=2,$59625.00,46.92%,1848,$272.94,($180.44),$32.26,1.5,1.3,($5937.50),-14.08%
#1#=10#2#=58#3#=3,$62712.50,46.65%,1865,$277.21,($179.36),$33.63,1.5,1.4,($5687.50),-13.73%
#1#=10#2#=58#3#=4,$61875.00,46.30%,1877,$279.20,($179.32),$32.96,1.6,1.3,($6325.00),-17.38%
#1#=10#2#=58#3#=5,$64150.00,46.49%,1897,$280.36,($180.42),$33.82,1.6,1.4,($7212.50),-15.17%
#1#=10#2#=58#3#=6,$64412.50,46.68%,1900,$279.62,($181.26),$33.90,1.5,1.4,($7162.50),-15.18%
#1#=10#2#=58#3#=7,$65212.50,46.29%,1912,$283.87,($181.12),$34.11,1.6,1.4,($8462.50),-17.68%
#1#=10#2#=58#3#=8,$61637.50,46.19%,1903,$283.92,($183.52),$32.39,1.5,1.3,($8462.50),-17.88%
#1#=10#2#=58#3#=9,$59737.50,45.84%,1911,$284.25,($182.86),$31.26,1.6,1.3,($8687.50),-18.97%
#1#=10#2#=58#3#=10,$59562.50,46.46%,1905,$278.95,($183.64),$31.27,1.5,1.3,($8150.00),-16.54%
#1#=10#2#=58#3#=11,$58775.00,45.82%,1912,$281.39,($181.20),$30.74,1.6,1.3,($8800.00),-17.99%
#1#=10#2#=58#3#=12,$59200.00,45.81%,1910,$280.81,($180.21),$30.99,1.6,1.3,($8537.50),-16.85%
#1#=10#2#=58#3#=13,$59237.50,46.05%,1913,$280.55,($182.10),$30.97,1.5,1.3,($7987.50),-15.41%
#1#=10#2#=58#3#=14,$57975.00,45.72%,1905,$281.87,($181.37),$30.43,1.6,1.3,($7962.50),-16.23%
#1#=10#2#=58#3#=15,$61462.50,46.18%,1910,$280.37,($180.76),$32.18,1.6,1.3,($7837.50),-16.04%
#1#=12#2#=18#3#=2,$39825.00,47.14%,3072,$189.02,($144.01),$12.96,1.3,1.2,($6912.50),-28.64%
#1#=12#2#=18#3#=3,$43800.00,46.74%,3132,$193.75,($143.79),$13.98,1.3,1.2,($8200.00),-23.98%
#1#=12#2#=18#3#=4,$48337.50,46.10%,3191,$198.58,($141.73),$15.15,1.4,1.2,($8112.50),-26.98%
#1#=12#2#=18#3#=5,$55237.50,45.35%,3246,$202.03,($136.50),$17.02,1.5,1.2,($6650.00),-27.05%
#1#=12#2#=18#3#=6,$55687.50,44.89%,3259,$204.80,($135.82),$17.09,1.5,1.2,($7537.50),-29.67%
#1#=12#2#=18#3#=7,$63637.50,45.19%,3286,$204.87,($133.59),$19.37,1.5,1.3,($8012.50),-25.13%
#1#=12#2#=18#3#=8,$64225.00,45.10%,3257,$206.14,($133.44),$19.72,1.5,1.3,($7012.50),-27.77%
#1#=12#2#=18#3#=9,$60862.50,44.72%,3276,$206.70,($133.60),$18.58,1.5,1.3,($7312.50),-25.10%
#1#=12#2#=18#3#=10,$55812.50,44.57%,3253,$205.79,($134.55),$17.16,1.5,1.2,($6075.00),-25.59%
#1#=12#2#=18#3#=11,$50412.50,44.25%,3259,$204.73,($134.73),$15.47,1.5,1.2,($7050.00),-27.19%
#1#=12#2#=18#3#=12,$52337.50,44.33%,3264,$204.04,($133.69),$16.03,1.5,1.2,($7375.00),-28.99%
#1#=12#2#=18#3#=13,$53325.00,44.38%,3281,$204.40,($133.85),$16.25,1.5,1.2,($8812.50),-28.26%
#1#=12#2#=18#3#=14,$48737.50,44.33%,3280,$201.96,($134.13),$14.86,1.5,1.2,($8900.00),-30.04%
#1#=12#2#=18#3#=15,$50762.50,44.30%,3280,$201.92,($132.80),$15.48,1.5,1.2,($8950.00),-27.29%
#1#=12#2#=22#3#=2,$62137.50,47.76%,2749,$212.02,($150.59),$22.60,1.4,1.3,($6312.50),-24.95%
#1#=12#2#=22#3#=3,$64475.00,46.96%,2783,$217.04,($148.51),$23.17,1.5,1.3,($5612.50),-21.75%
#1#=12#2#=22#3#=4,$67050.00,46.86%,2821,$219.29,($148.67),$23.77,1.5,1.3,($6650.00),-26.08%
#1#=12#2#=22#3#=5,$77512.50,46.68%,2845,$223.80,($144.83),$27.25,1.5,1.4,($6087.50),-24.51%
#1#=12#2#=22#3#=6,$74050.00,46.05%,2858,$224.97,($143.98),$25.91,1.6,1.3,($7575.00),-30.44%
#1#=12#2#=22#3#=7,$78987.50,46.09%,2877,$225.88,($142.18),$27.45,1.6,1.4,($6537.50),-26.19%
#1#=12#2#=22#3#=8,$73350.00,45.67%,2877,$225.49,($142.63),$25.50,1.6,1.3,($7225.00),-28.87%
#1#=12#2#=22#3#=9,$72975.00,45.49%,2882,$226.73,($142.75),$25.32,1.6,1.3,($6287.50),-25.34%
#1#=12#2#=22#3#=10,$72725.00,45.89%,2870,$224.72,($143.75),$25.34,1.6,1.3,($5775.00),-23.91%
#1#=12#2#=22#3#=11,$67187.50,45.36%,2875,$224.63,($143.68),$23.37,1.6,1.3,($6587.50),-26.47%
#1#=12#2#=22#3#=12,$69475.00,45.48%,2876,$224.29,($142.79),$24.16,1.6,1.3,($6900.00),-27.89%
#1#=12#2#=22#3#=13,$71800.00,45.69%,2887,$224.58,($143.13),$24.87,1.6,1.3,($6087.50),-24.67%
#1#=12#2#=22#3#=14,$68650.00,45.44%,2883,$223.08,($142.14),$23.81,1.6,1.3,($5600.00),-22.89%
#1#=12#2#=22#3#=15,$73462.50,45.57%,2875,$224.42,($140.91),$25.55,1.6,1.3,($5612.50),-20.47%
#1#=12#2#=26#3#=2,$68750.00,47.71%,2553,$225.84,($154.55),$26.93,1.5,1.3,($6200.00),-19.77%
#1#=12#2#=26#3#=3,$69150.00,46.89%,2585,$230.67,($153.26),$26.75,1.5,1.3,($5462.50),-21.40%
#1#=12#2#=26#3#=4,$74162.50,46.66%,2591,$235.01,($151.93),$28.62,1.5,1.4,($6900.00),-27.14%
#1#=12#2#=26#3#=5,$80087.50,46.87%,2616,$236.54,($151.02),$30.61,1.6,1.4,($6325.00),-25.54%
#1#=12#2#=26#3#=6,$80837.50,46.57%,2624,$236.62,($148.58),$30.81,1.6,1.4,($7900.00),-31.94%
#1#=12#2#=26#3#=7,$86750.00,46.53%,2639,$239.72,($147.15),$32.87,1.6,1.4,($6762.50),-27.34%
#1#=12#2#=26#3#=8,$80725.00,45.97%,2628,$241.33,($148.45),$30.72,1.6,1.4,($7437.50),-29.99%
#1#=12#2#=26#3#=9,$80987.50,46.27%,2641,$239.65,($149.30),$30.67,1.6,1.4,($6500.00),-26.36%
#1#=12#2#=26#3#=10,$80300.00,46.39%,2632,$238.59,($149.55),$30.51,1.6,1.4,($6400.00),-25.95%
#1#=12#2#=26#3#=11,$73075.00,45.81%,2635,$238.58,($150.48),$27.73,1.6,1.3,($6525.00),-26.17%
#1#=12#2#=26#3#=12,$73850.00,45.84%,2633,$238.75,($150.30),$28.05,1.6,1.3,($6462.50),-26.07%
#1#=12#2#=26#3#=13,$74162.50,46.00%,2628,$237.92,($150.45),$28.22,1.6,1.3,($5800.00),-23.18%
#1#=12#2#=26#3#=14,$69625.00,45.78%,2628,$236.35,($150.67),$26.49,1.6,1.3,($5612.50),-22.09%
#1#=12#2#=26#3#=15,$74100.00,46.13%,2623,$236.32,($149.93),$28.25,1.6,1.3,($5125.00),-19.76%
#1#=12#2#=30#3#=2,$64187.50,47.98%,2376,$231.84,($161.90),$27.01,1.4,1.3,($6125.00),-14.42%
#1#=12#2#=30#3#=3,$68500.00,47.57%,2405,$237.24,($160.90),$28.48,1.5,1.3,($5750.00),-15.24%
#1#=12#2#=30#3#=4,$74612.50,47.27%,2418,$242.34,($158.74),$30.86,1.5,1.4,($6612.50),-20.78%
#1#=12#2#=30#3#=5,$78787.50,47.58%,2438,$242.80,($158.73),$32.32,1.5,1.4,($7075.00),-17.30%
#1#=12#2#=30#3#=6,$78087.50,47.41%,2449,$243.09,($158.49),$31.89,1.5,1.4,($7387.50),-22.09%
#1#=12#2#=30#3#=7,$84675.00,47.16%,2464,$247.63,($155.97),$34.36,1.6,1.4,($6550.00),-18.49%
#1#=12#2#=30#3#=8,$76062.50,46.67%,2445,$248.56,($159.16),$31.11,1.6,1.4,($5750.00),-20.42%
#1#=12#2#=30#3#=9,$76425.00,46.24%,2446,$250.86,($157.64),$31.24,1.6,1.4,($5087.50),-17.61%
#1#=12#2#=30#3#=10,$74462.50,46.44%,2442,$247.62,($157.75),$30.49,1.6,1.4,($7012.50),-15.54%
#1#=12#2#=30#3#=11,$72800.00,46.20%,2448,$248.39,($158.03),$29.74,1.6,1.3,($7087.50),-15.25%
#1#=12#2#=30#3#=12,$75500.00,46.07%,2442,$249.64,($155.92),$30.92,1.6,1.4,($6862.50),-14.09%
#1#=12#2#=30#3#=13,$71987.50,45.87%,2444,$249.26,($156.79),$29.45,1.6,1.3,($7237.50),-13.69%
#1#=12#2#=30#3#=14,$68787.50,45.60%,2441,$248.51,($156.48),$28.18,1.6,1.3,($7075.00),-13.03%
#1#=12#2#=30#3#=15,$72925.00,45.64%,2443,$249.72,($154.75),$29.85,1.6,1.4,($6687.50),-12.52%
#1#=12#2#=34#3#=2,$72075.00,47.93%,2245,$245.57,($164.38),$32.10,1.5,1.4,($4100.00),-12.89%
#1#=12#2#=34#3#=3,$75650.00,47.69%,2269,$249.82,($163.98),$33.34,1.5,1.4,($4075.00),-13.49%
#1#=12#2#=34#3#=4,$80062.50,47.26%,2281,$254.56,($161.55),$35.10,1.6,1.4,($4837.50),-17.71%
#1#=12#2#=34#3#=5,$82975.00,47.40%,2306,$254.99,($161.36),$35.98,1.6,1.4,($5450.00),-15.96%
#1#=12#2#=34#3#=6,$83275.00,47.12%,2311,$255.48,($159.52),$36.03,1.6,1.4,($5450.00),-21.12%
#1#=12#2#=34#3#=7,$88800.00,46.91%,2315,$260.99,($158.37),$38.36,1.6,1.5,($5450.00),-17.18%
#1#=12#2#=34#3#=8,$83862.50,47.16%,2307,$258.90,($162.28),$36.35,1.6,1.4,($5450.00),-19.71%
#1#=12#2#=34#3#=9,$83587.50,46.74%,2313,$260.16,($160.43),$36.14,1.6,1.4,($4725.00),-17.42%
#1#=12#2#=34#3#=10,$83550.00,46.82%,2311,$258.06,($159.21),$36.15,1.6,1.4,($5212.50),-15.63%
#1#=12#2#=34#3#=11,$81800.00,46.49%,2310,$259.96,($159.71),$35.41,1.6,1.4,($6012.50),-15.47%
#1#=12#2#=34#3#=12,$81575.00,46.40%,2304,$260.31,($159.27),$35.41,1.6,1.4,($6137.50),-15.48%
#1#=12#2#=34#3#=13,$82012.50,46.38%,2305,$259.85,($158.38),$35.58,1.6,1.4,($5612.50),-15.30%
#1#=12#2#=34#3#=14,$79150.00,46.03%,2303,$260.25,($158.26),$34.37,1.6,1.4,($5287.50),-13.95%
#1#=12#2#=34#3#=15,$80937.50,46.43%,2309,$257.84,($158.01),$35.05,1.6,1.4,($5875.00),-13.87%
#1#=12#2#=38#3#=2,$64000.00,46.94%,2126,$254.47,($168.41),$30.10,1.5,1.3,($5450.00),-13.11%
#1#=12#2#=38#3#=3,$65937.50,46.75%,2139,$259.23,($169.70),$30.83,1.5,1.3,($6225.00),-13.70%
#1#=12#2#=38#3#=4,$69362.50,46.49%,2151,$262.69,($167.96),$32.25,1.6,1.4,($5150.00),-16.19%
#1#=12#2#=38#3#=5,$72075.00,46.54%,2168,$263.44,($167.16),$33.24,1.6,1.4,($6475.00),-14.67%
#1#=12#2#=38#3#=6,$73287.50,46.63%,2179,$262.55,($166.35),$33.63,1.6,1.4,($7325.00),-18.65%
#1#=12#2#=38#3#=7,$77875.00,46.46%,2191,$266.99,($165.32),$35.54,1.6,1.4,($7250.00),-15.98%
#1#=12#2#=38#3#=8,$73687.50,46.80%,2190,$264.21,($169.21),$33.65,1.6,1.4,($7225.00),-20.02%
#1#=12#2#=38#3#=9,$75700.00,46.63%,2198,$263.91,($166.08),$34.44,1.6,1.4,($5750.00),-15.47%
#1#=12#2#=38#3#=10,$74387.50,46.67%,2192,$261.42,($165.14),$33.94,1.6,1.4,($6162.50),-14.36%
#1#=12#2#=38#3#=11,$74362.50,46.51%,2193,$263.66,($165.88),$33.91,1.6,1.4,($7075.00),-14.78%
#1#=12#2#=38#3#=12,$73712.50,46.44%,2192,$262.76,($165.06),$33.63,1.6,1.4,($6712.50),-14.49%
#1#=12#2#=38#3#=13,$74650.00,46.48%,2201,$262.28,($164.40),$33.92,1.6,1.4,($6800.00),-13.74%
#1#=12#2#=38#3#=14,$71550.00,46.19%,2189,$262.99,($164.97),$32.69,1.6,1.4,($6700.00),-13.84%
#1#=12#2#=38#3#=15,$73862.50,46.26%,2190,$262.94,($163.55),$33.73,1.6,1.4,($6587.50),-12.59%
#1#=12#2#=42#3#=2,$59875.00,47.08%,2018,$259.37,($174.65),$29.67,1.5,1.3,($5825.00),-14.91%
#1#=12#2#=42#3#=3,$63812.50,47.20%,2034,$262.63,($175.34),$31.37,1.5,1.3,($6337.50),-15.55%
#1#=12#2#=42#3#=4,$67200.00,46.61%,2049,$268.87,($173.29),$32.80,1.6,1.4,($6275.00),-22.79%
#1#=12#2#=42#3#=5,$72225.00,46.78%,2067,$270.36,($172.01),$34.94,1.6,1.4,($6437.50),-19.16%
#1#=12#2#=42#3#=6,$73487.50,46.89%,2073,$269.07,($170.80),$35.45,1.6,1.4,($6412.50),-22.06%
#1#=12#2#=42#3#=7,$78450.00,47.02%,2084,$272.12,($170.49),$37.64,1.6,1.4,($6412.50),-17.84%
#1#=12#2#=42#3#=8,$71012.50,47.08%,2088,$268.43,($174.52),$34.01,1.5,1.4,($6412.50),-22.30%
#1#=12#2#=42#3#=9,$70400.00,46.85%,2094,$268.31,($173.24),$33.62,1.5,1.4,($6412.50),-18.05%
#1#=12#2#=42#3#=10,$66675.00,46.57%,2083,$267.19,($172.96),$32.01,1.5,1.3,($7525.00),-17.55%
#1#=12#2#=42#3#=11,$66975.00,46.34%,2089,$268.43,($172.05),$32.06,1.6,1.3,($8987.50),-17.43%
#1#=12#2#=42#3#=12,$66587.50,46.28%,2085,$268.12,($171.56),$31.94,1.6,1.3,($8300.00),-17.03%
#1#=12#2#=42#3#=13,$68837.50,46.41%,2090,$268.67,($171.23),$32.94,1.6,1.4,($8425.00),-16.54%
#1#=12#2#=42#3#=14,$65537.50,45.76%,2089,$269.99,($169.97),$31.37,1.6,1.3,($8625.00),-18.18%
#1#=12#2#=42#3#=15,$69075.00,46.05%,2091,$269.72,($169.03),$33.03,1.6,1.4,($7625.00),-15.48%
#1#=12#2#=46#3#=2,$65862.50,47.43%,1904,$268.12,($176.07),$34.59,1.5,1.4,($5450.00),-14.12%
#1#=12#2#=46#3#=3,$72137.50,47.49%,1929,$271.82,($174.58),$37.40,1.6,1.4,($5425.00),-14.74%
#1#=12#2#=46#3#=4,$75725.00,47.07%,1948,$276.54,($172.51),$38.87,1.6,1.4,($4962.50),-17.04%
#1#=12#2#=46#3#=5,$82262.50,47.48%,1965,$277.71,($171.35),$41.86,1.6,1.5,($6437.50),-15.79%
#1#=12#2#=46#3#=6,$82312.50,47.36%,1970,$278.40,($171.11),$41.78,1.6,1.5,($6412.50),-18.27%
#1#=12#2#=46#3#=7,$87200.00,47.35%,1979,$282.00,($169.90),$44.06,1.7,1.5,($6412.50),-16.09%
#1#=12#2#=46#3#=8,$80687.50,47.15%,1979,$280.47,($173.03),$40.77,1.6,1.4,($6412.50),-18.04%
#1#=12#2#=46#3#=9,$77762.50,46.88%,1986,$279.43,($172.88),$39.16,1.6,1.4,($6412.50),-16.94%
#1#=12#2#=46#3#=10,$73912.50,46.95%,1981,$275.73,($173.66),$37.31,1.6,1.4,($6637.50),-15.79%
#1#=12#2#=46#3#=11,$73550.00,46.83%,1986,$276.42,($173.79),$37.03,1.6,1.4,($7775.00),-16.43%
#1#=12#2#=46#3#=12,$76600.00,46.92%,1980,$277.66,($172.55),$38.69,1.6,1.4,($7300.00),-16.24%
#1#=12#2#=46#3#=13,$78350.00,47.17%,1982,$277.33,($172.83),$39.53,1.6,1.4,($7425.00),-15.15%
#1#=12#2#=46#3#=14,$75300.00,46.72%,1980,$278.03,($172.39),$38.03,1.6,1.4,($7550.00),-15.31%
#1#=12#2#=46#3#=15,$78662.50,47.10%,1983,$276.41,($171.12),$39.67,1.6,1.4,($7150.00),-13.28%
#1#=12#2#=50#3#=2,$61237.50,47.00%,1864,$274.09,($181.03),$32.85,1.5,1.3,($6562.50),-14.00%
#1#=12#2#=50#3#=3,$68587.50,46.88%,1888,$279.17,($177.94),$36.33,1.6,1.4,($6275.00),-14.00%
#1#=12#2#=50#3#=4,$73675.00,46.66%,1903,$283.35,($175.31),$38.72,1.6,1.4,($5725.00),-17.81%
#1#=12#2#=50#3#=5,$75812.50,46.98%,1922,$284.27,($177.51),$39.44,1.6,1.4,($8037.50),-16.24%
#1#=12#2#=50#3#=6,$74100.00,47.05%,1930,$282.83,($178.78),$38.39,1.6,1.4,($8012.50),-17.99%
#1#=12#2#=50#3#=7,$76537.50,46.49%,1938,$288.64,($176.98),$39.49,1.6,1.4,($8012.50),-16.55%
#1#=12#2#=50#3#=8,$72675.00,45.97%,1934,$289.93,($177.11),$37.58,1.6,1.4,($6862.50),-16.13%
#1#=12#2#=50#3#=9,$70512.50,46.00%,1939,$287.14,($177.28),$36.37,1.6,1.4,($6862.50),-15.19%
#1#=12#2#=50#3#=10,$68337.50,46.13%,1936,$283.78,($177.44),$35.30,1.6,1.4,($7312.50),-15.54%
#1#=12#2#=50#3#=11,$68562.50,45.77%,1938,$285.88,($176.03),$35.38,1.6,1.4,($8087.50),-16.18%
#1#=12#2#=50#3#=12,$68812.50,45.94%,1935,$284.62,($176.11),$35.56,1.6,1.4,($8000.00),-16.00%
#1#=12#2#=50#3#=13,$71287.50,46.25%,1935,$284.85,($176.59),$36.84,1.6,1.4,($7850.00),-14.87%
#1#=12#2#=50#3#=14,$67875.00,46.09%,1933,$283.70,($177.45),$35.11,1.6,1.4,($7675.00),-15.43%
#1#=12#2#=50#3#=15,$70650.00,46.52%,1937,$281.69,($176.79),$36.47,1.6,1.4,($7487.50),-14.77%
#1#=12#2#=54#3#=2,$62425.00,47.44%,1813,$277.15,($184.60),$34.43,1.5,1.4,($6087.50),-12.83%
#1#=12#2#=54#3#=3,$65812.50,47.32%,1828,$281.08,($184.14),$36.00,1.5,1.4,($5800.00),-13.15%
#1#=12#2#=54#3#=4,$66375.00,46.96%,1844,$283.69,($183.33),$36.00,1.5,1.4,($6037.50),-15.67%
#1#=12#2#=54#3#=5,$68712.50,46.80%,1861,$286.70,($182.83),$36.92,1.6,1.4,($7512.50),-15.89%
#1#=12#2#=54#3#=6,$69375.00,47.05%,1866,$285.56,($183.55),$37.18,1.6,1.4,($7512.50),-16.94%
#1#=12#2#=54#3#=7,$70487.50,46.64%,1876,$290.29,($183.33),$37.57,1.6,1.4,($8162.50),-17.26%
#1#=12#2#=54#3#=8,$66175.00,46.21%,1872,$291.62,($184.78),$35.35,1.6,1.4,($8162.50),-17.46%
#1#=12#2#=54#3#=9,$63512.50,46.33%,1878,$288.86,($186.31),$33.82,1.6,1.3,($8387.50),-19.10%
#1#=12#2#=54#3#=10,$61837.50,46.48%,1874,$285.51,($186.28),$33.00,1.5,1.3,($7912.50),-17.93%
#1#=12#2#=54#3#=11,$61350.00,46.12%,1880,$287.43,($185.44),$32.63,1.5,1.3,($7587.50),-17.06%
#1#=12#2#=54#3#=12,$61887.50,46.06%,1876,$287.56,($184.35),$32.99,1.6,1.3,($7587.50),-16.86%
#1#=12#2#=54#3#=13,$63587.50,46.43%,1878,$287.14,($185.69),$33.86,1.5,1.3,($7412.50),-15.75%
#1#=12#2#=54#3#=14,$60900.00,46.05%,1872,$288.11,($185.59),$32.53,1.6,1.3,($7412.50),-16.51%
#1#=12#2#=54#3#=15,$61350.00,46.13%,1875,$287.57,($185.54),$32.72,1.5,1.3,($7587.50),-17.13%
#1#=12#2#=58#3#=2,$62300.00,47.50%,1783,$280.39,($187.17),$34.94,1.5,1.4,($5687.50),-13.36%
#1#=12#2#=58#3#=3,$66212.50,47.28%,1800,$284.17,($185.05),$36.78,1.5,1.4,($5687.50),-12.83%
#1#=12#2#=58#3#=4,$63600.00,47.27%,1813,$283.52,($187.63),$35.08,1.5,1.4,($5887.50),-12.88%
#1#=12#2#=58#3#=5,$64250.00,47.02%,1831,$286.57,($188.13),$35.09,1.5,1.4,($7462.50),-14.62%
#1#=12#2#=58#3#=6,$66562.50,47.19%,1835,$286.03,($186.93),$36.27,1.5,1.4,($7162.50),-14.79%
#1#=12#2#=58#3#=7,$65537.50,46.63%,1842,$290.25,($186.97),$35.58,1.6,1.4,($8162.50),-16.62%
#1#=12#2#=58#3#=8,$61762.50,46.46%,1838,$290.12,($189.02),$33.60,1.5,1.3,($8162.50),-16.86%
#1#=12#2#=58#3#=9,$59525.00,46.63%,1842,$288.01,($191.12),$32.32,1.5,1.3,($8387.50),-18.14%
#1#=12#2#=58#3#=10,$58837.50,46.97%,1833,$283.90,($190.95),$32.10,1.5,1.3,($7850.00),-16.30%
#1#=12#2#=58#3#=11,$58462.50,46.52%,1838,$286.55,($189.76),$31.81,1.5,1.3,($8925.00),-17.86%
#1#=12#2#=58#3#=12,$58150.00,46.43%,1833,$286.46,($189.03),$31.72,1.5,1.3,($8787.50),-17.17%
#1#=12#2#=58#3#=13,$58712.50,46.60%,1837,$286.16,($189.84),$31.96,1.5,1.3,($8437.50),-16.22%
#1#=12#2#=58#3#=14,$57712.50,46.26%,1831,$287.99,($189.24),$31.52,1.5,1.3,($8450.00),-16.85%
#1#=12#2#=58#3#=15,$60300.00,46.68%,1836,$286.32,($189.04),$32.84,1.5,1.3,($8162.50),-16.35%
#1#=14#2#=18#3#=2,$39912.50,46.97%,3057,$192.79,($146.17),$13.06,1.3,1.2,($8200.00),-33.47%
#1#=14#2#=18#3#=3,$41287.50,46.51%,3094,$196.25,($145.69),$13.34,1.3,1.2,($7225.00),-28.78%
#1#=14#2#=18#3#=4,$45350.00,45.86%,3142,$200.65,($143.32),$14.43,1.4,1.2,($8362.50),-33.15%
#1#=14#2#=18#3#=5,$52912.50,45.08%,3194,$205.07,($138.19),$16.57,1.5,1.2,($7950.00),-32.37%
#1#=14#2#=18#3#=6,$53125.00,44.69%,3200,$208.01,($138.04),$16.60,1.5,1.2,($8925.00),-36.13%
#1#=14#2#=18#3#=7,$60212.50,44.90%,3238,$207.47,($135.34),$18.60,1.5,1.2,($8162.50),-33.05%
#1#=14#2#=18#3#=8,$58700.00,44.67%,3210,$208.34,($135.17),$18.29,1.5,1.2,($8725.00),-35.23%
#1#=14#2#=18#3#=9,$56037.50,44.46%,3221,$208.91,($135.90),$17.40,1.5,1.2,($8062.50),-33.49%
#1#=14#2#=18#3#=10,$56362.50,44.87%,3198,$207.38,($136.83),$17.62,1.5,1.2,($7937.50),-34.03%
#1#=14#2#=18#3#=11,$52937.50,44.49%,3192,$207.78,($136.63),$16.58,1.5,1.2,($8000.00),-33.53%
#1#=14#2#=18#3#=12,$55687.50,44.40%,3185,$209.16,($135.55),$17.48,1.5,1.2,($8062.50),-34.00%
#1#=14#2#=18#3#=13,$58075.00,44.48%,3204,$209.94,($135.52),$18.13,1.5,1.2,($7375.00),-31.48%
#1#=14#2#=18#3#=14,$52262.50,44.28%,3202,$207.78,($135.85),$16.32,1.5,1.2,($7312.50),-31.47%
#1#=14#2#=18#3#=15,$52900.00,44.06%,3207,$207.79,($134.18),$16.50,1.5,1.2,($6675.00),-29.62%
#1#=14#2#=22#3#=2,$51475.00,46.86%,2706,$213.71,($152.65),$19.02,1.4,1.2,($7100.00),-28.01%
#1#=14#2#=22#3#=3,$54350.00,46.89%,2747,$215.40,($152.90),$19.79,1.4,1.2,($6875.00),-27.17%
#1#=14#2#=22#3#=4,$64300.00,46.65%,2763,$222.61,($151.05),$23.27,1.5,1.3,($7237.50),-28.44%
#1#=14#2#=22#3#=5,$71437.50,46.76%,2791,$224.98,($149.50),$25.60,1.5,1.3,($6650.00),-26.83%
#1#=14#2#=22#3#=6,$72675.00,46.61%,2806,$224.37,($147.40),$25.90,1.5,1.3,($8112.50),-32.40%
#1#=14#2#=22#3#=7,$77112.50,46.83%,2819,$225.13,($146.81),$27.35,1.5,1.4,($6975.00),-27.78%
#1#=14#2#=22#3#=8,$70237.50,46.23%,2814,$225.59,($147.55),$24.96,1.5,1.3,($7700.00),-30.59%
#1#=14#2#=22#3#=9,$70437.50,46.17%,2822,$225.78,($147.30),$24.96,1.5,1.3,($7187.50),-28.79%
#1#=14#2#=22#3#=10,$70475.00,46.27%,2814,$225.09,($147.21),$25.04,1.5,1.3,($7287.50),-29.90%
#1#=14#2#=22#3#=11,$64287.50,45.74%,2814,$225.54,($147.99),$22.85,1.5,1.3,($7500.00),-29.96%
#1#=14#2#=22#3#=12,$65600.00,45.71%,2807,$226.64,($147.75),$23.37,1.5,1.3,($7612.50),-30.59%
#1#=14#2#=22#3#=13,$65912.50,45.66%,2812,$227.18,($147.77),$23.44,1.5,1.3,($6975.00),-28.32%
#1#=14#2#=22#3#=14,$63162.50,45.44%,2808,$226.33,($147.28),$22.49,1.5,1.3,($6787.50),-27.58%
#1#=14#2#=22#3#=15,$65500.00,45.53%,2809,$226.34,($146.40),$23.32,1.5,1.3,($6300.00),-25.83%
#1#=14#2#=26#3#=2,$65887.50,48.30%,2497,$225.22,($159.35),$26.39,1.4,1.3,($4800.00),-18.39%
#1#=14#2#=26#3#=3,$65550.00,47.52%,2536,$228.37,($157.50),$25.85,1.4,1.3,($5600.00),-22.22%
#1#=14#2#=26#3#=4,$69650.00,47.00%,2551,$233.84,($155.86),$27.30,1.5,1.3,($6600.00),-26.29%
#1#=14#2#=26#3#=5,$77400.00,47.45%,2573,$234.45,($154.48),$30.08,1.5,1.4,($6237.50),-25.52%
#1#=14#2#=26#3#=6,$77212.50,46.80%,2581,$237.26,($152.51),$29.92,1.6,1.4,($7675.00),-31.44%
#1#=14#2#=26#3#=7,$80250.00,46.62%,2589,$240.57,($152.04),$31.00,1.6,1.4,($6712.50),-27.50%
#1#=14#2#=26#3#=8,$72162.50,46.17%,2575,$240.90,($154.59),$28.02,1.6,1.3,($7462.50),-30.49%
#1#=14#2#=26#3#=9,$75037.50,46.37%,2579,$240.25,($153.51),$29.10,1.6,1.4,($6300.00),-25.89%
#1#=14#2#=26#3#=10,$76500.00,46.54%,2570,$240.09,($153.31),$29.77,1.6,1.4,($6425.00),-26.31%
#1#=14#2#=26#3#=11,$70437.50,46.08%,2574,$240.07,($154.39),$27.36,1.6,1.3,($6387.50),-25.95%
#1#=14#2#=26#3#=12,$69925.00,45.97%,2569,$240.38,($154.15),$27.22,1.6,1.3,($6275.00),-25.65%
#1#=14#2#=26#3#=13,$68237.50,45.60%,2568,$241.20,($153.34),$26.57,1.6,1.3,($5587.50),-22.55%
#1#=14#2#=26#3#=14,$64725.00,45.38%,2563,$240.48,($153.54),$25.25,1.6,1.3,($5950.00),-24.20%
#1#=14#2#=26#3#=15,$70350.00,45.70%,2560,$240.74,($152.02),$27.48,1.6,1.3,($5187.50),-21.27%
#1#=14#2#=30#3#=2,$65775.00,48.26%,2321,$235.18,($164.55),$28.34,1.4,1.3,($6900.00),-14.28%
#1#=14#2#=30#3#=3,$69512.50,47.67%,2343,$241.47,($163.31),$29.67,1.5,1.3,($6462.50),-16.57%
#1#=14#2#=30#3#=4,$75275.00,47.27%,2361,$246.84,($160.80),$31.88,1.5,1.4,($7037.50),-23.21%
#1#=14#2#=30#3#=5,$80525.00,48.19%,2376,$244.68,($162.18),$33.89,1.5,1.4,($6950.00),-20.59%
#1#=14#2#=30#3#=6,$79125.00,47.21%,2381,$248.65,($159.40),$33.23,1.6,1.4,($7175.00),-23.80%
#1#=14#2#=30#3#=7,$83287.50,47.24%,2390,$250.99,($158.66),$34.85,1.6,1.4,($6512.50),-20.81%
#1#=14#2#=30#3#=8,$81000.00,47.34%,2385,$250.28,($160.48),$33.96,1.6,1.4,($6150.00),-21.43%
#1#=14#2#=30#3#=9,$80137.50,47.15%,2386,$251.57,($160.88),$33.59,1.6,1.4,($6500.00),-18.85%
#1#=14#2#=30#3#=10,$77575.00,47.08%,2379,$249.77,($160.57),$32.61,1.6,1.4,($7462.50),-17.46%
#1#=14#2#=30#3#=11,$77587.50,46.62%,2379,$252.14,($159.08),$32.61,1.6,1.4,($7525.00),-16.42%
#1#=14#2#=30#3#=12,$76950.00,46.46%,2370,$252.86,($158.75),$32.47,1.6,1.4,($6975.00),-16.52%
#1#=14#2#=30#3#=13,$72237.50,46.10%,2371,$252.23,($159.19),$30.47,1.6,1.4,($7225.00),-16.67%
#1#=14#2#=30#3#=14,$69525.00,45.60%,2366,$253.73,($158.70),$29.39,1.6,1.3,($7512.50),-17.13%
#1#=14#2#=30#3#=15,$74175.00,45.95%,2368,$254.17,($158.10),$31.32,1.6,1.4,($6437.50),-16.19%
#1#=14#2#=34#3#=2,$66662.50,47.40%,2177,$247.95,($165.26),$30.62,1.5,1.4,($4562.50),-13.08%
#1#=14#2#=34#3#=3,$70750.00,47.27%,2198,$252.94,($165.70),$32.19,1.5,1.4,($4912.50),-13.73%
#1#=14#2#=34#3#=4,$73462.50,46.84%,2212,$257.40,($164.29),$33.21,1.6,1.4,($5275.00),-19.61%
#1#=14#2#=34#3#=5,$78487.50,47.30%,2237,$256.55,($163.65),$35.09,1.6,1.4,($6762.50),-15.10%
#1#=14#2#=34#3#=6,$77600.00,46.94%,2241,$257.63,($162.68),$34.63,1.6,1.4,($6975.00),-20.77%
#1#=14#2#=34#3#=7,$82175.00,46.64%,2245,$263.09,($161.33),$36.60,1.6,1.4,($6950.00),-17.00%
#1#=14#2#=34#3#=8,$74687.50,46.72%,2243,$260.14,($165.64),$33.30,1.6,1.4,($7175.00),-20.72%
#1#=14#2#=34#3#=9,$72550.00,46.51%,2249,$260.21,($165.94),$32.26,1.6,1.4,($7525.00),-16.97%
#1#=14#2#=34#3#=10,$73450.00,46.65%,2242,$258.84,($164.97),$32.76,1.6,1.4,($6625.00),-15.47%
#1#=14#2#=34#3#=11,$70937.50,46.33%,2234,$260.39,($165.61),$31.75,1.6,1.4,($6362.50),-15.61%
#1#=14#2#=34#3#=12,$69912.50,46.18%,2226,$260.66,($165.32),$31.41,1.6,1.4,($6262.50),-15.61%
#1#=14#2#=34#3#=13,$69812.50,46.19%,2230,$260.04,($165.02),$31.31,1.6,1.4,($6500.00),-14.81%
#1#=14#2#=34#3#=14,$69062.50,45.67%,2227,$262.25,($163.35),$31.01,1.6,1.3,($6612.50),-14.88%
#1#=14#2#=34#3#=15,$69925.00,45.71%,2227,$262.13,($162.88),$31.40,1.6,1.4,($6412.50),-14.73%
#1#=14#2#=38#3#=2,$66012.50,47.24%,2045,$260.70,($172.22),$32.28,1.5,1.4,($4887.50),-13.01%
#1#=14#2#=38#3#=3,$71075.00,47.46%,2069,$263.23,($172.41),$34.35,1.5,1.4,($4837.50),-13.59%
#1#=14#2#=38#3#=4,$72750.00,46.95%,2079,$268.26,($171.42),$34.99,1.6,1.4,($5062.50),-17.96%
#1#=14#2#=38#3#=5,$77012.50,47.15%,2102,$267.77,($169.53),$36.64,1.6,1.4,($6587.50),-14.89%
#1#=14#2#=38#3#=6,$77650.00,46.82%,2108,$268.63,($167.25),$36.84,1.6,1.4,($7262.50),-15.52%
#1#=14#2#=38#3#=7,$80837.50,46.80%,2111,$272.46,($167.72),$38.29,1.6,1.4,($7312.50),-14.54%
#1#=14#2#=38#3#=8,$74337.50,46.73%,2112,$269.96,($170.77),$35.20,1.6,1.4,($7287.50),-16.86%
#1#=14#2#=38#3#=9,$74987.50,46.84%,2120,$268.35,($169.91),$35.37,1.6,1.4,($7162.50),-14.62%
#1#=14#2#=38#3#=10,$73025.00,46.85%,2113,$265.86,($169.35),$34.56,1.6,1.4,($7262.50),-14.50%
#1#=14#2#=38#3#=11,$72925.00,46.80%,2109,$267.46,($170.29),$34.58,1.6,1.4,($8287.50),-16.20%
#1#=14#2#=38#3#=12,$72150.00,46.56%,2105,$268.20,($169.50),$34.28,1.6,1.4,($7862.50),-15.41%
#1#=14#2#=38#3#=13,$73837.50,46.42%,2107,$270.03,($168.51),$35.04,1.6,1.4,($8412.50),-15.67%
#1#=14#2#=38#3#=14,$71050.00,45.89%,2103,$271.41,($167.72),$33.79,1.6,1.4,($8475.00),-16.58%
#1#=14#2#=38#3#=15,$72037.50,45.89%,2107,$271.94,($167.48),$34.19,1.6,1.4,($7950.00),-15.49%
#1#=14#2#=42#3#=2,$65362.50,47.21%,1974,$265.18,($174.46),$33.11,1.5,1.4,($6200.00),-16.49%
#1#=14#2#=42#3#=3,$72262.50,47.32%,1999,$268.92,($172.97),$36.15,1.6,1.4,($6800.00),-18.59%
#1#=14#2#=42#3#=4,$72737.50,46.98%,2005,$273.16,($173.64),$36.28,1.6,1.4,($7000.00),-25.79%
#1#=14#2#=42#3#=5,$76300.00,47.18%,2024,$274.32,($173.69),$37.70,1.6,1.4,($6562.50),-22.18%
#1#=14#2#=42#3#=6,$76062.50,47.02%,2029,$274.21,($172.59),$37.49,1.6,1.4,($6925.00),-22.85%
#1#=14#2#=42#3#=7,$78462.50,46.83%,2033,$277.95,($172.20),$38.59,1.6,1.4,($6437.50),-19.78%
#1#=14#2#=42#3#=8,$71937.50,46.58%,2031,$276.56,($174.83),$35.42,1.6,1.4,($7562.50),-23.52%
#1#=14#2#=42#3#=9,$69975.00,46.69%,2039,$273.98,($175.57),$34.32,1.6,1.4,($8137.50),-22.76%
#1#=14#2#=42#3#=10,$67762.50,46.82%,2031,$271.29,($176.15),$33.36,1.5,1.4,($9187.50),-21.36%
#1#=14#2#=42#3#=11,$68750.00,46.90%,2030,$271.81,($176.26),$33.87,1.5,1.4,($9900.00),-20.96%
#1#=14#2#=42#3#=12,$70500.00,46.69%,2024,$273.62,($174.30),$34.83,1.6,1.4,($9275.00),-20.37%
#1#=14#2#=42#3#=13,$71750.00,46.87%,2027,$274.12,($175.17),$35.40,1.6,1.4,($9550.00),-19.60%
#1#=14#2#=42#3#=14,$68950.00,46.47%,2025,$274.16,($174.39),$34.05,1.6,1.4,($9562.50),-21.61%
#1#=14#2#=42#3#=15,$67850.00,46.47%,2027,$274.06,($175.40),$33.47,1.6,1.4,($8400.00),-20.08%
#1#=14#2#=46#3#=2,$61937.50,47.69%,1860,$270.59,($183.02),$33.30,1.5,1.3,($6125.00),-13.62%
#1#=14#2#=46#3#=3,$71012.50,47.27%,1883,$279.20,($178.73),$37.71,1.6,1.4,($5937.50),-14.11%
#1#=14#2#=46#3#=4,$73950.00,47.34%,1895,$282.07,($179.42),$39.02,1.6,1.4,($5000.00),-16.26%
#1#=14#2#=46#3#=5,$77700.00,47.81%,1914,$282.23,($180.72),$40.60,1.6,1.4,($6437.50),-14.41%
#1#=14#2#=46#3#=6,$75662.50,47.35%,1922,$282.60,($179.35),$39.37,1.6,1.4,($6437.50),-16.97%
#1#=14#2#=46#3#=7,$79250.00,47.25%,1930,$285.53,($177.95),$41.06,1.6,1.4,($6437.50),-14.87%
#1#=14#2#=46#3#=8,$75100.00,46.79%,1930,$286.52,($178.80),$38.91,1.6,1.4,($6437.50),-15.12%
#1#=14#2#=46#3#=9,$74162.50,46.66%,1931,$286.79,($178.87),$38.41,1.6,1.4,($6487.50),-14.49%
#1#=14#2#=46#3#=10,$70725.00,47.14%,1920,$281.33,($181.16),$36.84,1.6,1.4,($7312.50),-13.66%
#1#=14#2#=46#3#=11,$70812.50,46.85%,1921,$283.46,($180.51),$36.86,1.6,1.4,($8137.50),-14.84%
#1#=14#2#=46#3#=12,$70125.00,46.53%,1917,$284.87,($179.49),$36.58,1.6,1.4,($7725.00),-14.01%
#1#=14#2#=46#3#=13,$72262.50,46.90%,1917,$284.58,($180.33),$37.70,1.6,1.4,($7825.00),-13.65%
#1#=14#2#=46#3#=14,$69825.00,46.68%,1913,$284.46,($180.59),$36.50,1.6,1.4,($7975.00),-14.44%
#1#=14#2#=46#3#=15,$71712.50,46.90%,1919,$283.99,($180.45),$37.37,1.6,1.4,($7287.50),-13.27%
#1#=14#2#=50#3#=2,$65712.50,47.59%,1826,$276.55,($182.46),$35.99,1.5,1.4,($6450.00),-12.77%
#1#=14#2#=50#3#=3,$72337.50,47.12%,1842,$284.27,($179.07),$39.27,1.6,1.4,($6175.00),-13.23%
#1#=14#2#=50#3#=4,$74537.50,47.22%,1855,$286.16,($179.92),$40.18,1.6,1.4,($5650.00),-16.07%
#1#=14#2#=50#3#=5,$76300.00,47.68%,1873,$285.83,($182.60),$40.74,1.6,1.4,($8037.50),-16.05%
#1#=14#2#=50#3#=6,$75412.50,47.61%,1882,$284.58,($182.12),$40.07,1.6,1.4,($8037.50),-16.81%
#1#=14#2#=50#3#=7,$76825.00,47.29%,1884,$288.66,($181.65),$40.78,1.6,1.4,($8037.50),-16.28%
#1#=14#2#=50#3#=8,$74950.00,47.18%,1878,$288.29,($181.93),$39.91,1.6,1.4,($6887.50),-14.84%
#1#=14#2#=50#3#=9,$71812.50,47.20%,1877,$286.81,($183.96),$38.26,1.6,1.4,($6887.50),-15.29%
#1#=14#2#=50#3#=10,$69400.00,47.33%,1870,$283.45,($184.21),$37.11,1.5,1.4,($7062.50),-15.68%
#1#=14#2#=50#3#=11,$68650.00,46.88%,1873,$285.86,($183.25),$36.65,1.6,1.4,($7662.50),-15.37%
#1#=14#2#=50#3#=12,$68325.00,46.79%,1868,$286.18,($182.90),$36.58,1.6,1.4,($7400.00),-14.68%
#1#=14#2#=50#3#=13,$70375.00,47.22%,1870,$285.48,($184.09),$37.63,1.6,1.4,($7600.00),-14.60%
#1#=14#2#=50#3#=14,$66562.50,46.97%,1867,$284.69,($184.96),$35.65,1.5,1.4,($7650.00),-15.32%
#1#=14#2#=50#3#=15,$68275.00,47.11%,1870,$284.65,($184.53),$36.51,1.5,1.4,($7587.50),-15.31%
#1#=14#2#=54#3#=2,$60962.50,47.25%,1765,$283.90,($188.84),$34.54,1.5,1.3,($5987.50),-13.33%
#1#=14#2#=54#3#=3,$65637.50,47.23%,1789,$286.67,($187.08),$36.69,1.5,1.4,($6200.00),-12.92%
#1#=14#2#=54#3#=4,$64925.00,47.25%,1803,$287.43,($189.24),$36.01,1.5,1.4,($6562.50),-14.93%
#1#=14#2#=54#3#=5,$65450.00,46.84%,1821,$290.74,($188.58),$35.94,1.5,1.4,($8037.50),-16.95%
#1#=14#2#=54#3#=6,$67050.00,47.23%,1823,$288.70,($188.70),$36.78,1.5,1.4,($8037.50),-17.29%
#1#=14#2#=54#3#=7,$66675.00,46.79%,1825,$293.31,($189.30),$36.53,1.5,1.4,($8037.50),-17.18%
#1#=14#2#=54#3#=8,$63425.00,46.79%,1821,$292.17,($191.43),$34.83,1.5,1.3,($8037.50),-17.45%
#1#=14#2#=54#3#=9,$61050.00,46.79%,1825,$290.63,($192.74),$33.45,1.5,1.3,($8262.50),-18.78%
#1#=14#2#=54#3#=10,$59100.00,47.00%,1819,$287.11,($193.34),$32.49,1.5,1.3,($8437.50),-19.15%
#1#=14#2#=54#3#=11,$58087.50,46.60%,1822,$289.75,($193.13),$31.88,1.5,1.3,($9512.50),-20.36%
#1#=14#2#=54#3#=12,$57800.00,46.40%,1817,$290.85,($192.39),$31.81,1.5,1.3,($9050.00),-19.09%
#1#=14#2#=54#3#=13,$61062.50,46.97%,1818,$289.26,($192.91),$33.59,1.5,1.3,($8075.00),-16.58%
#1#=14#2#=54#3#=14,$57400.00,46.55%,1813,$289.81,($193.19),$31.66,1.5,1.3,($8175.00),-17.53%
#1#=14#2#=54#3#=15,$58112.50,46.45%,1819,$290.55,($192.40),$31.95,1.5,1.3,($8512.50),-18.42%
#1#=14#2#=58#3#=2,$52550.00,46.97%,1748,$282.14,($193.19),$30.06,1.5,1.3,($6037.50),-15.21%
#1#=14#2#=58#3#=3,$57125.00,46.72%,1768,$286.08,($190.21),$32.31,1.5,1.3,($6525.00),-14.67%
#1#=14#2#=58#3#=4,$57475.00,46.91%,1780,$287.05,($192.82),$32.29,1.5,1.3,($6787.50),-14.37%
#1#=14#2#=58#3#=5,$59450.00,46.94%,1796,$288.86,($193.14),$33.10,1.5,1.3,($7700.00),-16.45%
#1#=14#2#=58#3#=6,$60150.00,47.34%,1806,$285.04,($193.02),$33.31,1.5,1.3,($7512.50),-16.92%
#1#=14#2#=58#3#=7,$58950.00,46.74%,1810,$289.38,($192.80),$32.57,1.5,1.3,($7512.50),-17.21%
#1#=14#2#=58#3#=8,$56475.00,46.89%,1802,$288.24,($195.49),$31.34,1.5,1.3,($7512.50),-16.79%
#1#=14#2#=58#3#=9,$55362.50,46.73%,1806,$287.93,($195.06),$30.65,1.5,1.3,($7737.50),-17.72%
#1#=14#2#=58#3#=10,$54075.00,47.05%,1796,$283.86,($195.36),$30.11,1.5,1.3,($8575.00),-18.41%
#1#=14#2#=58#3#=11,$52200.00,46.59%,1801,$286.44,($195.56),$28.98,1.5,1.3,($9975.00),-21.04%
#1#=14#2#=58#3#=12,$52337.50,46.63%,1797,$286.38,($195.67),$29.12,1.5,1.3,($10212.50),-21.17%
#1#=14#2#=58#3#=13,$53587.50,46.80%,1797,$286.21,($195.72),$29.82,1.5,1.3,($9187.50),-18.88%
#1#=14#2#=58#3#=14,$50762.50,46.51%,1793,$285.87,($195.67),$28.31,1.5,1.3,($9300.00),-19.78%
#1#=14#2#=58#3#=15,$51912.50,46.41%,1799,$286.71,($194.49),$28.86,1.5,1.3,($9537.50),-20.59%
#1#=16#2#=18#3#=2,$43337.50,47.32%,2971,$194.79,($147.31),$14.59,1.3,1.2,($7587.50),-30.02%
#1#=16#2#=18#3#=3,$46337.50,47.20%,3013,$196.90,($146.86),$15.38,1.3,1.2,($7012.50),-27.21%
#1#=16#2#=18#3#=4,$51475.00,45.90%,3063,$204.73,($142.65),$16.81,1.4,1.2,($7562.50),-29.31%
#1#=16#2#=18#3#=5,$55500.00,45.46%,3119,$206.46,($139.48),$17.79,1.5,1.2,($8475.00),-33.71%
#1#=16#2#=18#3#=6,$57587.50,45.61%,3133,$206.53,($139.41),$18.38,1.5,1.2,($9862.50),-40.13%
#1#=16#2#=18#3#=7,$61825.00,45.57%,3162,$207.43,($137.75),$19.55,1.5,1.3,($8825.00),-35.91%
#1#=16#2#=18#3#=8,$60387.50,45.56%,3143,$207.24,($138.15),$19.21,1.5,1.3,($9375.00),-38.05%
#1#=16#2#=18#3#=9,$56775.00,45.28%,3147,$207.58,($138.81),$18.04,1.5,1.2,($8950.00),-36.53%
#1#=16#2#=18#3#=10,$57000.00,45.67%,3131,$205.70,($139.42),$18.21,1.5,1.2,($8837.50),-37.02%
#1#=16#2#=18#3#=11,$49887.50,45.14%,3128,$205.19,($139.77),$15.95,1.5,1.2,($8900.00),-36.09%
#1#=16#2#=18#3#=12,$53050.00,45.32%,3096,$206.91,($140.14),$17.14,1.5,1.2,($7787.50),-31.77%
#1#=16#2#=18#3#=13,$55012.50,44.86%,3105,$210.99,($139.54),$17.72,1.5,1.2,($7125.00),-29.08%
#1#=16#2#=18#3#=14,$51100.00,44.53%,3090,$210.77,($139.40),$16.54,1.5,1.2,($6975.00),-28.69%
#1#=16#2#=18#3#=15,$50487.50,44.02%,3092,$211.96,($137.49),$16.33,1.5,1.2,($7125.00),-26.73%
#1#=16#2#=22#3#=2,$52762.50,46.70%,2679,$215.41,($151.76),$19.69,1.4,1.2,($7875.00),-31.16%
#1#=16#2#=22#3#=3,$57825.00,46.78%,2730,$216.86,($150.79),$21.18,1.4,1.3,($7925.00),-31.42%
#1#=16#2#=22#3#=4,$63812.50,46.20%,2751,$223.71,($149.00),$23.20,1.5,1.3,($8750.00),-34.48%
#1#=16#2#=22#3#=5,$67112.50,45.99%,2781,$225.51,($147.35),$24.13,1.5,1.3,($9437.50),-38.19%
#1#=16#2#=22#3#=6,$66775.00,45.71%,2794,$225.25,($145.60),$23.90,1.5,1.3,($9850.00),-39.46%
#1#=16#2#=22#3#=7,$70537.50,45.80%,2819,$226.07,($144.84),$25.02,1.6,1.3,($8950.00),-35.75%
#1#=16#2#=22#3#=8,$67800.00,45.32%,2811,$227.55,($144.50),$24.12,1.6,1.3,($9600.00),-38.25%
#1#=16#2#=22#3#=9,$70662.50,45.19%,2817,$228.20,($142.38),$25.08,1.6,1.3,($8575.00),-34.46%
#1#=16#2#=22#3#=10,$72612.50,45.42%,2792,$229.03,($142.91),$26.01,1.6,1.3,($8550.00),-35.70%
#1#=16#2#=22#3#=11,$68050.00,45.38%,2790,$228.03,($144.78),$24.39,1.6,1.3,($8937.50),-35.95%
#1#=16#2#=22#3#=12,$68750.00,45.32%,2776,$229.77,($145.13),$24.77,1.6,1.3,($8350.00),-33.79%
#1#=16#2#=22#3#=13,$66912.50,45.06%,2772,$230.58,($145.17),$24.14,1.6,1.3,($7875.00),-32.21%
#1#=16#2#=22#3#=14,$62375.00,44.69%,2770,$229.71,($144.91),$22.52,1.6,1.3,($7612.50),-31.15%
#1#=16#2#=22#3#=15,$63925.00,44.77%,2761,$230.03,($144.52),$23.15,1.6,1.3,($7262.50),-29.99%
#1#=16#2#=26#3#=2,$64475.00,48.12%,2448,$227.78,($160.51),$26.34,1.4,1.3,($6112.50),-15.46%
#1#=16#2#=26#3#=3,$69500.00,47.61%,2491,$231.28,($156.93),$27.90,1.5,1.3,($5900.00),-19.02%
#1#=16#2#=26#3#=4,$73812.50,47.23%,2505,$235.89,($155.26),$29.47,1.5,1.4,($6150.00),-22.30%
#1#=16#2#=26#3#=5,$75837.50,47.69%,2529,$233.94,($155.93),$29.99,1.5,1.4,($6662.50),-20.37%
#1#=16#2#=26#3#=6,$76175.00,47.32%,2538,$234.98,($154.10),$30.01,1.5,1.4,($7062.50),-23.30%
#1#=16#2#=26#3#=7,$79862.50,46.99%,2545,$239.76,($153.36),$31.38,1.6,1.4,($6037.50),-21.17%
#1#=16#2#=26#3#=8,$76050.00,46.45%,2538,$242.00,($153.98),$29.96,1.6,1.4,($5725.00),-22.18%
#1#=16#2#=26#3#=9,$76262.50,46.60%,2541,$241.70,($154.69),$30.01,1.6,1.4,($5512.50),-17.29%
#1#=16#2#=26#3#=10,$74500.00,46.46%,2531,$241.22,($154.37),$29.44,1.6,1.4,($6012.50),-16.56%
#1#=16#2#=26#3#=11,$73200.00,46.35%,2531,$240.63,($153.95),$28.92,1.6,1.4,($5987.50),-16.16%
#1#=16#2#=26#3#=12,$73487.50,46.16%,2528,$241.78,($153.32),$29.07,1.6,1.4,($5662.50),-16.89%
#1#=16#2#=26#3#=13,$70850.00,45.89%,2528,$242.04,($153.44),$28.03,1.6,1.3,($6387.50),-16.56%
#1#=16#2#=26#3#=14,$67737.50,45.48%,2522,$242.57,($153.08),$26.86,1.6,1.3,($6500.00),-16.60%
#1#=16#2#=26#3#=15,$72937.50,45.84%,2511,$243.45,($152.41),$29.05,1.6,1.4,($5362.50),-15.56%
#1#=16#2#=30#3#=2,$63675.00,47.16%,2292,$242.14,($163.56),$27.78,1.5,1.3,($7887.50),-14.38%
#1#=16#2#=30#3#=3,$72087.50,47.32%,2314,$246.89,($162.64),$31.15,1.5,1.4,($7475.00),-13.97%
#1#=16#2#=30#3#=4,$73125.00,46.81%,2333,$249.91,($160.98),$31.34,1.6,1.4,($7200.00),-23.65%
#1#=16#2#=30#3#=5,$74800.00,47.23%,2346,$248.77,($162.23),$31.88,1.5,1.4,($7800.00),-20.46%
#1#=16#2#=30#3#=6,$74837.50,46.85%,2350,$250.18,($160.62),$31.85,1.6,1.4,($8500.00),-22.49%
#1#=16#2#=30#3#=7,$80262.50,47.03%,2360,$252.73,($160.21),$34.01,1.6,1.4,($7800.00),-19.63%
#1#=16#2#=30#3#=8,$71812.50,46.50%,2355,$252.32,($162.28),$30.49,1.6,1.4,($7987.50),-24.05%
#1#=16#2#=30#3#=9,$72012.50,46.67%,2357,$251.95,($163.20),$30.55,1.5,1.4,($9025.00),-20.99%
#1#=16#2#=30#3#=10,$69212.50,46.44%,2347,$251.24,($162.80),$29.49,1.5,1.3,($10062.50),-20.08%
#1#=16#2#=30#3#=11,$67700.00,46.30%,2350,$251.22,($162.94),$28.81,1.5,1.3,($10550.00),-20.25%
#1#=16#2#=30#3#=12,$67887.50,46.20%,2340,$251.83,($162.30),$29.01,1.6,1.3,($10012.50),-18.72%
#1#=16#2#=30#3#=13,$69550.00,46.31%,2345,$251.46,($161.67),$29.66,1.6,1.3,($9437.50),-18.07%
#1#=16#2#=30#3#=14,$67987.50,46.03%,2340,$251.92,($160.99),$29.05,1.6,1.3,($9662.50),-18.54%
#1#=16#2#=30#3#=15,$70562.50,46.19%,2334,$252.81,($160.80),$30.23,1.6,1.3,($7912.50),-16.36%
#1#=16#2#=34#3#=2,$63575.00,47.19%,2138,$253.21,($169.98),$29.74,1.5,1.3,($6362.50),-12.63%
#1#=16#2#=34#3#=3,$68575.00,47.31%,2158,$256.50,($170.02),$31.78,1.5,1.4,($6300.00),-15.06%
#1#=16#2#=34#3#=4,$70737.50,47.17%,2173,$259.41,($170.00),$32.55,1.5,1.4,($5825.00),-19.36%
#1#=16#2#=34#3#=5,$73312.50,47.28%,2189,$259.95,($169.62),$33.49,1.5,1.4,($7975.00),-16.58%
#1#=16#2#=34#3#=6,$73987.50,46.92%,2191,$261.82,($167.81),$33.77,1.6,1.4,($8025.00),-18.61%
#1#=16#2#=34#3#=7,$77187.50,46.55%,2204,$266.40,($166.50),$35.02,1.6,1.4,($7675.00),-17.17%
#1#=16#2#=34#3#=8,$70600.00,46.38%,2197,$265.47,($169.71),$32.13,1.6,1.4,($7775.00),-21.42%
#1#=16#2#=34#3#=9,$72000.00,46.80%,2205,$262.84,($169.86),$32.65,1.5,1.4,($7850.00),-16.44%
#1#=16#2#=34#3#=10,$71037.50,46.86%,2200,$260.39,($168.88),$32.29,1.5,1.4,($7725.00),-15.92%
#1#=16#2#=34#3#=11,$69987.50,46.91%,2200,$259.81,($169.64),$31.81,1.5,1.4,($8900.00),-18.16%
#1#=16#2#=34#3#=12,$69637.50,46.79%,2195,$260.11,($169.09),$31.73,1.5,1.4,($8637.50),-17.30%
#1#=16#2#=34#3#=13,$72750.00,47.16%,2197,$258.95,($168.41),$33.11,1.5,1.4,($8187.50),-15.94%
#1#=16#2#=34#3#=14,$70787.50,46.51%,2189,$261.70,($167.06),$32.34,1.6,1.4,($8287.50),-16.54%
#1#=16#2#=34#3#=15,$69562.50,46.41%,2189,$262.38,($167.96),$31.78,1.6,1.4,($7312.50),-15.82%
#1#=16#2#=38#3#=2,$62475.00,46.82%,2014,$265.64,($175.56),$31.02,1.5,1.3,($5562.50),-12.14%
#1#=16#2#=38#3#=3,$68625.00,47.16%,2042,$267.47,($175.12),$33.61,1.5,1.4,($6337.50),-12.61%
#1#=16#2#=38#3#=4,$72025.00,46.85%,2047,$272.31,($173.83),$35.19,1.6,1.4,($5837.50),-17.12%
#1#=16#2#=38#3#=5,$74150.00,46.81%,2068,$273.63,($173.39),$35.86,1.6,1.4,($7012.50),-14.33%
#1#=16#2#=38#3#=6,$74312.50,46.32%,2077,$274.97,($170.59),$35.78,1.6,1.4,($7562.50),-15.63%
#1#=16#2#=38#3#=7,$78287.50,46.35%,2084,$278.35,($170.48),$37.57,1.6,1.4,($7612.50),-15.82%
#1#=16#2#=38#3#=8,$72787.50,46.21%,2086,$276.69,($172.85),$34.89,1.6,1.4,($7787.50),-16.29%
#1#=16#2#=38#3#=9,$70412.50,46.51%,2094,$272.32,($173.95),$33.63,1.6,1.4,($7937.50),-16.78%
#1#=16#2#=38#3#=10,$68612.50,46.93%,2086,$267.19,($174.31),$32.89,1.5,1.4,($8950.00),-18.42%
#1#=16#2#=38#3#=11,$69137.50,46.76%,2085,$269.19,($174.17),$33.16,1.5,1.4,($9650.00),-19.47%
#1#=16#2#=38#3#=12,$70412.50,46.58%,2076,$271.03,($172.84),$33.92,1.6,1.4,($9700.00),-19.36%
#1#=16#2#=38#3#=13,$72462.50,47.04%,2081,$270.16,($174.25),$34.82,1.6,1.4,($10325.00),-19.70%
#1#=16#2#=38#3#=14,$68912.50,46.41%,2073,$271.99,($173.48),$33.24,1.6,1.4,($10325.00),-20.89%
#1#=16#2#=38#3#=15,$68287.50,46.58%,2076,$270.77,($174.53),$32.89,1.6,1.4,($9575.00),-19.68%
#1#=16#2#=42#3#=2,$58962.50,47.08%,1916,$267.59,($179.88),$30.77,1.5,1.3,($6250.00),-14.11%
#1#=16#2#=42#3#=3,$67737.50,47.17%,1942,$272.35,($177.13),$34.88,1.5,1.4,($7362.50),-16.11%
#1#=16#2#=42#3#=4,$69687.50,46.90%,1951,$276.49,($176.93),$35.72,1.6,1.4,($7125.00),-22.34%
#1#=16#2#=42#3#=5,$70937.50,46.86%,1972,$278.57,($177.92),$35.97,1.6,1.4,($7100.00),-17.90%
#1#=16#2#=42#3#=6,$68737.50,46.84%,1979,$276.55,($178.35),$34.73,1.6,1.4,($7212.50),-17.59%
#1#=16#2#=42#3#=7,$72312.50,46.75%,1987,$279.79,($177.33),$36.39,1.6,1.4,($6550.00),-16.10%
#1#=16#2#=42#3#=8,$66625.00,46.65%,1985,$278.60,($180.70),$33.56,1.5,1.3,($7812.50),-19.89%
#1#=16#2#=42#3#=9,$66062.50,46.69%,1994,$276.24,($179.79),$33.13,1.5,1.3,($7800.00),-19.29%
#1#=16#2#=42#3#=10,$63562.50,46.88%,1986,$272.58,($180.30),$32.01,1.5,1.3,($8925.00),-19.27%
#1#=16#2#=42#3#=11,$63212.50,46.63%,1988,$274.11,($179.91),$31.80,1.5,1.3,($9762.50),-21.01%
#1#=16#2#=42#3#=12,$61025.00,46.62%,1980,$273.37,($180.98),$30.82,1.5,1.3,($9400.00),-20.56%
#1#=16#2#=42#3#=13,$63175.00,47.23%,1984,$272.21,($183.27),$31.84,1.5,1.3,($9775.00),-20.01%
#1#=16#2#=42#3#=14,$60950.00,46.77%,1980,$273.07,($182.08),$30.78,1.5,1.3,($9687.50),-21.02%
#1#=16#2#=42#3#=15,$63687.50,47.25%,1979,$272.41,($182.96),$32.18,1.5,1.3,($8550.00),-18.79%
#1#=16#2#=46#3#=2,$65962.50,47.93%,1834,$274.97,($184.02),$35.97,1.5,1.4,($6475.00),-12.12%
#1#=16#2#=46#3#=3,$73812.50,47.42%,1862,$282.45,($179.35),$39.64,1.6,1.4,($6425.00),-12.80%
#1#=16#2#=46#3#=4,$78950.00,47.49%,1870,$286.37,($178.56),$42.22,1.6,1.5,($5112.50),-14.20%
#1#=16#2#=46#3#=5,$80475.00,47.83%,1888,$286.38,($180.84),$42.62,1.6,1.5,($6437.50),-12.79%
#1#=16#2#=46#3#=6,$75912.50,47.23%,1893,$285.91,($179.87),$40.10,1.6,1.4,($6437.50),-15.08%
#1#=16#2#=46#3#=7,$77050.00,47.02%,1897,$288.45,($179.35),$40.62,1.6,1.4,($6437.50),-13.29%
#1#=16#2#=46#3#=8,$74012.50,46.97%,1895,$286.74,($180.29),$39.06,1.6,1.4,($6625.00),-13.53%
#1#=16#2#=46#3#=9,$72950.00,47.18%,1895,$284.73,($181.42),$38.50,1.6,1.4,($7262.50),-14.31%
#1#=16#2#=46#3#=10,$70275.00,47.46%,1888,$280.18,($182.22),$37.22,1.5,1.4,($8212.50),-16.40%
#1#=16#2#=46#3#=11,$69025.00,47.03%,1888,$283.31,($182.55),$36.56,1.6,1.4,($9162.50),-18.06%
#1#=16#2#=46#3#=12,$67650.00,47.01%,1876,$283.73,($183.70),$36.06,1.5,1.4,($8325.00),-16.60%
#1#=16#2#=46#3#=13,$68662.50,47.47%,1879,$282.72,($185.94),$36.54,1.5,1.4,($8700.00),-16.64%
#1#=16#2#=46#3#=14,$65275.00,47.28%,1874,$281.65,($186.50),$34.83,1.5,1.4,($8525.00),-17.23%
#1#=16#2#=46#3#=15,$67725.00,47.39%,1878,$282.71,($186.12),$36.06,1.5,1.4,($7812.50),-16.06%
#1#=16#2#=50#3#=2,$57612.50,47.73%,1785,$278.96,($192.99),$32.28,1.4,1.3,($6425.00),-12.61%
#1#=16#2#=50#3#=3,$64000.00,47.67%,1804,$284.01,($190.94),$35.48,1.5,1.4,($7250.00),-14.22%
#1#=16#2#=50#3#=4,$66312.50,47.60%,1813,$286.62,($190.57),$36.58,1.5,1.4,($6287.50),-12.18%
#1#=16#2#=50#3#=5,$65962.50,47.39%,1838,$288.39,($191.55),$35.89,1.5,1.4,($8037.50),-16.34%
#1#=16#2#=50#3#=6,$66225.00,47.78%,1844,$284.90,($191.87),$35.91,1.5,1.4,($8037.50),-16.72%
#1#=16#2#=50#3#=7,$65725.00,47.21%,1849,$288.85,($191.02),$35.55,1.5,1.4,($8037.50),-17.36%
#1#=16#2#=50#3#=8,$65525.00,47.42%,1841,$286.71,($190.88),$35.59,1.5,1.4,($6887.50),-14.81%
#1#=16#2#=50#3#=9,$64825.00,47.61%,1844,$284.44,($191.42),$35.15,1.5,1.4,($6937.50),-15.45%
#1#=16#2#=50#3#=10,$61912.50,47.80%,1837,$280.71,($192.44),$33.70,1.5,1.3,($7887.50),-16.69%
#1#=16#2#=50#3#=11,$59187.50,47.15%,1839,$284.34,($192.73),$32.18,1.5,1.3,($9312.50),-19.56%
#1#=16#2#=50#3#=12,$58400.00,46.97%,1829,$286.03,($193.09),$31.93,1.5,1.3,($8850.00),-18.40%
#1#=16#2#=50#3#=13,$61187.50,47.38%,1830,$285.55,($193.55),$33.44,1.5,1.3,($8450.00),-16.95%
#1#=16#2#=50#3#=14,$58675.00,47.15%,1824,$285.45,($193.79),$32.17,1.5,1.3,($8525.00),-17.99%
#1#=16#2#=50#3#=15,$60300.00,47.32%,1826,$285.63,($193.85),$33.02,1.5,1.3,($8062.50),-17.41%
#1#=16#2#=54#3#=2,$55500.00,47.36%,1742,$284.89,($195.79),$31.86,1.5,1.3,($7087.50),-15.18%
#1#=16#2#=54#3#=3,$57862.50,47.24%,1757,$287.85,($195.31),$32.93,1.5,1.3,($8550.00),-18.07%
#1#=16#2#=54#3#=4,$59575.00,47.40%,1770,$290.05,($197.40),$33.66,1.5,1.3,($7400.00),-16.18%
#1#=16#2#=54#3#=5,$60762.50,47.03%,1786,$293.50,($196.38),$34.02,1.5,1.3,($8512.50),-18.57%
#1#=16#2#=54#3#=6,$60562.50,47.41%,1793,$289.65,($196.86),$33.78,1.5,1.3,($8512.50),-18.62%
#1#=16#2#=54#3#=7,$59862.50,46.80%,1799,$294.42,($196.49),$33.28,1.5,1.3,($8512.50),-19.20%
#1#=16#2#=54#3#=8,$59337.50,46.90%,1793,$293.12,($196.61),$33.09,1.5,1.3,($8512.50),-18.50%
#1#=16#2#=54#3#=9,$57037.50,46.91%,1797,$291.40,($197.71),$31.74,1.5,1.3,($8737.50),-19.87%
#1#=16#2#=54#3#=10,$53475.00,46.96%,1791,$287.84,($198.53),$29.86,1.4,1.3,($9762.50),-21.46%
#1#=16#2#=54#3#=11,$52187.50,46.57%,1793,$290.54,($198.76),$29.11,1.5,1.3,($11037.50),-23.39%
#1#=16#2#=54#3#=12,$52375.00,46.67%,1785,$290.50,($199.17),$29.34,1.5,1.3,($10925.00),-22.90%
#1#=16#2#=54#3#=13,$54487.50,46.75%,1786,$291.74,($198.86),$30.51,1.5,1.3,($10050.00),-20.83%
#1#=16#2#=54#3#=14,$52287.50,46.47%,1784,$291.57,($198.35),$29.31,1.5,1.3,($9987.50),-21.56%
#1#=16#2#=54#3#=15,$53812.50,46.53%,1786,$292.28,($197.98),$30.13,1.5,1.3,($9925.00),-21.78%
#1#=16#2#=58#3#=2,$50387.50,47.11%,1698,$288.67,($201.06),$29.67,1.4,1.3,($6950.00),-17.17%
#1#=16#2#=58#3#=3,$51887.50,47.09%,1718,$289.08,($200.19),$30.20,1.4,1.3,($8087.50),-17.60%
#1#=16#2#=58#3#=4,$53962.50,47.14%,1731,$292.03,($201.46),$31.17,1.4,1.3,($7212.50),-16.61%
#1#=16#2#=58#3#=5,$56925.00,47.05%,1747,$294.22,($199.92),$32.58,1.5,1.3,($8512.50),-18.68%
#1#=16#2#=58#3#=6,$57537.50,47.28%,1749,$292.05,($199.55),$32.90,1.5,1.3,($8512.50),-19.10%
#1#=16#2#=58#3#=7,$56612.50,46.76%,1758,$295.74,($199.24),$32.20,1.5,1.3,($8512.50),-19.57%
#1#=16#2#=58#3#=8,$56075.00,47.07%,1755,$292.95,($200.11),$31.95,1.5,1.3,($8512.50),-19.03%
#1#=16#2#=58#3#=9,$54925.00,47.10%,1758,$292.18,($201.08),$31.24,1.5,1.3,($8737.50),-19.81%
#1#=16#2#=58#3#=10,$52212.50,47.06%,1749,$289.69,($201.08),$29.85,1.4,1.3,($8875.00),-19.73%
#1#=16#2#=58#3#=11,$50025.00,46.69%,1750,$291.69,($201.81),$28.59,1.4,1.3,($9950.00),-20.86%
#1#=16#2#=58#3#=12,$50037.50,46.70%,1745,$291.87,($201.98),$28.67,1.4,1.3,($10187.50),-20.90%
#1#=16#2#=58#3#=13,$52550.00,46.94%,1747,$291.88,($201.50),$30.08,1.4,1.3,($9237.50),-18.76%
#1#=16#2#=58#3#=14,$49737.50,46.67%,1744,$291.31,($201.49),$28.52,1.4,1.3,($9200.00),-19.28%
#1#=16#2#=58#3#=15,$50925.00,46.88%,1745,$291.38,($202.18),$29.18,1.4,1.3,($9187.50),-19.44%
#1#=18#2#=18#3#=2,$88712.50,60.75%,8120,$103.25,($131.97),$10.93,0.8,1.2,($5412.50),-8.37%
#1#=18#2#=18#3#=3,$91012.50,60.58%,8927,$98.08,($124.87),$10.20,0.8,1.2,($5612.50),-11.61%
#1#=18#2#=18#3#=4,$95062.50,60.42%,9664,$94.66,($119.65),$9.84,0.8,1.2,($6550.00),-13.28%
#1#=18#2#=18#3#=5,$105262.50,59.82%,10682,$90.58,($110.34),$9.85,0.8,1.2,($5837.50),-13.81%
#1#=18#2#=18#3#=6,$102937.50,58.66%,10623,$93.08,($108.62),$9.69,0.9,1.2,($5000.00),-17.25%
#1#=18#2#=18#3#=7,$96387.50,58.32%,10821,$91.82,($107.11),$8.91,0.9,1.2,($4712.50),-11.49%
#1#=18#2#=18#3#=8,$83312.50,57.76%,10444,$93.24,($108.59),$7.98,0.9,1.2,($6825.00),-13.16%
#1#=18#2#=18#3#=9,$79887.50,57.62%,10328,$94.11,($109.70),$7.74,0.9,1.2,($6725.00),-14.12%
#1#=18#2#=18#3#=10,$79337.50,58.00%,9990,$95.44,($112.88),$7.94,0.8,1.2,($6862.50),-15.46%
#1#=18#2#=18#3#=11,$76500.00,57.73%,9787,$96.87,($113.81),$7.82,0.9,1.2,($6925.00),-14.73%
#1#=18#2#=18#3#=12,$66187.50,57.48%,9473,$98.02,($116.07),$6.99,0.8,1.1,($8737.50),-18.22%
#1#=18#2#=18#3#=13,$67662.50,57.50%,9229,$99.86,($117.88),$7.33,0.8,1.1,($9637.50),-19.73%
#1#=18#2#=18#3#=14,$53512.50,57.42%,8962,$100.13,($121.01),$5.97,0.8,1.1,($11800.00),-25.33%
#1#=18#2#=18#3#=15,$52375.00,57.20%,8729,$101.99,($122.28),$6.00,0.8,1.1,($12225.00),-27.43%
#1#=18#2#=22#3#=2,$56237.50,47.58%,2642,$215.13,($154.64),$21.29,1.4,1.3,($7725.00),-14.88%
#1#=18#2#=22#3#=3,$59675.00,47.20%,2697,$216.74,($151.85),$22.13,1.4,1.3,($7687.50),-20.43%
#1#=18#2#=22#3#=4,$65100.00,46.71%,2723,$221.31,($149.15),$23.91,1.5,1.3,($8475.00),-24.78%
#1#=18#2#=22#3#=5,$67912.50,46.77%,2756,$222.59,($149.28),$24.64,1.5,1.3,($9050.00),-26.71%
#1#=18#2#=22#3#=6,$67450.00,46.40%,2761,$223.70,($148.05),$24.43,1.5,1.3,($9425.00),-30.23%
#1#=18#2#=22#3#=7,$71712.50,46.40%,2791,$224.46,($146.37),$25.69,1.5,1.3,($7650.00),-28.28%
#1#=18#2#=22#3#=8,$65412.50,46.21%,2783,$223.61,($148.40),$23.50,1.5,1.3,($8037.50),-31.34%
#1#=18#2#=22#3#=9,$64475.00,45.79%,2791,$224.90,($147.36),$23.10,1.5,1.3,($7400.00),-27.78%
#1#=18#2#=22#3#=10,$63125.00,45.82%,2785,$223.95,($147.54),$22.67,1.5,1.3,($7887.50),-26.82%
#1#=18#2#=22#3#=11,$61800.00,45.81%,2779,$223.65,($148.02),$22.24,1.5,1.3,($7925.00),-25.24%
#1#=18#2#=22#3#=12,$62275.00,45.72%,2758,$225.38,($148.25),$22.58,1.5,1.3,($7287.50),-21.40%
#1#=18#2#=22#3#=13,$60625.00,45.49%,2759,$225.69,($148.01),$21.97,1.5,1.3,($7475.00),-19.18%
#1#=18#2#=22#3#=14,$55375.00,45.37%,2744,$224.13,($149.21),$20.18,1.5,1.2,($7137.50),-18.07%
#1#=18#2#=22#3#=15,$57925.00,45.67%,2724,$225.15,($150.11),$21.26,1.5,1.3,($6275.00),-18.58%
#1#=18#2#=26#3#=2,$63937.50,48.27%,2424,$228.80,($162.49),$26.38,1.4,1.3,($6700.00),-11.64%
#1#=18#2#=26#3#=3,$69287.50,47.93%,2466,$232.11,($159.71),$28.10,1.5,1.3,($6037.50),-17.47%
#1#=18#2#=26#3#=4,$74287.50,47.55%,2486,$236.59,($157.49),$29.88,1.5,1.4,($6112.50),-21.88%
#1#=18#2#=26#3#=5,$75975.00,47.94%,2503,$235.68,($158.74),$30.35,1.5,1.4,($6762.50),-24.13%
#1#=18#2#=26#3#=6,$76275.00,47.29%,2508,$238.67,($156.42),$30.41,1.5,1.4,($7650.00),-25.92%
#1#=18#2#=26#3#=7,$81537.50,47.17%,2527,$241.63,($154.67),$32.27,1.6,1.4,($6537.50),-23.97%
#1#=18#2#=26#3#=8,$70362.50,46.70%,2514,$240.30,($158.02),$27.99,1.5,1.3,($7000.00),-26.77%
#1#=18#2#=26#3#=9,$68625.00,46.56%,2515,$240.60,($158.57),$27.29,1.5,1.3,($7937.50),-25.22%
#1#=18#2#=26#3#=10,$66200.00,46.19%,2507,$240.78,($157.62),$26.41,1.5,1.3,($9275.00),-25.19%
#1#=18#2#=26#3#=11,$67437.50,46.11%,2505,$241.74,($156.87),$26.92,1.5,1.3,($9950.00),-21.08%
#1#=18#2#=26#3#=12,$68112.50,45.98%,2490,$243.43,($156.59),$27.35,1.6,1.3,($9412.50),-17.30%
#1#=18#2#=26#3#=13,$63987.50,45.71%,2485,$243.56,($157.67),$25.75,1.5,1.3,($8762.50),-16.32%
#1#=18#2#=26#3#=14,$62725.00,45.21%,2482,$245.37,($156.31),$25.27,1.6,1.3,($9025.00),-16.83%
#1#=18#2#=26#3#=15,$64150.00,45.52%,2467,$245.60,($157.49),$26.00,1.6,1.3,($6425.00),-14.31%
#1#=18#2#=30#3#=2,$61475.00,47.05%,2251,$244.16,($165.34),$27.31,1.5,1.3,($6950.00),-13.18%
#1#=18#2#=30#3#=3,$66237.50,47.34%,2277,$245.38,($165.38),$29.09,1.5,1.3,($6887.50),-13.41%
#1#=18#2#=30#3#=4,$70025.00,47.04%,2294,$249.44,($163.89),$30.53,1.5,1.4,($6337.50),-20.06%
#1#=18#2#=30#3#=5,$70837.50,47.32%,2314,$248.57,($165.18),$30.61,1.5,1.4,($6975.00),-19.74%
#1#=18#2#=30#3#=6,$72750.00,46.87%,2319,$251.20,($162.58),$31.37,1.5,1.4,($8200.00),-20.92%
#1#=18#2#=30#3#=7,$76950.00,46.81%,2337,$253.88,($161.54),$32.93,1.6,1.4,($6850.00),-19.25%
#1#=18#2#=30#3#=8,$68587.50,46.24%,2329,$253.66,($163.42),$29.45,1.6,1.3,($7575.00),-21.88%
#1#=18#2#=30#3#=9,$68900.00,46.48%,2330,$253.65,($165.04),$29.57,1.5,1.3,($7587.50),-19.60%
#1#=18#2#=30#3#=10,$67250.00,46.36%,2321,$252.28,($164.02),$28.97,1.5,1.3,($9312.50),-18.50%
#1#=18#2#=30#3#=11,$66325.00,46.17%,2326,$252.65,($163.76),$28.51,1.5,1.3,($9950.00),-19.69%
#1#=18#2#=30#3#=12,$65450.00,46.10%,2321,$252.09,($163.30),$28.20,1.5,1.3,($9725.00),-18.80%
#1#=18#2#=30#3#=13,$66225.00,46.22%,2326,$251.38,($163.08),$28.47,1.5,1.3,($9450.00),-18.47%
#1#=18#2#=30#3#=14,$62975.00,45.81%,2316,$252.27,($163.10),$27.19,1.5,1.3,($9887.50),-20.32%
#1#=18#2#=30#3#=15,$61137.50,45.87%,2315,$251.55,($164.42),$26.41,1.5,1.3,($8912.50),-18.83%
#1#=18#2#=34#3#=2,$60612.50,46.75%,2124,$255.69,($170.90),$28.54,1.5,1.3,($5525.00),-12.79%
#1#=18#2#=34#3#=3,$68562.50,47.30%,2148,$257.75,($170.77),$31.92,1.5,1.4,($5362.50),-16.10%
#1#=18#2#=34#3#=4,$70500.00,46.85%,2162,$262.33,($169.92),$32.61,1.5,1.4,($5787.50),-20.46%
#1#=18#2#=34#3#=5,$70925.00,46.97%,2180,$262.06,($170.78),$32.53,1.5,1.4,($7312.50),-18.94%
#1#=18#2#=34#3#=6,$73100.00,46.71%,2186,$263.50,($168.19),$33.44,1.6,1.4,($7862.50),-17.99%
#1#=18#2#=34#3#=7,$73550.00,46.39%,2190,$266.83,($168.27),$33.58,1.6,1.4,($7862.50),-17.80%
#1#=18#2#=34#3#=8,$67150.00,46.05%,2189,$266.39,($170.51),$30.68,1.6,1.3,($8037.50),-22.04%
#1#=18#2#=34#3#=9,$69262.50,46.68%,2200,$262.68,($170.94),$31.48,1.5,1.3,($8087.50),-18.13%
#1#=18#2#=34#3#=10,$66125.00,46.53%,2190,$260.48,($170.20),$30.19,1.5,1.3,($8237.50),-17.25%
#1#=18#2#=34#3#=11,$65337.50,46.49%,2192,$260.76,($170.82),$29.81,1.5,1.3,($9550.00),-19.20%
#1#=18#2#=34#3#=12,$65175.00,46.39%,2186,$261.29,($170.46),$29.81,1.5,1.3,($9325.00),-18.69%
#1#=18#2#=34#3#=13,$67537.50,46.67%,2192,$260.37,($170.08),$30.81,1.5,1.3,($9575.00),-18.82%
#1#=18#2#=34#3#=14,$65937.50,46.43%,2184,$260.69,($169.57),$30.19,1.5,1.3,($9487.50),-19.36%
#1#=18#2#=34#3#=15,$66087.50,46.26%,2181,$262.22,($169.36),$30.30,1.5,1.3,($8812.50),-18.29%
#1#=18#2#=38#3#=2,$56262.50,46.70%,2000,$262.22,($176.97),$28.13,1.5,1.3,($5912.50),-12.97%
#1#=18#2#=38#3#=3,$62350.00,47.03%,2020,$264.93,($176.95),$30.87,1.5,1.3,($7137.50),-14.57%
#1#=18#2#=38#3#=4,$64837.50,46.50%,2028,$270.31,($175.17),$31.97,1.5,1.3,($5862.50),-19.99%
#1#=18#2#=38#3#=5,$67962.50,46.59%,2052,$271.40,($174.73),$33.12,1.6,1.4,($7025.00),-16.70%
#1#=18#2#=38#3#=6,$66262.50,46.51%,2062,$270.18,($174.83),$32.14,1.5,1.3,($8112.50),-16.57%
#1#=18#2#=38#3#=7,$71600.00,46.79%,2071,$272.74,($174.85),$34.57,1.6,1.4,($7637.50),-15.99%
#1#=18#2#=38#3#=8,$66787.50,46.71%,2070,$271.52,($177.49),$32.26,1.5,1.3,($8550.00),-17.54%
#1#=18#2#=38#3#=9,$65112.50,46.78%,2080,$268.05,($176.78),$31.30,1.5,1.3,($8537.50),-17.24%
#1#=18#2#=38#3#=10,$61900.00,46.55%,2071,$266.65,($176.29),$29.89,1.5,1.3,($9350.00),-19.26%
#1#=18#2#=38#3#=11,$62175.00,46.44%,2076,$267.53,($176.01),$29.95,1.5,1.3,($10225.00),-20.81%
#1#=18#2#=38#3#=12,$63500.00,46.59%,2067,$267.71,($176.00),$30.72,1.5,1.3,($9962.50),-20.36%
#1#=18#2#=38#3#=13,$64950.00,47.07%,2067,$267.50,($178.54),$31.42,1.5,1.3,($10412.50),-20.43%
#1#=18#2#=38#3#=14,$62062.50,46.75%,2060,$267.43,($178.19),$30.13,1.5,1.3,($10062.50),-21.08%
#1#=18#2#=38#3#=15,$64675.00,46.93%,2054,$268.61,($178.22),$31.49,1.5,1.3,($9362.50),-19.63%
#1#=18#2#=42#3#=2,$49525.00,46.48%,1919,$266.75,($183.46),$25.81,1.5,1.3,($6112.50),-16.73%
#1#=18#2#=42#3#=3,$57962.50,46.47%,1941,$272.55,($180.82),$29.86,1.5,1.3,($7312.50),-16.02%
#1#=18#2#=42#3#=4,$59525.00,45.82%,1949,$278.57,($179.20),$30.54,1.6,1.3,($6662.50),-23.06%
#1#=18#2#=42#3#=5,$61187.50,45.75%,1965,$281.38,($179.90),$31.14,1.6,1.3,($6437.50),-18.37%
#1#=18#2#=42#3#=6,$58650.00,46.09%,1970,$277.26,($181.83),$29.77,1.5,1.3,($7150.00),-18.48%
#1#=18#2#=42#3#=7,$63200.00,46.21%,1978,$279.81,($180.97),$31.95,1.5,1.3,($6962.50),-15.78%
#1#=18#2#=42#3#=8,$58512.50,46.16%,1980,$277.12,($182.72),$29.55,1.5,1.3,($8412.50),-20.30%
#1#=18#2#=42#3#=9,$57800.00,46.18%,1990,$274.29,($181.40),$29.05,1.5,1.3,($8475.00),-21.04%
#1#=18#2#=42#3#=10,$54387.50,45.99%,1981,$272.00,($180.75),$27.45,1.5,1.3,($9550.00),-20.73%
#1#=18#2#=42#3#=11,$53800.00,45.66%,1980,$274.25,($180.41),$27.17,1.5,1.3,($11125.00),-23.36%
#1#=18#2#=42#3#=12,$53137.50,45.89%,1970,$272.79,($181.48),$26.97,1.5,1.3,($10487.50),-22.15%
#1#=18#2#=42#3#=13,$56825.00,46.45%,1972,$272.64,($182.68),$28.82,1.5,1.3,($10537.50),-20.77%
#1#=18#2#=42#3#=14,$53162.50,46.05%,1961,$273.19,($182.92),$27.11,1.5,1.3,($10687.50),-22.54%
#1#=18#2#=42#3#=15,$56637.50,46.49%,1964,$272.51,($182.84),$28.84,1.5,1.3,($9225.00),-19.70%
#1#=18#2#=46#3#=2,$53262.50,47.51%,1844,$270.62,($189.88),$28.88,1.4,1.3,($6912.50),-14.49%
#1#=18#2#=46#3#=3,$57962.50,46.85%,1859,$278.98,($187.27),$31.18,1.5,1.3,($8175.00),-17.18%
#1#=18#2#=46#3#=4,$60050.00,46.68%,1868,$281.74,($186.37),$32.15,1.5,1.3,($5975.00),-16.58%
#1#=18#2#=46#3#=5,$62862.50,46.66%,1888,$283.91,($185.96),$33.30,1.5,1.3,($6912.50),-14.48%
#1#=18#2#=46#3#=6,$61562.50,46.59%,1893,$281.86,($185.00),$32.52,1.5,1.3,($6987.50),-17.06%
#1#=18#2#=46#3#=7,$61887.50,46.31%,1896,$284.95,($184.97),$32.64,1.5,1.3,($6912.50),-15.39%
#1#=18#2#=46#3#=8,$58012.50,46.28%,1893,$282.09,($185.94),$30.65,1.5,1.3,($7425.00),-15.66%
#1#=18#2#=46#3#=9,$57362.50,46.57%,1894,$279.14,($186.60),$30.29,1.5,1.3,($8012.50),-17.24%
#1#=18#2#=46#3#=10,$54875.00,46.68%,1885,$276.32,($187.35),$29.11,1.5,1.3,($9162.50),-20.24%
#1#=18#2#=46#3#=11,$54800.00,46.58%,1887,$277.65,($187.75),$29.04,1.5,1.3,($10512.50),-22.51%
#1#=18#2#=46#3#=12,$55262.50,46.76%,1880,$277.06,($188.09),$29.39,1.5,1.3,($9875.00),-20.94%
#1#=18#2#=46#3#=13,$57700.00,47.37%,1883,$275.83,($190.05),$30.64,1.5,1.3,($9450.00),-19.21%
#1#=18#2#=46#3#=14,$54275.00,47.12%,1878,$275.24,($190.65),$28.90,1.4,1.3,($9500.00),-20.40%
#1#=18#2#=46#3#=15,$56837.50,47.50%,1882,$274.08,($190.47),$30.20,1.4,1.3,($8862.50),-19.62%
#1#=18#2#=50#3#=2,$52225.00,47.28%,1762,$281.29,($196.00),$29.64,1.4,1.3,($7075.00),-14.60%
#1#=18#2#=50#3#=3,$56100.00,47.00%,1783,$286.22,($194.44),$31.46,1.5,1.3,($8987.50),-18.62%
#1#=18#2#=50#3#=4,$58075.00,46.77%,1794,$289.08,($193.15),$32.37,1.5,1.3,($7112.50),-14.61%
#1#=18#2#=50#3#=5,$61050.00,47.03%,1816,$288.96,($193.06),$33.62,1.5,1.3,($8512.50),-18.03%
#1#=18#2#=50#3#=6,$60000.00,47.25%,1818,$285.88,($193.51),$33.00,1.5,1.3,($8512.50),-18.37%
#1#=18#2#=50#3#=7,$61162.50,46.95%,1821,$289.43,($192.86),$33.59,1.5,1.3,($8512.50),-18.28%
#1#=18#2#=50#3#=8,$60362.50,47.21%,1813,$286.57,($193.25),$33.29,1.5,1.3,($7737.50),-15.75%
#1#=18#2#=50#3#=9,$57600.00,47.27%,1813,$285.12,($195.35),$31.77,1.5,1.3,($8025.00),-16.61%
#1#=18#2#=50#3#=10,$54925.00,47.27%,1811,$281.88,($195.14),$30.33,1.4,1.3,($9075.00),-18.99%
#1#=18#2#=50#3#=11,$53750.00,47.02%,1810,$284.11,($196.06),$29.70,1.4,1.3,($10600.00),-21.63%
#1#=18#2#=50#3#=12,$53862.50,46.90%,1808,$284.60,($195.29),$29.79,1.5,1.3,($10162.50),-20.70%
#1#=18#2#=50#3#=13,$57000.00,47.54%,1809,$283.33,($196.69),$31.51,1.4,1.3,($9812.50),-19.12%
#1#=18#2#=50#3#=14,$53437.50,47.29%,1806,$282.79,($197.54),$29.59,1.4,1.3,($9750.00),-20.23%
#1#=18#2#=50#3#=15,$54425.00,47.38%,1811,$282.33,($197.08),$30.05,1.4,1.3,($9612.50),-20.34%
#1#=18#2#=54#3#=2,$48400.00,46.53%,1730,$288.62,($198.85),$27.98,1.5,1.3,($7662.50),-17.54%
#1#=18#2#=54#3#=3,$46712.50,46.18%,1752,$288.89,($198.30),$26.66,1.5,1.2,($9275.00),-21.11%
#1#=18#2#=54#3#=4,$49325.00,45.91%,1762,$293.28,($197.21),$27.99,1.5,1.3,($7925.00),-17.55%
#1#=18#2#=54#3#=5,$53162.50,45.76%,1781,$296.40,($195.03),$29.85,1.5,1.3,($8437.50),-18.54%
#1#=18#2#=54#3#=6,$52600.00,46.10%,1783,$292.90,($195.80),$29.50,1.5,1.3,($8712.50),-18.84%
#1#=18#2#=54#3#=7,$52175.00,45.94%,1787,$295.66,($197.27),$29.20,1.5,1.3,($8662.50),-19.49%
#1#=18#2#=54#3#=8,$49425.00,46.13%,1782,$292.29,($198.79),$27.74,1.5,1.3,($8675.00),-19.68%
#1#=18#2#=54#3#=9,$48112.50,46.08%,1784,$291.83,($199.35),$26.97,1.5,1.3,($8962.50),-20.91%
#1#=18#2#=54#3#=10,$45475.00,46.27%,1781,$287.32,($199.87),$25.53,1.4,1.2,($10012.50),-23.37%
#1#=18#2#=54#3#=11,$45200.00,46.05%,1785,$289.07,($199.81),$25.32,1.4,1.2,($11087.50),-24.99%
#1#=18#2#=54#3#=12,$45187.50,46.24%,1782,$287.79,($200.37),$25.36,1.4,1.2,($11050.00),-24.62%
#1#=18#2#=54#3#=13,$48462.50,46.80%,1782,$286.89,($201.27),$27.20,1.4,1.3,($10225.00),-22.18%
#1#=18#2#=54#3#=14,$44837.50,46.49%,1779,$286.40,($201.69),$25.20,1.4,1.2,($10087.50),-22.95%
#1#=18#2#=54#3#=15,$45400.00,46.43%,1781,$287.24,($201.42),$25.49,1.4,1.2,($10025.00),-23.31%
#1#=18#2#=58#3#=2,$46350.00,47.23%,1694,$285.73,($203.85),$27.36,1.4,1.3,($7275.00),-16.50%
#1#=18#2#=58#3#=3,$45912.50,46.88%,1717,$285.95,($202.06),$26.74,1.4,1.2,($7637.50),-17.25%
#1#=18#2#=58#3#=4,$46312.50,46.72%,1725,$288.94,($203.02),$26.85,1.4,1.2,($7512.50),-16.47%
#1#=18#2#=58#3#=5,$50687.50,46.63%,1737,$292.16,($200.61),$29.18,1.5,1.3,($8312.50),-18.38%
#1#=18#2#=58#3#=6,$49287.50,46.75%,1739,$289.98,($201.36),$28.34,1.4,1.3,($8312.50),-18.81%
#1#=18#2#=58#3#=7,$47387.50,46.27%,1742,$294.14,($202.66),$27.20,1.5,1.2,($8312.50),-19.89%
#1#=18#2#=58#3#=8,$45562.50,46.35%,1739,$291.67,($203.14),$26.20,1.4,1.2,($8312.50),-19.54%
#1#=18#2#=58#3#=9,$48150.00,46.79%,1742,$290.69,($203.63),$27.64,1.4,1.3,($8587.50),-20.17%
#1#=18#2#=58#3#=10,$43462.50,46.61%,1738,$287.13,($203.79),$25.01,1.4,1.2,($8537.50),-20.62%
#1#=18#2#=58#3#=11,$40925.00,46.38%,1738,$288.17,($205.30),$23.55,1.4,1.2,($8512.50),-19.72%
#1#=18#2#=58#3#=12,$39537.50,46.34%,1733,$287.86,($206.03),$22.81,1.4,1.2,($9125.00),-20.42%
#1#=18#2#=58#3#=13,$43262.50,46.80%,1733,$286.73,($205.29),$24.96,1.4,1.2,($8250.00),-18.72%
#1#=18#2#=58#3#=14,$39825.00,46.71%,1730,$285.58,($207.08),$23.02,1.4,1.2,($8212.50),-19.58%
#1#=18#2#=58#3#=15,$41287.50,46.82%,1732,$286.08,($207.08),$23.84,1.4,1.2,($8225.00),-20.20%
#1#=20#2#=18#3#=2,$23512.50,49.13%,2929,$181.29,($159.30),$8.03,1.1,1.1,($10625.00),-29.27%
#1#=20#2#=18#3#=3,$29550.00,48.48%,3086,$182.67,($153.29),$9.58,1.2,1.1,($9600.00),-29.13%
#1#=20#2#=18#3#=4,$34350.00,47.70%,3216,$184.07,($147.45),$10.68,1.2,1.1,($11837.50),-36.23%
#1#=20#2#=18#3#=5,$48225.00,48.37%,3372,$182.08,($142.88),$14.30,1.3,1.2,($9325.00),-29.25%
#1#=20#2#=18#3#=6,$52200.00,48.07%,3439,$182.35,($139.54),$15.18,1.3,1.2,($7725.00),-28.81%
#1#=20#2#=18#3#=7,$52237.50,47.80%,3502,$181.62,($137.75),$14.92,1.3,1.2,($7912.50),-23.67%
#1#=20#2#=18#3#=8,$54950.00,48.00%,3500,$180.63,($136.54),$15.70,1.3,1.2,($7925.00),-24.98%
#1#=20#2#=18#3#=9,$53437.50,47.88%,3542,$179.50,($135.96),$15.09,1.3,1.2,($7962.50),-30.19%
#1#=20#2#=18#3#=10,$50037.50,47.56%,3505,$181.34,($137.24),$14.28,1.3,1.2,($8100.00),-34.49%
#1#=20#2#=18#3#=11,$44650.00,47.31%,3517,$179.48,($137.08),$12.70,1.3,1.2,($8637.50),-28.52%
#1#=20#2#=18#3#=12,$43925.00,47.53%,3499,$178.64,($137.88),$12.55,1.3,1.2,($8837.50),-26.93%
#1#=20#2#=18#3#=13,$42625.00,47.45%,3488,$179.74,($139.03),$12.22,1.3,1.2,($8725.00),-30.75%
#1#=20#2#=18#3#=14,$40062.50,48.00%,3446,$178.05,($141.98),$11.63,1.3,1.2,($9025.00),-35.52%
#1#=20#2#=18#3#=15,$42650.00,48.52%,3450,$176.92,($142.74),$12.36,1.2,1.2,($8812.50),-40.29%
#1#=20#2#=22#3#=2,$57600.00,48.31%,2610,$214.47,($157.78),$22.07,1.4,1.3,($7212.50),-15.70%
#1#=20#2#=22#3#=3,$66937.50,47.85%,2648,$220.20,($153.55),$25.28,1.4,1.3,($7275.00),-19.62%
#1#=20#2#=22#3#=4,$70337.50,47.17%,2684,$224.71,($151.02),$26.21,1.5,1.3,($7675.00),-23.26%
#1#=20#2#=22#3#=5,$73987.50,47.48%,2738,$223.31,($150.43),$27.02,1.5,1.3,($7962.50),-23.78%
#1#=20#2#=22#3#=6,$73425.00,47.13%,2754,$222.59,($148.01),$26.66,1.5,1.3,($8887.50),-25.58%
#1#=20#2#=22#3#=7,$77800.00,46.92%,2775,$224.34,($145.48),$28.04,1.5,1.4,($7575.00),-25.95%
#1#=20#2#=22#3#=8,$71875.00,46.76%,2765,$224.61,($148.47),$25.99,1.5,1.3,($7700.00),-26.74%
#1#=20#2#=22#3#=9,$69700.00,46.28%,2783,$224.53,($146.82),$25.04,1.5,1.3,($7562.50),-23.68%
#1#=20#2#=22#3#=10,$66850.00,46.06%,2768,$224.52,($146.96),$24.15,1.5,1.3,($8262.50),-22.89%
#1#=20#2#=22#3#=11,$66412.50,46.11%,2774,$222.68,($146.09),$23.94,1.5,1.3,($8987.50),-20.50%
#1#=20#2#=22#3#=12,$65837.50,46.07%,2759,$224.15,($147.22),$23.86,1.5,1.3,($8562.50),-19.63%
#1#=20#2#=22#3#=13,$64250.00,45.98%,2747,$224.59,($147.85),$23.39,1.5,1.3,($8362.50),-17.71%
#1#=20#2#=22#3#=14,$61737.50,45.45%,2724,$227.19,($147.73),$22.66,1.5,1.3,($8650.00),-16.88%
#1#=20#2#=22#3#=15,$65075.00,45.94%,2697,$227.86,($149.00),$24.13,1.5,1.3,($7175.00),-16.86%
#1#=20#2#=26#3#=2,$58087.50,48.73%,2436,$224.15,($166.51),$23.85,1.3,1.3,($5500.00),-14.10%
#1#=20#2#=26#3#=3,$65525.00,48.58%,2468,$228.36,($164.13),$26.55,1.4,1.3,($5212.50),-16.78%
#1#=20#2#=26#3#=4,$72425.00,48.30%,2493,$232.98,($161.43),$29.05,1.4,1.3,($6012.50),-21.25%
#1#=20#2#=26#3#=5,$72987.50,48.32%,2535,$231.69,($160.94),$28.79,1.4,1.3,($6887.50),-22.36%
#1#=20#2#=26#3#=6,$71412.50,47.58%,2541,$234.13,($158.90),$28.10,1.5,1.3,($7075.00),-22.68%
#1#=20#2#=26#3#=7,$76512.50,47.79%,2557,$235.41,($158.17),$29.92,1.5,1.4,($6887.50),-22.02%
#1#=20#2#=26#3#=8,$69275.00,47.56%,2540,$235.38,($161.46),$27.27,1.5,1.3,($6887.50),-25.05%
#1#=20#2#=26#3#=9,$68412.50,47.43%,2549,$235.66,($161.57),$26.84,1.5,1.3,($6887.50),-21.78%
#1#=20#2#=26#3#=10,$64637.50,47.29%,2525,$234.43,($161.74),$25.60,1.4,1.3,($6887.50),-22.20%
#1#=20#2#=26#3#=11,$65900.00,47.32%,2534,$233.91,($160.72),$26.01,1.5,1.3,($7212.50),-19.17%
#1#=20#2#=26#3#=12,$65625.00,46.96%,2513,$236.44,($160.07),$26.11,1.5,1.3,($7087.50),-17.02%
#1#=20#2#=26#3#=13,$62737.50,46.66%,2518,$236.43,($160.14),$24.92,1.5,1.3,($6875.00),-15.93%
#1#=20#2#=26#3#=14,$58600.00,46.48%,2502,$236.32,($161.49),$23.42,1.5,1.3,($7050.00),-15.88%
#1#=20#2#=26#3#=15,$57487.50,46.51%,2494,$236.43,($162.50),$23.05,1.5,1.3,($6562.50),-16.38%
#1#=20#2#=30#3#=2,$60275.00,47.92%,2233,$240.42,($169.37),$26.99,1.4,1.3,($7700.00),-15.03%
#1#=20#2#=30#3#=3,$62987.50,47.79%,2264,$243.51,($169.62),$27.82,1.4,1.3,($7762.50),-17.13%
#1#=20#2#=30#3#=4,$66137.50,47.29%,2284,$247.42,($167.01),$28.96,1.5,1.3,($6650.00),-22.70%
#1#=20#2#=30#3#=5,$63150.00,47.36%,2314,$245.05,($168.66),$27.29,1.5,1.3,($8000.00),-23.72%
#1#=20#2#=30#3#=6,$64312.50,47.11%,2322,$246.77,($167.47),$27.70,1.5,1.3,($9125.00),-24.85%
#1#=20#2#=30#3#=7,$69500.00,47.45%,2333,$248.18,($167.40),$29.79,1.5,1.3,($7862.50),-23.41%
#1#=20#2#=30#3#=8,$63762.50,47.20%,2320,$247.90,($169.54),$27.48,1.5,1.3,($8287.50),-27.62%
#1#=20#2#=30#3#=9,$63600.00,47.62%,2329,$245.13,($170.70),$27.31,1.4,1.3,($9700.00),-23.92%
#1#=20#2#=30#3#=10,$61262.50,47.43%,2317,$244.13,($169.98),$26.44,1.4,1.3,($10350.00),-23.12%
#1#=20#2#=30#3#=11,$59162.50,47.26%,2321,$244.04,($170.38),$25.49,1.4,1.3,($11962.50),-25.61%
#1#=20#2#=30#3#=12,$57587.50,47.28%,2314,$243.62,($171.26),$24.89,1.4,1.3,($12612.50),-26.58%
#1#=20#2#=30#3#=13,$62537.50,47.52%,2321,$243.74,($169.39),$26.94,1.4,1.3,($12012.50),-24.48%
#1#=20#2#=30#3#=14,$58837.50,46.99%,2311,$244.53,($168.76),$25.46,1.4,1.3,($12275.00),-26.63%
#1#=20#2#=30#3#=15,$59012.50,46.95%,2309,$245.32,($168.91),$25.56,1.5,1.3,($11650.00),-25.48%
#1#=20#2#=34#3#=2,$56237.50,46.39%,2080,$258.74,($173.50),$27.04,1.5,1.3,($5487.50),-13.85%
#1#=20#2#=34#3#=3,$59987.50,46.42%,2107,$261.48,($173.37),$28.47,1.5,1.3,($6312.50),-18.78%
#1#=20#2#=34#3#=4,$61275.00,45.74%,2114,$267.81,($172.36),$28.99,1.6,1.3,($6725.00),-23.51%
#1#=20#2#=34#3#=5,$62762.50,45.89%,2142,$267.17,($172.44),$29.30,1.5,1.3,($8062.50),-22.77%
#1#=20#2#=34#3#=6,$63887.50,46.17%,2153,$264.59,($171.80),$29.67,1.5,1.3,($8237.50),-18.67%
#1#=20#2#=34#3#=7,$67475.00,46.25%,2158,$267.42,($171.91),$31.27,1.6,1.3,($7987.50),-20.53%
#1#=20#2#=34#3#=8,$62112.50,45.88%,2158,$267.02,($173.15),$28.78,1.5,1.3,($8162.50),-21.43%
#1#=20#2#=34#3#=9,$59612.50,46.35%,2162,$262.15,($175.05),$27.57,1.5,1.3,($8062.50),-18.58%
#1#=20#2#=34#3#=10,$56800.00,46.21%,2153,$260.80,($175.04),$26.38,1.5,1.3,($7637.50),-21.14%
#1#=20#2#=34#3#=11,$58287.50,46.43%,2156,$260.46,($175.27),$27.04,1.5,1.3,($8500.00),-17.85%
#1#=20#2#=34#3#=12,$60487.50,46.45%,2153,$261.35,($174.21),$28.09,1.5,1.3,($8762.50),-17.99%
#1#=20#2#=34#3#=13,$62925.00,46.75%,2156,$260.97,($174.34),$29.19,1.5,1.3,($8887.50),-18.66%
#1#=20#2#=34#3#=14,$59325.00,46.25%,2149,$261.91,($174.04),$27.61,1.5,1.3,($9025.00),-20.25%
#1#=20#2#=34#3#=15,$59837.50,46.32%,2148,$261.87,($174.09),$27.86,1.5,1.3,($8700.00),-21.30%
#1#=20#2#=38#3#=2,$49825.00,46.62%,1997,$261.09,($181.29),$24.95,1.4,1.3,($6062.50),-13.39%
#1#=20#2#=38#3#=3,$52512.50,46.26%,2021,$265.61,($180.33),$25.98,1.5,1.3,($8237.50),-17.44%
#1#=20#2#=38#3#=4,$54012.50,45.44%,2029,$271.34,($177.20),$26.62,1.5,1.3,($6762.50),-22.01%
#1#=20#2#=38#3#=5,$56887.50,45.65%,2044,$273.43,($178.42),$27.83,1.5,1.3,($7812.50),-20.48%
#1#=20#2#=38#3#=6,$53187.50,45.84%,2053,$269.02,($179.82),$25.91,1.5,1.3,($8462.50),-18.97%
#1#=20#2#=38#3#=7,$57262.50,46.09%,2059,$271.11,($180.20),$27.81,1.5,1.3,($8062.50),-19.87%
#1#=20#2#=38#3#=8,$53887.50,46.07%,2060,$268.95,($181.23),$26.16,1.5,1.3,($9262.50),-21.67%
#1#=20#2#=38#3#=9,$52537.50,46.20%,2065,$266.54,($181.58),$25.44,1.5,1.3,($9400.00),-21.82%
#1#=20#2#=38#3#=10,$48600.00,45.90%,2059,$265.15,($181.29),$23.60,1.5,1.2,($10250.00),-23.80%
#1#=20#2#=38#3#=11,$50387.50,46.15%,2063,$264.71,($181.47),$24.42,1.5,1.2,($10950.00),-24.08%
#1#=20#2#=38#3#=12,$49800.00,46.53%,2061,$261.70,($182.55),$24.16,1.4,1.2,($10312.50),-22.33%
#1#=20#2#=38#3#=13,$51425.00,46.90%,2064,$262.00,($184.48),$24.92,1.4,1.3,($11012.50),-23.16%
#1#=20#2#=38#3#=14,$48075.00,46.50%,2056,$262.38,($184.33),$23.38,1.4,1.2,($11037.50),-24.96%
#1#=20#2#=38#3#=15,$50450.00,46.43%,2057,$263.70,($182.75),$24.53,1.4,1.3,($10075.00),-22.50%
#1#=20#2#=42#3#=2,$49450.00,46.71%,1901,$267.17,($185.39),$26.01,1.4,1.3,($6662.50),-14.06%
#1#=20#2#=42#3#=3,$56837.50,46.39%,1923,$274.22,($182.12),$29.56,1.5,1.3,($8387.50),-16.79%
#1#=20#2#=42#3#=4,$59562.50,46.13%,1936,$277.44,($180.43),$30.77,1.5,1.3,($7150.00),-20.31%
#1#=20#2#=42#3#=5,$62312.50,45.91%,1958,$280.85,($179.58),$31.82,1.6,1.3,($6912.50),-15.25%
#1#=20#2#=42#3#=6,$57925.00,46.18%,1964,$275.70,($181.78),$29.49,1.5,1.3,($7462.50),-17.05%
#1#=20#2#=42#3#=7,$60125.00,46.08%,1964,$279.12,($181.75),$30.61,1.5,1.3,($7312.50),-15.26%
#1#=20#2#=42#3#=8,$55412.50,45.90%,1963,$277.18,($182.98),$28.23,1.5,1.3,($8437.50),-17.25%
#1#=20#2#=42#3#=9,$54662.50,45.76%,1971,$275.79,($181.57),$27.73,1.5,1.3,($9000.00),-18.68%
#1#=20#2#=42#3#=10,$52125.00,45.72%,1964,$273.75,($181.71),$26.54,1.5,1.3,($10175.00),-22.10%
#1#=20#2#=42#3#=11,$52150.00,45.85%,1965,$273.65,($182.72),$26.54,1.5,1.3,($11525.00),-24.12%
#1#=20#2#=42#3#=12,$50837.50,45.97%,1960,$272.24,($183.62),$25.94,1.5,1.3,($11037.50),-22.99%
#1#=20#2#=42#3#=13,$54350.00,46.62%,1965,$270.96,($184.80),$27.66,1.5,1.3,($11187.50),-22.04%
#1#=20#2#=42#3#=14,$51450.00,46.34%,1953,$271.06,($184.98),$26.34,1.5,1.3,($10887.50),-22.81%
#1#=20#2#=42#3#=15,$53500.00,46.52%,1954,$270.67,($184.25),$27.38,1.5,1.3,($10300.00),-21.79%
#1#=20#2#=46#3#=2,$51187.50,47.30%,1816,$274.91,($193.27),$28.19,1.4,1.3,($7000.00),-14.92%
#1#=20#2#=46#3#=3,$56875.00,46.75%,1829,$282.89,($189.94),$31.10,1.5,1.3,($8562.50),-18.07%
#1#=20#2#=46#3#=4,$61025.00,46.69%,1842,$285.28,($187.69),$33.13,1.5,1.3,($6250.00),-14.70%
#1#=20#2#=46#3#=5,$63937.50,47.10%,1862,$284.61,($188.49),$34.34,1.5,1.3,($7400.00),-15.74%
#1#=20#2#=46#3#=6,$62087.50,47.01%,1870,$282.89,($188.27),$33.20,1.5,1.3,($7400.00),-16.49%
#1#=20#2#=46#3#=7,$62087.50,46.77%,1871,$286.01,($188.93),$33.18,1.5,1.3,($7400.00),-16.73%
#1#=20#2#=46#3#=8,$58775.00,46.98%,1869,$282.16,($190.68),$31.45,1.5,1.3,($7950.00),-17.04%
#1#=20#2#=46#3#=9,$56650.00,46.82%,1871,$281.88,($191.23),$30.28,1.5,1.3,($8662.50),-18.52%
#1#=20#2#=46#3#=10,$55150.00,46.95%,1868,$278.51,($190.82),$29.52,1.5,1.3,($9587.50),-20.84%
#1#=20#2#=46#3#=11,$54725.00,46.84%,1870,$279.62,($191.37),$29.26,1.5,1.3,($10812.50),-22.76%
#1#=20#2#=46#3#=12,$53800.00,46.60%,1865,$280.84,($191.01),$28.85,1.5,1.3,($10475.00),-21.89%
#1#=20#2#=46#3#=13,$56187.50,47.38%,1868,$278.33,($193.43),$30.08,1.4,1.3,($10150.00),-20.52%
#1#=20#2#=46#3#=14,$53287.50,47.00%,1864,$278.45,($192.95),$28.59,1.4,1.3,($10000.00),-21.41%
#1#=20#2#=46#3#=15,$54625.00,47.05%,1864,$278.85,($192.43),$29.31,1.4,1.3,($9737.50),-21.72%
#1#=20#2#=50#3#=2,$48025.00,47.17%,1768,$278.85,($197.58),$27.16,1.4,1.3,($7450.00),-16.00%
#1#=20#2#=50#3#=3,$50862.50,46.72%,1783,$284.17,($195.63),$28.53,1.5,1.3,($9250.00),-19.89%
#1#=20#2#=50#3#=4,$53987.50,46.34%,1791,$288.73,($193.20),$30.14,1.5,1.3,($8087.50),-17.02%
#1#=20#2#=50#3#=5,$56525.00,46.40%,1808,$290.18,($192.92),$31.26,1.5,1.3,($8862.50),-18.87%
#1#=20#2#=50#3#=6,$55687.50,46.69%,1814,$286.64,($193.49),$30.70,1.5,1.3,($8862.50),-19.66%
#1#=20#2#=50#3#=7,$58687.50,46.35%,1821,$290.98,($191.30),$32.23,1.5,1.3,($8875.00),-19.14%
#1#=20#2#=50#3#=8,$58300.00,46.48%,1818,$288.21,($190.38),$32.07,1.5,1.3,($8787.50),-17.93%
#1#=20#2#=50#3#=9,$55762.50,46.54%,1820,$286.84,($192.38),$30.64,1.5,1.3,($8525.00),-17.69%
#1#=20#2#=50#3#=10,$54962.50,46.89%,1815,$282.61,($192.47),$30.28,1.5,1.3,($9600.00),-19.96%
#1#=20#2#=50#3#=11,$54225.00,46.85%,1823,$282.60,($193.10),$29.74,1.5,1.3,($10875.00),-22.20%
#1#=20#2#=50#3#=12,$54600.00,46.81%,1820,$283.07,($192.74),$30.00,1.5,1.3,($10537.50),-20.92%
#1#=20#2#=50#3#=13,$57187.50,47.45%,1823,$281.91,($194.85),$31.37,1.4,1.3,($10187.50),-19.45%
#1#=20#2#=50#3#=14,$52950.00,46.80%,1814,$283.89,($194.90),$29.19,1.5,1.3,($10075.00),-20.51%
#1#=20#2#=50#3#=15,$52825.00,46.53%,1814,$285.68,($194.11),$29.12,1.5,1.3,($10187.50),-21.28%
#1#=20#2#=54#3#=2,$47775.00,47.37%,1714,$283.05,($201.84),$27.87,1.4,1.3,($7550.00),-16.30%
#1#=20#2#=54#3#=3,$52512.50,47.08%,1729,$288.18,($198.98),$30.37,1.4,1.3,($6512.50),-15.04%
#1#=20#2#=54#3#=4,$53912.50,46.70%,1741,$292.28,($197.97),$30.97,1.5,1.3,($7387.50),-16.58%
#1#=20#2#=54#3#=5,$55812.50,46.56%,1757,$294.64,($197.23),$31.77,1.5,1.3,($8862.50),-19.49%
#1#=20#2#=54#3#=6,$53300.00,46.59%,1760,$293.06,($198.95),$30.28,1.5,1.3,($8862.50),-20.21%
#1#=20#2#=54#3#=7,$54512.50,46.45%,1761,$296.09,($199.03),$30.96,1.5,1.3,($8862.50),-20.51%
#1#=20#2#=54#3#=8,$51812.50,46.67%,1759,$291.92,($200.27),$29.46,1.5,1.3,($8862.50),-20.65%
#1#=20#2#=54#3#=9,$49837.50,46.97%,1763,$289.72,($203.26),$28.27,1.4,1.3,($9137.50),-21.65%
#1#=20#2#=54#3#=10,$47412.50,47.16%,1760,$285.17,($203.52),$26.94,1.4,1.3,($9087.50),-21.36%
#1#=20#2#=54#3#=11,$47087.50,46.96%,1761,$287.02,($203.72),$26.74,1.4,1.2,($8762.50),-20.13%
#1#=20#2#=54#3#=12,$47587.50,46.85%,1761,$286.89,($202.03),$27.02,1.4,1.3,($8762.50),-19.52%
#1#=20#2#=54#3#=13,$48650.00,47.65%,1763,$283.76,($205.54),$27.60,1.4,1.3,($9125.00),-18.99%
#1#=20#2#=54#3#=14,$44875.00,47.13%,1761,$283.89,($204.89),$25.48,1.4,1.2,($9012.50),-19.79%
#1#=20#2#=54#3#=15,$44987.50,47.05%,1764,$284.20,($204.39),$25.50,1.4,1.2,($9225.00),-20.73%
#1#=20#2#=58#3#=2,$41500.00,47.45%,1667,$285.65,($210.56),$24.90,1.4,1.2,($7975.00),-18.32%
#1#=20#2#=58#3#=3,$44250.00,47.45%,1686,$286.88,($209.09),$26.25,1.4,1.2,($6612.50),-15.59%
#1#=20#2#=58#3#=4,$48100.00,47.55%,1697,$289.28,($208.26),$28.34,1.4,1.3,($6812.50),-15.56%
#1#=20#2#=58#3#=5,$51250.00,47.69%,1711,$289.81,($206.97),$29.95,1.4,1.3,($8287.50),-18.06%
#1#=20#2#=58#3#=6,$48312.50,47.49%,1712,$289.08,($207.69),$28.22,1.4,1.3,($8287.50),-19.03%
#1#=20#2#=58#3#=7,$46425.00,46.94%,1713,$293.14,($208.21),$27.10,1.4,1.2,($8287.50),-19.63%
#1#=20#2#=58#3#=8,$45762.50,47.08%,1714,$290.27,($207.81),$26.70,1.4,1.2,($8287.50),-19.72%
#1#=20#2#=58#3#=9,$47400.00,47.29%,1713,$290.93,($208.47),$27.67,1.4,1.3,($8562.50),-20.01%
#1#=20#2#=58#3#=10,$45387.50,47.54%,1710,$286.65,($209.21),$26.54,1.4,1.2,($8512.50),-20.05%
#1#=20#2#=58#3#=11,$41950.00,47.16%,1709,$287.83,($210.45),$24.55,1.4,1.2,($8187.50),-19.02%
#1#=20#2#=58#3#=12,$41512.50,46.93%,1711,$287.70,($208.71),$24.26,1.4,1.2,($8187.50),-18.45%
#1#=20#2#=58#3#=13,$42987.50,47.23%,1713,$287.79,($210.00),$25.09,1.4,1.2,($8237.50),-17.84%
#1#=20#2#=58#3#=14,$39500.00,46.99%,1711,$287.61,($211.40),$23.09,1.4,1.2,($8262.50),-18.59%
#1#=20#2#=58#3#=15,$39525.00,46.97%,1714,$287.55,($211.17),$23.06,1.4,1.2,($8362.50),-19.28%
#1#=22#2#=18#3#=2,$29550.00,49.02%,2754,$190.33,($161.97),$10.73,1.2,1.1,($9412.50),-24.17%
#1#=22#2#=18#3#=3,$29375.00,48.42%,2885,$189.91,($158.55),$10.18,1.2,1.1,($12750.00),-35.73%
#1#=22#2#=18#3#=4,$33725.00,47.99%,3013,$190.22,($154.01),$11.19,1.2,1.1,($14087.50),-39.77%
#1#=22#2#=18#3#=5,$47687.50,48.28%,3142,$189.30,($147.38),$15.18,1.3,1.2,($7150.00),-30.94%
#1#=22#2#=18#3#=6,$49287.50,48.13%,3183,$189.61,($146.09),$15.48,1.3,1.2,($8012.50),-28.00%
#1#=22#2#=18#3#=7,$50687.50,47.94%,3225,$188.72,($143.58),$15.72,1.3,1.2,($8387.50),-21.25%
#1#=22#2#=18#3#=8,$50137.50,47.88%,3212,$188.31,($143.06),$15.61,1.3,1.2,($7075.00),-23.19%
#1#=22#2#=18#3#=9,$47900.00,47.72%,3242,$187.34,($142.72),$14.77,1.3,1.2,($7975.00),-24.72%
#1#=22#2#=18#3#=10,$45650.00,47.53%,3225,$188.45,($143.76),$14.16,1.3,1.2,($7525.00),-31.46%
#1#=22#2#=18#3#=11,$41150.00,47.62%,3221,$186.03,($144.76),$12.78,1.3,1.2,($8212.50),-28.89%
#1#=22#2#=18#3#=12,$42687.50,47.73%,3214,$186.14,($144.55),$13.28,1.3,1.2,($8725.00),-26.50%
#1#=22#2#=18#3#=13,$38612.50,47.42%,3201,$187.22,($145.92),$12.06,1.3,1.2,($10512.50),-28.42%
#1#=22#2#=18#3#=14,$36287.50,47.53%,3183,$186.15,($146.92),$11.40,1.3,1.1,($10275.00),-31.92%
#1#=22#2#=18#3#=15,$38500.00,48.02%,3174,$185.02,($147.56),$12.13,1.3,1.2,($9412.50),-33.43%
#1#=22#2#=22#3#=2,$88712.50,60.75%,8120,$103.25,($131.97),$10.93,0.8,1.2,($5412.50),-8.37%
#1#=22#2#=22#3#=3,$91012.50,60.58%,8927,$98.08,($124.87),$10.20,0.8,1.2,($5612.50),-11.61%
#1#=22#2#=22#3#=4,$95062.50,60.42%,9664,$94.66,($119.65),$9.84,0.8,1.2,($6550.00),-13.28%
#1#=22#2#=22#3#=5,$105262.50,59.82%,10682,$90.58,($110.34),$9.85,0.8,1.2,($5837.50),-13.81%
#1#=22#2#=22#3#=6,$102937.50,58.66%,10623,$93.08,($108.62),$9.69,0.9,1.2,($5000.00),-17.25%
#1#=22#2#=22#3#=7,$96387.50,58.32%,10821,$91.82,($107.11),$8.91,0.9,1.2,($4712.50),-11.49%
#1#=22#2#=22#3#=8,$83312.50,57.76%,10444,$93.24,($108.59),$7.98,0.9,1.2,($6825.00),-13.16%
#1#=22#2#=22#3#=9,$79887.50,57.62%,10328,$94.11,($109.70),$7.74,0.9,1.2,($6725.00),-14.12%
#1#=22#2#=22#3#=10,$79337.50,58.00%,9990,$95.44,($112.88),$7.94,0.8,1.2,($6862.50),-15.46%
#1#=22#2#=22#3#=11,$76500.00,57.73%,9787,$96.87,($113.81),$7.82,0.9,1.2,($6925.00),-14.73%
#1#=22#2#=22#3#=12,$66187.50,57.48%,9473,$98.02,($116.07),$6.99,0.8,1.1,($8737.50),-18.22%
#1#=22#2#=22#3#=13,$67662.50,57.50%,9229,$99.86,($117.88),$7.33,0.8,1.1,($9637.50),-19.73%
#1#=22#2#=22#3#=14,$53512.50,57.42%,8962,$100.13,($121.01),$5.97,0.8,1.1,($11800.00),-25.33%
#1#=22#2#=22#3#=15,$52375.00,57.20%,8729,$101.99,($122.28),$6.00,0.8,1.1,($12225.00),-27.43%
#1#=22#2#=26#3#=2,$55112.50,47.92%,2429,$225.78,($164.19),$22.69,1.4,1.3,($7625.00),-15.98%
#1#=22#2#=26#3#=3,$60812.50,47.78%,2472,$229.34,($162.69),$24.60,1.4,1.3,($7012.50),-17.79%
#1#=22#2#=26#3#=4,$65887.50,47.66%,2503,$231.15,($160.21),$26.32,1.4,1.3,($6637.50),-23.06%
#1#=22#2#=26#3#=5,$68462.50,48.20%,2529,$229.13,($160.95),$27.07,1.4,1.3,($7250.00),-24.24%
#1#=22#2#=26#3#=6,$68537.50,47.61%,2531,$232.40,($159.50),$27.08,1.5,1.3,($8262.50),-26.11%
#1#=22#2#=26#3#=7,$72675.00,47.80%,2544,$233.90,($159.45),$28.57,1.5,1.3,($7962.50),-25.17%
#1#=22#2#=26#3#=8,$67287.50,47.26%,2535,$234.73,($160.00),$26.54,1.5,1.3,($7337.50),-28.76%
#1#=22#2#=26#3#=9,$66375.00,47.30%,2541,$234.44,($160.88),$26.12,1.5,1.3,($7562.50),-25.13%
#1#=22#2#=26#3#=10,$65425.00,47.19%,2511,$234.74,($160.44),$26.06,1.5,1.3,($8137.50),-24.11%
#1#=22#2#=26#3#=11,$63600.00,47.06%,2514,$234.18,($160.36),$25.30,1.5,1.3,($8750.00),-22.91%
#1#=22#2#=26#3#=12,$63750.00,47.13%,2495,$234.49,($160.74),$25.55,1.5,1.3,($8612.50),-20.98%
#1#=22#2#=26#3#=13,$63837.50,46.85%,2489,$236.34,($160.04),$25.65,1.5,1.3,($8850.00),-21.53%
#1#=22#2#=26#3#=14,$59800.00,46.73%,2478,$235.16,($160.99),$24.13,1.5,1.3,($9075.00),-21.39%
#1#=22#2#=26#3#=15,$61225.00,46.84%,2468,$236.11,($161.37),$24.81,1.5,1.3,($8125.00),-21.00%
#1#=22#2#=30#3#=2,$57250.00,47.75%,2201,$243.23,($172.51),$26.01,1.4,1.3,($8287.50),-16.27%
#1#=22#2#=30#3#=3,$59500.00,47.51%,2227,$247.12,($172.75),$26.72,1.4,1.3,($8600.00),-17.20%
#1#=22#2#=30#3#=4,$61437.50,47.06%,2248,$250.19,($170.81),$27.33,1.5,1.3,($7762.50),-19.52%
#1#=22#2#=30#3#=5,$62800.00,47.30%,2277,$248.84,($171.00),$27.58,1.5,1.3,($7887.50),-18.22%
#1#=22#2#=30#3#=6,$64650.00,47.38%,2286,$248.97,($170.40),$28.28,1.5,1.3,($8662.50),-20.41%
#1#=22#2#=30#3#=7,$65087.50,47.34%,2294,$250.13,($170.99),$28.37,1.5,1.3,($8012.50),-20.32%
#1#=22#2#=30#3#=8,$64537.50,47.20%,2286,$250.25,($170.25),$28.23,1.5,1.3,($8662.50),-22.57%
#1#=22#2#=30#3#=9,$65300.00,47.80%,2297,$246.31,($171.10),$28.43,1.4,1.3,($9537.50),-19.47%
#1#=22#2#=30#3#=10,$63437.50,47.92%,2289,$244.26,($171.57),$27.71,1.4,1.3,($10675.00),-22.09%
#1#=22#2#=30#3#=11,$59250.00,47.58%,2293,$244.00,($172.17),$25.84,1.4,1.3,($11900.00),-24.52%
#1#=22#2#=30#3#=12,$59187.50,47.41%,2278,$245.67,($172.07),$25.98,1.4,1.3,($12137.50),-25.17%
#1#=22#2#=30#3#=13,$63650.00,47.57%,2283,$246.19,($170.19),$27.88,1.4,1.3,($11587.50),-23.08%
#1#=22#2#=30#3#=14,$61462.50,47.36%,2274,$246.03,($170.02),$27.03,1.4,1.3,($11900.00),-24.82%
#1#=22#2#=30#3#=15,$62450.00,47.25%,2269,$247.97,($169.90),$27.52,1.5,1.3,($11075.00),-23.47%
#1#=22#2#=34#3#=2,$50600.00,46.76%,2096,$252.97,($176.80),$24.14,1.4,1.3,($6387.50),-13.90%
#1#=22#2#=34#3#=3,$53550.00,46.32%,2118,$258.27,($175.74),$25.28,1.5,1.3,($7987.50),-18.12%
#1#=22#2#=34#3#=4,$55375.00,45.61%,2129,$265.01,($174.40),$26.01,1.5,1.3,($9187.50),-21.60%
#1#=22#2#=34#3#=5,$58187.50,45.82%,2152,$264.36,($173.65),$27.04,1.5,1.3,($10362.50),-22.31%
#1#=22#2#=34#3#=6,$57112.50,46.13%,2159,$261.53,($174.87),$26.45,1.5,1.3,($11162.50),-24.19%
#1#=22#2#=34#3#=7,$59212.50,46.32%,2163,$263.01,($175.99),$27.38,1.5,1.3,($8712.50),-19.44%
#1#=22#2#=34#3#=8,$56100.00,46.09%,2161,$261.87,($175.73),$25.96,1.5,1.3,($9750.00),-21.39%
#1#=22#2#=34#3#=9,$54500.00,46.40%,2168,$258.25,($176.68),$25.14,1.5,1.3,($10787.50),-23.81%
#1#=22#2#=34#3#=10,$52500.00,46.23%,2163,$256.57,($175.47),$24.27,1.5,1.3,($11512.50),-25.86%
#1#=22#2#=34#3#=11,$53562.50,46.37%,2163,$256.61,($175.70),$24.76,1.5,1.3,($10812.50),-24.35%
#1#=22#2#=34#3#=12,$53537.50,46.55%,2161,$255.44,($176.14),$24.77,1.5,1.3,($10812.50),-23.88%
#1#=22#2#=34#3#=13,$56575.00,46.90%,2162,$255.73,($176.60),$26.17,1.4,1.3,($11175.00),-23.65%
#1#=22#2#=34#3#=14,$53737.50,46.45%,2157,$256.75,($176.21),$24.91,1.5,1.3,($10712.50),-24.14%
#1#=22#2#=34#3#=15,$54262.50,46.33%,2152,$258.43,($176.09),$25.21,1.5,1.3,($10062.50),-23.11%
#1#=22#2#=38#3#=2,$46950.00,46.33%,1964,$262.47,($182.07),$23.91,1.4,1.2,($7662.50),-16.93%
#1#=22#2#=38#3#=3,$49637.50,45.71%,1995,$267.94,($179.80),$24.88,1.5,1.3,($9287.50),-20.86%
#1#=22#2#=38#3#=4,$52787.50,45.23%,2003,$273.57,($177.81),$26.35,1.5,1.3,($8550.00),-20.13%
#1#=22#2#=38#3#=5,$57375.00,45.52%,2030,$274.40,($177.37),$28.26,1.5,1.3,($7550.00),-18.18%
#1#=22#2#=38#3#=6,$51662.50,45.65%,2035,$269.23,($179.43),$25.39,1.5,1.3,($8837.50),-21.39%
#1#=22#2#=38#3#=7,$54837.50,45.76%,2041,$271.95,($179.91),$26.87,1.5,1.3,($9225.00),-20.43%
#1#=22#2#=38#3#=8,$51862.50,45.56%,2037,$272.08,($180.91),$25.46,1.5,1.3,($10950.00),-24.12%
#1#=22#2#=38#3#=9,$50637.50,45.47%,2043,$270.82,($180.39),$24.79,1.5,1.3,($10412.50),-23.55%
#1#=22#2#=38#3#=10,$49375.00,45.26%,2037,$269.70,($178.73),$24.24,1.5,1.2,($10462.50),-23.91%
#1#=22#2#=38#3#=11,$49312.50,45.21%,2044,$269.82,($178.57),$24.13,1.5,1.2,($11887.50),-25.96%
#1#=22#2#=38#3#=12,$48262.50,45.49%,2038,$267.14,($179.46),$23.68,1.5,1.2,($11200.00),-24.03%
#1#=22#2#=38#3#=13,$52537.50,46.25%,2039,$266.62,($181.47),$25.77,1.5,1.3,($11200.00),-22.21%
#1#=22#2#=38#3#=14,$49587.50,45.72%,2032,$267.40,($180.26),$24.40,1.5,1.2,($11200.00),-23.80%
#1#=22#2#=38#3#=15,$52712.50,45.96%,2028,$268.31,($180.06),$25.99,1.5,1.3,($9462.50),-20.05%
#1#=22#2#=42#3#=2,$42800.00,46.36%,1870,$269.12,($189.96),$22.89,1.4,1.2,($9562.50),-21.22%
#1#=22#2#=42#3#=3,$49637.50,45.98%,1892,$276.36,($186.69),$26.24,1.5,1.3,($10137.50),-22.91%
#1#=22#2#=42#3#=4,$53262.50,45.96%,1904,$278.27,($184.86),$27.97,1.5,1.3,($8975.00),-19.84%
#1#=22#2#=42#3#=5,$58600.00,45.88%,1929,$281.62,($182.60),$30.38,1.5,1.3,($7725.00),-16.28%
#1#=22#2#=42#3#=6,$56812.50,45.85%,1939,$279.15,($182.24),$29.30,1.5,1.3,($9137.50),-19.21%
#1#=22#2#=42#3#=7,$59650.00,46.04%,1946,$280.72,($182.74),$30.65,1.5,1.3,($9750.00),-19.31%
#1#=22#2#=42#3#=8,$56100.00,45.78%,1942,$280.46,($183.50),$28.89,1.5,1.3,($10550.00),-21.09%
#1#=22#2#=42#3#=9,$53012.50,45.35%,1945,$281.09,($183.36),$27.26,1.5,1.3,($10787.50),-21.84%
#1#=22#2#=42#3#=10,$52962.50,45.39%,1941,$279.53,($182.36),$27.29,1.5,1.3,($11262.50),-22.63%
#1#=22#2#=42#3#=11,$52162.50,45.19%,1943,$281.19,($182.84),$26.85,1.5,1.3,($12462.50),-24.55%
#1#=22#2#=42#3#=12,$51225.00,45.10%,1938,$281.21,($182.85),$26.43,1.5,1.3,($12050.00),-23.85%
#1#=22#2#=42#3#=13,$53675.00,45.66%,1934,$281.63,($185.54),$27.75,1.5,1.3,($12250.00),-22.73%
#1#=22#2#=42#3#=14,$51200.00,45.50%,1923,$280.94,($185.71),$26.63,1.5,1.3,($12075.00),-23.99%
#1#=22#2#=42#3#=15,$54637.50,45.94%,1920,$280.22,($185.46),$28.46,1.5,1.3,($11387.50),-22.52%
#1#=22#2#=46#3#=2,$47937.50,46.76%,1803,$275.82,($192.27),$26.59,1.4,1.3,($8700.00),-18.71%
#1#=22#2#=46#3#=3,$49650.00,45.98%,1816,$282.60,($189.93),$27.34,1.5,1.3,($9837.50),-22.37%
#1#=22#2#=46#3#=4,$53350.00,46.12%,1830,$283.03,($188.16),$29.15,1.5,1.3,($7950.00),-17.46%
#1#=22#2#=46#3#=5,$56300.00,46.35%,1847,$284.17,($188.65),$30.48,1.5,1.3,($7337.50),-16.36%
#1#=22#2#=46#3#=6,$52912.50,46.32%,1850,$281.46,($189.63),$28.60,1.5,1.3,($8462.50),-18.92%
#1#=22#2#=46#3#=7,$55937.50,46.39%,1856,$284.34,($189.82),$30.14,1.5,1.3,($8762.50),-18.63%
#1#=22#2#=46#3#=8,$54250.00,46.52%,1853,$282.24,($190.75),$29.28,1.5,1.3,($9075.00),-19.24%
#1#=22#2#=46#3#=9,$52862.50,46.15%,1855,$283.59,($190.08),$28.50,1.5,1.3,($9537.50),-19.62%
#1#=22#2#=46#3#=10,$51237.50,46.17%,1852,$280.98,($189.57),$27.67,1.5,1.3,($10487.50),-21.76%
#1#=22#2#=46#3#=11,$51250.00,46.02%,1860,$281.89,($189.29),$27.55,1.5,1.3,($11862.50),-23.78%
#1#=22#2#=46#3#=12,$52262.50,46.10%,1857,$282.33,($189.22),$28.14,1.5,1.3,($11525.00),-22.43%
#1#=22#2#=46#3#=13,$54712.50,46.64%,1859,$281.95,($191.27),$29.43,1.5,1.3,($11200.00),-21.09%
#1#=22#2#=46#3#=14,$51712.50,46.30%,1851,$281.93,($191.05),$27.94,1.5,1.3,($11000.00),-22.22%
#1#=22#2#=46#3#=15,$54187.50,46.52%,1851,$281.94,($190.47),$29.27,1.5,1.3,($11012.50),-22.09%
#1#=22#2#=50#3#=2,$45125.00,46.67%,1757,$281.49,($198.19),$25.68,1.4,1.2,($9087.50),-19.23%
#1#=22#2#=50#3#=3,$48800.00,46.34%,1776,$285.91,($195.70),$27.48,1.5,1.3,($7350.00),-16.27%
#1#=22#2#=50#3#=4,$51800.00,46.25%,1786,$288.62,($194.38),$29.00,1.5,1.3,($6512.50),-14.02%
#1#=22#2#=50#3#=5,$54250.00,46.20%,1801,$291.62,($194.40),$30.12,1.5,1.3,($7700.00),-17.07%
#1#=22#2#=50#3#=6,$53562.50,46.53%,1801,$289.10,($195.95),$29.74,1.5,1.3,($7700.00),-18.26%
#1#=22#2#=50#3#=7,$56437.50,46.60%,1807,$291.24,($195.63),$31.23,1.5,1.3,($7162.50),-16.80%
#1#=22#2#=50#3#=8,$53675.00,46.40%,1808,$289.12,($194.94),$29.69,1.5,1.3,($7050.00),-16.74%
#1#=22#2#=50#3#=9,$53350.00,46.69%,1810,$286.83,($195.88),$29.48,1.5,1.3,($7100.00),-16.36%
#1#=22#2#=50#3#=10,$51125.00,46.76%,1807,$282.84,($195.30),$28.29,1.4,1.3,($7050.00),-16.37%
#1#=22#2#=50#3#=11,$50875.00,46.64%,1818,$283.46,($195.36),$27.98,1.5,1.3,($8150.00),-17.19%
#1#=22#2#=50#3#=12,$50212.50,46.44%,1813,$284.89,($195.33),$27.70,1.5,1.3,($8462.50),-17.27%
#1#=22#2#=50#3#=13,$49037.50,47.05%,1815,$281.43,($199.06),$27.02,1.4,1.3,($10962.50),-21.67%
#1#=22#2#=50#3#=14,$44775.00,46.46%,1808,$282.46,($198.85),$24.76,1.4,1.2,($10700.00),-22.83%
#1#=22#2#=50#3#=15,$45100.00,46.33%,1811,$283.25,($198.10),$24.90,1.4,1.2,($10537.50),-22.76%
#1#=22#2#=54#3#=2,$43462.50,47.13%,1708,$281.51,($202.82),$25.45,1.4,1.2,($7800.00),-15.97%
#1#=22#2#=54#3#=3,$47000.00,46.89%,1721,$285.86,($200.97),$27.31,1.4,1.3,($5750.00),-12.51%
#1#=22#2#=54#3#=4,$50225.00,47.17%,1732,$287.56,($201.87),$29.00,1.4,1.3,($6437.50),-14.16%
#1#=22#2#=54#3#=5,$52662.50,47.03%,1748,$290.28,($200.81),$30.13,1.4,1.3,($7912.50),-16.44%
#1#=22#2#=54#3#=6,$50875.00,47.16%,1743,$289.61,($203.24),$29.19,1.4,1.3,($7912.50),-17.55%
#1#=22#2#=54#3#=7,$53312.50,47.45%,1747,$290.73,($204.47),$30.52,1.4,1.3,($7375.00),-16.52%
#1#=22#2#=54#3#=8,$49587.50,47.65%,1746,$286.49,($206.54),$28.40,1.4,1.3,($8412.50),-19.27%
#1#=22#2#=54#3#=9,$47312.50,47.34%,1747,$287.83,($207.31),$27.08,1.4,1.2,($8687.50),-19.67%
#1#=22#2#=54#3#=10,$45025.00,47.56%,1745,$283.00,($207.50),$25.80,1.4,1.2,($8637.50),-19.38%
#1#=22#2#=54#3#=11,$44900.00,47.31%,1748,$284.55,($206.76),$25.69,1.4,1.2,($8312.50),-18.38%
#1#=22#2#=54#3#=12,$43000.00,46.86%,1750,$285.35,($205.36),$24.57,1.4,1.2,($8312.50),-18.19%
#1#=22#2#=54#3#=13,$44350.00,47.29%,1751,$285.01,($207.62),$25.33,1.4,1.2,($8962.50),-18.34%
#1#=22#2#=54#3#=14,$40862.50,46.88%,1749,$284.70,($207.31),$23.36,1.4,1.2,($8800.00),-18.83%
#1#=22#2#=54#3#=15,$42287.50,46.95%,1753,$284.64,($206.42),$24.12,1.4,1.2,($9562.50),-20.44%
#1#=22#2#=58#3#=2,$31700.00,46.60%,1676,$284.20,($212.58),$18.91,1.3,1.2,($7925.00),-18.82%
#1#=22#2#=58#3#=3,$35075.00,46.37%,1693,$287.37,($209.82),$20.72,1.4,1.2,($6237.50),-15.66%
#1#=22#2#=58#3#=4,$38500.00,46.89%,1704,$286.66,($210.54),$22.59,1.4,1.2,($6437.50),-15.78%
#1#=22#2#=58#3#=5,$41087.50,47.12%,1721,$286.13,($209.85),$23.87,1.4,1.2,($7912.50),-18.06%
#1#=22#2#=58#3#=6,$39600.00,47.18%,1717,$285.40,($211.22),$23.06,1.4,1.2,($7912.50),-18.99%
#1#=22#2#=58#3#=7,$40162.50,47.00%,1717,$288.52,($211.73),$23.39,1.4,1.2,($7375.00),-17.74%
#1#=22#2#=58#3#=8,$36775.00,46.92%,1720,$285.21,($211.82),$21.38,1.3,1.2,($8412.50),-20.64%
#1#=22#2#=58#3#=9,$38837.50,47.04%,1722,$285.85,($211.29),$22.55,1.4,1.2,($8687.50),-20.58%
#1#=22#2#=58#3#=10,$35575.00,47.03%,1718,$282.78,($211.99),$20.71,1.3,1.2,($8637.50),-21.16%
#1#=22#2#=58#3#=11,$33862.50,46.74%,1718,$284.64,($212.79),$19.71,1.3,1.2,($8312.50),-19.98%
#1#=22#2#=58#3#=12,$30687.50,46.07%,1717,$286.44,($211.54),$17.87,1.4,1.2,($8312.50),-19.52%
#1#=22#2#=58#3#=13,$30675.00,46.16%,1718,$287.41,($213.23),$17.86,1.3,1.2,($8312.50),-18.98%
#1#=22#2#=58#3#=14,$28262.50,46.10%,1716,$287.03,($214.89),$16.47,1.3,1.1,($8312.50),-20.59%
#1#=22#2#=58#3#=15,$29137.50,45.90%,1721,$287.99,($213.08),$16.93,1.4,1.1,($8312.50),-21.31%
#1#=24#2#=18#3#=2,$29812.50,48.60%,2611,$197.48,($164.52),$11.42,1.2,1.1,($8775.00),-22.36%
#1#=24#2#=18#3#=3,$30737.50,48.48%,2731,$196.45,($163.02),$11.26,1.2,1.1,($10837.50),-31.64%
#1#=24#2#=18#3#=4,$36737.50,48.10%,2846,$198.69,($159.29),$12.91,1.2,1.2,($12650.00),-37.96%
#1#=24#2#=18#3#=5,$48475.00,48.31%,2937,$198.52,($153.64),$16.50,1.3,1.2,($8350.00),-31.69%
#1#=24#2#=18#3#=6,$45500.00,48.00%,2971,$197.79,($153.11),$15.31,1.3,1.2,($8487.50),-31.06%
#1#=24#2#=18#3#=7,$46175.00,47.99%,3013,$195.58,($151.01),$15.33,1.3,1.2,($7750.00),-24.88%
#1#=24#2#=18#3#=8,$45062.50,47.80%,2994,$196.35,($150.94),$15.05,1.3,1.2,($8050.00),-24.55%
#1#=24#2#=18#3#=9,$44662.50,47.94%,3008,$195.17,($151.20),$14.85,1.3,1.2,($8787.50),-23.11%
#1#=24#2#=18#3#=10,$46150.00,48.45%,2993,$194.31,($152.69),$15.42,1.3,1.2,($8287.50),-33.62%
#1#=24#2#=18#3#=11,$35837.50,47.93%,2996,$191.88,($153.65),$11.96,1.2,1.1,($10400.00),-35.02%
#1#=24#2#=18#3#=12,$38575.00,48.06%,2990,$192.35,($153.15),$12.90,1.3,1.2,($8925.00),-29.42%
#1#=24#2#=18#3#=13,$36987.50,47.77%,2979,$194.01,($153.66),$12.42,1.3,1.2,($12150.00),-36.57%
#1#=24#2#=18#3#=14,$33750.00,47.55%,2965,$193.86,($154.08),$11.38,1.3,1.1,($12250.00),-36.81%
#1#=24#2#=18#3#=15,$34625.00,47.71%,2951,$193.23,($153.88),$11.73,1.3,1.1,($13050.00),-38.71%
#1#=24#2#=22#3#=2,$25925.00,48.00%,2804,$191.41,($158.92),$9.25,1.2,1.1,($8000.00),-21.19%
#1#=24#2#=22#3#=3,$26987.50,48.09%,2936,$189.45,($157.82),$9.19,1.2,1.1,($11862.50),-32.83%
#1#=24#2#=22#3#=4,$33850.00,47.49%,3043,$193.04,($153.38),$11.12,1.3,1.1,($13437.50),-38.50%
#1#=24#2#=22#3#=5,$44150.00,47.37%,3156,$192.96,($147.10),$13.99,1.3,1.2,($6587.50),-24.14%
#1#=24#2#=22#3#=6,$44437.50,47.06%,3177,$193.38,($145.46),$13.99,1.3,1.2,($6862.50),-22.97%
#1#=24#2#=22#3#=7,$48187.50,47.28%,3219,$191.07,($142.97),$14.97,1.3,1.2,($7237.50),-19.37%
#1#=24#2#=22#3#=8,$45312.50,46.97%,3206,$191.46,($142.96),$14.13,1.3,1.2,($6812.50),-18.13%
#1#=24#2#=22#3#=9,$44075.00,47.16%,3217,$189.95,($143.57),$13.70,1.3,1.2,($7412.50),-19.25%
#1#=24#2#=22#3#=10,$42925.00,47.20%,3199,$190.52,($144.92),$13.42,1.3,1.2,($6912.50),-20.02%
#1#=24#2#=22#3#=11,$37587.50,46.97%,3187,$189.58,($145.69),$11.79,1.3,1.2,($8987.50),-23.54%
#1#=24#2#=22#3#=12,$38500.00,46.65%,3177,$191.51,($144.73),$12.12,1.3,1.2,($9237.50),-24.40%
#1#=24#2#=22#3#=13,$37025.00,46.61%,3167,$191.84,($145.56),$11.69,1.3,1.2,($10887.50),-28.73%
#1#=24#2#=22#3#=14,$33912.50,46.28%,3155,$192.38,($145.70),$10.75,1.3,1.1,($10837.50),-28.65%
#1#=24#2#=22#3#=15,$32962.50,46.37%,3129,$191.92,($146.31),$10.53,1.3,1.1,($11312.50),-31.08%
#1#=24#2#=26#3#=2,$54462.50,47.57%,2403,$227.66,($163.29),$22.66,1.4,1.3,($8887.50),-18.69%
#1#=24#2#=26#3#=3,$58400.00,47.11%,2454,$231.52,($161.20),$23.80,1.4,1.3,($8862.50),-19.32%
#1#=24#2#=26#3#=4,$64687.50,46.94%,2480,$234.57,($158.32),$26.08,1.5,1.3,($7850.00),-20.89%
#1#=24#2#=26#3#=5,$70212.50,47.37%,2527,$232.49,($156.45),$27.78,1.5,1.3,($7275.00),-20.61%
#1#=24#2#=26#3#=6,$68787.50,46.99%,2539,$233.72,($156.05),$27.09,1.5,1.3,($7662.50),-25.30%
#1#=24#2#=26#3#=7,$73487.50,47.18%,2550,$234.86,($155.20),$28.82,1.5,1.4,($6950.00),-21.63%
#1#=24#2#=26#3#=8,$70912.50,46.87%,2537,$235.39,($155.02),$27.95,1.5,1.3,($6887.50),-23.68%
#1#=24#2#=26#3#=9,$70312.50,46.79%,2556,$234.46,($154.49),$27.51,1.5,1.3,($7662.50),-19.43%
#1#=24#2#=26#3#=10,$69437.50,46.95%,2524,$234.14,($155.35),$27.51,1.5,1.3,($8937.50),-19.26%
#1#=24#2#=26#3#=11,$63812.50,46.63%,2524,$233.43,($156.60),$25.28,1.5,1.3,($9162.50),-17.92%
#1#=24#2#=26#3#=12,$64700.00,46.74%,2499,$233.80,($156.56),$25.89,1.5,1.3,($9400.00),-18.08%
#1#=24#2#=26#3#=13,$66687.50,47.04%,2487,$234.19,($157.41),$26.81,1.5,1.3,($8975.00),-17.96%
#1#=24#2#=26#3#=14,$63887.50,46.91%,2479,$233.92,($158.18),$25.77,1.5,1.3,($9437.50),-19.48%
#1#=24#2#=26#3#=15,$63412.50,47.01%,2455,$235.12,($159.81),$25.83,1.5,1.3,($8587.50),-18.58%
#1#=24#2#=30#3#=2,$55362.50,46.70%,2197,$248.67,($170.60),$25.20,1.5,1.3,($9212.50),-19.38%
#1#=24#2#=30#3#=3,$56650.00,46.69%,2223,$250.79,($171.88),$25.48,1.5,1.3,($9375.00),-20.91%
#1#=24#2#=30#3#=4,$56175.00,46.17%,2259,$252.19,($170.12),$24.87,1.5,1.3,($9300.00),-21.46%
#1#=24#2#=30#3#=5,$61725.00,46.57%,2291,$251.43,($168.75),$26.94,1.5,1.3,($8150.00),-17.44%
#1#=24#2#=30#3#=6,$60912.50,46.54%,2301,$250.91,($168.95),$26.47,1.5,1.3,($10387.50),-21.96%
#1#=24#2#=30#3#=7,$63187.50,46.77%,2320,$250.41,($168.84),$27.24,1.5,1.3,($8712.50),-19.06%
#1#=24#2#=30#3#=8,$59525.00,46.23%,2310,$251.69,($168.50),$25.77,1.5,1.3,($9575.00),-20.59%
#1#=24#2#=30#3#=9,$56962.50,46.42%,2320,$248.40,($169.40),$24.55,1.5,1.3,($9937.50),-20.94%
#1#=24#2#=30#3#=10,$57450.00,46.41%,2314,$247.13,($167.71),$24.83,1.5,1.3,($11350.00),-23.63%
#1#=24#2#=30#3#=11,$54387.50,46.05%,2315,$247.87,($168.00),$23.49,1.5,1.3,($12550.00),-25.90%
#1#=24#2#=30#3#=12,$56562.50,46.13%,2302,$248.53,($167.24),$24.57,1.5,1.3,($12787.50),-25.73%
#1#=24#2#=30#3#=13,$59750.00,46.41%,2301,$249.20,($167.40),$25.97,1.5,1.3,($12187.50),-24.51%
#1#=24#2#=30#3#=14,$56687.50,46.48%,2289,$247.80,($168.96),$24.77,1.5,1.3,($12725.00),-26.80%
#1#=24#2#=30#3#=15,$56250.00,46.23%,2282,$249.67,($168.83),$24.65,1.5,1.3,($11575.00),-25.36%
#1#=24#2#=34#3#=2,$52700.00,46.47%,2070,$257.98,($176.42),$25.46,1.5,1.3,($7737.50),-15.92%
#1#=24#2#=34#3#=3,$54262.50,45.73%,2097,$263.46,($174.34),$25.88,1.5,1.3,($8625.00),-19.09%
#1#=24#2#=34#3#=4,$58475.00,45.70%,2114,$266.67,($173.45),$27.66,1.5,1.3,($8812.50),-19.61%
#1#=24#2#=34#3#=5,$62862.50,45.99%,2142,$266.76,($172.77),$29.35,1.5,1.3,($8362.50),-17.37%
#1#=24#2#=34#3#=6,$57912.50,46.17%,2142,$262.85,($175.24),$27.04,1.5,1.3,($9375.00),-19.87%
#1#=24#2#=34#3#=7,$60525.00,46.39%,2158,$263.37,($175.55),$28.05,1.5,1.3,($7400.00),-15.68%
#1#=24#2#=34#3#=8,$55400.00,45.95%,2146,$263.91,($176.56),$25.82,1.5,1.3,($9837.50),-21.01%
#1#=24#2#=34#3#=9,$54812.50,45.96%,2152,$262.82,($176.37),$25.47,1.5,1.3,($10212.50),-21.40%
#1#=24#2#=34#3#=10,$55437.50,45.71%,2146,$262.67,($173.59),$25.83,1.5,1.3,($10087.50),-20.82%
#1#=24#2#=34#3#=11,$55887.50,45.63%,2152,$262.87,($172.86),$25.97,1.5,1.3,($11512.50),-23.38%
#1#=24#2#=34#3#=12,$57075.00,46.06%,2145,$260.58,($173.18),$26.61,1.5,1.3,($10675.00),-21.51%
#1#=24#2#=34#3#=13,$57912.50,46.39%,2147,$260.84,($175.40),$26.97,1.5,1.3,($11375.00),-22.09%
#1#=24#2#=34#3#=14,$56712.50,46.07%,2136,$262.08,($174.63),$26.55,1.5,1.3,($11125.00),-22.55%
#1#=24#2#=34#3#=15,$56187.50,46.05%,2126,$263.39,($175.83),$26.43,1.5,1.3,($10750.00),-22.67%
#1#=24#2#=38#3#=2,$47225.00,46.29%,1966,$264.57,($183.27),$24.02,1.4,1.2,($7975.00),-17.77%
#1#=24#2#=38#3#=3,$48250.00,45.68%,1990,$269.76,($182.20),$24.25,1.5,1.2,($10137.50),-23.78%
#1#=24#2#=38#3#=4,$50975.00,45.59%,2005,$271.57,($180.79),$25.42,1.5,1.3,($9212.50),-21.67%
#1#=24#2#=38#3#=5,$55712.50,46.01%,2028,$271.41,($180.38),$27.47,1.5,1.3,($7075.00),-15.93%
#1#=24#2#=38#3#=6,$53150.00,46.09%,2031,$268.86,($181.28),$26.17,1.5,1.3,($8737.50),-20.56%
#1#=24#2#=38#3#=7,$58687.50,46.46%,2036,$271.13,($181.47),$28.82,1.5,1.3,($9150.00),-19.56%
#1#=24#2#=38#3#=8,$54525.00,46.13%,2031,$271.37,($182.59),$26.85,1.5,1.3,($10300.00),-23.00%
#1#=24#2#=38#3#=9,$54112.50,46.06%,2032,$271.43,($182.44),$26.63,1.5,1.3,($9887.50),-21.75%
#1#=24#2#=38#3#=10,$52987.50,45.90%,2026,$270.39,($181.09),$26.15,1.5,1.3,($10162.50),-22.38%
#1#=24#2#=38#3#=11,$54512.50,45.92%,2032,$270.08,($179.69),$26.83,1.5,1.3,($11300.00),-23.92%
#1#=24#2#=38#3#=12,$54512.50,45.95%,2026,$270.06,($179.83),$26.91,1.5,1.3,($11262.50),-23.16%
#1#=24#2#=38#3#=13,$56287.50,46.45%,2028,$269.89,($182.27),$27.76,1.5,1.3,($11200.00),-22.18%
#1#=24#2#=38#3#=14,$51400.00,45.79%,2020,$270.18,($181.29),$25.45,1.5,1.3,($11362.50),-23.96%
#1#=24#2#=38#3#=15,$53550.00,45.72%,2019,$272.16,($180.34),$26.52,1.5,1.3,($10300.00),-21.36%
#1#=24#2#=42#3#=2,$41700.00,46.82%,1869,$267.81,($193.80),$22.31,1.4,1.2,($10200.00),-23.60%
#1#=24#2#=42#3#=3,$46812.50,46.14%,1892,$275.52,($190.10),$24.74,1.4,1.2,($10925.00),-25.59%
#1#=24#2#=42#3#=4,$50200.00,46.30%,1907,$275.08,($188.18),$26.32,1.5,1.3,($9437.50),-21.29%
#1#=24#2#=42#3#=5,$51012.50,45.98%,1929,$277.38,($187.16),$26.45,1.5,1.3,($8125.00),-17.89%
#1#=24#2#=42#3#=6,$47925.00,45.92%,1934,$275.82,($188.34),$24.78,1.5,1.2,($9637.50),-23.08%
#1#=24#2#=42#3#=7,$50187.50,46.07%,1945,$276.59,($188.41),$25.80,1.5,1.3,($10662.50),-23.83%
#1#=24#2#=42#3#=8,$48112.50,46.19%,1942,$274.60,($189.67),$24.77,1.4,1.2,($10937.50),-24.72%
#1#=24#2#=42#3#=9,$46775.00,46.21%,1941,$274.60,($191.13),$24.10,1.4,1.2,($11050.00),-24.71%
#1#=24#2#=42#3#=10,$46350.00,46.16%,1939,$272.30,($189.04),$23.90,1.4,1.2,($11150.00),-24.78%
#1#=24#2#=42#3#=11,$47837.50,46.06%,1941,$274.43,($188.63),$24.65,1.5,1.2,($12400.00),-26.50%
#1#=24#2#=42#3#=12,$48137.50,45.80%,1939,$275.69,($187.13),$24.83,1.5,1.2,($12300.00),-25.73%
#1#=24#2#=42#3#=13,$49850.00,46.06%,1930,$277.70,($189.27),$25.83,1.5,1.3,($12500.00),-25.20%
#1#=24#2#=42#3#=14,$46062.50,45.66%,1925,$276.92,($188.67),$23.93,1.5,1.2,($12662.50),-27.66%
#1#=24#2#=42#3#=15,$48212.50,45.97%,1923,$276.68,($189.00),$25.07,1.5,1.2,($12550.00),-27.33%
#1#=24#2#=46#3#=2,$37950.00,46.55%,1809,$271.51,($197.17),$20.98,1.4,1.2,($10237.50),-22.56%
#1#=24#2#=46#3#=3,$39987.50,45.56%,1824,$279.44,($193.58),$21.92,1.4,1.2,($8450.00),-19.79%
#1#=24#2#=46#3#=4,$44350.00,45.65%,1840,$280.79,($191.51),$24.10,1.5,1.2,($6487.50),-14.60%
#1#=24#2#=46#3#=5,$48200.00,45.66%,1855,$283.43,($190.34),$25.98,1.5,1.3,($6325.00),-14.46%
#1#=24#2#=46#3#=6,$45237.50,45.77%,1857,$281.21,($192.44),$24.36,1.5,1.2,($7100.00),-16.02%
#1#=24#2#=46#3#=7,$47062.50,45.92%,1864,$283.21,($193.81),$25.25,1.5,1.2,($8125.00),-17.37%
#1#=24#2#=46#3#=8,$45962.50,46.08%,1864,$280.91,($194.37),$24.66,1.4,1.2,($8312.50),-18.22%
#1#=24#2#=46#3#=9,$44825.00,45.87%,1864,$281.84,($194.40),$24.05,1.4,1.2,($8275.00),-17.66%
#1#=24#2#=46#3#=10,$43525.00,45.72%,1859,$279.41,($192.24),$23.41,1.5,1.2,($8425.00),-18.57%
#1#=24#2#=46#3#=11,$44250.00,45.84%,1861,$279.94,($192.99),$23.78,1.5,1.2,($9675.00),-20.19%
#1#=24#2#=46#3#=12,$45412.50,45.89%,1861,$279.46,($191.91),$24.40,1.5,1.2,($9725.00),-19.78%
#1#=24#2#=46#3#=13,$42800.00,45.88%,1855,$280.43,($195.07),$23.07,1.4,1.2,($12575.00),-25.01%
#1#=24#2#=46#3#=14,$38600.00,45.22%,1851,$281.82,($194.56),$20.85,1.4,1.2,($12550.00),-26.41%
#1#=24#2#=46#3#=15,$41162.50,45.52%,1852,$281.24,($194.18),$22.23,1.4,1.2,($12162.50),-25.40%
#1#=24#2#=50#3#=2,$41512.50,46.82%,1747,$279.61,($201.52),$23.76,1.4,1.2,($8100.00),-17.24%
#1#=24#2#=50#3#=3,$43237.50,46.34%,1763,$285.30,($200.69),$24.52,1.4,1.2,($6212.50),-14.01%
#1#=24#2#=50#3#=4,$46287.50,46.39%,1774,$286.13,($198.95),$26.09,1.4,1.2,($6000.00),-13.10%
#1#=24#2#=50#3#=5,$47900.00,46.06%,1789,$290.52,($198.43),$26.77,1.5,1.3,($7250.00),-16.98%
#1#=24#2#=50#3#=6,$46900.00,46.18%,1791,$289.50,($199.70),$26.19,1.4,1.2,($7250.00),-17.78%
#1#=24#2#=50#3#=7,$49312.50,46.54%,1792,$291.02,($201.88),$27.52,1.4,1.3,($6725.00),-14.72%
#1#=24#2#=50#3#=8,$49850.00,46.56%,1787,$289.27,($199.82),$27.90,1.4,1.3,($6525.00),-14.43%
#1#=24#2#=50#3#=9,$47262.50,46.36%,1788,$289.32,($200.82),$26.43,1.4,1.2,($6637.50),-14.44%
#1#=24#2#=50#3#=10,$45437.50,46.23%,1789,$285.35,($198.08),$25.40,1.4,1.2,($6637.50),-15.76%
#1#=24#2#=50#3#=11,$44800.00,46.06%,1791,$287.38,($199.06),$25.01,1.4,1.2,($7637.50),-16.68%
#1#=24#2#=50#3#=12,$43600.00,45.92%,1790,$287.24,($198.88),$24.36,1.4,1.2,($7725.00),-16.61%
#1#=24#2#=50#3#=13,$42337.50,46.15%,1790,$286.40,($201.48),$23.65,1.4,1.2,($9975.00),-20.99%
#1#=24#2#=50#3#=14,$37850.00,45.50%,1787,$287.52,($201.13),$21.18,1.4,1.2,($10162.50),-22.58%
#1#=24#2#=50#3#=15,$39400.00,45.56%,1789,$287.19,($199.86),$22.02,1.4,1.2,($10275.00),-23.23%
#1#=24#2#=54#3#=2,$39487.50,46.95%,1691,$284.45,($207.76),$23.35,1.4,1.2,($7112.50),-14.10%
#1#=24#2#=54#3#=3,$42362.50,46.81%,1707,$287.97,($206.75),$24.82,1.4,1.2,($5337.50),-10.89%
#1#=24#2#=54#3#=4,$43600.00,47.18%,1717,$287.10,($208.32),$25.39,1.4,1.2,($5600.00),-12.65%
#1#=24#2#=54#3#=5,$43550.00,47.37%,1733,$285.48,($209.24),$25.13,1.4,1.2,($7075.00),-16.03%
#1#=24#2#=54#3#=6,$42775.00,47.46%,1730,$285.48,($210.78),$24.73,1.4,1.2,($7075.00),-16.43%
#1#=24#2#=54#3#=7,$44787.50,47.72%,1733,$286.99,($212.53),$25.84,1.4,1.2,($7137.50),-13.63%
#1#=24#2#=54#3#=8,$44400.00,47.43%,1733,$287.17,($210.37),$25.62,1.4,1.2,($6000.00),-13.75%
#1#=24#2#=54#3#=9,$44975.00,47.67%,1737,$286.01,($211.04),$25.89,1.4,1.2,($6225.00),-14.12%
#1#=24#2#=54#3#=10,$41425.00,47.52%,1736,$281.64,($209.58),$23.86,1.3,1.2,($7300.00),-16.65%
#1#=24#2#=54#3#=11,$41375.00,47.38%,1735,$283.01,($209.49),$23.85,1.4,1.2,($7750.00),-17.12%
#1#=24#2#=54#3#=12,$40625.00,46.95%,1738,$283.82,($207.13),$23.37,1.4,1.2,($7750.00),-16.70%
#1#=24#2#=54#3#=13,$39962.50,47.29%,1736,$283.89,($211.05),$23.02,1.3,1.2,($8062.50),-16.38%
#1#=24#2#=54#3#=14,$35900.00,46.71%,1732,$285.12,($211.01),$20.73,1.4,1.2,($8325.00),-17.67%
#1#=24#2#=54#3#=15,$37000.00,46.57%,1737,$285.49,($209.01),$21.30,1.4,1.2,($9312.50),-20.41%
#1#=24#2#=58#3#=2,$36162.50,47.34%,1656,$284.53,($214.35),$21.84,1.3,1.2,($7812.50),-14.01%
#1#=24#2#=58#3#=3,$38612.50,47.04%,1675,$288.37,($212.66),$23.05,1.4,1.2,($5937.50),-14.16%
#1#=24#2#=58#3#=4,$40650.00,47.62%,1684,$286.39,($214.33),$24.14,1.3,1.2,($5875.00),-14.24%
#1#=24#2#=58#3#=5,$41950.00,47.73%,1697,$287.79,($215.52),$24.72,1.3,1.2,($7575.00),-18.34%
#1#=24#2#=58#3#=6,$41075.00,47.64%,1696,$288.23,($216.01),$24.22,1.3,1.2,($7325.00),-18.26%
#1#=24#2#=58#3#=7,$41412.50,47.55%,1693,$291.63,($217.74),$24.46,1.3,1.2,($6312.50),-15.29%
#1#=24#2#=58#3#=8,$39525.00,47.40%,1692,$291.08,($217.89),$23.36,1.3,1.2,($6837.50),-15.53%
#1#=24#2#=58#3#=9,$41562.50,47.61%,1693,$290.68,($217.28),$24.55,1.3,1.2,($6575.00),-15.70%
#1#=24#2#=58#3#=10,$38850.00,47.63%,1690,$286.21,($216.44),$22.99,1.3,1.2,($7550.00),-18.59%
#1#=24#2#=58#3#=11,$38350.00,47.66%,1687,$286.88,($217.78),$22.73,1.3,1.2,($8000.00),-18.96%
#1#=24#2#=58#3#=12,$34237.50,46.98%,1686,$287.82,($216.68),$20.31,1.3,1.2,($8887.50),-18.89%
#1#=24#2#=58#3#=13,$34087.50,47.27%,1686,$287.42,($219.33),$20.22,1.3,1.2,($9012.50),-18.44%
#1#=24#2#=58#3#=14,$29862.50,46.64%,1683,$289.03,($219.40),$17.74,1.3,1.2,($8762.50),-19.93%
#1#=24#2#=58#3#=15,$31725.00,46.71%,1687,$288.63,($217.70),$18.81,1.3,1.2,($8437.50),-21.01%
when it finished it chose the parameters of 18-18-5 but this had a poor $ per trade and for tonight i picked 12-46-7 to show the system results which had slightly better $ per trade and fairly smooth equity curve and less trades.
test 12-47-7.png
test 12-47-7.png (58.9 KiB) Viewed 23723 times
test curve 12-46-7.png
test curve 12-46-7.png (42.23 KiB) Viewed 23723 times
other good parameters to quickly check out might be around these areas
16-46-4
14-50-7
2-50-12

let me know what you think. am i on the correct path?
i will have to process this a bit more when i have time

supracharger
Posts: 24
Joined: Tue Jul 21, 2015 9:32 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by supracharger » Fri Oct 30, 2015 5:39 pm

Hi Earik,

I'm looking at all of this optimization and it has me concerned that the data is over-fit/ curve-fit . I realize it has a nice upward sloping equity curve, and the average trade is good, which are good signs that the System will work well in the future, but how does one know that the profit (progress) will continue as we trade it? Do we hold some data back, and validate it with out of sample data, or is that overkill?

- Andrew

grasshopper
Posts: 1
Joined: Tue Oct 27, 2015 6:58 pm
Contact:

Re: Systems Workshop: "Buttonwood" E-mini daytrading system

Post by grasshopper » Fri Oct 30, 2015 9:56 pm

Hi,
Thanks Earik for this thread. I have been wanting to learn about the algo trading capabilities of W59.

The price data should be chopped up about 7 different ways, use many different sections of it, overlapping periods, random lengths and then the results used on out of sample data. It is shocking to see the apparent profits melt into losses, usually > than the slippage, bid offer spread and comm.
The book "Technical Analysis in Commodities" 1980 Kaufman is a classic and well worth reading. The chapter "Data errors and profit distortions" Gary Ginter and Joe Ritchie, Chicago Research & Trading, is essential reading. I worked there in the mid 80's when they were the leading options market makers on the CBOT and CME. Google Josesph Ritchie... Their leading indicator of Volatility was the range / mid and mean reversion was assumed. You can simulate that with 200 min MA. They had feeds from all the exchanges into their offices with massive computing power for their day, Data General machines. But no computers were allowed on the floor so they carried option pricing sheets priced in 1/2 points of vol Vs ATM and the Vol was based off the range/mid.

" ...If you are going to be a floor trader, you must consider everything as a type of arbitrage, and this arbitrage is related to the idea of how far above or below the mean the prices should go and what this mean was 10 seconds ago. You will always trade s if prices will return to the mean. You will occasionally lose; but in the long run you're going to come out profitably." JR


So the only chart I ever saw in their office was a horizontal line and bobbing up and down on that line were the open high lo close bars and the horizontal line was the mean. The mean line did not move - the days bars moved on the mean, the underlying and the options. All strikes. But they were selling at the offer and had virtually no clearing costs and no comm...

Gary

Post Reply

Who is online

Users browsing this forum: No registered users and 62 guests