I’m not sure, but it seems I’ve found a bug with scatter plots when a time axis is used. The first 10 seconds of data appears to be shown sometime in the future? Here’s what my errant plot looks like:
Here’s my code to make the plot:
fig = make_subplots(rows=1, cols=6, subplot_titles=simple_names)
for i_track, input_fn in enumerate(inputs_valid_ls):
simple_name = input_fn.split("_")[-1]
simple_name = simple_name.split(".")[0]
fig.add_trace(
go.Scatter(
y = frame_df.time_ms,
x = frame_df[simple_name],
# fill = 'tozerox'
),
row = 1,
col = i_track + 1
)
xaxis_format_dict = dict(
showticklabels=False,
linewidth=5,
showline=True,
linecolor="#CCCCCC",
range=[0, volume_max]
)
yaxis_format_dict = dict(
dtick=TIME_WINDOW_SEC*1000/4,
type="date",
tickformat="%M:%S", # "%M:%S.%L ms"
range=[time_ms_min, time_ms_max],
showgrid=True,
gridwidth=2,
gridcolor="#CCCCCC"
)
fig.update_layout(
xaxis_title="",
yaxis_title="Time",
plot_bgcolor="white",
showlegend=False,
autosize=False,
width=1920,
height=1080,
xaxis=xaxis_format_dict,
xaxis2=xaxis_format_dict,
xaxis3=xaxis_format_dict,
xaxis4=xaxis_format_dict,
xaxis5=xaxis_format_dict,
xaxis6=xaxis_format_dict,
yaxis1=yaxis_format_dict,
yaxis2=yaxis_format_dict,
yaxis3=yaxis_format_dict,
yaxis4=yaxis_format_dict,
yaxis5=yaxis_format_dict,
yaxis6=yaxis_format_dict,
)
Here’s the dataframe I’m plotting (named frame_df
in the code above):
,bass,drums,guitar,other,piano,vocals,time_ms
0,0.0003814697265625,3.0517578125e-05,3.0517578125e-05,4.57763671875e-05,6.103515625e-05,6.103515625e-05,0.0
1,0.0003509521484375,0.0,0.0,1.52587890625e-05,3.0517578125e-05,0.0,100.0
2,0.0003509521484375,0.0,0.0,1.52587890625e-05,3.0517578125e-05,0.0,200.0
3,0.0003509521484375,3.0517578125e-05,0.0,1.52587890625e-05,3.0517578125e-05,0.0,300.0
4,0.0003509521484375,3.0517578125e-05,0.0,1.52587890625e-05,3.0517578125e-05,0.0,400.0
5,0.0003509521484375,4.57763671875e-05,0.0,1.52587890625e-05,3.0517578125e-05,0.0,500.0
6,0.0003509521484375,7.62939453125e-05,0.0,1.52587890625e-05,3.0517578125e-05,0.0,600.0
7,0.0003509521484375,0.0001068115234375,1.52587890625e-05,3.0517578125e-05,3.0517578125e-05,1.52587890625e-05,700.0
8,0.0003509521484375,7.62939453125e-05,0.0,3.0517578125e-05,3.0517578125e-05,3.0517578125e-05,800.0
9,0.0003509521484375,0.00018310546875,0.0,4.57763671875e-05,3.0517578125e-05,3.0517578125e-05,900.0
10,0.0003509521484375,0.0012664794921875,0.0,4.57763671875e-05,3.0517578125e-05,3.0517578125e-05,1000.0
11,0.0003509521484375,0.0012054443359375,0.0,4.57763671875e-05,3.0517578125e-05,3.0517578125e-05,1100.0
12,0.0003509521484375,0.0013275146484375,0.0,4.57763671875e-05,3.0517578125e-05,3.0517578125e-05,1200.0
13,0.0003509521484375,0.0018768310546875,0.0,7.62939453125e-05,3.0517578125e-05,0.0,1300.0
14,0.0003509521484375,0.004730224609375,0.0,0.0001068115234375,3.0517578125e-05,0.0,1400.0
15,0.0003509521484375,0.0028533935546875,0.0,0.00048828125,3.0517578125e-05,0.0,1500.0
16,0.0003509521484375,0.003509521484375,0.0,0.00091552734375,3.0517578125e-05,0.0,1600.0
17,0.0003509521484375,0.0045318603515625,0.0,0.0015106201171875,3.0517578125e-05,0.0,1700.0
18,0.0003509521484375,0.0047454833984375,0.0,0.0020904541015625,3.0517578125e-05,1.52587890625e-05,1800.0
19,0.0003509521484375,0.004425048828125,0.0,0.004150390625,3.0517578125e-05,0.0,1900.0
20,0.0003509521484375,0.003997802734375,0.0,0.005462646484375,3.0517578125e-05,0.0,2000.0
21,0.0003509521484375,0.0091094970703125,0.0,0.00634765625,3.0517578125e-05,0.0,2100.0
22,0.0003509521484375,0.0045623779296875,0.0,0.004486083984375,3.0517578125e-05,0.0,2200.0
23,0.0003509521484375,0.004791259765625,0.0,0.0059967041015625,3.0517578125e-05,0.0,2300.0
24,0.0003509521484375,0.00653076171875,0.0,0.008331298828125,3.0517578125e-05,0.0,2400.0
25,0.0003509521484375,0.010650634765625,0.0,0.0074615478515625,4.57763671875e-05,0.0,2500.0
26,0.0003509521484375,0.0080108642578125,0.0,0.008514404296875,3.0517578125e-05,0.0,2600.0
27,0.0003509521484375,0.006439208984375,0.0,0.0085296630859375,3.0517578125e-05,0.0,2700.0
28,0.0003662109375,0.015655517578125,1.52587890625e-05,0.00830078125,4.57763671875e-05,0.0,2800.0
29,0.0003662109375,0.0146331787109375,1.52587890625e-05,0.010955810546875,4.57763671875e-05,0.0,2900.0
30,0.0003509521484375,0.010467529296875,1.52587890625e-05,0.01751708984375,4.57763671875e-05,3.0517578125e-05,3000.0
31,0.0003509521484375,0.01104736328125,1.52587890625e-05,0.014434814453125,4.57763671875e-05,0.0,3100.0
32,0.0003814697265625,0.01654052734375,1.52587890625e-05,0.0162506103515625,6.103515625e-05,0.0,3200.0
33,0.0003814697265625,0.0166015625,1.52587890625e-05,0.01641845703125,6.103515625e-05,1.52587890625e-05,3300.0
34,0.0003662109375,0.0148162841796875,1.52587890625e-05,0.0208587646484375,4.57763671875e-05,0.0,3400.0
35,0.0003814697265625,0.0167083740234375,1.52587890625e-05,0.0280303955078125,4.57763671875e-05,0.0,3500.0
36,0.0003814697265625,0.02203369140625,1.52587890625e-05,0.0231475830078125,6.103515625e-05,3.0517578125e-05,3600.0
37,0.0003662109375,0.0200347900390625,1.52587890625e-05,0.0178375244140625,4.57763671875e-05,0.0,3700.0
38,0.0003814697265625,0.0182037353515625,1.52587890625e-05,0.0152435302734375,4.57763671875e-05,1.52587890625e-05,3800.0
39,0.0003662109375,0.024200439453125,1.52587890625e-05,0.0211181640625,6.103515625e-05,3.0517578125e-05,3900.0
40,0.0003662109375,0.01873779296875,1.52587890625e-05,0.0233154296875,6.103515625e-05,3.0517578125e-05,4000.0
41,0.0003662109375,0.0131683349609375,1.52587890625e-05,0.02252197265625,4.57763671875e-05,0.0,4100.0
42,0.0003814697265625,0.0157470703125,1.52587890625e-05,0.0440826416015625,6.103515625e-05,3.0517578125e-05,4200.0
43,0.0003814697265625,0.028350830078125,1.52587890625e-05,0.0440521240234375,7.62939453125e-05,3.0517578125e-05,4300.0
44,0.0003814697265625,0.0218353271484375,1.52587890625e-05,0.037261962890625,7.62939453125e-05,3.0517578125e-05,4400.0
45,0.0003814697265625,0.0129241943359375,3.0517578125e-05,0.0553741455078125,9.1552734375e-05,3.0517578125e-05,4500.0
46,0.000396728515625,0.0111236572265625,3.0517578125e-05,0.067779541015625,0.0001220703125,3.0517578125e-05,4600.0
47,0.0003814697265625,0.0208587646484375,3.0517578125e-05,0.092742919921875,0.000152587890625,3.0517578125e-05,4700.0
48,0.00042724609375,0.0091400146484375,3.0517578125e-05,0.0889892578125,0.0001373291015625,3.0517578125e-05,4800.0
49,0.0004730224609375,0.009124755859375,3.0517578125e-05,0.0785369873046875,0.0001068115234375,3.0517578125e-05,4900.0
50,0.0007171630859375,0.0254669189453125,3.0517578125e-05,0.06640625,0.0001220703125,3.0517578125e-05,5000.0
51,0.0012969970703125,0.026702880859375,3.0517578125e-05,0.0623779296875,9.1552734375e-05,4.57763671875e-05,5100.0
52,0.0008544921875,0.0245208740234375,3.0517578125e-05,0.0842437744140625,7.62939453125e-05,3.0517578125e-05,5200.0
53,0.000579833984375,0.0137786865234375,3.0517578125e-05,0.0937652587890625,7.62939453125e-05,3.0517578125e-05,5300.0
54,0.001678466796875,0.028472900390625,3.0517578125e-05,0.089111328125,0.0001068115234375,3.0517578125e-05,5400.0
55,0.0084991455078125,0.02099609375,3.0517578125e-05,0.0920562744140625,0.0001068115234375,4.57763671875e-05,5500.0
56,0.0139617919921875,0.0135650634765625,3.0517578125e-05,0.103851318359375,9.1552734375e-05,4.57763671875e-05,5600.0
57,0.0218048095703125,0.0098419189453125,3.0517578125e-05,0.0925750732421875,9.1552734375e-05,6.103515625e-05,5700.0
58,0.033050537109375,0.0224609375,3.0517578125e-05,0.08038330078125,0.0001220703125,6.103515625e-05,5800.0
59,0.044036865234375,0.02252197265625,3.0517578125e-05,0.0628662109375,9.1552734375e-05,4.57763671875e-05,5900.0
60,0.0536041259765625,0.01263427734375,3.0517578125e-05,0.071258544921875,7.62939453125e-05,0.0001068115234375,6000.0
61,0.0598907470703125,0.0104827880859375,3.0517578125e-05,0.0688629150390625,0.0001068115234375,9.1552734375e-05,6100.0
62,0.0615692138671875,0.02874755859375,6.103515625e-05,0.0993499755859375,0.0001373291015625,0.0001068115234375,6200.0
63,0.0631561279296875,0.01617431640625,4.57763671875e-05,0.0762176513671875,0.0001678466796875,0.0001220703125,6300.0
64,0.0612335205078125,0.0107574462890625,0.000152587890625,0.0853729248046875,0.0001373291015625,0.0001373291015625,6400.0
65,0.0494537353515625,0.0318450927734375,0.2753143310546875,0.233062744140625,0.0005035400390625,0.0543670654296875,6500.0
66,0.0494232177734375,0.0215301513671875,0.0953521728515625,0.160858154296875,0.00030517578125,0.1335906982421875,6600.0
67,0.0500946044921875,0.0051727294921875,0.092132568359375,0.1529998779296875,0.0002899169921875,0.0779876708984375,6700.0
68,0.0479736328125,0.0064849853515625,0.080108642578125,0.123016357421875,0.0002593994140625,0.0471343994140625,6800.0
69,0.051116943359375,0.0240478515625,0.0895843505859375,0.1391448974609375,0.0002593994140625,0.149810791015625,6900.0
70,0.060089111328125,0.0205535888671875,0.0247344970703125,0.1753387451171875,0.0003204345703125,0.1920928955078125,7000.0
71,0.0829620361328125,0.0098724365234375,0.020751953125,0.196685791015625,0.000274658203125,0.1402435302734375,7100.0
72,0.1055450439453125,0.00677490234375,0.0159454345703125,0.132293701171875,0.000244140625,0.134124755859375,7200.0
73,0.1180572509765625,0.0366668701171875,0.041595458984375,0.1523284912109375,0.0003204345703125,0.1383209228515625,7300.0
74,0.117401123046875,0.0189361572265625,0.07177734375,0.1513214111328125,0.0002899169921875,0.1866912841796875,7400.0
75,0.1241607666015625,0.011810302734375,0.0558319091796875,0.1790924072265625,0.0002288818359375,0.2040252685546875,7500.0
76,0.1226959228515625,0.0225677490234375,0.0516815185546875,0.1655731201171875,0.0002288818359375,0.2051544189453125,7600.0
77,0.12005615234375,0.0227813720703125,0.0332183837890625,0.16522216796875,0.0002288818359375,0.14459228515625,7700.0
78,0.11529541015625,0.0103912353515625,0.030059814453125,0.16143798828125,0.0002288818359375,0.080291748046875,7800.0
79,0.109619140625,0.0088348388671875,0.0417633056640625,0.17572021484375,0.000244140625,0.11273193359375,7900.0
80,0.108306884765625,0.0444488525390625,0.0442047119140625,0.1911773681640625,0.0002899169921875,0.08819580078125,8000.0
81,0.101318359375,0.0160980224609375,0.023040771484375,0.1688079833984375,0.0002593994140625,0.1041259765625,8100.0
82,0.09552001953125,0.016265869140625,0.0106201171875,0.1836700439453125,0.000274658203125,0.1332855224609375,8200.0
83,0.0913543701171875,0.0298614501953125,0.0151519775390625,0.1806488037109375,0.000244140625,0.112030029296875,8300.0
84,0.1063232421875,0.0459136962890625,0.012664794921875,0.21014404296875,0.000244140625,0.10455322265625,8400.0
85,0.108551025390625,0.0118408203125,0.006561279296875,0.1882476806640625,0.0001983642578125,0.0901641845703125,8500.0
86,0.09820556640625,0.016876220703125,0.004302978515625,0.182891845703125,0.000244140625,0.0758056640625,8600.0
87,0.087127685546875,0.053009033203125,0.2341766357421875,0.1683197021484375,0.000335693359375,0.087066650390625,8700.0
88,0.0658416748046875,0.0395355224609375,0.3945159912109375,0.1050567626953125,0.00042724609375,0.0776824951171875,8800.0
89,0.052764892578125,0.0117950439453125,0.3488616943359375,0.11444091796875,0.0004119873046875,0.0679931640625,8900.0
90,0.0502471923828125,0.0102691650390625,0.2694854736328125,0.1955718994140625,0.0003814697265625,0.0649261474609375,9000.0
91,0.0532379150390625,0.048553466796875,0.3004608154296875,0.186279296875,0.00042724609375,0.0543670654296875,9100.0
92,0.0507965087890625,0.0337982177734375,0.2913665771484375,0.1851806640625,0.0004119873046875,0.05523681640625,9200.0
93,0.0485076904296875,0.017730712890625,0.37689208984375,0.1639862060546875,0.0004425048828125,0.0589447021484375,9300.0
94,0.0700836181640625,0.0147857666015625,0.330413818359375,0.1636505126953125,0.00042724609375,0.061553955078125,9400.0
95,0.0820465087890625,0.041168212890625,0.32666015625,0.2431182861328125,0.0005035400390625,0.1098175048828125,9500.0
96,0.0949554443359375,0.0117340087890625,0.222381591796875,0.2193603515625,0.0003204345703125,0.091796875,9600.0
97,0.102935791015625,0.0195465087890625,0.2081146240234375,0.19012451171875,0.00042724609375,0.0746612548828125,9700.0
98,0.111572265625,0.0476531982421875,0.1541748046875,0.1677703857421875,0.0003509521484375,0.098480224609375,9800.0
99,0.105682373046875,0.0450286865234375,0.1968231201171875,0.2286224365234375,0.00030517578125,0.141204833984375,9900.0
100,0.1013946533203125,0.0092010498046875,0.1544036865234375,0.2314453125,0.000244140625,0.0872955322265625,10000.0
101,0.092193603515625,0.014190673828125,0.151885986328125,0.2843780517578125,0.0002288818359375,0.064117431640625,10100.0
102,0.086700439453125,0.054931640625,0.1576080322265625,0.2259521484375,0.000274658203125,0.0387725830078125,10200.0
103,0.0867919921875,0.0256805419921875,0.090179443359375,0.24847412109375,0.0002593994140625,0.054656982421875,10300.0
104,0.104583740234375,0.02069091796875,0.079010009765625,0.2581329345703125,0.0001983642578125,0.037841796875,10400.0
105,0.107757568359375,0.0186767578125,0.0233612060546875,0.3112335205078125,0.00018310546875,0.0313873291015625,10500.0
106,0.131378173828125,0.042022705078125,0.011749267578125,0.3166351318359375,0.0003204345703125,0.0375823974609375,10600.0
107,0.137908935546875,0.0144805908203125,0.011199951171875,0.302825927734375,0.0002899169921875,0.0341644287109375,10700.0
108,0.1250762939453125,0.012542724609375,0.002838134765625,0.317657470703125,0.000274658203125,0.02496337890625,10800.0
109,0.111083984375,0.044219970703125,0.0013580322265625,0.349884033203125,0.0003204345703125,0.0220794677734375,10900.0
110,0.0959320068359375,0.04791259765625,0.0034637451171875,0.24652099609375,0.00030517578125,0.02239990234375,11000.0
111,0.081298828125,0.014129638671875,0.001861572265625,0.1768951416015625,0.0002593994140625,0.027374267578125,11100.0
112,0.1236419677734375,0.0144805908203125,0.0009918212890625,0.1634674072265625,0.00018310546875,0.016754150390625,11200.0
113,0.128570556640625,0.046173095703125,0.0037994384765625,0.2250823974609375,0.0002593994140625,0.0147247314453125,11300.0
114,0.1324462890625,0.0192108154296875,0.122802734375,0.228607177734375,0.0002288818359375,0.0139923095703125,11400.0
115,0.155792236328125,0.012969970703125,0.189208984375,0.2681732177734375,0.0002288818359375,0.00970458984375,11500.0
116,0.153045654296875,0.010650634765625,0.2082366943359375,0.251068115234375,0.000244140625,0.0065765380859375,11600.0
117,0.1651611328125,0.0357208251953125,0.1840362548828125,0.2456512451171875,0.0003814697265625,0.0069732666015625,11700.0
118,0.172515869140625,0.0209503173828125,0.2298583984375,0.2355194091796875,0.000274658203125,0.00653076171875,11800.0
119,0.1718292236328125,0.0183868408203125,0.2275848388671875,0.21441650390625,0.0003509521484375,0.005828857421875,11900.0
120,0.1538543701171875,0.04058837890625,0.2481536865234375,0.19915771484375,0.0005035400390625,0.006317138671875,12000.0
121,0.1362152099609375,0.0376129150390625,0.2303314208984375,0.2590789794921875,0.000457763671875,0.005859375,12100.0
122,0.102874755859375,0.013458251953125,0.1575469970703125,0.258758544921875,0.00042724609375,0.0048980712890625,12200.0
123,0.1312103271484375,0.0166778564453125,0.1602020263671875,0.245574951171875,0.0003509521484375,0.0069732666015625,12300.0
124,0.1312408447265625,0.0461578369140625,0.31158447265625,0.2640533447265625,0.003631591796875,0.0860595703125,12400.0
125,0.1298370361328125,0.027862548828125,0.132843017578125,0.2918853759765625,0.0026092529296875,0.10858154296875,12500.0
126,0.1148223876953125,0.0074005126953125,0.1084136962890625,0.2694549560546875,0.0007781982421875,0.0665435791015625,12600.0
127,0.123992919921875,0.0082244873046875,0.11669921875,0.2586822509765625,0.000946044921875,0.053558349609375,12700.0
128,0.1312103271484375,0.0353851318359375,0.0579681396484375,0.2104949951171875,0.0006561279296875,0.1572265625,12800.0
129,0.143157958984375,0.017852783203125,0.0175933837890625,0.2393341064453125,0.0006103515625,0.177154541015625,12900.0
130,0.1756439208984375,0.014739990234375,0.00927734375,0.1782379150390625,0.0007781982421875,0.1637725830078125,13000.0
131,0.184967041015625,0.0210723876953125,0.0020751953125,0.1643829345703125,0.000701904296875,0.1456451416015625,13100.0
132,0.1845703125,0.0443572998046875,0.0640716552734375,0.2840576171875,0.0007476806640625,0.122222900390625,13200.0
133,0.1534881591796875,0.01470947265625,0.0694427490234375,0.345123291015625,0.001068115234375,0.1167449951171875,13300.0
134,0.116851806640625,0.0139923095703125,0.0546417236328125,0.3716888427734375,0.0010223388671875,0.0875396728515625,13400.0
135,0.1069793701171875,0.0318450927734375,0.0812530517578125,0.437347412109375,0.0012054443359375,0.0874176025390625,13500.0
136,0.10552978515625,0.0198211669921875,0.0645751953125,0.349884033203125,0.001068115234375,0.0781402587890625,13600.0
137,0.1076507568359375,0.0101470947265625,0.0604400634765625,0.3772125244140625,0.003570556640625,0.1415557861328125,13700.0
138,0.1206207275390625,0.008453369140625,0.0839385986328125,0.4498748779296875,0.0029144287109375,0.1519775390625,13800.0
139,0.144927978515625,0.04705810546875,0.052093505859375,0.4597320556640625,0.0022735595703125,0.0964508056640625,13900.0
140,0.1439208984375,0.0118865966796875,0.04595947265625,0.4730072021484375,0.0026092529296875,0.0835723876953125,14000.0
141,0.1400909423828125,0.015838623046875,0.0408935546875,0.3201751708984375,0.00146484375,0.0799102783203125,14100.0
142,0.129486083984375,0.035125732421875,0.0329132080078125,0.2789154052734375,0.0021514892578125,0.0737152099609375,14200.0
143,0.13818359375,0.05108642578125,0.03973388671875,0.299468994140625,0.004180908203125,0.0582427978515625,14300.0
144,0.179168701171875,0.0109100341796875,0.0343170166015625,0.3254852294921875,0.0122833251953125,0.081146240234375,14400.0
145,0.173248291015625,0.014617919921875,0.0283355712890625,0.3024444580078125,0.01214599609375,0.0878143310546875,14500.0
146,0.148590087890625,0.0448760986328125,0.0452880859375,0.363555908203125,0.01055908203125,0.09075927734375,14600.0
147,0.17767333984375,0.0251007080078125,0.0513916015625,0.376556396484375,0.00616455078125,0.0906829833984375,14700.0
148,0.176605224609375,0.007965087890625,0.04669189453125,0.4237823486328125,0.006072998046875,0.0670166015625,14800.0
149,0.17449951171875,0.0071563720703125,0.078948974609375,0.3845367431640625,0.0098876953125,0.0651397705078125,14900.0
150,0.191802978515625,0.0316162109375,0.0810699462890625,0.41119384765625,0.07586669921875,0.1069793701171875,15000.0
151,0.2008056640625,0.0280914306640625,0.0297698974609375,0.3423004150390625,0.0619049072265625,0.0958709716796875,15100.0
152,0.233795166015625,0.0085906982421875,0.033233642578125,0.370880126953125,0.036285400390625,0.037445068359375,15200.0
153,0.230224609375,0.0093994140625,0.0290679931640625,0.369903564453125,0.0682220458984375,0.052886962890625,15300.0
154,0.133331298828125,0.0408477783203125,0.033966064453125,0.2799072265625,0.0782623291015625,0.0852203369140625,15400.0
155,0.0833587646484375,0.0197906494140625,0.05767822265625,0.3565521240234375,0.03253173828125,0.0952606201171875,15500.0
156,0.091949462890625,0.0127716064453125,0.07440185546875,0.4149932861328125,0.01800537109375,0.0657806396484375,15600.0
157,0.07244873046875,0.028564453125,0.0360107421875,0.408538818359375,0.0274505615234375,0.09149169921875,15700.0
158,0.04583740234375,0.02557373046875,0.0440216064453125,0.36456298828125,0.040252685546875,0.11944580078125,15800.0
159,0.0392608642578125,0.01019287109375,0.050628662109375,0.45306396484375,0.0319976806640625,0.1039886474609375,15900.0
160,0.0263519287109375,0.00762939453125,0.048370361328125,0.407806396484375,0.027984619140625,0.0709228515625,16000.0
161,0.01611328125,0.043304443359375,0.0414276123046875,0.3687744140625,0.0276336669921875,0.054229736328125,16100.0
162,0.0132904052734375,0.01336669921875,0.052825927734375,0.343963623046875,0.0305023193359375,0.050140380859375,16200.0
163,0.0099639892578125,0.0119476318359375,0.064544677734375,0.42132568359375,0.0246429443359375,0.0480499267578125,16300.0
164,0.0123443603515625,0.0242767333984375,0.0534820556640625,0.3874664306640625,0.0207061767578125,0.025421142578125,16400.0
165,0.016357421875,0.0374603271484375,0.06793212890625,0.409027099609375,0.0255279541015625,0.025177001953125,16500.0
166,0.0166015625,0.008026123046875,0.0521087646484375,0.402008056640625,0.0235748291015625,0.018280029296875,16600.0
167,0.0181884765625,0.012298583984375,0.0478363037109375,0.292572021484375,0.019683837890625,0.006439208984375,16700.0
168,0.011474609375,0.0383453369140625,0.0421905517578125,0.289093017578125,0.04913330078125,0.0013885498046875,16800.0
169,0.0066375732421875,0.0271453857421875,0.034027099609375,0.306427001953125,0.0610809326171875,0.0014495849609375,16900.0
170,0.001220703125,0.0084228515625,0.03472900390625,0.4527435302734375,0.056671142578125,0.001129150390625,17000.0
171,0.0008392333984375,0.007171630859375,0.0360260009765625,0.4286041259765625,0.0580902099609375,0.0007476806640625,17100.0
172,0.000762939453125,0.0355072021484375,0.027618408203125,0.398895263671875,0.039825439453125,0.0007171630859375,17200.0
173,0.0007781982421875,0.021331787109375,0.025238037109375,0.3441925048828125,0.0426788330078125,0.0006103515625,17300.0
174,0.0007171630859375,0.0121612548828125,0.0240020751953125,0.3587799072265625,0.0361328125,0.0015106201171875,17400.0
175,0.0007781982421875,0.010498046875,0.02685546875,0.409332275390625,0.0509490966796875,0.0019683837890625,17500.0
176,0.0006866455078125,0.0279998779296875,0.0230255126953125,0.37060546875,0.0985565185546875,0.0039825439453125,17600.0
177,0.0007476806640625,0.00787353515625,0.0210113525390625,0.298370361328125,0.093048095703125,0.0013580322265625,17700.0
178,0.0006866455078125,0.012603759765625,0.0137176513671875,0.2937164306640625,0.03887939453125,0.0007781982421875,17800.0
179,0.0005950927734375,0.02978515625,0.0108184814453125,0.281982421875,0.0413055419921875,0.0016632080078125,17900.0
180,0.000579833984375,0.0269775390625,0.0120086669921875,0.2277374267578125,0.0451202392578125,0.00244140625,18000.0
181,0.000518798828125,0.0046539306640625,0.0099945068359375,0.1938629150390625,0.01983642578125,0.202545166015625,18100.0
182,0.0005035400390625,0.002166748046875,0.008392333984375,0.174102783203125,0.020233154296875,0.216461181640625,18200.0
183,0.0006866455078125,0.02423095703125,0.0061492919921875,0.13006591796875,0.1449127197265625,0.6372528076171875,18300.0
184,0.000640869140625,0.0111846923828125,0.002471923828125,0.0733642578125,0.135406494140625,0.474395751953125,18400.0
185,0.00054931640625,0.0053253173828125,0.0005340576171875,0.0380096435546875,0.0948944091796875,0.380645751953125,18500.0
186,0.0005035400390625,0.0046539306640625,0.0003662109375,0.020233154296875,0.086456298828125,0.2233123779296875,18600.0
187,0.0004730224609375,0.0234527587890625,0.0002899169921875,0.0074615478515625,0.0482635498046875,0.218231201171875,18700.0
188,0.0005035400390625,0.00848388671875,0.0001678466796875,0.000946044921875,0.04595947265625,0.22467041015625,18800.0
189,0.00048828125,0.0030059814453125,0.0001068115234375,0.000244140625,0.0465087890625,0.1715087890625,18900.0
190,0.000518798828125,0.0174407958984375,0.0001373291015625,0.0001068115234375,0.1287689208984375,0.4028778076171875,19000.0
191,0.0005340576171875,0.0160675048828125,9.1552734375e-05,9.1552734375e-05,0.115386962890625,0.36492919921875,19100.0
192,0.00048828125,0.0043487548828125,7.62939453125e-05,7.62939453125e-05,0.08612060546875,0.430145263671875,19200.0
193,0.000518798828125,0.00372314453125,0.0001068115234375,7.62939453125e-05,0.0774993896484375,0.3585968017578125,19300.0
194,0.000457763671875,0.0203094482421875,0.0001220703125,7.62939453125e-05,0.09149169921875,0.360565185546875,19400.0
195,0.0004425048828125,0.00946044921875,9.1552734375e-05,6.103515625e-05,0.08331298828125,0.18365478515625,19500.0
196,0.0004119873046875,0.0040130615234375,4.57763671875e-05,6.103515625e-05,0.053558349609375,0.2200775146484375,19600.0
197,0.000579833984375,0.001922607421875,7.62939453125e-05,9.1552734375e-05,0.0559844970703125,0.7587890625,19700.0
198,0.0008087158203125,0.0148773193359375,0.0001220703125,0.0001678466796875,0.17633056640625,0.52545166015625,19800.0
199,0.000579833984375,0.0066680908203125,7.62939453125e-05,0.00018310546875,0.172637939453125,0.3897552490234375,19900.0
200,0.000518798828125,0.005218505859375,4.57763671875e-05,0.0001068115234375,0.086761474609375,0.2819061279296875,20000.0