Pothole data smoothing and detection of accelerometer data

Post here about your Arduino projects, get help - for Adafruit customers!

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
zacharoni16
 
Posts: 25
Joined: Thu Aug 16, 2012 6:21 pm

Pothole data smoothing and detection of accelerometer data

Post by zacharoni16 »

I wanted to start a separate thread concentrating on smoothing filtering and detecting bumps and potholes with an Arduino and my Accelerometer. I'm using an Analog Accelerometer set to 50HZ bandwidth sampling at 100HZ. I'm plotting data with MegunoLink (GREAT tool BTW). My delemma is that the accelerometer readings are noisy as hell, especially in a car with the engine running and road noise. What would be the best way to filter out the noise? I'm sampling at 100HZ I'm not sure how to implement at filter that wont affect the sampling rate... Also, I'm not sure if 100HZ is enough to sample at, it seems to catch the bump events pretty well though (graphs posted).

Accelerometer is a KXPS5-3157

I converted the accelerometer output to Gforce, should I be using Gforce, or should I use raw voltage or it doesn't matter for potholes application

Here is my code so far:

Code: Select all

/* ***********************************************************************************************************
    Send data to MegunoLink for plotting. 
    
    Read analog Z-axis acceloremeter data , bandwidth set to 50HZ by 
    external capacitors per the datasheet
    
    According to Nyquist we need to sample the accelerometer at least twice the bandwidth 
    
    Set Serial UART to 115200 to handle more than 100HZ sampling rate to plot to Meguno
    
    115200 baud means 115200 bit-times/second, and there are 10 bit-times per byte transmitted on the UART 
    (start bit, 8 data bits, and stop bit). 
    
    So 115200 / 10 = 11520 bytes / second = 11.520 bytes / millisecond. 
    
   ************************************************************************************************************/

#include <GraphSeries.h>

GraphSeries g_aGraphs[] = {"Z"}; //Z acceleration graph label for Meguno

// GLOBALS

long previousMillis = 0;
long interval = 10; // interval in milliseconds (10ms => 100Hz)
int data = 0;

//CALIBRATION DATA FOR ACCELEROMETER
float one_G = 647.0; // OFFSET OF 1G Z axis
float neg_G = 372.0; // OFFSET OF -1G Z axis
// Our ZERO G Reference should be in the middle of these two readings
float mZ = (one_G + neg_G) / 2.0; // ZERO_G REFERENCE FOR Z AXIS
// Estimate Z axis specific sensitivity difference of 2G between readings
float senZ = (one_G - neg_G) / 2.0;
float sensitivity = 440.0; // FROM DATASHEET TYPICAL SENSIVITIY 440mV/G

void setup()
{
  // The data is sent via the serial port. Initialize it.
  Serial.begin(115200);
  analogReference(EXTERNAL); // ACCELEROMETER IS 3.3VOLT
}


void loop()
{
  
  ReadAccelerometer();
  
}

void ReadAccelerometer()
{
   unsigned long currentMillis = millis();
   if((currentMillis - previousMillis) > interval) {
      previousMillis = currentMillis;

      // Read values from the ADC converter and send them out the serial port.
      data = analogRead(2); // READ ANALOG PIN 2 100uS
      
      //float GForceG = ((float)data - mZ) / senZ; // Convert ADC value to G force with gravity
      float GForce = ((float)data - (one_G)) / senZ; // ZERO BASE WITHOUT GRAVITY
 
      
      
      
      g_aGraphs[0].SendData(GForce); // SEND Z AXIS G FORCE
    }
}
Pothole at 25 MPH
Image

Pothole at 25 MPH zoomed

Image

I have two graphs at approximately 25 MPH the pothole event is obvious, then there was a subtle bump afterwards The other graph is the same data, but zoomed in slightly

I'm not sure how to detect the actual pothole event, if I could use FFT, standard Deviation threshold, running average?

Any advice, suggestions, input, wisdom is greatly appreciated!


I want to be able to detect and count potholes and bumps and also eventually score them on how "rough" they are to the passenger/driver probably based on a subjective scale or a human g force scale

User avatar
arctic_eddie
 
Posts: 233
Joined: Tue Feb 28, 2012 6:01 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by arctic_eddie »

If you want to try an FFT, you can use the FFFT library. It has a timer generated interrupt running at 9615Hz and collects 128 samples on ADC0. There is another library from France, the PlainFFT library, which does the transform after you have collected the data independently. It has more versatility than FFFT. However, I doubt if either will be fast enough for what you're trying to do. The alternative is either an analog or digital filter.

The analog version can be several stages of op-amps configured as a bandpass filter. Your sketch would then collect the data on ADC0 and do the analysis. The disadvantage is the lack of adjustments without changing circuit components.

The better choice would be a IIR Butterworth 3rd or 5th order bandpass filter. Set the two corner frequencies to encompass the equivalent frequency of your shock pulse. The link below leads to a filter worksheet. It will calculate the filter coefficient data, show a graph of the response curve, and list a C coded program. This can be copied directly into your sketch. In use, the filter takes one new data point, which overrides the oldest, and calculates the newest output value. Your sketch would then count the pulses above a threshold and evaluate the amplitude.

http://www-users.cs.york.ac.uk/~fisher/mkfilter/

Just for kicks, you could put an accelerometer on each front wheel A-frame, add the Ultimate GPS and micro SD card reader, and create a pothole map of your area.

zacharoni16
 
Posts: 25
Joined: Thu Aug 16, 2012 6:21 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by zacharoni16 »

Thanks artic eddie for the information:)

I wonder if I should add it to the dashboard of the car the accelerometer, and it would be subjected to damped harmonic oscillolator type signal from the suspension, or on the Suspenion A arm (unsprung mass) it will receive direct road input. Would the A-arm attachment be easier to detect potholes? You would have to filter out the road noise

I just realized the Accelerometer has built in 32K resistors so Ok the Accelerometer has 32k resistors built in that I didn't see before haha that makes it easy, so I can design a single pole RC filter if I want a 10HZ cutoff C = 1 / [2πRf] C = 1 / (2π * 32000 * 10HZ) = 497nF capacitor? This will be better than the 50HZ I currently have since the frequency of a pothole or bump on a cars suspension is very low

I'm upping the sampling rate since it seems like the pothole event is a very fast and large impulse to 1000 samples a second

I have a few ideas I can keep testing and find a threshold that potholes generate, the only problem is if I only look at the peak threshold with some sort of peak filter or peak detector it will consider everything as a pothole basically, speed bumps, expansion joints, manhole covers, road kill, etc

If I would use say a half-wave rectifier because the voltage swings negative, the pothole event has +G and -G components since the tire goes into and out of the hole and count the peaks?

Use standard deviation of the z axis data?

Could FFT be used to find the pattern of a pothole? and then look for the pattern continuously?

User avatar
arctic_eddie
 
Posts: 233
Joined: Tue Feb 28, 2012 6:01 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by arctic_eddie »

The best place to detect potholes will be on the upper A-frame just above the top ball joint. The dashboard would be a good place to detect passenger jolts and a comparison of what the suspension is seeing.

The output RC filter is a good place to eliminate the high frequency noise. The sensor already has a 1KHz digital low pass filter internally. The RCs corner frequency should be somewhat higher than the equivalent frequency of the pothole jolt. A frequency value twice as high would be a good place to start. If you make the capacitors plug into a two pin header then they can be changed later without any soldering. Use Mylar instead of ceramic for stability. The -3dB corner frequency is that which has a capacitive reactance equal to 32K. Your calculations are correct.

You can estimate the jolt frequency by assuming that one pulse is a half cycle. With your higher sampling rate, you should see the time lapse easily.

A pothole should produce a particular waveshape. The leading edge will depend on the diameter across the pothole in the direction of travel as it controls how much of the tire falls onto the bottom surface. The trailing edge will depend on how sharp the back edge of the hole is and the tire pressure. You can characterize the pulse by measuring the time from first threshold crossing to peak then peak to second threshold crossing.

You should not need a diode on the input signal as the device is ratiometric or a proportion of a single positive supply voltage. Zero G should be half of the supply voltage and 1 G should be part of your full scale value away from center. If the signal bottoms out near 0.0V then you would have to select a higher G scale. If it actually went negative then you could bias it up at the input of an op-amp buffer. The device also has I2C communication. You can set a lot of parameters this way, and also retrieve data. An ADXL345 breakout board is another alternative. I use one on an aerial photo stable platform.

You can use a running average of the standard deviation on the Z-axis then use that as your threshold. Four s.d. would be a good starting point.

You could use the FFT in the PlainFFT library to analyze the pulse after crossing the first threshold and characterize the jolt by relating several of the dominant frequencies. That library uses double precision floating point math and provides complex input and output. You might need to use a Mega board because memory usage will go up.

I would start with a sensor mounted anyplace convenient, the simple RC filter, and some form of data logging. Later, you can add a Butterworth 5-pole low pass filter and move the sensor to the A-frame. After seeing many jolt waveforms, then decide on a bandpass filter and perhaps FFT analysis. There are likely better filters for pulse work with less ringing. I use SciDAVis as my plotting and analysis program. It's free and comes in Windows and Linux versions.

zacharoni16
 
Posts: 25
Joined: Thu Aug 16, 2012 6:21 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by zacharoni16 »

Wow thank you for the great ideas , I wanted to first try to mount it on the dashboard or flood inside the car for conveince and to see how many G'a the riders are experiencing.

I had a question about driving up hills, in my accelerometer calibration I subtract 1G acting on the sensor al times by subtracting an offset to zero the sensor. When going up a hill gravity will be split across two vectors , and it would be something like g/ sin angle of tilt


I was wondering if I would have to have a gyroscope or tilt angle sensor to send the angle of the car to correct the gravity offset while driving up slopes, or could I use latitude data right off the gps or do you think I even have to correct it

Also what is " four s.d will be a good starting point " I'll be sampling at 1000hz I was wondering how much samples I should be doing running average and standard deviation how to handle 1000 samples a second and averaging them all ?


Or should I wait for buffer to fill up completely after the standard deviation and send the buffer all at once over serial rather than one data sample at a time. Not sure how to keep all the processing code from bogging down the sampling rate



Thank you

User avatar
arctic_eddie
 
Posts: 233
Joined: Tue Feb 28, 2012 6:01 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by arctic_eddie »

Tilt will not cause a notable problem in your case. A slope of 15° is probably the most you will see and that is only a 3% loss in the Gz axis. If you want to calculate tilt then use the equation:

angle = arctan( Gx / Gz ); // Assuming X is forward and Z is down. The function is in <math.h> and needs double as it's input data type.

Because your filters will allow frequencies up to the jolt equivalent, you will need to use a running average filter for the tilt calculation. This will run in parallel with the jolt detector but as an independent data array. You would collect the new data point and add it to both the jolt[] array and the tilt[] array. Next, you would update the jolt filter and tilt filter. If the data crosses any kind of threshold, then perform the needed calculations.

You won't need a gyro sensor as the accelerometer will do the job.

The "four s.d." term is just my way of saying four standard deviations. Three s.d.(+/-) will contain 99% of the data so four s.d. out either side is an event you might want to evaluate.

The sampling rate does not want to be greater than 1KHz as the sensor has a built-in filter set at the same value. I would set the rate such that you have enough time in the loop() routine to collect a data point, filter jolt and tilt, detect an event, and act on the event. This will be the worse case situation and limit the maximum sampling rate. The lower limit will be the Nyquist value for the highest digital filter corner frequency. The value is twice that frequency. If your upper value is 10Hz then you will have to sample at 20Hz or greater. I suspect that 100Hz will give a good picture of the road conditions and still allow plenty of time for the Arduino to process the worse case data situation. I think the Mega board will be your best choice. That's the one I use on my Dynamixel servo stabilized aerial photo platform.

zacharoni16
 
Posts: 25
Joined: Thu Aug 16, 2012 6:21 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by zacharoni16 »

I adjusted the sampling rate and lowered the LPF on the accelerometer to 15HZ. I have obtained better data, I see the negative and postive peaks in a pothole, it seems to oscillate and dampen with time making a "beat" type pattern. I wonder how the pattern could be programmatic ally found?

Image

Data looks to be expected with the matlab model, Large negative -G spike falling edge then damping oscillating G's with a +G spike out of the pothole and suspension going to equilibrium I only model with a 2DOF quarter car model though to compare. Usually one wheel hits a pothole in a discernible sample time

I know the derivative of acceleration would be "jerk" I'm wondering if the pothole data could be recognized by a series of decrementing jerks? The pattern is also negative though too, there has to be a signature to search for to find the pothole and count it. The only time there will be negative G's in the Z axis of a car is if the tire goes into a hole, or the car is airborne for a brief moment and hits the ground, so a negative "jerk" would be a good signature right?

User avatar
arctic_eddie
 
Posts: 233
Joined: Tue Feb 28, 2012 6:01 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by arctic_eddie »

The one characteristic I see for a pothole is a series of -G pulses over some period of time and exceeding a threshold value. It would take both of those conditions to distinguish the pothole from rough road noise.

You might also get MatLab to integrate the data(maybe twice) over time. The resulting trace(s) might be easier to parse for certain events. The second integral might be a measure of suspension deflection and be a better indicator. If it produces suspension displacement then you would have a profile of the pavement surface. You may need to mount the sensor on the A-frame to get good data.

zacharoni16
 
Posts: 25
Joined: Thu Aug 16, 2012 6:21 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by zacharoni16 »

I was thinking of something simple like this, the suspension seems to dampen the pothole very fast approximately 1 second to 1.2 seconds, I'm sampling at 200HZ, if I fill a running buffer of 200 elements with data from the accelerometer, it creates a "window", Then I would have code that counts -G peaks over a threshold, if it's > then say 5 then that would be a pothole?

5 -G peaks in a second window

User avatar
arctic_eddie
 
Posts: 233
Joined: Tue Feb 28, 2012 6:01 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by arctic_eddie »

That would work.

Try the double integration of your sample data. I'm curious as to how well it will show the road profile. Do you have the data in a text file that you could send? I would like to try it in SciDAVis.

zacharoni16
 
Posts: 25
Joined: Thu Aug 16, 2012 6:21 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by zacharoni16 »

I'm at work now, I can post it later, I'm curious too :) thanks for your help on this.

I actually want to put one accelerometer on the A-arm and one on the dash and compare the results. Another thing I was thinking, if I could find the peaks in the signal considering that a peak is above two adjacent lower values, I could count the peaks, also I could find the the logarithic decrement I believe that would be able to tell damping ratio and maybe could use that to scan for when the suspension is "damping" meaning it has been set into oscillation by a road event

Would double integration be way too process intensive on the Arduino MEGA?

User avatar
arctic_eddie
 
Posts: 233
Joined: Tue Feb 28, 2012 6:01 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by arctic_eddie »

Yes, the two sensor locations will tell you how well the suspension is working, including the shock absorbers.

Using the peak heights after the highest are data points for exponential decay, A*e^(-u*t), where u is the damping coefficient.

I don't think the incremental time integral is too much of a chore for the Mega. You would have two more arrays, velocity[] and displacement[]. They would be filled "on the fly" with the same index(idx) as used to fill the accel[] array. Integrate accel[] to get velocity[] then velocity[] to get displacement[]. You could try it with your sample data. The three plots on the same time scale would be interesting to view. When viewed together, the pothole signature might be easier to recognize.

I am designing a tri-axial FFT metal detector for road side bomb detection. It uses the Mega and has the following arrays.

2 double[128]
10 int[128]
9 int[64]

It captures one int[128] at 8KHz, converts to double[128], clears another double[128], processes the FFT, then analyzes both raw and transformed data for 3D display. The Mega still works but someday I'd like to move to the Due. The IDE for the Due and it's library calls have some serious flaws so I'll wait awhile.

zacharoni16
 
Posts: 25
Joined: Thu Aug 16, 2012 6:21 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by zacharoni16 »

WOW awesome I'd love to see a video of that project when it's done. Thanks for your help and insight, do you think I should implement a HPF, the pothole "spikes" seem to have fast rise time compared to the nosie and road oscillation noise. I figured like 50-200HZ HPF would help isolate and smooth out the peaks?

User avatar
arctic_eddie
 
Posts: 233
Joined: Tue Feb 28, 2012 6:01 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by arctic_eddie »

I would stay with the LPF until you have collected more data from dash and a-frame. The integrals may show a lot more useful info that keep the filtering code at a minimum.

The metal detector code is complete and I'm now working on coil design. I need more forward sensitivity so the assembly doesn't get too close too the blast area. That will be the limiting factor.

zacharoni16
 
Posts: 25
Joined: Thu Aug 16, 2012 6:21 pm

Re: Pothole data smoothing and detection of accelerometer data

Post by zacharoni16 »

Hey man :)

Here is the RAW DATA for 1 SECOND window of hitting a pothole

Seems maybe my Z axis is upside down O.o? lol

DATA was collected using only the 25HZ RC LPF on the end of the accelerometer Z-axis output no software filtering

Code: Select all

ZACCEL,TIME,GFORCE

Z,0.01,-0.01
Z,0.02,0.02
Z,0.03,0.06
Z,0.04,0.02
Z,0.05,0.04
Z,0.06,0.09
Z,0.07,0.07
Z,0.08,0.00
Z,0.09,-0.10
Z,0.10,-0.04
Z,0.11,-0.03
Z,0.12,-0.05
Z,0.13,-0.13
Z,0.14,-0.12
Z,0.15,-0.19
Z,0.16,-0.16
Z,0.17,-0.09
Z,0.18,-0.17
Z,0.19,-0.18
Z,0.20,0.04
Z,0.21,0.20
Z,0.22,0.04
Z,0.23,-0.12
Z,0.24,-0.25
Z,0.25,-0.15
Z,0.26,-0.17
Z,0.27,0.03
Z,0.28,0.08
Z,0.29,-0.09
Z,0.30,-0.26
Z,0.31,-0.30
Z,0.32,-0.04
Z,0.33,0.20
Z,0.34,0.36
Z,0.35,0.04
Z,0.36,-0.20
Z,0.37,-0.38
Z,0.38,-0.40
Z,0.39,-0.25
Z,0.40,-0.17
Z,0.41,0.40
Z,0.42,0.93
Z,0.43,0.69
Z,0.44,0.01
Z,0.45,-0.17
Z,0.46,-0.42
Z,0.47,-0.54
Z,0.48,-0.21
Z,0.49,0.22
Z,0.50,0.83
Z,0.51,0.65
Z,0.52,0.18
Z,0.53,-0.15
Z,0.54,-0.12
Z,0.55,-0.25
Z,0.56,-0.49
Z,0.57,0.01
Z,0.58,-0.04
Z,0.59,0.37
Z,0.60,0.36
Z,0.61,-0.29
Z,0.62,-0.27
Z,0.63,0.04
Z,0.64,0.06
Z,0.65,-0.09
Z,0.66,-0.04
Z,0.67,0.01
Z,0.68,0.01
Z,0.69,0.28
Z,0.70,-0.08
Z,0.71,-0.18
Z,0.72,-0.11
Z,0.73,-0.10
Z,0.74,0.11
Z,0.75,0.15
Z,0.76,0.01
Z,0.77,-0.11
Z,0.78,-0.33
Z,0.79,-0.14
Z,0.80,0.12
Z,0.81,0.04
Z,0.82,0.01
Z,0.83,0.17
Z,0.84,0.09
Z,0.85,-0.02
Z,0.86,-0.07
Z,0.87,-0.04
Z,0.88,0.04
Z,0.89,0.04
Z,0.90,0.02
Z,0.91,0.09
Z,0.92,0.05
Z,0.93,-0.01
Z,0.94,0.01
Z,0.95,0.01
Z,0.96,-0.07
Z,0.97,0.07
Z,0.98,0.08
Z,0.99,0.12
Z,1.00,0.01
RAW DIRECT DATA PICTURE from accelerometer:

Image


Damn, excel filtered all the noise lol in the line graph version

Image

FFT on this seems to peak energy @ 12.5HZ, Would this be a good frequency to filter for?:

Image


HERE IS RAW DATA FOR driving at constant speed, hitting about 6 to 9 potholes and some rough patches in the road

Code: Select all

TIME,GFORCE
0,-0.06
0.01,-0.06
0.02,-0.07
0.03,-0.06
0.04,-0.04
0.05,0
0.06,0.01
0.07,0
0.08,-0.02
0.09,-0.04
0.1,-0.01
0.11,0.01
0.12,-0.02
0.13,-0.04
0.14,-0.04
0.15,-0.02
0.16,0
0.17,0
0.18,0.01
0.19,0
0.2,0.01
0.21,0
0.22,-0.01
0.23,0.01
0.24,0.04
0.25,0.04
0.26,0.01
0.27,-0.01
0.28,-0.01
0.29,-0.01
0.3,-0.01
0.31,-0.01
0.32,0.01
0.33,0.03
0.34,-0.01
0.35,0
0.36,0.01
0.37,0.04
0.38,0.07
0.39,0.06
0.4,0.03
0.41,0.01
0.42,0.02
0.43,0.02
0.44,0.03
0.45,0.04
0.46,0.07
0.47,0.07
0.48,0.01
0.49,0.04
0.5,0.07
0.51,0.07
0.52,0.05
0.53,0.04
0.54,0.04
0.55,0.02
0.56,0.03
0.57,0.02
0.58,0.04
0.59,0.02
0.6,0.01
0.61,0.01
0.62,0.03
0.63,0.02
0.64,0.01
0.65,0
0.66,-0.01
0.67,-0.01
0.68,0
0.69,0.02
0.7,0.04
0.71,0.01
0.72,0.01
0.73,0.01
0.74,0.02
0.75,0.01
0.76,-0.01
0.77,0.01
0.78,0.01
0.79,-0.01
0.8,0.01
0.81,0.01
0.82,0.01
0.83,-0.01
0.84,0.02
0.85,0.01
0.86,-0.03
0.87,-0.04
0.88,-0.01
0.89,-0.01
0.9,0
0.91,-0.03
0.92,-0.03
0.93,-0.04
0.94,-0.04
0.95,-0.01
0.96,-0.01
0.97,-0.01
0.98,0.01
0.99,-0.02
1,-0.04
1.01,-0.04
1.02,-0.01
1.03,0.02
1.04,-0.01
1.05,-0.01
1.06,-0.03
1.07,-0.02
1.08,0
1.09,0.01
1.1,0.01
1.11,0.01
1.12,0.01
1.13,0.03
1.14,0.03
1.15,0.01
1.16,-0.03
1.17,0
1.18,0.02
1.19,0.05
1.2,0.03
1.21,0
1.22,0
1.23,0.01
1.24,0.04
1.25,0.04
1.26,0.03
1.27,0
1.28,-0.01
1.29,0.01
1.3,0.02
1.31,0.04
1.32,0.02
1.33,0.02
1.34,0.01
1.35,0
1.36,0.01
1.37,0.06
1.38,0.04
1.39,0.02
1.4,0
1.41,0.01
1.42,0.01
1.43,0.01
1.44,0.03
1.45,0.07
1.46,0.05
1.47,0.03
1.48,0.01
1.49,0.02
1.5,0.03
1.51,0.01
1.52,0.02
1.53,0.03
1.54,0.01
1.55,-0.01
1.56,-0.02
1.57,0
1.58,0.01
1.59,0.01
1.6,0.01
1.61,0.02
1.62,0.03
1.63,0.03
1.64,0.01
1.65,0.01
1.66,-0.03
1.67,-0.06
1.68,-0.04
1.69,0.01
1.7,0.02
1.71,0.01
1.72,-0.04
1.73,-0.04
1.74,-0.01
1.75,0.01
1.76,0
1.77,-0.03
1.78,-0.02
1.79,-0.01
1.8,0.01
1.81,-0.01
1.82,-0.01
1.83,-0.01
1.84,0.01
1.85,0.02
1.86,0.04
1.87,0.04
1.88,-0.01
1.89,-0.01
1.9,0.01
1.91,0.04
1.92,0.04
1.93,0.04
1.94,0.04
1.95,0.01
1.96,-0.01
1.97,0
1.98,0.06
1.99,0.06
2,0.04
2.01,0.03
2.02,0.04
2.03,0.06
2.04,0.07
2.05,0.09
2.06,0.07
2.07,0.04
2.08,0.04
2.09,0.03
2.1,0.02
2.11,0.04
2.12,0.06
2.13,0.04
2.14,0.01
2.15,0.01
2.16,0.02
2.17,0.03
2.18,0.03
2.19,0.01
2.2,0.01
2.21,-0.02
2.22,-0.01
2.23,0.01
2.24,0.07
2.25,0.02
2.26,-0.01
2.27,-0.06
2.28,0.02
2.29,0.04
2.3,0.02
2.31,0.01
2.32,0.01
2.33,-0.01
2.34,-0.06
2.35,-0.04
2.36,-0.03
2.37,-0.01
2.38,-0.03
2.39,-0.02
2.4,-0.01
2.41,-0.03
2.42,-0.06
2.43,-0.07
2.44,-0.07
2.45,-0.04
2.46,-0.04
2.47,-0.03
2.48,0
2.49,0
2.5,0.01
2.51,-0.04
2.52,-0.01
2.53,0.01
2.54,0.02
2.55,0.01
2.56,0.01
2.57,0
2.58,0.01
2.59,0.01
2.6,0.01
2.61,-0.01
2.62,0.02
2.63,0.04
2.64,0.03
2.65,0.02
2.66,-0.01
2.67,-0.01
2.68,0.01
2.69,-0.01
2.7,0
2.71,0.01
2.72,0.01
2.73,-0.01
2.74,0
2.75,0.01
2.76,0
2.77,-0.01
2.78,-0.01
2.79,0
2.8,0.04
2.81,0.04
2.82,0.03
2.83,0.01
2.84,0.02
2.85,0.02
2.86,0.01
2.87,-0.01
2.88,-0.01
2.89,0
2.9,-0.02
2.91,-0.01
2.92,0
2.93,0.01
2.94,0.01
2.95,0.01
2.96,0.01
2.97,-0.01
2.98,-0.01
2.99,-0.01
3,-0.01
3.01,-0.01
3.02,-0.01
3.03,-0.01
3.04,0.01
3.05,0.04
3.06,0.02
3.07,0.01
3.08,0.02
3.09,0.01
3.1,0.01
3.11,0.03
3.12,0.03
3.13,0.01
3.14,0.01
3.15,-0.02
3.16,-0.03
3.17,-0.03
3.18,-0.01
3.19,0.01
3.2,0
3.21,-0.01
3.22,-0.01
3.23,-0.04
3.24,-0.03
3.25,-0.02
3.26,-0.01
3.27,0.02
3.28,0.03
3.29,0
3.3,-0.01
3.31,0
3.32,0.01
3.33,0.01
3.34,0.03
3.35,0.01
3.36,0.01
3.37,-0.01
3.38,-0.03
3.39,0.01
3.4,0.01
3.41,0.02
3.42,0
3.43,0
3.44,-0.02
3.45,-0.01
3.46,-0.01
3.47,0.05
3.48,0.05
3.49,0.07
3.5,0.02
3.51,-0.01
3.52,-0.04
3.53,0.01
3.54,0.08
3.55,0.1
3.56,0.07
3.57,0.03
3.58,-0.01
3.59,0.04
3.6,0.07
3.61,0.03
3.62,-0.01
3.63,0.03
3.64,0.03
3.65,0.03
3.66,-0.01
3.67,-0.02
3.68,0.01
3.69,0.04
3.7,0.03
3.71,0
3.72,-0.08
3.73,-0.02
3.74,0.02
3.75,0.01
3.76,-0.07
3.77,-0.05
3.78,-0.01
3.79,-0.01
3.8,-0.01
3.81,-0.01
3.82,0
3.83,-0.01
3.84,-0.01
3.85,-0.04
3.86,-0.08
3.87,-0.08
3.88,-0.04
3.89,0.02
3.9,0.02
3.91,0.01
3.92,-0.07
3.93,-0.04
3.94,-0.01
3.95,-0.02
3.96,-0.01
3.97,0.02
3.98,-0.02
3.99,-0.04
4,-0.04
4.01,0
4.02,-0.01
4.03,-0.03
4.04,0.01
4.05,0.09
4.06,0.05
4.07,-0.04
4.08,0.01
4.09,0.07
4.1,0.01
4.11,0
4.12,-0.04
4.13,0.02
4.14,0.08
4.15,0.15
4.16,0.07
4.17,-0.02
4.18,0
4.19,-0.01
4.2,0.04
4.21,0.04
4.22,0.02
4.23,0.02
4.24,0.04
4.25,0.01
4.26,-0.03
4.27,0.01
4.28,0.04
4.29,0.05
4.3,0.02
4.31,0.01
4.32,0.05
4.33,0.07
4.34,-0.06
4.35,-0.15
4.36,0
4.37,0.07
4.38,0.12
4.39,0.03
4.4,-0.04
4.41,-0.02
4.42,-0.05
4.43,-0.03
4.44,0.01
4.45,-0.01
4.46,0.02
4.47,-0.03
4.48,0.05
4.49,0.03
4.5,0.05
4.51,-0.03
4.52,0.01
4.53,0.01
4.54,0.02
4.55,0.09
4.56,0.01
4.57,0.02
4.58,-0.15
4.59,-0.12
4.6,0.04
4.61,-0.04
4.62,0.04
4.63,0.02
4.64,-0.01
4.65,-0.01
4.66,0.03
4.67,0.07
4.68,0.06
4.69,-0.03
4.7,0.07
4.71,0.09
4.72,-0.01
4.73,0.04
4.74,-0.01
4.75,0.01
4.76,0.06
4.77,0.04
4.78,0.03
4.79,-0.01
4.8,0.03
4.81,0.07
4.82,0.03
4.83,0
4.84,-0.06
4.85,-0.03
4.86,-0.01
4.87,0.07
4.88,0.09
4.89,0.07
4.9,0.09
4.91,0.05
4.92,0.04
4.93,-0.04
4.94,-0.01
4.95,0.01
4.96,0.07
4.97,0.07
4.98,0.01
4.99,-0.04
5,0.02
5.01,-0.04
5.02,-0.05
5.03,0.04
5.04,0.07
5.05,-0.01
5.06,-0.11
5.07,-0.08
5.08,-0.05
5.09,-0.04
5.1,-0.01
5.11,0.01
5.12,-0.02
5.13,-0.03
5.14,-0.05
5.15,-0.06
5.16,-0.08
5.17,-0.02
5.18,0.02
5.19,-0.04
5.2,-0.07
5.21,-0.02
5.22,-0.04
5.23,-0.03
5.24,-0.05
5.25,-0.01
5.26,-0.01
5.27,-0.04
5.28,0.01
5.29,-0.01
5.3,-0.04
5.31,-0.06
5.32,0.01
5.33,0.02
5.34,0.06
5.35,0.06
5.36,0.04
5.37,0.04
5.38,0.02
5.39,0.02
5.4,-0.01
5.41,0.06
5.42,0.07
5.43,0.06
5.44,0.02
5.45,0.01
5.46,0.01
5.47,0.06
5.48,0.05
5.49,0.09
5.5,0.08
5.51,0.04
5.52,0.01
5.53,-0.01
5.54,0.03
5.55,0.07
5.56,0.09
5.57,0.07
5.58,0.06
5.59,0.07
5.6,0.04
5.61,-0.02
5.62,-0.01
5.63,0.01
5.64,0.04
5.65,0.03
5.66,0.01
5.67,0
5.68,0.01
5.69,0.01
5.7,0.01
5.71,-0.01
5.72,0.01
5.73,0.01
5.74,-0.01
5.75,0
5.76,0
5.77,0.02
5.78,0.04
5.79,0.02
5.8,-0.02
5.81,-0.06
5.82,-0.06
5.83,-0.04
5.84,-0.05
5.85,-0.04
5.86,-0.02
5.87,-0.01
5.88,-0.01
5.89,-0.05
5.9,-0.07
5.91,-0.06
5.92,-0.04
5.93,0.01
5.94,0.01
5.95,-0.01
5.96,-0.04
5.97,-0.01
5.98,-0.01
5.99,0
6,0.01
6.01,0.04
6.02,0.01
6.03,-0.01
6.04,-0.02
6.05,-0.03
6.06,0
6.07,0.01
6.08,0.04
6.09,0.05
6.1,0.04
6.11,0.01
6.12,0
6.13,0.04
6.14,0.07
6.15,0.09
6.16,0.05
6.17,0.02
6.18,0.01
6.19,0.04
6.2,0.04
6.21,0.04
6.22,0.01
6.23,0.04
6.24,0.04
6.25,0.04
6.26,0
6.27,0.01
6.28,0.01
6.29,0.01
6.3,0.02
6.31,0.01
6.32,-0.01
6.33,-0.01
6.34,-0.01
6.35,0.01
6.36,0.01
6.37,-0.01
6.38,-0.04
6.39,-0.06
6.4,-0.04
6.41,-0.04
6.42,-0.01
6.43,-0.03
6.44,-0.02
6.45,-0.04
6.46,-0.05
6.47,-0.06
6.48,-0.04
6.49,-0.04
6.5,-0.02
6.51,-0.01
6.52,-0.02
6.53,-0.02
6.54,-0.03
6.55,-0.05
6.56,-0.03
6.57,0
6.58,0.01
6.59,0
6.6,-0.02
6.61,-0.01
6.62,0.02
6.63,-0.01
6.64,-0.02
6.65,-0.04
6.66,-0.01
6.67,0.01
6.68,0.04
6.69,0.02
6.7,0
6.71,-0.01
6.72,0.02
6.73,0.03
6.74,0.04
6.75,-0.01
6.76,0
6.77,0.03
6.78,0.02
6.79,0.02
6.8,0.01
6.81,0.02
6.82,0.02
6.83,0.01
6.84,-0.01
6.85,-0.02
6.86,-0.03
6.87,-0.02
6.88,0
6.89,0.04
6.9,0.04
6.91,0.04
6.92,0.02
6.93,0.04
6.94,0.07
6.95,0.08
6.96,0.04
6.97,0.01
6.98,0.04
6.99,0.07
7,0.1
7.01,0.06
7.02,-0.01
7.03,0.01
7.04,0.04
7.05,0.08
7.06,0.05
7.07,0.03
7.08,0.01
7.09,-0.01
7.1,-0.02
7.11,-0.01
7.12,0.02
7.13,0.03
7.14,0.03
7.15,0.04
7.16,0.03
7.17,0
7.18,-0.04
7.19,-0.02
7.2,0.01
7.21,-0.01
7.22,0.01
7.23,0
7.24,-0.03
7.25,-0.01
7.26,0.01
7.27,0.04
7.28,-0.01
7.29,-0.03
7.3,-0.09
7.31,-0.07
7.32,-0.03
7.33,0.01
7.34,0.01
7.35,0.01
7.36,0.01
7.37,-0.03
7.38,-0.08
7.39,-0.07
7.4,-0.05
7.41,-0.01
7.42,0.01
7.43,0.01
7.44,0.01
7.45,-0.02
7.46,-0.01
7.47,0.01
7.48,0.01
7.49,0
7.5,-0.02
7.51,-0.02
7.52,-0.01
7.53,-0.01
7.54,0
7.55,-0.01
7.56,0.01
7.57,0.03
7.58,0
7.59,-0.01
7.6,-0.01
7.61,0.05
7.62,0.04
7.63,0.05
7.64,0.02
7.65,0.01
7.66,0.01
7.67,0.01
7.68,0.02
7.69,0.02
7.7,0.04
7.71,0.07
7.72,0.03
7.73,-0.02
7.74,-0.05
7.75,-0.03
7.76,0.02
7.77,0.06
7.78,0.07
7.79,0.07
7.8,0.05
7.81,0.04
7.82,0.03
7.83,0.05
7.84,0.05
7.85,0.05
7.86,0.06
7.87,0.02
7.88,-0.02
7.89,-0.01
7.9,0.01
7.91,-0.01
7.92,-0.02
7.93,-0.06
7.94,-0.01
7.95,0
7.96,-0.01
7.97,-0.02
7.98,-0.04
7.99,0
8,0.01
8.01,-0.01
8.02,-0.06
8.03,-0.09
8.04,-0.09
8.05,-0.05
8.06,-0.01
8.07,-0.01
8.08,-0.06
8.09,-0.09
8.1,-0.12
8.11,-0.13
8.12,-0.12
8.13,-0.05
8.14,-0.04
8.15,-0.04
8.16,-0.1
8.17,-0.13
8.18,-0.2
8.19,-0.17
8.2,-0.12
8.21,-0.12
8.22,-0.02
8.23,0.23
8.24,0.4
8.25,0.4
8.26,0.05
8.27,-0.16
8.28,-0.16
8.29,0.02
8.3,0.35
8.31,0.49
8.32,0.36
8.33,0.1
8.34,-0.06
8.35,-0.05
8.36,0.04
8.37,0.17
8.38,0.21
8.39,0.23
8.4,0.1
8.41,0.02
8.42,0
8.43,0.11
8.44,0.3
8.45,0.32
8.46,0.32
8.47,0.19
8.48,0.08
8.49,-0.1
8.5,-0.05
8.51,0.11
8.52,0.2
8.53,0.11
8.54,0.04
8.55,-0.07
8.56,-0.14
8.57,-0.07
8.58,-0.05
8.59,-0.01
8.6,-0.05
8.61,-0.09
8.62,-0.13
8.63,-0.12
8.64,-0.08
8.65,-0.12
8.66,-0.17
8.67,-0.17
8.68,-0.1
8.69,-0.07
8.7,-0.07
8.71,-0.1
8.72,-0.17
8.73,-0.17
8.74,-0.17
8.75,-0.1
8.76,-0.07
8.77,-0.04
8.78,-0.06
8.79,-0.08
8.8,-0.07
8.81,-0.05
8.82,-0.01
8.83,-0.01
8.84,-0.01
8.85,-0.01
8.86,0.02
8.87,0.01
8.88,0.01
8.89,0.03
8.9,0.07
8.91,0.07
8.92,0.07
8.93,0.08
8.94,0.08
8.95,0.09
8.96,0.07
8.97,0.09
8.98,0.06
8.99,0.07
9,0.07
9.01,0.09
9.02,0.1
9.03,0.09
9.04,0.08
9.05,0.07
9.06,0.07
9.07,0.04
9.08,0.06
9.09,0.05
9.1,0.06
9.11,0.01
9.12,0.01
9.13,0.02
9.14,0.04
9.15,0.04
9.16,0.03
9.17,-0.01
9.18,-0.03
9.19,-0.03
9.2,-0.03
9.21,-0.04
9.22,-0.05
9.23,-0.03
9.24,-0.03
9.25,-0.03
9.26,-0.04
9.27,-0.07
9.28,-0.06
9.29,-0.07
9.3,-0.03
9.31,0.02
9.32,-0.01
9.33,-0.07
9.34,-0.1
9.35,-0.09
9.36,-0.04
9.37,-0.04
9.38,-0.05
9.39,-0.08
9.4,-0.12
9.41,-0.16
9.42,-0.15
9.43,-0.12
9.44,-0.08
9.45,-0.12
9.46,-0.18
9.47,-0.23
9.48,-0.25
9.49,-0.19
9.5,-0.12
9.51,-0.04
9.52,0.04
9.53,0.17
9.54,0.04
9.55,0.01
9.56,-0.06
9.57,-0.02
9.58,0.07
9.59,0.01
9.6,0.03
9.61,0.09
9.62,0.03
9.63,0.11
9.64,0.09
9.65,0.14
9.66,0.1
9.67,0.03
9.68,0.02
9.69,0.05
9.7,0.21
9.71,0.24
9.72,0.17
9.73,0.12
9.74,0.17
9.75,0.2
9.76,0.29
9.77,0.23
9.78,0.07
9.79,-0.01
9.8,0.01
9.81,0.03
9.82,0.12
9.83,0.08
9.84,0.06
9.85,0.07
9.86,-0.03
9.87,0
9.88,-0.04
9.89,-0.01
9.9,-0.05
9.91,0.02
9.92,0.01
9.93,-0.07
9.94,-0.09
9.95,-0.09
9.96,-0.11
9.97,-0.15
9.98,-0.12
9.99,-0.09
10,-0.15
10.01,-0.19
10.02,-0.2
10.03,-0.15
10.04,-0.15
10.05,-0.15
10.06,-0.16
10.07,-0.15
10.08,-0.15
10.09,-0.16
10.1,-0.09
10.11,-0.07
10.12,-0.04
10.13,-0.08
10.14,-0.07
10.15,-0.05
10.16,-0.04
10.17,-0.07
10.18,-0.04
10.19,0.01
10.2,0.05
10.21,0.05
10.22,0.01
10.23,-0.03
10.24,0.01
10.25,0.07
10.26,0.06
10.27,0.09
10.28,0.09
10.29,0.12
10.3,0.12
10.31,0.09
10.32,0.06
10.33,0.08
10.34,0.16
10.35,0.19
10.36,0.13
10.37,0.13
10.38,0.07
10.39,0.08
10.4,0.06
10.41,0.08
10.42,0.12
10.43,0.05
10.44,0.07
10.45,0.06
10.46,0.03
10.47,-0.04
10.48,-0.03
10.49,0.01
10.5,-0.05
10.51,0
10.52,-0.02
10.53,0.01
10.54,0.06
10.55,-0.01
10.56,0.01
10.57,-0.07
10.58,-0.06
10.59,-0.08
10.6,-0.05
10.61,-0.04
10.62,-0.04
10.63,-0.04
10.64,-0.03
10.65,-0.07
10.66,-0.08
10.67,-0.11
10.68,-0.1
10.69,-0.04
10.7,-0.01
10.71,0.03
10.72,0.03
10.73,-0.03
10.74,-0.02
10.75,0
10.76,-0.01
10.77,0.04
10.78,-0.04
10.79,0.04
10.8,0.04
10.81,0.01
10.82,0
10.83,0
10.84,-0.01
10.85,0
10.86,-0.01
10.87,-0.01
10.88,-0.03
10.89,-0.01
10.9,0.11
10.91,0.05
10.92,-0.01
10.93,-0.07
10.94,0.01
10.95,0.04
10.96,0
10.97,-0.07
10.98,-0.02
10.99,-0.01
11,0
11.01,-0.02
11.02,-0.02
11.03,-0.02
11.04,-0.01
11.05,0.08
11.06,0.01
11.07,-0.01
11.08,-0.07
11.09,0.03
11.1,0.09
11.11,0.03
11.12,-0.02
11.13,-0.05
11.14,0.07
11.15,0.05
11.16,0.04
11.17,-0.06
11.18,-0.07
11.19,-0.09
11.2,-0.07
11.21,-0.07
11.22,-0.04
11.23,0.01
11.24,0.03
11.25,0
11.26,-0.04
11.27,-0.06
11.28,-0.04
11.29,0.04
11.3,0.04
11.31,0.04
11.32,0.05
11.33,0.12
11.34,0.26
11.35,0.29
11.36,0.19
11.37,0.08
11.38,0.09
11.39,0.04
11.4,0.04
11.41,0.05
11.42,0.13
11.43,0.1
11.44,0.08
11.45,0.03
11.46,-0.04
11.47,-0.04
11.48,-0.01
11.49,0.01
11.5,0.07
11.51,0.07
11.52,0.11
11.53,-0.01
11.54,-0.04
11.55,-0.01
11.56,0.03
11.57,0.09
11.58,0.04
11.59,-0.09
11.6,-0.15
11.61,-0.15
11.62,-0.08
11.63,-0.11
11.64,-0.07
11.65,-0.15
11.66,-0.2
11.67,-0.19
11.68,-0.09
11.69,0.04
11.7,0.12
11.71,0.01
11.72,-0.1
11.73,-0.15
11.74,-0.04
11.75,0.01
11.76,0.06
11.77,0.16
11.78,0.2
11.79,0.12
11.8,0.01
11.81,-0.05
11.82,0.06
11.83,0.09
11.84,0.15
11.85,0.12
11.86,0.09
11.87,0.09
11.88,0.03
11.89,0.03
11.9,0.05
11.91,0.2
11.92,0.24
11.93,0.15
11.94,0.06
11.95,-0.04
11.96,-0.04
11.97,0.05
11.98,0.13
11.99,0.15
12,0.07
12.01,-0.01
12.02,-0.12
12.03,-0.12
12.04,-0.05
12.05,0.01
12.06,-0.03
12.07,-0.07
12.08,-0.07
12.09,-0.12
12.1,-0.13
12.11,-0.15
12.12,-0.08
12.13,-0.12
12.14,-0.07
12.15,-0.11
12.16,-0.02
12.17,-0.07
12.18,-0.16
12.19,-0.14
12.2,-0.14
12.21,-0.05
12.22,-0.04
12.23,-0.03
12.24,-0.01
12.25,-0.04
12.26,-0.06
12.27,-0.06
12.28,-0.01
12.29,0.01
12.3,0
12.31,0.01
12.32,-0.01
12.33,-0.05
12.34,-0.04
12.35,0.05
12.36,0.09
12.37,0.09
12.38,0.02
12.39,-0.01
12.4,0.03
12.41,0.09
12.42,0.1
12.43,0.07
12.44,0.07
12.45,0.09
12.46,-0.02
12.47,0
12.48,-0.05
12.49,-0.08
12.5,-0.1
12.51,-0.12
12.52,-0.1
12.53,-0.15
12.54,-0.07
12.55,0
12.56,0.06
12.57,0
12.58,-0.03
12.59,-0.02
12.6,-0.04
12.61,-0.01
12.62,0.04
12.63,-0.03
12.64,0.08
12.65,0.05
12.66,-0.02
12.67,-0.19
12.68,-0.32
12.69,-0.22
12.7,-0.09
12.71,-0.03
12.72,0.2
12.73,0.52
12.74,0.47
12.75,0.19
12.76,-0.17
12.77,-0.33
12.78,-0.17
12.79,0.32
12.8,0.73
12.81,0.67
12.82,0.26
12.83,-0.08
12.84,-0.17
12.85,-0.1
12.86,0.15
12.87,0.16
12.88,0.33
12.89,0.32
12.9,0.2
12.91,0.04
12.92,-0.02
12.93,0.15
12.94,0.22
12.95,0.27
12.96,0.2
12.97,0
12.98,-0.15
12.99,-0.01
13,-0.03
13.01,-0.1
13.02,0.09
13.03,0.13
13.04,0.14
13.05,-0.06
13.06,-0.25
13.07,-0.19
13.08,-0.11
13.09,0.03
13.1,-0.07
13.11,-0.21
13.12,-0.19
13.13,-0.15
13.14,-0.13
13.15,-0.22
13.16,-0.22
13.17,-0.23
13.18,-0.15
13.19,-0.13
13.2,-0.14
13.21,-0.2
13.22,-0.19
13.23,-0.18
13.24,-0.14
13.25,-0.15
13.26,-0.07
13.27,-0.05
13.28,-0.03
13.29,-0.12
13.3,-0.15
13.31,-0.12
13.32,-0.03
13.33,-0.01
13.34,-0.01
13.35,-0.02
13.36,-0.01
13.37,0.02
13.38,-0.01
13.39,0.04
13.4,0.04
13.41,0.07
13.42,0.07
13.43,0.04
13.44,0.07
13.45,0.07
13.46,0.08
13.47,0.1
13.48,0.08
13.49,0.08
13.5,0.1
13.51,0.11
13.52,0.13
13.53,0.06
13.54,0.06
13.55,0.04
13.56,0.05
13.57,0.02
13.58,0.03
13.59,0.01
13.6,0.03
13.61,0.03
13.62,0.02
13.63,-0.01
13.64,-0.01
13.65,0.04
13.66,-0.01
13.67,-0.01
13.68,-0.01
13.69,-0.01
13.7,-0.04
13.71,-0.05
13.72,-0.01
13.73,0.01
13.74,0.01
13.75,-0.07
13.76,-0.08
13.77,-0.12
13.78,-0.07
13.79,-0.01
13.8,0
13.81,-0.02
13.82,-0.07
13.83,-0.05
13.84,-0.03
13.85,0.07
13.86,0.04
13.87,-0.01
13.88,-0.04
13.89,-0.04
13.9,0.06
13.91,0.06
13.92,0
13.93,-0.09
13.94,-0.17
13.95,-0.11
13.96,-0.08
13.97,-0.08
13.98,0.03
13.99,0.05
14,-0.01
14.01,0.12
14.02,0.35
14.03,0.66
14.04,0.5
14.05,0.34
14.06,-0.03
14.07,-0.21
14.08,-0.17
14.09,0.15
14.1,0.45
14.11,0.39
14.12,0.14
14.13,-0.13
14.14,-0.25
14.15,-0.17
14.16,-0.09
14.17,0.04
14.18,0.14
14.19,0.12
14.2,-0.03
14.21,-0.07
14.22,-0.07
14.23,-0.01
14.24,0.11
14.25,0.12
14.26,-0.12
14.27,-0.33
14.28,-0.41
14.29,-0.31
14.3,-0.07
14.31,-0.16
14.32,-0.17
14.33,-0.16
14.34,-0.12
14.35,-0.17
14.36,-0.19
14.37,-0.23
14.38,-0.22
14.39,-0.25
14.4,-0.25
14.41,-0.17
14.42,-0.09
14.43,-0.1
14.44,-0.17
14.45,-0.19
14.46,-0.12
14.47,-0.06
14.48,-0.02
14.49,-0.05
14.5,-0.01
14.51,0.01
14.52,0.04
14.53,0.03
14.54,0.05
14.55,0.08
14.56,0.09
14.57,0.1
14.58,0.09
14.59,0.11
14.6,0.12
14.61,0.12
14.62,0.15
14.63,0.2
14.64,0.2
14.65,0.17
14.66,0.15
14.67,0.17
14.68,0.19
14.69,0.17
14.7,0.19
14.71,0.19
14.72,0.17
14.73,0.15
14.74,0.11
14.75,0.09
14.76,0.09
14.77,0.09
14.78,0.09
14.79,0.08
14.8,0.03
14.81,-0.01
14.82,-0.01
14.83,0
14.84,-0.01
14.85,-0.02
14.86,-0.04
14.87,-0.07
14.88,-0.08
14.89,-0.09
14.9,-0.08
14.91,-0.09
14.92,-0.09
14.93,-0.11
14.94,-0.11
14.95,-0.11
14.96,-0.12
14.97,-0.13
14.98,-0.12
14.99,-0.11
15,-0.09
15.01,-0.1
15.02,-0.09
15.03,-0.11
15.04,-0.1
15.05,-0.08
15.06,-0.07
15.07,-0.06
15.08,-0.05
15.09,-0.04
15.1,-0.03
15.11,-0.01
15.12,-0.02
15.13,0
15.14,-0.01
15.15,0.01
15.16,0.01
15.17,0.02
15.18,0.03
15.19,0.04
15.2,0.08
15.21,0.12
15.22,0.12
15.23,0.07
15.24,0.04
15.25,0.04
15.26,0.12
15.27,0.15
15.28,0.17
15.29,0.12
15.3,0.09
15.31,0.04
15.32,0.03
15.33,0.02
15.34,0.05
15.35,0.06
15.36,0.04
15.37,-0.04
15.38,-0.12
15.39,-0.15
15.4,-0.18
15.41,-0.13
15.42,-0.07
15.43,-0.01
15.44,-0.07
15.45,-0.01
15.46,0
15.47,0.03
15.48,-0.05
15.49,-0.01
15.5,-0.01
15.51,0.01
15.52,0.01
15.53,-0.01
15.54,-0.05
15.55,-0.05
15.56,-0.06
15.57,0.03
15.58,-0.04
15.59,-0.06
15.6,-0.03
15.61,-0.06
15.62,-0.04
15.63,0.04
15.64,0.08
15.65,0.09
15.66,0.08
15.67,0.1
15.68,0.12
15.69,0.12
15.7,0.13
15.71,0.09
15.72,0.02
15.73,0.04
15.74,0.07
15.75,0.06
15.76,-0.05
15.77,-0.04
15.78,-0.01
15.79,-0.03
15.8,-0.02
15.81,-0.04
15.82,-0.01
15.83,0.01
15.84,0.03
15.85,0.01
15.86,-0.07
15.87,-0.08
15.88,-0.13
15.89,0
15.9,0.06
15.91,-0.01
15.92,-0.01
15.93,-0.07
15.94,-0.05
15.95,-0.09
15.96,-0.02
15.97,0.04
15.98,0.04
15.99,-0.08
16,-0.17
16.01,-0.09
16.02,0.01
16.03,0.09
16.04,0.15
16.05,0.15
16.06,0.04
16.07,0.04
16.08,0
16.09,-0.03
16.1,-0.01
16.11,0.09
16.12,0.15
16.13,0.19
16.14,0.04
16.15,0.03
16.16,0.04
16.17,0.09
16.18,0.17
16.19,0.12
16.2,0
16.21,-0.07
16.22,-0.05
16.23,0.02
16.24,0.04
16.25,0.12
16.26,0.2
16.27,0.06
16.28,-0.06
16.29,-0.1
16.3,-0.04
16.31,0.01
16.32,0.04
16.33,0.09
16.34,0.05
16.35,-0.08
16.36,-0.03
16.37,0.06
16.38,0.01
16.39,-0.01
16.4,0.02
16.41,-0.01
16.42,-0.05
16.43,-0.08
16.44,0
16.45,-0.03
16.46,-0.01
16.47,-0.07
16.48,-0.04
16.49,-0.04
16.5,-0.01
16.51,-0.01
16.52,-0.04
16.53,-0.05
16.54,-0.01
16.55,-0.01
16.56,-0.04
16.57,-0.03
16.58,-0.04
16.59,-0.04
16.6,-0.04
16.61,-0.04
16.62,-0.02
16.63,-0.04
16.64,0.02
16.65,-0.01
16.66,-0.01
16.67,-0.06
16.68,-0.04
16.69,-0.05
16.7,-0.03
16.71,-0.03
16.72,0.06
16.73,-0.02
16.74,-0.04
16.75,0
16.76,0.06
16.77,0.03
16.78,-0.06
16.79,-0.05
16.8,0.04
16.81,-0.02
16.82,0.01
16.83,-0.07
16.84,-0.03
16.85,0.05
16.86,-0.01
16.87,0.07
16.88,0.01
16.89,-0.03
16.9,-0.09
16.91,-0.12
16.92,0.04
16.93,0.03
16.94,0.01
16.95,0.07
16.96,0.04
16.97,-0.05
16.98,-0.15
16.99,-0.09
17,0.06
17.01,0.05
17.02,0
17.03,-0.01
17.04,-0.1
17.05,-0.04
17.06,-0.09
17.07,0.01
17.08,0.06
17.09,0.06
17.1,0.05
17.11,0.01
17.12,-0.04
17.13,0
17.14,0.01
17.15,0.09
17.16,0.09
17.17,0.07
17.18,0.07
17.19,0.01
17.2,-0.05
17.21,-0.01
17.22,-0.04
17.23,-0.01
17.24,-0.05
17.25,0.06
17.26,0.02
17.27,0.05
17.28,0.1
17.29,0.17
17.3,0.23
17.31,0.16
17.32,0.22
17.33,0.06
17.34,0.04
17.35,-0.02
17.36,0.18
17.37,0.15
17.38,0.14
17.39,0.06
17.4,0.16
17.41,0.01
17.42,-0.12
17.43,-0.07
17.44,-0.02
17.45,0.02
17.46,-0.02
17.47,-0.02
17.48,-0.01
17.49,0.01
17.5,0.06
17.51,0.07
17.52,0.03
17.53,-0.05
17.54,-0.12
17.55,-0.13
17.56,-0.09
17.57,-0.18
17.58,-0.09
17.59,-0.12
17.6,-0.14
17.61,-0.09
17.62,-0.18
17.63,-0.12
17.64,-0.12
17.65,-0.1
17.66,-0.1
17.67,-0.09
17.68,-0.11
17.69,-0.12
17.7,-0.15
17.71,-0.02
17.72,-0.06
17.73,-0.07
17.74,-0.04
17.75,-0.1
17.76,-0.07
17.77,-0.08
17.78,0
17.79,-0.07
17.8,0.01
17.81,0.07
17.82,0.04
17.83,-0.05
17.84,0.04
17.85,0.08
17.86,0.11
17.87,0.13
17.88,0.12
17.89,0.12
17.9,0.07
17.91,0.1
17.92,0.19
17.93,0.15
17.94,0.14
17.95,0.09
17.96,0.14
17.97,0.17
17.98,0.12
17.99,0.12
18,0.06
18.01,0.16
18.02,0.09
18.03,0.18
18.04,0.05
18.05,0.09
18.06,0.04
18.07,0.12
18.08,0.06
18.09,0.05
18.1,-0.01
18.11,0.09
18.12,0.01
18.13,-0.02
18.14,-0.01
18.15,-0.03
18.16,-0.01
18.17,-0.04
18.18,-0.04
18.19,-0.07
18.2,-0.07
18.21,-0.07
18.22,-0.07
18.23,-0.18
18.24,-0.19
18.25,-0.17
18.26,-0.09
18.27,-0.11
18.28,-0.1
18.29,-0.13
18.3,-0.17
18.31,-0.15
18.32,-0.14
18.33,-0.09
18.34,-0.04
18.35,-0.12
18.36,-0.16
18.37,-0.07
18.38,-0.01
18.39,-0.02
18.4,-0.04
18.41,-0.01
18.42,-0.05
18.43,-0.11
18.44,0.01
18.45,0.01
18.46,0.02
18.47,-0.01
18.48,0.04
18.49,0.09
18.5,0.01
18.51,0.02
18.52,0.03
18.53,0.06
18.54,0.06
18.55,0.19
18.56,0.01
18.57,0.12
18.58,0.07
18.59,0.2
18.6,0.21
18.61,0.15
18.62,0.09
18.63,0.12
18.64,0.06
18.65,0.15
18.66,0.11
18.67,0.14
18.68,0.09
18.69,0.06
18.7,0.06
18.71,0.12
18.72,0.04
18.73,0.06
18.74,-0.03
18.75,0.04
18.76,0.01
18.77,-0.02
18.78,-0.04
18.79,-0.08
18.8,-0.05
18.81,0.05
18.82,0.12
18.83,-0.04
18.84,-0.07
18.85,-0.17
18.86,-0.11
18.87,-0.07
18.88,-0.09
18.89,-0.02
18.9,-0.12
18.91,-0.04
18.92,-0.06
18.93,-0.02
18.94,-0.06
18.95,-0.09
18.96,-0.15
18.97,-0.05
18.98,-0.07
18.99,-0.1
19,-0.06
19.01,-0.02
19.02,-0.01
19.03,-0.08
19.04,0.01
19.05,0.03
19.06,0.04
19.07,-0.08
19.08,0.03
19.09,0.03
19.1,0.07
19.11,-0.01
19.12,-0.01
19.13,0.01
19.14,0.06
19.15,0.01
19.16,0.03
19.17,0.04
19.18,-0.01
19.19,-0.04
19.2,-0.01
19.21,0.15
19.22,0.12
19.23,0.12
19.24,0.04
19.25,0.02
19.26,-0.01
19.27,0.07
19.28,0.09
19.29,0.09
19.3,0.13
19.31,0.02
19.32,-0.05
19.33,-0.08
19.34,-0.02
19.35,0.02
19.36,-0.02
19.37,0.05
19.38,-0.04
19.39,-0.06
19.4,-0.1
19.41,-0.1
19.42,-0.09
19.43,-0.01
19.44,0.06
19.45,0.04
19.46,-0.1
19.47,-0.23
19.48,-0.22
19.49,-0.19
19.5,-0.07
19.51,-0.07
19.52,-0.09
19.53,-0.16
19.54,0.01
19.55,0.08
19.56,-0.03
19.57,-0.17
19.58,-0.17
19.59,0.04
19.6,0.07
19.61,0.01
19.62,-0.08
19.63,-0.02
19.64,0.13
19.65,0.19
19.66,0.23
19.67,0.15
19.68,0.04
19.69,0.06
19.7,0.13
19.71,0.17
19.72,0.12
19.73,0.25
19.74,0.18
19.75,0.22
19.76,0.31
19.77,0.24
19.78,0.15
19.79,0.15
19.8,0.28
19.81,0.25
19.82,0.17
19.83,0.01
19.84,0.04
19.85,0.01
19.86,0.09
19.87,0.1
19.88,0.09
19.89,0.02
19.9,-0.04
19.91,-0.15
19.92,-0.13
19.93,-0.2
19.94,-0.11
19.95,-0.12
19.96,-0.12
19.97,-0.16
19.98,-0.23
19.99,-0.18
20,-0.23
20.01,-0.14
20.02,-0.18
20.03,-0.2
20.04,-0.31
20.05,-0.2
20.06,-0.19
20.07,-0.2
20.08,-0.19
20.09,-0.25
20.1,-0.19
20.11,-0.23
20.12,-0.14
20.13,-0.15
20.14,-0.12
20.15,-0.14
20.16,-0.09
20.17,-0.08
20.18,-0.05
20.19,-0.01
20.2,0.03
20.21,0.06
20.22,0.04
20.23,0.05
20.24,0.09
20.25,0.06
20.26,0.08
20.27,0.1
20.28,0.12
20.29,0.2
20.3,0.23
20.31,0.23
20.32,0.11
20.33,0.15
20.34,0.17
20.35,0.25
20.36,0.17
20.37,0.18
20.38,0.15
20.39,0.17
20.4,0.17
20.41,0.13
20.42,0.18
20.43,0.19
20.44,0.14
20.45,0.1
20.46,0.07
20.47,-0.02
20.48,-0.01
20.49,-0.06
20.5,0.03
20.51,-0.03
20.52,-0.01
20.53,-0.02
20.54,-0.09
20.55,-0.06
20.56,-0.17
20.57,-0.16
20.58,-0.21
20.59,-0.15
20.6,-0.15
20.61,-0.13
20.62,-0.18
20.63,-0.21
20.64,-0.21
20.65,-0.32
20.66,-0.33
20.67,-0.14
20.68,0.16
20.69,0.09
20.7,-0.06
20.71,-0.2
20.72,-0.27
20.73,-0.43
20.74,-0.28
20.75,0.14
20.76,0.45
20.77,0.28
20.78,-0.08
20.79,-0.39
20.8,-0.38
20.81,-0.17
20.82,0.11
20.83,0.29
20.84,0.28
20.85,0.05
20.86,-0.17
20.87,-0.12
20.88,0.05
20.89,0.24
20.9,0.32
20.91,0.34
20.92,0.23
20.93,0.15
20.94,0.11
20.95,0.19
20.96,0.04
20.97,0.01
20.98,0.12
20.99,0.27
21,0.24
21.01,0.09
21.02,-0.07
21.03,-0.11
21.04,-0.04
21.05,0.12
21.06,0.18
21.07,-0.01
21.08,-0.15
21.09,-0.1
21.1,-0.09
21.11,-0.07
21.12,-0.09
21.13,-0.13
21.14,-0.09
21.15,0.01
21.16,0.04
21.17,0.07
21.18,0.13
21.19,0.13
21.2,0.15
21.21,0.04
21.22,-0.14
21.23,-0.13
21.24,-0.04
21.25,0.09
21.26,0.05
21.27,-0.05
21.28,-0.13
21.29,-0.15
21.3,-0.09
21.31,-0.1
21.32,-0.09
21.33,-0.15
21.34,-0.18
21.35,-0.19
21.36,-0.19
21.37,-0.12
21.38,-0.12
21.39,-0.1
21.4,0.04
21.41,0.07
21.42,-0.03
21.43,-0.15
21.44,-0.19
21.45,-0.27
21.46,-0.16
21.47,-0.06
21.48,-0.01
21.49,-0.17
21.5,-0.25
21.51,-0.19
21.52,-0.07
21.53,0
21.54,0
21.55,-0.04
21.56,-0.12
21.57,-0.1
21.58,-0.04
21.59,0.01
21.6,0.01
21.61,0.01
21.62,0
21.63,0
21.64,0.03
21.65,0.07
21.66,0.1
21.67,0.08
21.68,0.04
21.69,0.08
21.7,0.12
21.71,0.12
21.72,0.08
21.73,0.08
21.74,0.1
21.75,0.11
21.76,0.11
21.77,0.12
21.78,0.1
21.79,0.07
21.8,0.06
21.81,0.07
21.82,0.09
21.83,0.1
21.84,0.1
21.85,0.08
21.86,0.08
21.87,0.04
21.88,0.01
21.89,0
21.9,0.05
21.91,0.07
21.92,0.06
21.93,0.01
21.94,-0.03
21.95,-0.02
21.96,0.01
21.97,0
21.98,0.01
21.99,-0.02
22,-0.04
22.01,-0.05
22.02,-0.06
22.03,-0.06
22.04,-0.03
22.05,-0.03
22.06,-0.02
22.07,-0.05
22.08,-0.06
22.09,-0.09
22.1,-0.12
22.11,-0.13
22.12,-0.11
22.13,-0.11
22.14,-0.1
22.15,-0.13
22.16,-0.15
22.17,-0.17
22.18,-0.15
22.19,-0.1
22.2,-0.07
22.21,-0.09
22.22,-0.12
22.23,-0.15
22.24,-0.21
22.25,-0.2
22.26,-0.08
22.27,0.03
22.28,0.11
22.29,0.09
22.3,0.04
22.31,-0.01
22.32,0.01
22.33,0.02
22.34,0.03
22.35,0.04
22.36,0.12
22.37,0.12
22.38,0.15
22.39,-0.01
22.4,0.01
22.41,0
22.42,0.15
22.43,0.15
22.44,0.17
22.45,0.11
22.46,0.1
22.47,-0.03
22.48,0.07
22.49,0.14
22.5,0.17
22.51,0.26
22.52,0.3
22.53,0.24
22.54,0.08
22.55,0.01
22.56,0.03
22.57,0.11
22.58,0.15
22.59,0.17
22.6,0.18
22.61,0.03
22.62,-0.02
22.63,-0.08
22.64,-0.07
22.65,0.07
22.66,0.09
22.67,0.06
22.68,0.01
22.69,-0.12
22.7,-0.2
22.71,-0.15
22.72,-0.01
22.73,0.01
22.74,-0.01
22.75,-0.01
22.76,-0.06
22.77,-0.02
22.78,-0.01
22.79,0.01
22.8,0.01
22.81,-0.07
22.82,-0.18
22.83,-0.2
22.84,-0.09
22.85,-0.01
22.86,0.02
22.87,-0.04
22.88,-0.13
22.89,-0.09
22.9,-0.01
22.91,0.06
22.92,-0.12
22.93,-0.12
22.94,-0.12
22.95,-0.05
22.96,-0.15
22.97,-0.2
22.98,-0.2
22.99,-0.12
23,0.02
23.01,-0.05
23.02,-0.18
23.03,-0.19
23.04,-0.01
23.05,0.07
23.06,0.06
23.07,0.03
23.08,-0.1
23.09,-0.15
23.1,-0.12
23.11,0.06
23.12,0.2
23.13,0.2
23.14,0.2
23.15,0.15
23.16,0.07
23.17,-0.01
23.18,0.09
23.19,0.17
23.2,0.17
23.21,0.03
23.22,-0.09
23.23,-0.08
23.24,0.1
23.25,0.27
23.26,0.37
23.27,0.25
23.28,0.07
23.29,0.09
23.3,0.04
23.31,0.04
23.32,0.08
23.33,0.15
23.34,0.19
23.35,0.15
23.36,0.05
23.37,0.03
23.38,-0.02
23.39,0.02
23.4,0.16
23.41,0.12
23.42,-0.07
23.43,-0.25
23.44,-0.27
23.45,-0.01
23.46,0.08
23.47,0.12
23.48,-0.07
23.49,-0.2
23.5,-0.12
23.51,-0.13
23.52,-0.09
23.53,-0.02
23.54,0.02
23.55,-0.09
23.56,-0.1
23.57,-0.1
23.58,-0.07
23.59,-0.03
23.6,-0.01
23.61,0.01
23.62,-0.03
23.63,-0.09
23.64,-0.09
23.65,-0.04
23.66,-0.04
23.67,-0.06
23.68,0.02
23.69,0.03
23.7,0.07
23.71,-0.02
23.72,-0.02
23.73,-0.05
23.74,-0.02
23.75,0.08
23.76,0.07
23.77,0.09
23.78,0.02
23.79,0.07
23.8,0.04
23.81,0.08
23.82,0.04
23.83,0.07
23.84,0.01
23.85,0.03
23.86,0.03
23.87,0.08
23.88,0.09
23.89,0.08
23.9,0.07
23.91,0.04
23.92,0.05
23.93,-0.01
23.94,0.02
23.95,0
23.96,0.08
23.97,0.01
23.98,0.07
23.99,-0.03
24,-0.09
24.01,0.06
24.02,0.16
24.03,0.36
24.04,0.27
24.05,0.09
24.06,-0.12
24.07,-0.2
24.08,-0.05
24.09,0.16
24.1,0.22
24.11,0.17
24.12,0.09
24.13,-0.05
24.14,-0.08
24.15,-0.08
24.16,-0.01
24.17,0.07
24.18,0.08
24.19,0.01
24.2,-0.15
24.21,-0.18
24.22,-0.16
24.23,0
24.24,0.07
24.25,0.12
24.26,-0.01
24.27,-0.07
24.28,-0.17
24.29,-0.25
24.3,-0.2
24.31,-0.12
24.32,0
24.33,-0.04
24.34,-0.04
24.35,-0.18
24.36,-0.2
24.37,-0.11
24.38,-0.07
24.39,0.09
24.4,0.07
24.41,-0.01
24.42,-0.17
24.43,-0.2
24.44,-0.15
24.45,-0.06
24.46,-0.02
24.47,0.03
24.48,-0.05
24.49,-0.04
24.5,-0.08
24.51,-0.1
24.52,-0.06
24.53,0.02
24.54,0.1
24.55,0.08
24.56,0.04
24.57,0
24.58,-0.01
24.59,0.04
24.6,0.09
24.61,0.17
24.62,0.17
24.63,0.17
24.64,0.09
24.65,0.01
24.66,-0.02
24.67,0.02
24.68,0.09
24.69,0.2
24.7,0.04
24.71,-0.01
24.72,0.01
24.73,0.09
24.74,0.02
24.75,0.02
24.76,0.09
24.77,0.11
24.78,0.17
24.79,0.05
24.8,0.01
24.81,0.05
24.82,0.12
24.83,0.1
24.84,0.09
24.85,0.04
24.86,0.01
24.87,-0.05
24.88,-0.02
24.89,0.07
24.9,0.08
24.91,0.06
24.92,0.02
24.93,0.01
24.94,-0.02
24.95,-0.03
24.96,-0.07
24.97,-0.09
24.98,-0.09
24.99,0.02
25,0.1
25.01,0.07
25.02,-0.05
25.03,-0.12
25.04,-0.09
25.05,-0.02
25.06,0.01
25.07,-0.01
25.08,-0.04
25.09,-0.04
25.1,-0.09
25.11,-0.12
25.12,-0.12
25.13,-0.02
25.14,0.02
25.15,-0.02
25.16,-0.07
25.17,-0.12
25.18,-0.12
25.19,-0.09
25.2,-0.06
25.21,0.03
25.22,0
25.23,-0.02
25.24,-0.05
25.25,-0.08
25.26,-0.04
25.27,-0.04
25.28,-0.01
25.29,0.04
25.3,0.03
25.31,0.01
25.32,0
25.33,-0.04
25.34,-0.03
25.35,0
25.36,0.08
25.37,0.09
25.38,0.1
25.39,0.01
25.4,0.03
25.41,0.01
25.42,0.03
25.43,0.09
25.44,0.08
25.45,0.12
25.46,0.1
25.47,0.07
25.48,0.04
25.49,-0.01
25.5,0.05
25.51,0.09
25.52,0.12
25.53,0.12
25.54,0.09
25.55,0.04
25.56,0.03
25.57,0.02
25.58,0.04
25.59,0.04
25.6,0.07
25.61,0.04
25.62,0
25.63,-0.05
25.64,-0.05
25.65,0
25.66,0.06
25.67,0.07
25.68,-0.01
25.69,-0.06
25.7,-0.08
25.71,-0.04
25.72,-0.05
25.73,-0.03
25.74,0.01
25.75,-0.03
25.76,-0.02
25.77,-0.07
25.78,-0.06
25.79,-0.1
25.8,-0.06
25.81,-0.09
25.82,-0.07
25.83,-0.09
25.84,-0.07
25.85,-0.03
25.86,-0.07
25.87,-0.04
25.88,-0.07
25.89,-0.05
25.9,-0.08
25.91,-0.06
25.92,-0.02
25.93,-0.02
25.94,-0.01
25.95,-0.01
25.96,0.01
25.97,-0.04
25.98,-0.07
25.99,-0.08
26,-0.02
26.01,0.02
26.02,0
26.03,0.01
26.04,0.07
26.05,0.16
26.06,0.15
26.07,0.1
26.08,0.08
26.09,0.07
26.1,0.13
26.11,0.13
26.12,0.07
26.13,0.03
26.14,0.05
26.15,0.07
26.16,0.13
26.17,0.09
26.18,0.03
26.19,0
26.2,-0.01
26.21,0.02
26.22,0.06
26.23,0.02
26.24,0.04
26.25,0.09
26.26,0.07
26.27,0
26.28,-0.1
26.29,-0.04
26.3,-0.03
26.31,-0.05
26.32,-0.13
26.33,-0.12
26.34,-0.19
26.35,-0.16
26.36,-0.09
26.37,-0.17
26.38,-0.18
26.39,0.04
26.4,0.2
26.41,0.04
26.42,-0.12
26.43,-0.25
26.44,-0.15
26.45,-0.17
26.46,0.03
26.47,0.08
26.48,-0.09
26.49,-0.26
26.5,-0.3
26.51,-0.04
26.52,0.2
26.53,0.36
26.54,0.04
26.55,-0.2
26.56,-0.38
26.57,-0.4
26.58,-0.25
26.59,-0.17
26.6,0.4
26.61,0.93
26.62,0.69
26.63,0.01
26.64,-0.17
26.65,-0.42
26.66,-0.54
26.67,-0.21
26.68,0.22
26.69,0.83
26.7,0.65
26.71,0.18
26.72,-0.15
26.73,-0.12
26.74,-0.25
26.75,-0.49
26.76,0.01
26.77,-0.04
26.78,0.37
26.79,0.36
26.8,-0.29
26.81,-0.27
26.82,0.04
26.83,0.06
26.84,-0.09
26.85,-0.04
26.86,0.01
26.87,0.01
26.88,0.28
26.89,-0.08
26.9,-0.18
26.91,-0.11
26.92,-0.1
26.93,0.11
26.94,0.15
26.95,0.01
26.96,-0.11
26.97,-0.33
26.98,-0.14
26.99,0.12
27,0.04
27.01,0.01
27.02,0.17
27.03,0.09
27.04,-0.02
27.05,-0.07
27.06,-0.04
27.07,0.04
27.08,0.04
27.09,0.02
27.1,0.09
27.11,0.05
27.12,-0.01
27.13,0.01
27.14,0.01
27.15,-0.07
27.16,0.07
27.17,0.08
27.18,0.12
27.19,0.01
27.2,-0.05
27.21,0.06
27.22,0.06
27.23,0.03
27.24,-0.01
27.25,0.01
27.26,-0.09
27.27,0
27.28,-0.04
27.29,0.05
27.3,-0.01
27.31,-0.05
27.32,-0.06
27.33,-0.02
27.34,0.02
27.35,0.01
27.36,0.06
27.37,0.01
27.38,0.04
27.39,0.01
27.4,0.08
27.41,0.07
27.42,0.06
27.43,0.03
27.44,0.03
27.45,0.07
27.46,0.05
27.47,0.12
27.48,0.09
27.49,0.12
27.5,0.1
27.51,0.05
27.52,0.09
27.53,0.09
27.54,0.15
27.55,0.09
27.56,0.09
27.57,0.07
27.58,0.11
27.59,0.07
27.6,0.07
27.61,0.04
27.62,0
27.63,0.04
27.64,0.02
27.65,-0.03
27.66,-0.07
27.67,-0.08
27.68,-0.04
27.69,-0.05
27.7,-0.06
27.71,-0.08
27.72,-0.11
27.73,-0.12
27.74,-0.09
27.75,-0.03
27.76,-0.07
27.77,-0.15
27.78,-0.17
27.79,-0.16
27.8,-0.12
27.81,-0.11
27.82,-0.12
27.83,-0.1
27.84,-0.12
27.85,-0.12
27.86,-0.12
27.87,-0.09
27.88,-0.12
27.89,-0.07
27.9,-0.06
27.91,-0.09
27.92,-0.04
27.93,-0.05
27.94,-0.01
27.95,-0.01
27.96,0.03
27.97,0.01
27.98,0.01
27.99,-0.02
28,0
28.01,0.01
28.02,0.09
28.03,0.12
28.04,0.06
28.05,0.07
28.06,0.01
28.07,0.04
28.08,0.09
28.09,0.08
28.1,0.07
28.11,0.1
28.12,0.1
28.13,0
28.14,0.04
28.15,0.04
28.16,0.09
28.17,0.09
28.18,0.1
28.19,0.03
28.2,-0.02
28.21,0.06
28.22,0.07
28.23,0.15
28.24,0.1
28.25,0.06
28.26,0
28.27,-0.01
28.28,-0.02
28.29,-0.05
28.3,0.03
28.31,-0.05
28.32,-0.05
28.33,-0.03
28.34,-0.01
28.35,-0.05
28.36,-0.04
28.37,0.01
28.38,0.01
28.39,0.04
28.4,0.04
28.41,0.06
28.42,0.01
28.43,-0.04
28.44,0.04
28.45,0.06
28.46,0.04
28.47,-0.03
28.48,-0.07
28.49,-0.1
28.5,-0.05
28.51,-0.06
28.52,-0.03
28.53,-0.07
28.54,-0.09
28.55,-0.07
28.56,-0.07
28.57,-0.03
28.58,-0.08
28.59,0.01
28.6,-0.06
28.61,-0.01
28.62,-0.07
28.63,-0.03
28.64,-0.04
28.65,-0.12
28.66,-0.07
28.67,-0.04
28.68,-0.01
28.69,-0.05
28.7,-0.08
28.71,-0.1
28.72,-0.12
28.73,-0.12
28.74,-0.13
28.75,0.01
28.76,0.04
28.77,0.08
28.78,-0.02
28.79,-0.21
28.8,-0.19
28.81,-0.15
28.82,-0.03
28.83,-0.02
28.84,-0.05
28.85,-0.19
28.86,-0.21
28.87,-0.12
28.88,0
28.89,0.12
28.9,0.2
28.91,0.2
28.92,0.02
28.93,-0.01
28.94,-0.03
28.95,0
28.96,0.11
28.97,0.28
28.98,0.28
28.99,0.2
29,0.05
29.01,0.06
29.02,0.03
29.03,0.15
29.04,0.15
29.05,0.18
29.06,0.12
29.07,0.11
29.08,0.07
29.09,0.12
29.1,0.08
29.11,0.07
29.12,0.14
29.13,0.19
29.14,0.15
29.15,0.05
29.16,-0.01
29.17,-0.1
29.18,-0.04
29.19,0.01
29.2,0.03
29.21,0
29.22,-0.04
29.23,-0.09
29.24,-0.1
29.25,-0.09
29.26,-0.12
29.27,-0.12
29.28,-0.1
29.29,-0.09
29.3,-0.16
29.31,-0.2
29.32,-0.2
29.33,-0.14
29.34,-0.13
29.35,-0.15
29.36,-0.2
29.37,-0.19
29.38,-0.2
29.39,-0.19
29.4,-0.13
29.41,-0.08
29.42,-0.07
29.43,-0.1
29.44,-0.09
29.45,-0.11
29.46,-0.15
29.47,-0.04
29.48,0.11
29.49,0.22
29.5,0.21
29.51,0.1
29.52,0
29.53,-0.02
29.54,0.04
29.55,0.17
29.56,0.25
29.57,0.26
29.58,0.21
29.59,0.24
29.6,0.17
29.61,0.17
29.62,0.18
29.63,0.25
29.64,0.32
29.65,0.29
29.66,0.23
29.67,0.12
29.68,0.04
29.69,0.09
29.7,0.27
29.71,0.36
29.72,0.15
29.73,-0.07
29.74,-0.02
29.75,0
29.76,-0.03
29.77,0.06
29.78,0.11
29.79,0.04
29.8,-0.12
29.81,-0.07
29.82,-0.03
29.83,-0.08
29.84,-0.09
29.85,-0.06
29.86,-0.07
29.87,-0.12
29.88,-0.15
29.89,-0.21
29.9,-0.34
29.91,-0.44
29.92,-0.39
29.93,-0.31
29.94,-0.33
29.95,-0.21
29.96,-0.15
29.97,-0.12
29.98,-0.1
29.99,-0.17
30,-0.18
30.01,-0.2
30.02,-0.17
30.03,-0.03
30.04,0.05
30.05,0.03
30.06,-0.01
30.07,-0.04
30.08,-0.04
30.09,-0.03
30.1,0.06
30.11,0.09
30.12,0.05
30.13,0.04
30.14,-0.08
30.15,-0.07
30.16,0.01
30.17,0.17
30.18,0.25
30.19,0.2
30.2,0.25
30.21,0.19
30.22,0.24
30.23,0.17
30.24,0.19
30.25,0.15
30.26,0.21
30.27,0.2
30.28,0.24
30.29,0.17
30.3,0.13
30.31,0.11
30.32,0.09
30.33,0.13
30.34,0.11
30.35,0.07
30.36,0.04
30.37,0.01
30.38,0.01
30.39,0.03
30.4,-0.01
30.41,-0.07
30.42,-0.09
30.43,-0.11
30.44,-0.11
30.45,-0.12
30.46,-0.07
30.47,-0.1
30.48,-0.06
30.49,-0.09
30.5,-0.12
30.51,-0.15
30.52,-0.15
30.53,-0.12
30.54,-0.17
30.55,-0.13
30.56,-0.11
30.57,-0.09
30.58,-0.11
30.59,-0.11
30.6,-0.07
30.61,-0.07
30.62,-0.09
30.63,-0.05
30.64,-0.05
30.65,-0.04
30.66,-0.04
30.67,-0.02
30.68,-0.03
30.69,-0.04
30.7,0.01
30.71,0.08
30.72,0.08
30.73,0.04
30.74,0.02
30.75,0.09
30.76,0.04
30.77,0.07
30.78,0.1
30.79,0.12
30.8,0.07
30.81,0.09
30.82,0.1
30.83,0.1
30.84,0.08
30.85,0.11
30.86,0.14
30.87,0.09
30.88,0.09
30.89,0.09
30.9,0.05
30.91,0.04
30.92,0.05
30.93,0.07
30.94,0.08
30.95,0.09
30.96,0.05
30.97,0.04
30.98,0.01
30.99,0.02
31,0
31.01,-0.01
31.02,-0.03
31.03,-0.04
31.04,-0.02
31.05,-0.03
31.06,-0.03
31.07,-0.04
31.08,-0.07
31.09,-0.1
31.1,-0.08
31.11,-0.1
31.12,-0.1
31.13,-0.07
31.14,-0.07
31.15,-0.05
31.16,-0.09
31.17,-0.09
31.18,-0.07
31.19,-0.02
31.2,-0.02
31.21,-0.04
31.22,-0.11
31.23,-0.09
31.24,-0.06
31.25,-0.07
31.26,-0.04
31.27,-0.01
31.28,-0.01
31.29,0.01
31.3,0.02
31.31,0.01
31.32,0.05
31.33,0.06
31.34,0.07
31.35,0.04
31.36,0.01
31.37,0.01
31.38,0.08
31.39,0.12
31.4,0.09
31.41,0.05
31.42,0.07
31.43,0.09
31.44,0.06
31.45,0.04
31.46,0.05
31.47,0.11
31.48,0.05
31.49,0.05
31.5,0
31.51,0.04
31.52,0.07
31.53,0.04
31.54,0.01
31.55,0.02
31.56,0.06
31.57,-0.06
31.58,-0.09
31.59,-0.09
31.6,0
31.61,0.01
31.62,-0.02
31.63,-0.09
31.64,-0.04
31.65,-0.07
31.66,-0.04
31.67,-0.08
31.68,-0.05
31.69,-0.04
31.7,-0.11
31.71,-0.12
31.72,-0.07
31.73,0.05
31.74,0.07
31.75,-0.03
31.76,-0.06
31.77,-0.12
31.78,-0.1
31.79,-0.04
31.8,-0.01
31.81,0.01
31.82,0.06
31.83,-0.05
31.84,0
31.85,-0.04
31.86,0.02
31.87,0.05
31.88,0
31.89,0.01
31.9,0
31.91,-0.01
31.92,0.09
31.93,0
31.94,0.09
31.95,0.05
31.96,0.08
31.97,0.1
31.98,0.01
31.99,0
32,-0.02
32.01,0.06
32.02,0.14
32.03,0.07
32.04,0.05
32.05,0.01
32.06,0.09
32.07,0.05
32.08,0.06
32.09,0.04
32.1,0.01
32.11,0
32.12,0.07
32.13,0.07
32.14,0.07
32.15,0
32.16,0.05
32.17,-0.01
32.18,-0.01
32.19,-0.01
32.2,0.05
32.21,0.01
32.22,-0.07
32.23,-0.04
32.24,0.02
32.25,-0.07
32.26,-0.06
32.27,-0.06
32.28,-0.08
32.29,-0.06
32.3,-0.09
32.31,-0.04
32.32,-0.08
32.33,-0.07
32.34,-0.11
32.35,0.03
32.36,-0.08
32.37,-0.13
32.38,-0.08
32.39,-0.07
32.4,-0.07
32.41,-0.07
32.42,-0.05
32.43,-0.05
32.44,-0.03
32.45,0.04
32.46,0.01
32.47,-0.04
32.48,-0.04
32.49,0.01
32.5,0.08
32.51,0.01
32.52,0.05
32.53,0.05
32.54,0.04
32.55,0.04
32.56,0.07
32.57,0.15
32.58,0.18
32.59,0.09
32.6,0.09
32.61,0.12
32.62,0.11
32.63,0.15
32.64,0.14
32.65,0.14
32.66,0.11
32.67,0.1
32.68,0.07
32.69,0.08
32.7,0.08
32.71,0.12
32.72,0.09
32.73,0.1
32.74,0.08
32.75,0.02
32.76,0.06
32.77,0
32.78,0.02
32.79,0.09
32.8,0.04
32.81,0.07
32.82,-0.05
32.83,0

Locked
Please be positive and constructive with your questions and comments.

Return to “Arduino”