Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. How to pass data from mainwindow to themewidget?
Qt 6.11 is out! See what's new in the release blog

How to pass data from mainwindow to themewidget?

Scheduled Pinned Locked Moved Unsolved General and Desktop
27 Posts 4 Posters 3.9k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D Offline
    D Offline
    DemonLord
    wrote on last edited by
    #1

    The mainwidow has the data i then wrote this:
    m_themewidget->putData(data);
    However, no data is present in the themewidget window may I know what I should do instead`

    jsulmJ 1 Reply Last reply
    0
    • D DemonLord

      The mainwidow has the data i then wrote this:
      m_themewidget->putData(data);
      However, no data is present in the themewidget window may I know what I should do instead`

      jsulmJ Offline
      jsulmJ Offline
      jsulm
      Lifetime Qt Champion
      wrote on last edited by
      #2

      @DemonLord said in How to pass data from mainwindow to themewidget?:

      may I know what I should do instead

      May we know what putData does? Please show the code.
      How else should we know what the problem is?

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      D 1 Reply Last reply
      0
      • D Offline
        D Offline
        DemonLord
        wrote on last edited by
        #3
        This post is deleted!
        1 Reply Last reply
        0
        • jsulmJ jsulm

          @DemonLord said in How to pass data from mainwindow to themewidget?:

          may I know what I should do instead

          May we know what putData does? Please show the code.
          How else should we know what the problem is?

          D Offline
          D Offline
          DemonLord
          wrote on last edited by
          #4

          @jsulm
          void ThemeWidget::putData(const QByteArray &data)
          {

          qDebug()<< "Got Data:" << data;
          QJsonParseError parseError;
          QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);

          if(parseError.error != QJsonParseError::NoError) // if have error
           {
              qDebug()<< "Parse Error" <<parseError.errorString();// message
              return; // then stop the process
          }
          QJsonArray jsonArray =jsonResponse.array();
          
          if(!jsonArray.isEmpty())
           {
              QJsonObject jsonObject = jsonArray.first().toObject();
          
              QVector <double> x,y;
          
              for(int i=0;i< jsonObject.value("X").toArray().size();i++)
              {
                  x.push_back(jsonObject.value("X").toArray()[i].toDouble());
                  y.push_back(jsonObject.value("Y").toArray()[i].toDouble());
          
              }
              m_ui->widget->graph(0)->setData(x,y);
              m_ui->widget->replot();
              m_ui->widget->rescaleAxes();
              m_ui->widget->update();
          
          
          
          }
          
          jsulmJ 1 Reply Last reply
          0
          • D DemonLord

            @jsulm
            void ThemeWidget::putData(const QByteArray &data)
            {

            qDebug()<< "Got Data:" << data;
            QJsonParseError parseError;
            QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);

            if(parseError.error != QJsonParseError::NoError) // if have error
             {
                qDebug()<< "Parse Error" <<parseError.errorString();// message
                return; // then stop the process
            }
            QJsonArray jsonArray =jsonResponse.array();
            
            if(!jsonArray.isEmpty())
             {
                QJsonObject jsonObject = jsonArray.first().toObject();
            
                QVector <double> x,y;
            
                for(int i=0;i< jsonObject.value("X").toArray().size();i++)
                {
                    x.push_back(jsonObject.value("X").toArray()[i].toDouble());
                    y.push_back(jsonObject.value("Y").toArray()[i].toDouble());
            
                }
                m_ui->widget->graph(0)->setData(x,y);
                m_ui->widget->replot();
                m_ui->widget->rescaleAxes();
                m_ui->widget->update();
            
            
            
            }
            
            jsulmJ Offline
            jsulmJ Offline
            jsulm
            Lifetime Qt Champion
            wrote on last edited by
            #5

            @DemonLord Next things to check: does JSON parsing succeed? What do x and y contain when you call setData?

            https://forum.qt.io/topic/113070/qt-code-of-conduct

            D 1 Reply Last reply
            0
            • jsulmJ jsulm

              @DemonLord Next things to check: does JSON parsing succeed? What do x and y contain when you call setData?

              D Offline
              D Offline
              DemonLord
              wrote on last edited by
              #6

              @jsulm said in How to pass data from mainwindow to themewidget?:

              contain when you call setData?

              No the parsing doesn't succeed. I also used various widgets to test it out such as plain text edit and label but no data was displayed.

              jsulmJ 1 Reply Last reply
              0
              • D DemonLord

                @jsulm said in How to pass data from mainwindow to themewidget?:

                contain when you call setData?

                No the parsing doesn't succeed. I also used various widgets to test it out such as plain text edit and label but no data was displayed.

                jsulmJ Offline
                jsulmJ Offline
                jsulm
                Lifetime Qt Champion
                wrote on last edited by
                #7

                @DemonLord said in How to pass data from mainwindow to themewidget?:

                No the parsing doesn't succeed

                Well, then why do you expect to see anything in the UI?
                Fix your JSON and/or the parsing...

                https://forum.qt.io/topic/113070/qt-code-of-conduct

                D 1 Reply Last reply
                2
                • jsulmJ jsulm

                  @DemonLord said in How to pass data from mainwindow to themewidget?:

                  No the parsing doesn't succeed

                  Well, then why do you expect to see anything in the UI?
                  Fix your JSON and/or the parsing...

                  D Offline
                  D Offline
                  DemonLord
                  wrote on last edited by
                  #8

                  @jsulm
                  basically i have a data set receiving from a TCP server. The TCP server then sends data to the mainwindow and then to the themewidget to create a graph. I am not sure if the parsing is wrong or its the passing the data from mainwindow to themewidget.

                  1 Reply Last reply
                  0
                  • SGaistS Offline
                    SGaistS Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on last edited by
                    #9

                    Hi,

                    If the parsing failed then it's likely that your data incomplete. Did you ensure that you receive all your dataset ?

                    Since you mention QTcpSocket, how are you requesting the data ? How are you receiving it ? Are you checking that everything has arrived ?

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    D 1 Reply Last reply
                    1
                    • SGaistS SGaist

                      Hi,

                      If the parsing failed then it's likely that your data incomplete. Did you ensure that you receive all your dataset ?

                      Since you mention QTcpSocket, how are you requesting the data ? How are you receiving it ? Are you checking that everything has arrived ?

                      D Offline
                      D Offline
                      DemonLord
                      wrote on last edited by
                      #10

                      @SGaist hi yes the tcp client sends the data set over to the TCP server and receives it successfully as it is displayed on the TCP console but im not sure why its not showing on themewidget iu even when the plaintext edit widget to display the data

                      jsulmJ 1 Reply Last reply
                      0
                      • D DemonLord

                        @SGaist hi yes the tcp client sends the data set over to the TCP server and receives it successfully as it is displayed on the TCP console but im not sure why its not showing on themewidget iu even when the plaintext edit widget to display the data

                        jsulmJ Offline
                        jsulmJ Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on last edited by
                        #11

                        @DemonLord said in How to pass data from mainwindow to themewidget?:

                        but im not sure why its not showing on themewidget iu even when the plaintext edit widget to display the data

                        I already suggested why.
                        Did you do anything to verify what is happening?
                        Did you check what is inside data before you try to parse it?
                        Did you add any error handling code to your parsing code?
                        Did you check what parseError contains after QJsonDocument::fromJson(data,&parseError)?

                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                        D 1 Reply Last reply
                        1
                        • jsulmJ jsulm

                          @DemonLord said in How to pass data from mainwindow to themewidget?:

                          but im not sure why its not showing on themewidget iu even when the plaintext edit widget to display the data

                          I already suggested why.
                          Did you do anything to verify what is happening?
                          Did you check what is inside data before you try to parse it?
                          Did you add any error handling code to your parsing code?
                          Did you check what parseError contains after QJsonDocument::fromJson(data,&parseError)?

                          D Offline
                          D Offline
                          DemonLord
                          wrote on last edited by
                          #12

                          @jsulm the problem is i dont understand the codes on parsing data to do any checking.....i only checked the connect function if is implemented correctly or not

                          jsulmJ 1 Reply Last reply
                          0
                          • D DemonLord

                            @jsulm the problem is i dont understand the codes on parsing data to do any checking.....i only checked the connect function if is implemented correctly or not

                            jsulmJ Offline
                            jsulmJ Offline
                            jsulm
                            Lifetime Qt Champion
                            wrote on last edited by
                            #13

                            @DemonLord It is really not that hard to check what parseError contains.
                            It is also not hard to print out data to console to see what is inside.
                            How else should anybody know why it does not work if you do not even try to do simple debugging?

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            D 1 Reply Last reply
                            1
                            • jsulmJ jsulm

                              @DemonLord It is really not that hard to check what parseError contains.
                              It is also not hard to print out data to console to see what is inside.
                              How else should anybody know why it does not work if you do not even try to do simple debugging?

                              D Offline
                              D Offline
                              DemonLord
                              wrote on last edited by
                              #14

                              @jsulm Hey would you mind explaining these codes to me as i cant find anything online and I don't understand it as well never seen anything like this before. Thank you for your help.

                              QJsonParseError parseError;
                              QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);

                              if(parseError.error != QJsonParseError::NoError) // if have error
                              {
                              qDebug()<< "Parse Error" <<parseError.errorString();// message
                              return; // then stop the process
                              }
                              QJsonArray jsonArray =jsonResponse.array();

                              if(!jsonArray.isEmpty())
                              {
                              QJsonObject jsonObject = jsonArray.first().toObject();

                              QVector <double> x,y;
                              
                              for(int i=0;i< jsonObject.value("X").toArray().size();i++)
                              {
                                  x.push_back(jsonObject.value("X").toArray()[i].toDouble());
                                  y.push_back(jsonObject.value("Y").toArray()[i].toDouble());
                              

                              }

                              Pl45m4P 1 Reply Last reply
                              0
                              • D DemonLord

                                @jsulm Hey would you mind explaining these codes to me as i cant find anything online and I don't understand it as well never seen anything like this before. Thank you for your help.

                                QJsonParseError parseError;
                                QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);

                                if(parseError.error != QJsonParseError::NoError) // if have error
                                {
                                qDebug()<< "Parse Error" <<parseError.errorString();// message
                                return; // then stop the process
                                }
                                QJsonArray jsonArray =jsonResponse.array();

                                if(!jsonArray.isEmpty())
                                {
                                QJsonObject jsonObject = jsonArray.first().toObject();

                                QVector <double> x,y;
                                
                                for(int i=0;i< jsonObject.value("X").toArray().size();i++)
                                {
                                    x.push_back(jsonObject.value("X").toArray()[i].toDouble());
                                    y.push_back(jsonObject.value("Y").toArray()[i].toDouble());
                                

                                }

                                Pl45m4P Offline
                                Pl45m4P Offline
                                Pl45m4
                                wrote on last edited by Pl45m4
                                #15

                                @DemonLord said in How to pass data from mainwindow to themewidget?:

                                i cant find anything online and I don't understand it as well never seen anything like this before

                                Does it work for you? What exactly you dont understand? The code is not that complicated.
                                How does your JSON look like? There are a lot JSON Qt tutorials out there... but how should we know how your JSON data you want to parse looks like?


                                If debugging is the process of removing software bugs, then programming must be the process of putting them in.

                                ~E. W. Dijkstra

                                D 1 Reply Last reply
                                0
                                • Pl45m4P Pl45m4

                                  @DemonLord said in How to pass data from mainwindow to themewidget?:

                                  i cant find anything online and I don't understand it as well never seen anything like this before

                                  Does it work for you? What exactly you dont understand? The code is not that complicated.
                                  How does your JSON look like? There are a lot JSON Qt tutorials out there... but how should we know how your JSON data you want to parse looks like?

                                  D Offline
                                  D Offline
                                  DemonLord
                                  wrote on last edited by
                                  #16

                                  @Pl45m4 Hi no it doesnt. This code i found it from youtube but the example shown also did not work. I am confused.....

                                  QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);
                                  What does this mean? Does it mean that the data is already in QJsonDocument? I don't think i stored my data in the QJsonDocument yet? I am not sure because my data is received from the TCP sever then passed to the themewidget and then has to go to the JsonDocument right?

                                  Pl45m4P jsulmJ 2 Replies Last reply
                                  0
                                  • D DemonLord

                                    @Pl45m4 Hi no it doesnt. This code i found it from youtube but the example shown also did not work. I am confused.....

                                    QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);
                                    What does this mean? Does it mean that the data is already in QJsonDocument? I don't think i stored my data in the QJsonDocument yet? I am not sure because my data is received from the TCP sever then passed to the themewidget and then has to go to the JsonDocument right?

                                    Pl45m4P Offline
                                    Pl45m4P Offline
                                    Pl45m4
                                    wrote on last edited by Pl45m4
                                    #17

                                    @DemonLord said in How to pass data from mainwindow to themewidget?:

                                    What does this mean? Does it mean that the data is already in QJsonDocument?

                                    At least it tries to create a QJsonDocument from data while parseError is used for any potential error.
                                    If you got no error it was most likely successful. If you got the code from a YT tutorial, make sure that your data has the same JSON structure, otherwise it cant work.

                                    • https://doc.qt.io/qt-5/qjsondocument.html#fromJson

                                    If debugging is the process of removing software bugs, then programming must be the process of putting them in.

                                    ~E. W. Dijkstra

                                    1 Reply Last reply
                                    0
                                    • D DemonLord

                                      @Pl45m4 Hi no it doesnt. This code i found it from youtube but the example shown also did not work. I am confused.....

                                      QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);
                                      What does this mean? Does it mean that the data is already in QJsonDocument? I don't think i stored my data in the QJsonDocument yet? I am not sure because my data is received from the TCP sever then passed to the themewidget and then has to go to the JsonDocument right?

                                      jsulmJ Offline
                                      jsulmJ Offline
                                      jsulm
                                      Lifetime Qt Champion
                                      wrote on last edited by
                                      #18

                                      @DemonLord said in How to pass data from mainwindow to themewidget?:

                                      What does this mean?

                                      Please read documentation and learn C++.
                                      https://doc.qt.io/qt-5/qjsondocument.html#fromJson
                                      QJsonDocument::fromJson is a static method which converts its input to QJsonDocument.

                                      And you still refuse to tell us what is inside data - is it so hard to provide such simple information?

                                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      1 Reply Last reply
                                      0
                                      • D Offline
                                        D Offline
                                        DemonLord
                                        wrote on last edited by
                                        #19

                                        @jsulm @Pl45m4

                                        The data contains decimal numbers. Im not sure if this is what your asking
                                        This is the data:
                                        "Rounds: |FBSGLAB00200104|-0.129|-0.055|-0.050|-0.041|-0.055|-0.060|-0.058|-0.053|-0.060|-0.053|-0.043|-0.036|-0.031|-0.036|-0.036|-0.036|-0.014|0.004|0.026|0.035|0.006|-0.001|0.008|0.035|0.043|0.040|0.040|0.038|0.040|0.026|0.033|0.016|0.035|0.026|0.016|-0.006|-0.014|-0.014|-0.009|-0.014|-0.021|-0.038|-0.038|-0.031|-0.031|-0.036|-0.041|-0.048|-0.045|-0.031|-0.018|-0.016|-0.016|-0.026|-0.036|-0.021|0.008|0.006|0.008|-0.009|0.001|0.016|0.031|0.031|0.028|0.023|0.021|0.021|0.026|0.031|0.026|0.023|0.013|0.011|0.016|0.011|0.021|0.016|0.016|0.006|-0.016|-0.016|-0.011|-0.016|-0.011|-0.021|-0.048|-0.041|-0.033|-0.028|-0.028|-0.033|-0.038|-0.026|-0.033|-0.023|-0.018|-0.016|-0.006|-0.009|-0.004|-0.004|0.004|0.006|0.001|0.008|0.016|0.021|0.013|0.008|0.016|0.008|0.006|0.008|0.008|0.001|-0.006|-0.016|-0.018|-0.011|-0.011|-0.021|-0.021|-0.021|-0.033|-0.043|-0.041|-0.031|-0.014|-0.031|-0.045|-0.053|-0.038|-0.033|-0.028|-0.023|-0.023|-0.018|-0.016|-0.006|-0.004|0.016|0.016|0.018|0.026|0.028|0.033|0.035|0.040|0.033|0.031|0.038|0.040|0.028|0.021|0.016|0.001|-0.006|0.001|-0.001|-0.016|-0.033|-0.043|-0.053|-0.048|-0.050|-0.043|-0.048|-0.067|-0.067|-0.060|-0.050|-0.048|-0.055|-0.045|-0.043|-0.041|-0.036|-0.038|-0.031|-0.014|-0.004|0.008|0.035|0.018|0.008|0.008|0.035|0.055|0.050|0.048|0.035|0.031|0.031|0.026|0.028|0.038|0.031|0.021|-0.004|-0.014|-0.016|-0.006|-0.004|-0.018|-0.031|-0.048|-0.045|-0.041|-0.033|-0.033|-0.043|-0.041|-0.045|-0.028|-0.021|-0.016|-0.026|-0.028|-0.018|-0.001|0.008|0.004|-0.011|0.001|0.018|0.026|0.035|0.038|0.021|0.018|0.006|0.031|0.040|0.043|0.033|0.023|0.008|0.008|0.008|0.028|0.028|0.011|-0.001|-0.009|-0.011|-0.016|-0.009|-0.018|-0.031|-0.031|-0.026|-0.023|-0.033|-0.038|-0.038|-0.038|-0.028|-0.021|-0.028|-0.021|-0.018|-0.009|-0.006|-0.004|0.008|0.001|-0.006|0.001|0.004|0.018|0.018|0.021|0.016|0.008|0.001|0.008|0.006|0.011|0.004|-0.006|-0.011|-0.011|-0.018|-0.014|-0.014|-0.028|-0.026|-0.026|-0.036|-0.043|-0.036|-0.028|-0.023|-0.043|-0.043|-0.026|-0.041|-0.045|-0.023|-0.014|-0.023|-0.038|-0.006|0.018|0.008|-0.001|0.004|0.031|0.035|0.033|0.033|0.045|0.033|0.028|0.028|0.035|0.043|0.035|-0.004|-0.001|0.006|0.008|-0.001|-0.011|-0.021|-0.033|-0.041|-0.053|-0.048|-0.038|-0.038|-0.060|-0.067|-0.065|-0.055|-0.053|-0.050|-0.048|-0.041|-0.036|-0.031|-0.026|-0.041|-0.023|-0.011|0.008|0.023|0.011|-0.004|0.008|0.038|0.045|0.048|0.048|0.045|0.033|0.023|0.018|0.021|0.045|0.040|0.021|-0.001|-0.009|-0.009|-0.009|-0.004|-0.021|-0.031|-0.041|-0.043|-0.036|-0.031|-0.041|-0.041|-0.041|-0.041|-0.033|-0.023|-0.016|-0.028|-0.041|-0.036|-0.009|0.008|0.011|0.006|-0.009|-0.004|0.026|0.023|0.038|0.026|0.018|0.011|0.021|0.035|0.038|0.038|0.021|0.006|0.008|0.018|0.028|0.021|0.001|0.001|-0.004|-0.006|-0.018|-0.009|-0.014|-0.011|-0.023|-0.028|-0.041|-0.041|-0.036|-0.038|-0.026|-0.021|-0.031|-0.028|-0.021|-0.014|-0.004|-0.004|-0.004|-0.004|0.004|0.008|0.006|0.004|0.023|0.023|0.016|0.006|0.004|0.004|0.004|0.011|0.001|0.008|-0.004|-0.004|-0.018|-0.009|-0.011|-0.018|-0.026|-0.021|-0.023|-0.033|-0.038|-0.041|-0.028|-0.028|-0.038|-0.048|-0.038|-0.031|-0.036|-0.018|-0.021|-0.021|-0.026|-0.011|0.001|0.016|0.004|0.008|0.016|0.028|0.038|0.035|0.045|0.033|0.038|0.038|0.043|0.038|0.035|0.006|-0.006|-0.009|-0.006|-0.009|-0.004|-0.016|-0.036|-0.043|-0.058|-0.041|-0.036|-0.048|-0.067|-0.065|-0.063|-0.050|-0.050|-0.058|-0.060|-0.045|-0.036|-0.028|-0.038|-0.031|-0.038|-0.011|0.016|0.021|0.031|0.008|0.006|0.023|0.035|0.050|0.043|0.045|0.043|0.023|0.026|0.028|0.038|0.038|0.021|0.004|-0.006|-0.011|-0.006|-0.006|-0.016|-0.021|-0.041|-0.055|-0.041|-0.028|-0.031|-0.038|-0.041|-0.036|-0.036|-0.023|-0.023|-0.028|-0.031|-0.033|-0.004|0.006|0.001|-0.014|-0.004|0.006|0.016|0.035|0.021|0.016|0.018|0.021|0.028|0.031|0.033|0.033|0.026|0.011|0.016|0.016|0.026|0.035|0.018|-0.004|-0.001|-0.006|-0.016|-0.018|-0.016|-0.018|-0.028|-0.033|-0.041|-0.031|-0.033|-0.038|-0.033|-0.028|-0.026|-0.023|-0.026|-0.016|-0.016|-0.001|-0.009|0.004|0.001|0.001|0.004|0.006|0.016|0.016|0.021|0.008|0.004|0.004|0.008|0.013|0.011|0.001|-0.006|-0.014|-0.004|-0.009|-0.011|-0.018|-0.026|-0.026|-0.031|-0.038|-0.036|-0.033|-0.026|-0.031|-0.038|-0.048|-0.048|-0.036|-0.028|-0.033|-0.031|-0.031|-0.026|-0.016|0.004|0.008|0.008|0.008|0.013|0.021|0.045|0.045|0.040|0.031|0.023|0.028|0.038|0.048|0.033|0.018|-0.009|-0.004|-0.001|0.008|-0.006|-0.011|-0.028|-0.045|-0.055|-0.048|-0.038|-0.033|-0.053|-0.072|-0.075|-0.055|-0.045|-0.050|-0.058|-0.048|-0.041|-0.026|-0.036|-0.038|-0.026|-0.026|0.004|0.023|0.021|0.004|0.004|0.023|0.050|0.055|0.048|0.033|0.038|0.031|0.028|0.023|0.031|0.040|0.038|0.013|-0.011|-0.014|-0.018|-0.006|-0.001|-0.016|-0.033|-0.045|-0.048|-0.041|-0.036|-0.036|-0.041|-0.043|-0.045|-0.038|-0.018|-0.018|-0.023|-0.031|-0.016|0.004|0.001|-0.001|-0.001|0.001|0.026|0.035|0.033|0.023|0.011|0.006|0.028|0.035|0.035|0.038|0.031|0.021|0.006|0.016|0.021|0.021|0.016|0.001|-0.011|-0.009|-0.006|-0.004|-0.006|-0.016|-0.021|-0.033|-0.033|-0.033|-0.038|-0.043|-0.036|-0.026|-0.028|-0.023|-0.031|-0.026|-0.011|-0.001|-0.001|0.001|-0.001|0.001|0.001|0.008|0.008|0.021|0.021|0.018|0.006|0.011|0.004|0.006|0.018|0.013|0.004|-0.011|-0.018|-0.011|0.001|-0.004|-0.021|-0.028|-0.036|-0.038|-0.041|-0.038|-0.033|-0.028|-0.038|-0.058|-0.041|-0.026|-0.031|-0.041|-0.026|-0.028|-0.033|-0.028|0.011|0.018|0.001|-0.001|0.004|0.028|0.048|0.043|0.043|0.040|0.018|0.028|0.038|0.050|0.040|0.016|-0.011|-0.014|-0.004|0.008|0.008|-0.011|-0.036|-0.041|-0.033|-0.050|-0.045|-0.031|-0.041|-0.058|-0.060|-0.060|-0.065|-0.058|-0.050|-0.045|-0.041|-0.031|-0.031|-0.031|-0.028|-0.023|-0.011|0.011|0.026|0.028|0.016|0.016|0.038|0.040|0.043|0.043|0.038|0.028|0.031|0.028|0.026|0.028|0.031|0.011|0.004|-0.006|-0.009|-0.004|-0.011|-0.021|-0.021|-0.036|-0.041|-0.036|-0.045|-0.038|-0.038|-0.048|-0.043|-0.033|-0.023|-0.018|-0.026|-0.028|-0.026|0.001|-0.004|0.004|-0.006|0.001|0.008|0.033|0.028|0.026|0.011|0.023|0.018|0.035|0.031|0.035|0.023|0.021|0.004|0.004|0.008|0.023|0.018|0.008|-0.001|-0.011|-0.011|-0.018|-0.004|-0.016|-0.023|-0.033|-0.045|-0.036|-0.036|-0.028|-0.031|-0.031|-0.021|-0.023|-0.028|-0.033|-0.023|-0.009|0.001|-0.006|-0.001|-0.001|0.008|0.006|0.011|0.016|0.026|0.013|0.004|0.008|0.011|0.011|0.011|0.001|-0.001|-0.001|-0.016|-0.006|-0.006|-0.009|-0.023|-0.033|-0.036|-0.031|-0.038|-0.038|-0.038|-0.036|-0.038|-0.050|-0.043|-0.028|-0.028|-0.031|-0.036|-0.038|-0.031|-0.011|0.011|0.018|-0.004|0.001|0.001|0.028|0.045|0.050|0.040|0.040|0.026|0.021|0.043|0.057|0.048|0.028|-0.004|-0.009|-0.006|0.013|0.001|-0.009|-0.031|-0.043|-0.055|-0.050|-0.038|-0.041|-0.045|-0.070|-0.075|-0.067|-0.058|-0.045|-0.060|-0.048|-0.050|-0.041|-0.028|-0.033|-0.031|-0.036|-0.011|0.008|0.021|0.035|0.016|0.026|0.028|0.040|0.050|0.045|0.040|0.040|0.031|0.026|0.026|0.033|0.028|0.026|0.001|-0.011|-0.018|-0.006|-0.009|-0.009|-0.028|-0.043|-0.045|-0.045|-0.031|-0.031|-0.038|-0.041|-0.041|-0.038|-0.021|-0.028|-0.021|-0.031|-0.021|-0.011|0.001|-0.004|-0.006|0.008|0.021|0.021|0.023|0.023|0.021|0.018|0.018|0.026|0.031|0.038|0.038|0.026|0.013|-0.004|0.013|0.038|0.038|0.018|-0.006|-0.018|-0.011|-0.021|-0.001|-0.011|-0.018|-0.023|-0.028|-0.036|-0.028|-0.036|-0.041|-0.036|-0.018|-0.016|-0.023|-0.033|-0.014|-0.006|-0.004|0.004|0.004|-0.004|-0.001|-0.001|0.011|0.018|0.023|0.018|0.011|-0.001|0.008|0.008|0.021|0.008|0.008|-0.009|-0.016|-0.018|-0.006|-0.006|-0.023|-0.031|-0.038|-0.038|-0.028|-0.033|-0.033|-0.033|-0.033|-0.043|-0.043|-0.023|-0.028|-0.041|-0.038|-0.026|-0.026|-0.028|-0.004|0.021|0.004|-0.006|-0.009|0.021|0.048|0.048|0.040|0.031|0.028|0.021|0.035|0.045|0.050|0.035|-0.001|-0.018|-0.004|0.008|0.016|-0.006|-0.026|-0.036|-0.055|-0.045|-0.050|-0.031|-0.045|-0.058|-0.077|-0.070|-0.055|-0.050|-0.045|-0.065|-0.050|-0.043|-0.031|-0.033|-0.031|-0.036|-0.023|-0.006|0.011|0.023|0.008|0.004|0.033|0.045|0.038|0.048|0.048|0.035|0.028|0.026|0.023|0.033|0.033|0.016|0.001|-0.009|-0.011|-0.011|-0.004|-0.014|-0.028|-0.043|-0.031|-0.041|-0.041|-0.038|-0.041|-0.038|-0.043|-0.031|-0.031|-0.028|-0.023|-0.026|-0.016|-0.011|0.001|0.001|-0.001|-0.001|0.016|0.026|0.035|0.021|0.021|0.018|0.023|0.028|0.031|0.033|0.038|0.021|0.008|0.008|0.018|0.026|0.028|0.023|0.001|-0.018|-0.016|-0.018|-0.006|-0.006|-0.016|-0.031|-0.031|-0.031|-0.028|-0.036|-0.038|-0.036|-0.028|-0.023|-0.023|-0.026|-0.023|-0.018|-0.009|-0.001|-0.001|-0.004|0.001|0.004|0.011|0.011|0.018|0.011|0.001|0.001|0.001|0.011|0.011|0.006|0.008|-0.001|-0.011|-0.011|-0.001|-0.001|-0.014|-0.036|-0.038|-0.036|-0.031|-0.036|-0.031|-0.041|-0.038|-0.038|-0.043|-0.028|-0.021|-0.033|-0.045|-0.038|-0.021|-0.023|-0.006|0.006|0.001|-0.014|-0.004|0.023|0.045|0.050|0.045|0.028|0.018|0.021|0.043|0.055|0.045|0.023|0.001|-0.014|-0.001|0.011|0.011|-0.009|-0.021|-0.041|-0.048|-0.048|-0.036|-0.033|-0.045|-0.043|-0.072|-0.067|-0.045|-0.050|-0.050|-0.058|-0.063|-0.043|-0.028|-0.018|-0.036|-0.041|-0.031|-0.014|0.018|0.031|0.033|0.023|0.016|0.033|0.048|0.043|0.048|0.048|0.040|0.028|0.033|0.023|0.023|0.021|0.008|0.004|-0.006|-0.006|-0.006|-0.018|-0.021|-0.038|-0.053|-0.043|-0.031|-0.026|-0.031|-0.041|-0.045|-0.050|-0.033|-0.016|-0.018|-0.023|-0.026|-0.018|0.001|0.001|0.004|-0.004|0.004|0.018|0.023|0.033|0.026|0.023|0.031|0.023|0.021|0.038|0.035|0.021|0.018|0.008|0.016|0.031|0.033|0.016|-0.009|-0.016|-0.014|-0.014|-0.016|-0.009|-0.011|-0.018|-0.036|-0.041|-0.028|-0.031|-0.036|-0.036|-0.031|-0.023|-0.009|-0.028|-0.028|-0.014|-0.009|0.006|0.004|-0.011|-0.001|0.001|0.016|0.008|0.021|0.021|0.021|0.004|0.016|0.011|0.026|0.004|0.001|-0.006|-0.014|-0.006|-0.006|-0.001|-0.009|-0.031|-0.036|-0.026|-0.033|-0.023|-0.036|-0.041|-0.038|-0.048|-0.048|-0.036|-0.021|-0.031|-0.036|-0.041|-0.038|-0.026|-0.009|0.018|0.001|-0.009|-0.011|0.018|0.038|0.055|0.050|0.035|0.016|0.023|0.035|0.050|0.055|0.045|0.008|-0.016|-0.004|0.011|0.018|0.004|-0.018|-0.041|-0.055|-0.050|-0.043|-0.031|-0.038|-0.053|-0.080|-0.070|-0.060|-0.048|-0.043|-0.058|-0.053|-0.045|-0.036|-0.028|-0.043|-0.036|-0.023|-0.004|0.008|0.026|0.023|0.001|0.016|0.033|0.035|0.035|0.038|0.043|0.031|0.033|0.023|0.026|0.033|0.038|0.023|0.004|-0.016|-0.023|-0.016|-0.004|-0.018|-0.026|-0.041|-0.043|-0.041|-0.031|-0.031|-0.041|-0.045|-0.041|-0.036|-0.031|-0.014|-0.021|-0.026|-0.023|-0.009|0.004|0.001|0.001|0.006|0.016|0.028|0.035|0.031|0.021|0.018|0.028|0.031|0.023|0.038|0.026|0.016|0.011|0.016|0.023|0.035|0.011|0.004|-0.016|-0.011|-0.001|-0.006|-0.011|-0.009|-0.018|-0.033|-0.038|-0.038|-0.041|-0.038|-0.036|-0.033|-0.028|-0.021|-0.021|-0.018|-0.021|-0.001|-0.001|-0.004|-0.004|-0.006|0.001|0.004|0.011|0.018|0.018|0.018|0.011|0.001|0.001|0.016|0.011|0.011|-0.001|-0.011|-0.014|-0.009|-0.006|-0.016|-0.028|-0.033|-0.021|-0.026|-0.028|-0.036|-0.043|-0.045|-0.048|-0.041|-0.036|-0.021|-0.031|-0.045|-0.041|-0.028|-0.018|-0.001|0.006|0.006|-0.014|-0.011|0.016|0.043|0.055|0.040|0.028|0.023|0.021|0.035|0.053|0.060|0.048|0.011|-0.011|-0.009|0.013|0.021|0.016|-0.021|-0.043|-0.045|-0.041|-0.041|-0.043|-0.043|-0.050|-0.058|-0.072|-0.065|-0.053|-0.055|-0.050|-0.050|-0.050|-0.038|-0.028|-0.026|-0.038|-0.036|-0.026|-0.001|0.021|0.038|0.021|0.008|0.026|0.043|0.038|0.048|0.033|0.040|0.038|0.031|0.031|0.021|0.026|0.021|0.008|-0.006|0.008|-0.006|-0.009|-0.026|-0.036|-0.043|-0.031|-0.038|-0.028|-0.031|-0.043|-0.043|-0.043|-0.041|-0.028|-0.021|-0.026|-0.033|-0.026|-0.011|0.004|0.004|-0.016|0.008|0.016|0.026|0.031|0.023|0.021|0.023|0.021|0.028|0.035|0.031|0.026|0.021|0.016|0.011|0.016|0.023|0.021|0.011|-0.004|-0.009|-0.011|-0.016|-0.009|-0.004|-0.016|-0.028|-0.041|-0.038|-0.031|-0.033|-0.033|-0.031|-0.023|-0.021|-0.023|-0.028|-0.018|-0.009|0.006|0.004|-0.001|0.001|-0.001|0.008|0.018|0.018|0.023|0.011|0.006|0.011|0.011|0.018|0.013|0.011|-0.006|-0.004|-0.014|-0.006|0.001|-0.011|-0.031|-0.045|-0.026|-0.026|-0.021|-0.033|-0.043|-0.048|-0.043|-0.045|-0.031|-0.026|-0.026|-0.045|-0.048|-0.036|-0.018|-0.004|0.001|0.011|-0.009|-0.014|0.008|0.035|0.053|0.057|0.038|0.023|0.026|0.035|0.040|0.060|0.048|0.016|-0.009|-0.016|0.008|0.011|0.013|-0.011|-0.038|-0.050|-0.048|-0.045|-0.033|-0.036|-0.050|-0.070|-0.072|-0.063|-0.053|-0.050|-0.055|-0.063|-0.065|-0.038|-0.028|-0.023|-0.033|-0.033|-0.031|-0.009|0.021|0.038|0.028|0.016|0.016|0.038|0.048|0.045|0.053|0.040|0.035|0.028|0.016|0.021|0.033|0.026|0.013|0.001|-0.021|-0.014|-0.011|-0.018|-0.028|-0.043|-0.045|-0.041|-0.033|-0.036|-0.036|-0.041|-0.041|-0.045|-0.028|-0.026|-0.026|-0.028|-0.026|-0.016|0.008|0.006|0.004|-0.006|0.004|0.026|0.035|0.031|0.028|0.026|0.023|0.021|0.035|0.035|0.038|0.021|0.001|0.008|0.018|0.031|0.028|0.016|-0.001|-0.004|-0.014|-0.011|-0.011|-0.009|-0.011|-0.016|-0.036|-0.033|-0.036|-0.033|-0.043|-0.038|-0.026|-0.014|-0.021|-0.021|-0.023|-0.016|-0.004|-0.001|-0.006|0.001|0.006|0.006|0.013|0.016|0.016|0.016|0.016|0.004|0.006|0.008|0.001| 0.004|-0.001|-0.004|-0.006|-0.009|-0.006|-0.014|-0.021|-0.038|-0.036|-0.028|-0.014|-0.031|-0.041|-0.053|-0.038|-0.038|-0.031|-0.026|-0.026|-0.045|-0.050|-0.028|-0.014|-0.014|-0.009|0.004|-0.011|-0.009|-0.004|0.031|0.050|0.048|0.026|0.023|0.031|0.038|0.045|0.050|0.048|0.026|-0.009|-0.011|0.006|0.016|0.018|-0.014|-0.031|-0.041|-0.043|-0.041|-0.036|-0.041|-0.050|-0.060|-0.070|-0.063|-0.048|-0.038|-0.050|-0.065|-0.055|-0.048|-0.033|-0.031|-0.031|-0.023|-0.023|-0.014|0.018|0.031|0.026|0.016|0.018|0.033|0.055|0.048|0.045|0.035|0.026|0.033|0.028|0.028|0.031|0.026|0.018|0.008|-0.004|-0.011|-0.014|-0.018|-0.028|-0.038|-0.038|-0.038|-0.038|-0.033|-0.036|-0.045|-0.041|-0.036|-0.031|-0.026|-0.018|-0.028|-0.026|-0.018|0.001|0.006|0.001|0.001|0.016|0.016|0.026|0.028|0.026|0.016|0.023|0.016|0.028|0.031|0.031|0.035|0.021|0.021|0.011|0.016|0.028|0.016|0.001|-0.009|-0.009|-0.004|-0.011|-0.001|-0.006|-0.018|-0.038|-0.036|-0.038|-0.038|-0.033|-0.031|-0.031|-0.026|-0.014|-0.026|-0.026|-0.016|-0.004|0.011|0.004|-0.001|-0.004|0.006|0.004|0.016|0.016|0.018|0.018|0.008|0.001|0.006|0.016|0.008|-0.001|-0.006|-0.011|-0.011|-0.006|-0.014|-0.016|-0.028|-0.038|-0.026|-0.021|-0.026|-0.043|-0.045|-0.038|-0.033|-0.036|-0.031|-0.028|-0.043|-0.053|-0.033|-0.018|-0.014|-0.004|-0.001|-0.011|-0.011|0.006|0.028|0.053|0.048|0.035|0.021|0.023|0.043|0.050|0.055|0.048|0.021|0.006|-0.004|0.008|0.018|0.008|-0.016|-0.031|-0.043|-0.043|-0.043|-0.045|-0.043|-0.045|-0.050|-0.072|-0.070|-0.048|-0.045|-0.050|-0.063|-0.060|-0.045|-0.021|-0.016|-0.028|-0.036|-0.038|-0.018|0.011|0.035|0.050|0.021|0.016|0.023|0.033|0.045|0.045|0.040|0.038|0.040|0.028|0.021|0.021|0.023|0.023|0.004|-0.001|-0.018|-0.009|-0.014|-0.028|-0.041|-0.045|-0.036|-0.038|-0.033|-0.038|-0.041|-0.053|-0.045|-0.031|-0.021|-0.016|-0.036|-0.026|-0.026|-0.006|0.013|0.001|-0.006|0.001|0.018|0.021|0.028|0.035|0.021|0.018|0.018|0.021|0.033|0.033|0.031|0.028|0.018|0.018|0.018|0.018|0.011|0.004|-0.006|-0.004|-0.004|-0.018|-0.016|-0.011|-0.014|-0.023|-0.033|-0.033|-0.038|-0.033|-0.038|-0.031|-0.028|-0.018|-0.018|-0.028|-0.021|-0.001|0.004|0.004|-0.009|-0.001|-0.001|0.008|0.011|0.021|0.018|0.011|0.018|0.006|0.008|0.011|0.011|-0.001|-0.004|-0.001|-0.011|-0.006|-0.014|-0.014|-0.031|-0.041|-0.028|-0.028|-0.026|-0.045|-0.053|-0.050|-0.036|-0.026|-0.038|-0.031|-0.038|-0.055|-0.041|-0.031|-0.011|-0.006|0.001|0.004|-0.018|-0.014|0.021|0.045|0.053|0.033|0.026|0.026|0.035|0.048|0.055|0.050|0.031|0.001|-0.006|0.001|0.023|0.016|-0.001|-0.018|-0.033|-0.053|-0.038|-0.036|-0.033|-0.038|-0.055|-0.063|-0.077|-0.055|-0.048|-0.045|-0.060|-0.058|-0.058|-0.033|-0.028|-0.026|-0.031|-0.031|-0.014|-0.001|0.021|0.038|0.023|0.004|0.013|0.035|0.055|0.045|0.048|0.038|0.031|0.023|0.026|0.021|0.026|0.028|0.018|-0.006|-0.016|-0.021|-0.018|-0.016|-0.031|-0.043|-0.043|-0.038|-0.033|-0.036|-0.033|-0.045|-0.045|-0.043|-0.031|-0.018|-0.026|-0.028|-0.026|-0.006|0.006|0.004|-0.001|-0.006|0.004|0.026|0.031|0.038|0.021|0.016|0.016|0.023|0.028|0.040|0.033|0.021|0.011|0.018|0.021|0.028|0.018|0.001|0.004|-0.004|-0.004|-0.009|-0.009|-0.014|-0.016|-0.028|-0.036|-0.033|-0.033|-0.043|-0.033|-0.028|-0.021|-0.023|-0.026|-0.033|-0.018|-0.011|0.001|0.008|-0.004|-0.001|0.004|0.011|0.006|0.013|0.028|0.021|0.008|0.008|0.013|0.008|0.006|-0.001|0.006|0.001|-0.004|-0.011|-0.014|-0.011|-0.028|-0.033|-0.031|-0.021|-0.026|-0.041|-0.048|-0.041|-0.038|-0.031|-0.038|-0.031|-0.036|-0.053|-0.041|-0.023|-0.004|-0.011|-0.006|-0.006|-0.011|-0.004|0.018|0.040|0.043|0.031|0.023|0.021|0.040|0.043|0.050|0.043|0.033|0.016|-0.001|0.001|0.008|0.018|0.006|-0.018|-0.036|-0.031|-0.038|-0.041|-0.043|-0.048|-0.055|-0.060|-0.063|-0.053|-0.050|-0.053|-0.065|-0.060|-0.053|-0.036|-0.018|-0.023|-0.033|-0.036|-0.038|-0.009|0.028|0.045|0.026|0.016|0.008|0.035|0.045|0.043|0.040|0.040|0.035|0.035|0.023|0.026|0.033|0.028|0.016|0.006|-0.009|-0.016|-0.009|-0.028|-0.026|-0.038|-0.041|-0.036|-0.033|-0.031|-0.041|-0.048|-0.045|-0.036|-0.023|-0.021|-0.023|-0.031|-0.043|-0.018|-0.001|0.008|0.001|0.001|0.008|0.023|0.021|0.028|0.016|0.023|0.006|0.023|0.028|0.035|0.033|0.021|0.016|0.013|0.028|0.026|0.008|0.006|-0.001|0.001|0.004|-0.018|-0.026|-0.011|-0.009|-0.016|-0.038|-0.041|-0.045|-0.036|-0.026|-0.036|-0.031|-0.028|-0.016|-0.021|-0.026|-0.011|-0.001|0.006|-0.004|0.001|-0.009|0.008|0.004|0.011|0.018|0.023|0.023|0.001|0.008|0.016|0.004|0.004|0.006|0.006|-0.004|-0.016|-0.011|-0.014|-0.023|-0.028|-0.023|-0.028|-0.023|-0.036|-0.053|-0.050|-0.033|-0.023|-0.036|-0.038|-0.031|-0.043|-0.043|-0.031|-0.006|-0.011|-0.011|-0.009|-0.004|-0.001|0.016|0.040|0.043|0.028|0.028|0.026|0.035|0.048|0.043|0.043|0.048|0.026|0.008|0.004|0.016|0.023|-0.001|-0.011|-0.033|-0.033|-0.043|-0.041|-0.043|-0.048|-0.053|-0.058|-0.070|-0.060|-0.058|-0.048|-0.055|-0.065|-0.053|-0.043|-0.021|-0.021|-0.028|-0.043|-0.041|-0.018|0.023|0.045|0.038|0.008|0.018|0.028|0.040|0.045|0.048|0.053|0.038|0.031|0.011|0.016|0.028|0.035|0.026|0.004|-0.014|-0.023|-0.014|-0.023|-0.026|-0.038|-0.041|-0.036|-0.033|-0.036|-0.045|-0.048|-0.053|-0.041|-0.028|-0.018|-0.021|-0.033|-0.026|-0.016|0.004|0.018|0.006|-0.011|0.001|0.016|0.040|0.040|0.035|0.021|0.016|0.016|0.028|0.031|0.035|0.033|0.018|0.016|0.018|0.028|0.016|0.021|0.011|-0.001|-0.018|-0.018|-0.018|-0.021|-0.011|-0.011|-0.016|-0.026|-0.045|-0.055|-0.041|-0.036|-0.018|-0.018|-0.018|-0.028|-0.023|-0.018|-0.001|0.006|0.004|0.008|0.016|0.006|0.001|0.008|0.021|0.016|0.011|0.016|0.008|0.001|-0.004|0.004|0.008|-0.004|-0.011|-0.004|-0.014|-0.016|-0.014|-0.028|-0.028|-0.028|-0.026|-0.038|-0.050|-0.053|-0.036|-0.026|-0.023|-0.036|-0.033|-0.041|-0.041|-0.026|0.008|-0.009|-0.028|-0.018|0.008|0.001|0.006|0.026|0.040|0.040|0.026|0.028|0.040|0.050|0.040|0.035|0.035|0.031|0.018|0.008|0.004|0.006|0.006|-0.011|-0.028|-0.031|-0.031|-0.036|-0.053|-0.053|-0.050|-0.058|-0.060|-0.063|-0.053|-0.045|-0.050|-0.063|-0.063|-0.043|-0.023|-0.026|-0.026|-0.031|-0.033|-0.018|0.001|0.033|0.038|0.013|0.016|0.021|0.035|0.050|0.038|0.031|0.033|0.038|0.031|0.021|0.021|0.026|0.023|0.016|-0.006|-0.014|-0.016|-0.016|-0.018|-0.028|-0.028|-0.043|-0.041|-0.041|-0.031|-0.045|-0.041|-0.041|-0.028|-0.031|-0.026|-0.028|-0.023|-0.016|-0.006|0.013|0.004|0.001|-0.014|0.013|0.031|0.031|0.028|0.021|0.016|0.013|0.021|0.038|0.035|0.040|0.021|0.008|0.016|0.026|0.028|0.001|-0.004|-0.006|-0.001|-0.009|-0.009|-0.018|-0.016|-0.016|-0.028|-0.036|-0.045|-0.041|-0.036|-0.036|-0.036|-0.033|-0.021|-0.018|-0.021|-0.023|-0.009|0.001|0.001|-0.004|-0.006|0.001|0.011|0.011|0.013|0.016|0.018|0.008|0.001|0.016|0.006|0.008|0.008|0.004|0.001|-0.018|-0.014|-0.011|-0.023|-0.021|-0.021|-0.026|-0.033|-0.031|-0.038|-0.045|-0.077|-0.033|-0.036|-0.043|-0.038|-0.038|-0.043|-0.036|-0.018|-0.014|-0.014|-0.018|-0.006|0.004|0.008|0.016|0.035|0.031|0.021|0.031|0.031|0.043|0.050|0.040|0.035|0.028|0.013|0.008|0.011|0.011|0.001|-0.016|-0.018|-0.028|-0.031|-0.031|-0.043|-0.041|-0.045|-0.050|-0.053|-0.067|-0.053|-0.050|-0.045|-0.065|-0.065|-0.053|-0.031|-0.016|-0.021|-0.041|-0.043|-0.031|0.001|0.048|0.043|0.023|0.008|0.011|0.031|0.040|0.040|0.045|0.040|0.035|0.023|0.018|0.021|0.038|0.028|0.008|-0.009|-0.006|-0.016|-0.018|-0.021|-0.028|-0.038|-0.036|-0.036|-0.033|-0.031|-0.041|-0.050|-0.031|-0.026|-0.021|-0.021|-0.038|-0.021|-0.028|-0.001|0.011|0.013|-0.004|-0.014|0.004|0.028|0.035|0.038|0.021|0.016|0.026|0.028|0.035|0.031|0.031|0.023|0.021|0.023|0.018|0.013|0.011|0.008|0.004|-0.006|-0.001|-0.011|-0.021|-0.018|-0.011|-0.023|-0.038|-0.038|-0.043|-0.043|-0.031|-0.028|-0.018|-0.014|-0.023|-0.031|-0.031|-0.014|0.023|0.016|0.001|-0.006|-0.004|0.004|0.011|0.018|0.021|0.021|0.026|0.011|-0.001|0.001|0.008|0.011|0.001|0.004|-0.016|-0.018|-0.018|-0.018|-0.014|-0.028|-0.026|-0.033|-0.038|-0.041|-0.041|-0.038|-0.031|-0.038|-0.041|-0.045|-0.033|-0.038|-0.033|-0.028|-0.016|-0.018|-0.016|0.001|-0.006|0.004|0.026|0.028|0.035|0.038|0.038|0.035|0.038|0.040|0.040|0.033|0.035|0.028|0.016|0.001|0.008|-0.006|-0.009|-0.016|-0.021|-0.028|-0.038|-0.043|-0.058|-0.050|-0.053|-0.058|-0.070|-0.050|-0.045|-0.053|-0.067|-0.060|-0.055|-0.033|-0.016|-0.028|-0.033|-0.038|-0.026|-0.009|0.028|0.038|0.035|0.008|0.008|0.026|0.035|0.048|0.045|0.035|0.035|0.033|0.023|0.021|0.031|0.035|0.011|-0.004|-0.016|-0.014|-0.018|-0.016|-0.018|-0.038|-0.036|-0.043|-0.041|-0.038|-0.041|-0.048|-0.041|-0.038|-0.031|-0.021|-0.028|-0.026|-0.026|-0.009|0.004|0.006|-0.009|-0.009|0.001|0.031|0.035|0.035|0.021|0.004|0.011|0.021|0.031|0.038|0.035|0.033|0.021|0.021|0.011|0.004|0.011|0.018|0.004|-0.009|-0.011|-0.014|-0.018|-0.011|-0.006|-0.011|-0.038|-0.041|-0.041|-0.043|-0.033|-0.033|-0.028|-0.018|-0.026|-0.036|-0.026|-0.006|-0.001|0.006|0.001|-0.006|0.016|0.008|-0.006|0.018|0.026|0.026|0.016|0.001|0.001|0.004|0.008|0.006|0.008|0.004|-0.006|-0.011|-0.021|-0.018|-0.018|-0.018|-0.031|-0.036|-0.031|-0.038|-0.048|-0.041|-0.031|-0.028|-0.036|-0.048|-0.038|-0.036|-0.033|-0.031|-0.009|-0.021|-0.026|-0.006|0.011|0.011|0.006|0.021|0.035|0.031|0.028|0.031|0.048|0.048|0.035|0.031|0.031|0.031|0.026|0.006|-0.001|-0.004|0.001|-0.011|-0.011|-0.021|-0.036|-0.038|-0.053|-0.053|-0.050|-0.038|-0.055|-0.060|-0.058|-0.050|-0.058|-0.060|-0.050|-0.041|-0.026|-0.021|-0.026|-0.041|-0.033|-0.021|0.016|0.038|0.001|0.011|0.004|0.023|0.031|0.045|0.033|0.035|0.038|0.035|0.021|0.018|0.033|0.031|0.011|0.004|-0.006|-0.016|-0.021|-0.018|-0.026|-0.038|-0.031|-0.031|-0.031|-0.033|-0.045|-0.048|-0.038|-0.033|-0.021|-0.028|-0.036|-0.036|-0.033|-0.014|0.013|0.016|-0.001|-0.006|-0.004|0.023|0.035|0.048|0.031|0.011|0.013|0.011|0.031|0.048|0.040|0.028|0.018|0.011|0.023|0.021|0.011|0.008|-0.006|-0.009|0.001|-0.006|-0.028|-0.011|-0.009|-0.014|-0.026|-0.043|-0.048|-0.043|-0.026|-0.031|-0.031|-0.023|-0.009|-0.021|-0.026|-0.028|-0.016|0.006|0.008|0.001|-0.001|0.004|0.016|0.013|0.021|0.021|0.026|0.006|-0.001|0.004|0.001|0.011|0.011|-0.001|-0.009|-0.018|-0.018|-0.021|-0.011|-0.021|-0.031|-0.031|-0.033|-0.045|-0.041|-0.036|-0.031|-0.033|-0.038|-0.045|-0.033|-0.033|-0.023|-0.026|-0.031|-0.031|-0.023|-0.001|0.006|0.018|0.018|0.026|0.021|0.038|0.038|0.050|0.040|0.040|0.040|0.035|0.038|0.038|0.026|0.016|-0.004|-0.001|-0.004|-0.016|-0.021|-0.028|-0.036|-0.048|-0.050|-0.058|-0.041|-0.050|-0.060|-0.067|-0.060|-0.060|-0.050|-0.058|-0.060|-0.048|-0.028|-0.009|-0.023|-0.043|-0.033|-0.023|0.008|0.043|0.040|0.023|0.008|0.018|0.038|0.040|0.048|0.040|0.035|0.031|0.033|0.018|0.026|0.028|0.028|0.006|-0.011|-0.011|-0.016|-0.018|-0.014|-0.028|-0.038|-0.038|-0.031|-0.038|-0.048|-0.050|-0.041|-0.031|-0.028|-0.031|-0.026|-0.036|-0.023|-0.011|0.001|0.011|-0.004|-0.009|-0.001|0.021|0.038|0.038|0.031|0.018|0.011|0.016|0.031|0.043|0.031|0.035|0.026|0.011|0.001|0.008|0.023|0.035|0.018|-0.006|-0.014|-0.011|-0.018|-0.016|-0.006|-0.011|-0.021|-0.031|-0.041|-0.050|-0.045|-0.038|-0.028|-0.018|-0.009|-0.018|-0.021|-0.026|-0.018|-0.006|0.016|0.008|0.008|0.008|0.011|0.016|0.011|0.021|0.023|0.026|0.008|-0.001|-0.001|0.004|0.016|0.008|-0.004|-0.014|-0.016|-0.018|-0.018|-0.014|-0.026|-0.023|-0.038|-0.036|-0.048|-0.041|-0.036|-0.031|-0.045|-0.045|-0.038|-0.033|-0.038|-0.038|-0.021|-0.026|-0.026|-0.009|0.016|0.023|0.008|0.011|0.026|0.038|0.043|0.035|0.038|0.040|0.031|0.023|0.028|0.040|0.035|0.011|-0.004|-0.006|-0.001|-0.006|-0.011|-0.026|-0.036|-0.043|-0.048|-0.050|-0.045|-0.045|-0.053|-0.067|-0.060|-0.055|-0.050|-0.060|-0.058|-0.048|-0.036|-0.023|-0.021|-0.038|-0.038|-0.028|-0.001|0.035|0.048|0.021|0.006|0.018|0.040|0.055|0.040|0.038|0.035|0.038|0.028|0.011|0.013|0.021|0.026|0.011|-0.009|-0.016|-0.016|-0.016|-0.016|-0.026|-0.031|-0.038|-0.036|-0.041|-0.043|-0.043|-0.045|-0.038|-0.038|-0.033|-0.031|-0.026|-0.026|-0.011|-0.006|0.004|-0.004|-0.006|-0.004|0.008|0.021|0.035|0.031|0.021|0.021|0.016|0.023|0.035|0.040|0.038|0.023|0.008|0.018|0.028|0.021|0.016|-0.006|-0.009|0.001|-0.009|-0.016|-0.011|-0.016|-0.011|-0.018|-0.028|-0.038|-0.041|-0.036|-0.033|-0.031|-0.018|-0.016|-0.021|-0.033|-0.021|-0.014|-0.001|0.001|0.004|-0.004|-0.001|0.016|0.008|0.016|0.023|0.021|0.006|-0.009|0.004|0.006|0.016|0.011|0.004|-0.006|-0.016|-0.011|-0.016|-0.011|-0.011|-0.018|-0.045|-0.045|-0.036|-0.031|-0.031|-0.038|-0.036|-0.041|-0.041|-0.036|-0.026|-0.028|-0.033|-0.031|-0.021|-0.028|-0.011|0.006|0.006|0.001|0.001|0.021|0.040|0.040|0.038|0.038|0.045|0.033|0.035|0.040|0.038|0.028|0.011|-0.004|-0.004|-0.004|-0.001|-0.014|-0.023|-0.033|-0.038|-0.048|-0.050|-0.055|-0.048|-0.058|-0.065|-0.065|-0.055|-0.045|-0.053|-0.063|-0.055|-0.041|-0.023|-0.011|-0.021|-0.041|-0.031|-0.011|0.026|0.035|0.031|0.011|0.011|0.031|0.035|0.040|0.038|0.035|0.031|0.026|0.018|0.026|0.023|0.028|0.018|-0.006|-0.014|-0.014|-0.016|-0.016|-0.023|-0.038|-0.033|-0.038|-0.036|-0.041|-0.048|-0.045|-0.031|-0.021|-0.028|-0.031|-0.036|-0.033|-0.018|0.001|0.013|0.004|-0.001|-0.009|0.004|0.031|0.038|0.038|0.021|0.018|0.023|0.031|0.035|0.035|0.035|0.026|0.023|0.021|0.011|0.011|0.008|0.011|0.018|0.006|-0.006|-0.014|-0.011|-0.016|-0.016|-0.016|-0.028|-0.033|-0.045|-0.043|-0.041|-0.036|-0.026|-0.006|-0.001|-0.021|-0.031|-0.014|-0.001|0.016|0.011|-0.009|-0.004|0.008|0.011|0.008|0.016|0.021|0.033|0.004|-0.004|0.006|0.013|0.018|0.006|0.001|-0.004|-0.028|-0.023|-0.014|-0.011|-0.018|-0.031|-0.041|-0.041|-0.026|-0.033|-0.041|-0.033|-0.038|-0.043|-0.048|-0.036|-0.028|-0.026|-0.028|-0.036|-0.018|-0.001|0.011|0.016|0.018|0.008|0.008|0.031|0.040|0.053|0.045|0.031|0.031|0.028|0.043|0.048|0.045|0.018|-0.001|-0.011|-0.009|-0.006|-0.001|-0.016|-0.036|-0.048|-0.055|-0.050|-0.043|-0.048|-0.055|-0.060|-0.067|-0.063|-0.050|-0.053|-0.053|-0.065|-0.041|-0.018|-0.018|-0.028|-0.028|-0.023|-0.014|0.011|0.038|0.043|0.028|0.011|0.021|0.040|0.040|0.048|0.040|0.035|0.035|0.031|0.018|0.021|0.031|0.018|-0.001|-0.011|-0.014|-0.016|-0.016|-0.021|-0.031|-0.038|-0.041|-0.045|-0.038|-0.048|-0.045|-0.038|-0.036|-0.031|-0.036|-0.023|-0.018|-0.011|-0.009|-0.009|0.001|-0.009|-0.001|0.004|0.026|0.035|0.038|0.028|0.006|0.001|0.023|0.035|0.038|0.048|0.031|0.018|0.016|0.011|0.011|0.016|0.018|0.011|-0.006|-0.009|-0.018|-0.011|-0.009|-0.011|-0.016|-0.026|-0.033|-0.036|-0.048|-0.038|-0.038|-0.021|-0.021|-0.021|-0.023|-0.031|-0.011|-0.001|0.016|0.011|-0.004|-0.004|0.006|0.008|0.001|0.026|0.028|0.023|0.016|-0.004|-0.006|0.008|0.021|0.016|-0.009|-0.014|-0.018|-0.021|-0.011|-0.006|-0.018|-0.038|-0.036|-0.038|-0.033|-0.026|-0.038|-0.038|-0.043|-0.045|-0.043|-0.021|-0.065|-0.038|-0.041|-0.031|-0.023|-0.016|0.004|0.016|-0.001|-0.004|0.001|0.026|0.038|0.055|0.038|0.033|0.028|0.021|0.033|0.043|0.048|\n");

                                        jsulmJ 1 Reply Last reply
                                        0
                                        • D DemonLord

                                          @jsulm @Pl45m4

                                          The data contains decimal numbers. Im not sure if this is what your asking
                                          This is the data:
                                          "Rounds: |FBSGLAB00200104|-0.129|-0.055|-0.050|-0.041|-0.055|-0.060|-0.058|-0.053|-0.060|-0.053|-0.043|-0.036|-0.031|-0.036|-0.036|-0.036|-0.014|0.004|0.026|0.035|0.006|-0.001|0.008|0.035|0.043|0.040|0.040|0.038|0.040|0.026|0.033|0.016|0.035|0.026|0.016|-0.006|-0.014|-0.014|-0.009|-0.014|-0.021|-0.038|-0.038|-0.031|-0.031|-0.036|-0.041|-0.048|-0.045|-0.031|-0.018|-0.016|-0.016|-0.026|-0.036|-0.021|0.008|0.006|0.008|-0.009|0.001|0.016|0.031|0.031|0.028|0.023|0.021|0.021|0.026|0.031|0.026|0.023|0.013|0.011|0.016|0.011|0.021|0.016|0.016|0.006|-0.016|-0.016|-0.011|-0.016|-0.011|-0.021|-0.048|-0.041|-0.033|-0.028|-0.028|-0.033|-0.038|-0.026|-0.033|-0.023|-0.018|-0.016|-0.006|-0.009|-0.004|-0.004|0.004|0.006|0.001|0.008|0.016|0.021|0.013|0.008|0.016|0.008|0.006|0.008|0.008|0.001|-0.006|-0.016|-0.018|-0.011|-0.011|-0.021|-0.021|-0.021|-0.033|-0.043|-0.041|-0.031|-0.014|-0.031|-0.045|-0.053|-0.038|-0.033|-0.028|-0.023|-0.023|-0.018|-0.016|-0.006|-0.004|0.016|0.016|0.018|0.026|0.028|0.033|0.035|0.040|0.033|0.031|0.038|0.040|0.028|0.021|0.016|0.001|-0.006|0.001|-0.001|-0.016|-0.033|-0.043|-0.053|-0.048|-0.050|-0.043|-0.048|-0.067|-0.067|-0.060|-0.050|-0.048|-0.055|-0.045|-0.043|-0.041|-0.036|-0.038|-0.031|-0.014|-0.004|0.008|0.035|0.018|0.008|0.008|0.035|0.055|0.050|0.048|0.035|0.031|0.031|0.026|0.028|0.038|0.031|0.021|-0.004|-0.014|-0.016|-0.006|-0.004|-0.018|-0.031|-0.048|-0.045|-0.041|-0.033|-0.033|-0.043|-0.041|-0.045|-0.028|-0.021|-0.016|-0.026|-0.028|-0.018|-0.001|0.008|0.004|-0.011|0.001|0.018|0.026|0.035|0.038|0.021|0.018|0.006|0.031|0.040|0.043|0.033|0.023|0.008|0.008|0.008|0.028|0.028|0.011|-0.001|-0.009|-0.011|-0.016|-0.009|-0.018|-0.031|-0.031|-0.026|-0.023|-0.033|-0.038|-0.038|-0.038|-0.028|-0.021|-0.028|-0.021|-0.018|-0.009|-0.006|-0.004|0.008|0.001|-0.006|0.001|0.004|0.018|0.018|0.021|0.016|0.008|0.001|0.008|0.006|0.011|0.004|-0.006|-0.011|-0.011|-0.018|-0.014|-0.014|-0.028|-0.026|-0.026|-0.036|-0.043|-0.036|-0.028|-0.023|-0.043|-0.043|-0.026|-0.041|-0.045|-0.023|-0.014|-0.023|-0.038|-0.006|0.018|0.008|-0.001|0.004|0.031|0.035|0.033|0.033|0.045|0.033|0.028|0.028|0.035|0.043|0.035|-0.004|-0.001|0.006|0.008|-0.001|-0.011|-0.021|-0.033|-0.041|-0.053|-0.048|-0.038|-0.038|-0.060|-0.067|-0.065|-0.055|-0.053|-0.050|-0.048|-0.041|-0.036|-0.031|-0.026|-0.041|-0.023|-0.011|0.008|0.023|0.011|-0.004|0.008|0.038|0.045|0.048|0.048|0.045|0.033|0.023|0.018|0.021|0.045|0.040|0.021|-0.001|-0.009|-0.009|-0.009|-0.004|-0.021|-0.031|-0.041|-0.043|-0.036|-0.031|-0.041|-0.041|-0.041|-0.041|-0.033|-0.023|-0.016|-0.028|-0.041|-0.036|-0.009|0.008|0.011|0.006|-0.009|-0.004|0.026|0.023|0.038|0.026|0.018|0.011|0.021|0.035|0.038|0.038|0.021|0.006|0.008|0.018|0.028|0.021|0.001|0.001|-0.004|-0.006|-0.018|-0.009|-0.014|-0.011|-0.023|-0.028|-0.041|-0.041|-0.036|-0.038|-0.026|-0.021|-0.031|-0.028|-0.021|-0.014|-0.004|-0.004|-0.004|-0.004|0.004|0.008|0.006|0.004|0.023|0.023|0.016|0.006|0.004|0.004|0.004|0.011|0.001|0.008|-0.004|-0.004|-0.018|-0.009|-0.011|-0.018|-0.026|-0.021|-0.023|-0.033|-0.038|-0.041|-0.028|-0.028|-0.038|-0.048|-0.038|-0.031|-0.036|-0.018|-0.021|-0.021|-0.026|-0.011|0.001|0.016|0.004|0.008|0.016|0.028|0.038|0.035|0.045|0.033|0.038|0.038|0.043|0.038|0.035|0.006|-0.006|-0.009|-0.006|-0.009|-0.004|-0.016|-0.036|-0.043|-0.058|-0.041|-0.036|-0.048|-0.067|-0.065|-0.063|-0.050|-0.050|-0.058|-0.060|-0.045|-0.036|-0.028|-0.038|-0.031|-0.038|-0.011|0.016|0.021|0.031|0.008|0.006|0.023|0.035|0.050|0.043|0.045|0.043|0.023|0.026|0.028|0.038|0.038|0.021|0.004|-0.006|-0.011|-0.006|-0.006|-0.016|-0.021|-0.041|-0.055|-0.041|-0.028|-0.031|-0.038|-0.041|-0.036|-0.036|-0.023|-0.023|-0.028|-0.031|-0.033|-0.004|0.006|0.001|-0.014|-0.004|0.006|0.016|0.035|0.021|0.016|0.018|0.021|0.028|0.031|0.033|0.033|0.026|0.011|0.016|0.016|0.026|0.035|0.018|-0.004|-0.001|-0.006|-0.016|-0.018|-0.016|-0.018|-0.028|-0.033|-0.041|-0.031|-0.033|-0.038|-0.033|-0.028|-0.026|-0.023|-0.026|-0.016|-0.016|-0.001|-0.009|0.004|0.001|0.001|0.004|0.006|0.016|0.016|0.021|0.008|0.004|0.004|0.008|0.013|0.011|0.001|-0.006|-0.014|-0.004|-0.009|-0.011|-0.018|-0.026|-0.026|-0.031|-0.038|-0.036|-0.033|-0.026|-0.031|-0.038|-0.048|-0.048|-0.036|-0.028|-0.033|-0.031|-0.031|-0.026|-0.016|0.004|0.008|0.008|0.008|0.013|0.021|0.045|0.045|0.040|0.031|0.023|0.028|0.038|0.048|0.033|0.018|-0.009|-0.004|-0.001|0.008|-0.006|-0.011|-0.028|-0.045|-0.055|-0.048|-0.038|-0.033|-0.053|-0.072|-0.075|-0.055|-0.045|-0.050|-0.058|-0.048|-0.041|-0.026|-0.036|-0.038|-0.026|-0.026|0.004|0.023|0.021|0.004|0.004|0.023|0.050|0.055|0.048|0.033|0.038|0.031|0.028|0.023|0.031|0.040|0.038|0.013|-0.011|-0.014|-0.018|-0.006|-0.001|-0.016|-0.033|-0.045|-0.048|-0.041|-0.036|-0.036|-0.041|-0.043|-0.045|-0.038|-0.018|-0.018|-0.023|-0.031|-0.016|0.004|0.001|-0.001|-0.001|0.001|0.026|0.035|0.033|0.023|0.011|0.006|0.028|0.035|0.035|0.038|0.031|0.021|0.006|0.016|0.021|0.021|0.016|0.001|-0.011|-0.009|-0.006|-0.004|-0.006|-0.016|-0.021|-0.033|-0.033|-0.033|-0.038|-0.043|-0.036|-0.026|-0.028|-0.023|-0.031|-0.026|-0.011|-0.001|-0.001|0.001|-0.001|0.001|0.001|0.008|0.008|0.021|0.021|0.018|0.006|0.011|0.004|0.006|0.018|0.013|0.004|-0.011|-0.018|-0.011|0.001|-0.004|-0.021|-0.028|-0.036|-0.038|-0.041|-0.038|-0.033|-0.028|-0.038|-0.058|-0.041|-0.026|-0.031|-0.041|-0.026|-0.028|-0.033|-0.028|0.011|0.018|0.001|-0.001|0.004|0.028|0.048|0.043|0.043|0.040|0.018|0.028|0.038|0.050|0.040|0.016|-0.011|-0.014|-0.004|0.008|0.008|-0.011|-0.036|-0.041|-0.033|-0.050|-0.045|-0.031|-0.041|-0.058|-0.060|-0.060|-0.065|-0.058|-0.050|-0.045|-0.041|-0.031|-0.031|-0.031|-0.028|-0.023|-0.011|0.011|0.026|0.028|0.016|0.016|0.038|0.040|0.043|0.043|0.038|0.028|0.031|0.028|0.026|0.028|0.031|0.011|0.004|-0.006|-0.009|-0.004|-0.011|-0.021|-0.021|-0.036|-0.041|-0.036|-0.045|-0.038|-0.038|-0.048|-0.043|-0.033|-0.023|-0.018|-0.026|-0.028|-0.026|0.001|-0.004|0.004|-0.006|0.001|0.008|0.033|0.028|0.026|0.011|0.023|0.018|0.035|0.031|0.035|0.023|0.021|0.004|0.004|0.008|0.023|0.018|0.008|-0.001|-0.011|-0.011|-0.018|-0.004|-0.016|-0.023|-0.033|-0.045|-0.036|-0.036|-0.028|-0.031|-0.031|-0.021|-0.023|-0.028|-0.033|-0.023|-0.009|0.001|-0.006|-0.001|-0.001|0.008|0.006|0.011|0.016|0.026|0.013|0.004|0.008|0.011|0.011|0.011|0.001|-0.001|-0.001|-0.016|-0.006|-0.006|-0.009|-0.023|-0.033|-0.036|-0.031|-0.038|-0.038|-0.038|-0.036|-0.038|-0.050|-0.043|-0.028|-0.028|-0.031|-0.036|-0.038|-0.031|-0.011|0.011|0.018|-0.004|0.001|0.001|0.028|0.045|0.050|0.040|0.040|0.026|0.021|0.043|0.057|0.048|0.028|-0.004|-0.009|-0.006|0.013|0.001|-0.009|-0.031|-0.043|-0.055|-0.050|-0.038|-0.041|-0.045|-0.070|-0.075|-0.067|-0.058|-0.045|-0.060|-0.048|-0.050|-0.041|-0.028|-0.033|-0.031|-0.036|-0.011|0.008|0.021|0.035|0.016|0.026|0.028|0.040|0.050|0.045|0.040|0.040|0.031|0.026|0.026|0.033|0.028|0.026|0.001|-0.011|-0.018|-0.006|-0.009|-0.009|-0.028|-0.043|-0.045|-0.045|-0.031|-0.031|-0.038|-0.041|-0.041|-0.038|-0.021|-0.028|-0.021|-0.031|-0.021|-0.011|0.001|-0.004|-0.006|0.008|0.021|0.021|0.023|0.023|0.021|0.018|0.018|0.026|0.031|0.038|0.038|0.026|0.013|-0.004|0.013|0.038|0.038|0.018|-0.006|-0.018|-0.011|-0.021|-0.001|-0.011|-0.018|-0.023|-0.028|-0.036|-0.028|-0.036|-0.041|-0.036|-0.018|-0.016|-0.023|-0.033|-0.014|-0.006|-0.004|0.004|0.004|-0.004|-0.001|-0.001|0.011|0.018|0.023|0.018|0.011|-0.001|0.008|0.008|0.021|0.008|0.008|-0.009|-0.016|-0.018|-0.006|-0.006|-0.023|-0.031|-0.038|-0.038|-0.028|-0.033|-0.033|-0.033|-0.033|-0.043|-0.043|-0.023|-0.028|-0.041|-0.038|-0.026|-0.026|-0.028|-0.004|0.021|0.004|-0.006|-0.009|0.021|0.048|0.048|0.040|0.031|0.028|0.021|0.035|0.045|0.050|0.035|-0.001|-0.018|-0.004|0.008|0.016|-0.006|-0.026|-0.036|-0.055|-0.045|-0.050|-0.031|-0.045|-0.058|-0.077|-0.070|-0.055|-0.050|-0.045|-0.065|-0.050|-0.043|-0.031|-0.033|-0.031|-0.036|-0.023|-0.006|0.011|0.023|0.008|0.004|0.033|0.045|0.038|0.048|0.048|0.035|0.028|0.026|0.023|0.033|0.033|0.016|0.001|-0.009|-0.011|-0.011|-0.004|-0.014|-0.028|-0.043|-0.031|-0.041|-0.041|-0.038|-0.041|-0.038|-0.043|-0.031|-0.031|-0.028|-0.023|-0.026|-0.016|-0.011|0.001|0.001|-0.001|-0.001|0.016|0.026|0.035|0.021|0.021|0.018|0.023|0.028|0.031|0.033|0.038|0.021|0.008|0.008|0.018|0.026|0.028|0.023|0.001|-0.018|-0.016|-0.018|-0.006|-0.006|-0.016|-0.031|-0.031|-0.031|-0.028|-0.036|-0.038|-0.036|-0.028|-0.023|-0.023|-0.026|-0.023|-0.018|-0.009|-0.001|-0.001|-0.004|0.001|0.004|0.011|0.011|0.018|0.011|0.001|0.001|0.001|0.011|0.011|0.006|0.008|-0.001|-0.011|-0.011|-0.001|-0.001|-0.014|-0.036|-0.038|-0.036|-0.031|-0.036|-0.031|-0.041|-0.038|-0.038|-0.043|-0.028|-0.021|-0.033|-0.045|-0.038|-0.021|-0.023|-0.006|0.006|0.001|-0.014|-0.004|0.023|0.045|0.050|0.045|0.028|0.018|0.021|0.043|0.055|0.045|0.023|0.001|-0.014|-0.001|0.011|0.011|-0.009|-0.021|-0.041|-0.048|-0.048|-0.036|-0.033|-0.045|-0.043|-0.072|-0.067|-0.045|-0.050|-0.050|-0.058|-0.063|-0.043|-0.028|-0.018|-0.036|-0.041|-0.031|-0.014|0.018|0.031|0.033|0.023|0.016|0.033|0.048|0.043|0.048|0.048|0.040|0.028|0.033|0.023|0.023|0.021|0.008|0.004|-0.006|-0.006|-0.006|-0.018|-0.021|-0.038|-0.053|-0.043|-0.031|-0.026|-0.031|-0.041|-0.045|-0.050|-0.033|-0.016|-0.018|-0.023|-0.026|-0.018|0.001|0.001|0.004|-0.004|0.004|0.018|0.023|0.033|0.026|0.023|0.031|0.023|0.021|0.038|0.035|0.021|0.018|0.008|0.016|0.031|0.033|0.016|-0.009|-0.016|-0.014|-0.014|-0.016|-0.009|-0.011|-0.018|-0.036|-0.041|-0.028|-0.031|-0.036|-0.036|-0.031|-0.023|-0.009|-0.028|-0.028|-0.014|-0.009|0.006|0.004|-0.011|-0.001|0.001|0.016|0.008|0.021|0.021|0.021|0.004|0.016|0.011|0.026|0.004|0.001|-0.006|-0.014|-0.006|-0.006|-0.001|-0.009|-0.031|-0.036|-0.026|-0.033|-0.023|-0.036|-0.041|-0.038|-0.048|-0.048|-0.036|-0.021|-0.031|-0.036|-0.041|-0.038|-0.026|-0.009|0.018|0.001|-0.009|-0.011|0.018|0.038|0.055|0.050|0.035|0.016|0.023|0.035|0.050|0.055|0.045|0.008|-0.016|-0.004|0.011|0.018|0.004|-0.018|-0.041|-0.055|-0.050|-0.043|-0.031|-0.038|-0.053|-0.080|-0.070|-0.060|-0.048|-0.043|-0.058|-0.053|-0.045|-0.036|-0.028|-0.043|-0.036|-0.023|-0.004|0.008|0.026|0.023|0.001|0.016|0.033|0.035|0.035|0.038|0.043|0.031|0.033|0.023|0.026|0.033|0.038|0.023|0.004|-0.016|-0.023|-0.016|-0.004|-0.018|-0.026|-0.041|-0.043|-0.041|-0.031|-0.031|-0.041|-0.045|-0.041|-0.036|-0.031|-0.014|-0.021|-0.026|-0.023|-0.009|0.004|0.001|0.001|0.006|0.016|0.028|0.035|0.031|0.021|0.018|0.028|0.031|0.023|0.038|0.026|0.016|0.011|0.016|0.023|0.035|0.011|0.004|-0.016|-0.011|-0.001|-0.006|-0.011|-0.009|-0.018|-0.033|-0.038|-0.038|-0.041|-0.038|-0.036|-0.033|-0.028|-0.021|-0.021|-0.018|-0.021|-0.001|-0.001|-0.004|-0.004|-0.006|0.001|0.004|0.011|0.018|0.018|0.018|0.011|0.001|0.001|0.016|0.011|0.011|-0.001|-0.011|-0.014|-0.009|-0.006|-0.016|-0.028|-0.033|-0.021|-0.026|-0.028|-0.036|-0.043|-0.045|-0.048|-0.041|-0.036|-0.021|-0.031|-0.045|-0.041|-0.028|-0.018|-0.001|0.006|0.006|-0.014|-0.011|0.016|0.043|0.055|0.040|0.028|0.023|0.021|0.035|0.053|0.060|0.048|0.011|-0.011|-0.009|0.013|0.021|0.016|-0.021|-0.043|-0.045|-0.041|-0.041|-0.043|-0.043|-0.050|-0.058|-0.072|-0.065|-0.053|-0.055|-0.050|-0.050|-0.050|-0.038|-0.028|-0.026|-0.038|-0.036|-0.026|-0.001|0.021|0.038|0.021|0.008|0.026|0.043|0.038|0.048|0.033|0.040|0.038|0.031|0.031|0.021|0.026|0.021|0.008|-0.006|0.008|-0.006|-0.009|-0.026|-0.036|-0.043|-0.031|-0.038|-0.028|-0.031|-0.043|-0.043|-0.043|-0.041|-0.028|-0.021|-0.026|-0.033|-0.026|-0.011|0.004|0.004|-0.016|0.008|0.016|0.026|0.031|0.023|0.021|0.023|0.021|0.028|0.035|0.031|0.026|0.021|0.016|0.011|0.016|0.023|0.021|0.011|-0.004|-0.009|-0.011|-0.016|-0.009|-0.004|-0.016|-0.028|-0.041|-0.038|-0.031|-0.033|-0.033|-0.031|-0.023|-0.021|-0.023|-0.028|-0.018|-0.009|0.006|0.004|-0.001|0.001|-0.001|0.008|0.018|0.018|0.023|0.011|0.006|0.011|0.011|0.018|0.013|0.011|-0.006|-0.004|-0.014|-0.006|0.001|-0.011|-0.031|-0.045|-0.026|-0.026|-0.021|-0.033|-0.043|-0.048|-0.043|-0.045|-0.031|-0.026|-0.026|-0.045|-0.048|-0.036|-0.018|-0.004|0.001|0.011|-0.009|-0.014|0.008|0.035|0.053|0.057|0.038|0.023|0.026|0.035|0.040|0.060|0.048|0.016|-0.009|-0.016|0.008|0.011|0.013|-0.011|-0.038|-0.050|-0.048|-0.045|-0.033|-0.036|-0.050|-0.070|-0.072|-0.063|-0.053|-0.050|-0.055|-0.063|-0.065|-0.038|-0.028|-0.023|-0.033|-0.033|-0.031|-0.009|0.021|0.038|0.028|0.016|0.016|0.038|0.048|0.045|0.053|0.040|0.035|0.028|0.016|0.021|0.033|0.026|0.013|0.001|-0.021|-0.014|-0.011|-0.018|-0.028|-0.043|-0.045|-0.041|-0.033|-0.036|-0.036|-0.041|-0.041|-0.045|-0.028|-0.026|-0.026|-0.028|-0.026|-0.016|0.008|0.006|0.004|-0.006|0.004|0.026|0.035|0.031|0.028|0.026|0.023|0.021|0.035|0.035|0.038|0.021|0.001|0.008|0.018|0.031|0.028|0.016|-0.001|-0.004|-0.014|-0.011|-0.011|-0.009|-0.011|-0.016|-0.036|-0.033|-0.036|-0.033|-0.043|-0.038|-0.026|-0.014|-0.021|-0.021|-0.023|-0.016|-0.004|-0.001|-0.006|0.001|0.006|0.006|0.013|0.016|0.016|0.016|0.016|0.004|0.006|0.008|0.001| 0.004|-0.001|-0.004|-0.006|-0.009|-0.006|-0.014|-0.021|-0.038|-0.036|-0.028|-0.014|-0.031|-0.041|-0.053|-0.038|-0.038|-0.031|-0.026|-0.026|-0.045|-0.050|-0.028|-0.014|-0.014|-0.009|0.004|-0.011|-0.009|-0.004|0.031|0.050|0.048|0.026|0.023|0.031|0.038|0.045|0.050|0.048|0.026|-0.009|-0.011|0.006|0.016|0.018|-0.014|-0.031|-0.041|-0.043|-0.041|-0.036|-0.041|-0.050|-0.060|-0.070|-0.063|-0.048|-0.038|-0.050|-0.065|-0.055|-0.048|-0.033|-0.031|-0.031|-0.023|-0.023|-0.014|0.018|0.031|0.026|0.016|0.018|0.033|0.055|0.048|0.045|0.035|0.026|0.033|0.028|0.028|0.031|0.026|0.018|0.008|-0.004|-0.011|-0.014|-0.018|-0.028|-0.038|-0.038|-0.038|-0.038|-0.033|-0.036|-0.045|-0.041|-0.036|-0.031|-0.026|-0.018|-0.028|-0.026|-0.018|0.001|0.006|0.001|0.001|0.016|0.016|0.026|0.028|0.026|0.016|0.023|0.016|0.028|0.031|0.031|0.035|0.021|0.021|0.011|0.016|0.028|0.016|0.001|-0.009|-0.009|-0.004|-0.011|-0.001|-0.006|-0.018|-0.038|-0.036|-0.038|-0.038|-0.033|-0.031|-0.031|-0.026|-0.014|-0.026|-0.026|-0.016|-0.004|0.011|0.004|-0.001|-0.004|0.006|0.004|0.016|0.016|0.018|0.018|0.008|0.001|0.006|0.016|0.008|-0.001|-0.006|-0.011|-0.011|-0.006|-0.014|-0.016|-0.028|-0.038|-0.026|-0.021|-0.026|-0.043|-0.045|-0.038|-0.033|-0.036|-0.031|-0.028|-0.043|-0.053|-0.033|-0.018|-0.014|-0.004|-0.001|-0.011|-0.011|0.006|0.028|0.053|0.048|0.035|0.021|0.023|0.043|0.050|0.055|0.048|0.021|0.006|-0.004|0.008|0.018|0.008|-0.016|-0.031|-0.043|-0.043|-0.043|-0.045|-0.043|-0.045|-0.050|-0.072|-0.070|-0.048|-0.045|-0.050|-0.063|-0.060|-0.045|-0.021|-0.016|-0.028|-0.036|-0.038|-0.018|0.011|0.035|0.050|0.021|0.016|0.023|0.033|0.045|0.045|0.040|0.038|0.040|0.028|0.021|0.021|0.023|0.023|0.004|-0.001|-0.018|-0.009|-0.014|-0.028|-0.041|-0.045|-0.036|-0.038|-0.033|-0.038|-0.041|-0.053|-0.045|-0.031|-0.021|-0.016|-0.036|-0.026|-0.026|-0.006|0.013|0.001|-0.006|0.001|0.018|0.021|0.028|0.035|0.021|0.018|0.018|0.021|0.033|0.033|0.031|0.028|0.018|0.018|0.018|0.018|0.011|0.004|-0.006|-0.004|-0.004|-0.018|-0.016|-0.011|-0.014|-0.023|-0.033|-0.033|-0.038|-0.033|-0.038|-0.031|-0.028|-0.018|-0.018|-0.028|-0.021|-0.001|0.004|0.004|-0.009|-0.001|-0.001|0.008|0.011|0.021|0.018|0.011|0.018|0.006|0.008|0.011|0.011|-0.001|-0.004|-0.001|-0.011|-0.006|-0.014|-0.014|-0.031|-0.041|-0.028|-0.028|-0.026|-0.045|-0.053|-0.050|-0.036|-0.026|-0.038|-0.031|-0.038|-0.055|-0.041|-0.031|-0.011|-0.006|0.001|0.004|-0.018|-0.014|0.021|0.045|0.053|0.033|0.026|0.026|0.035|0.048|0.055|0.050|0.031|0.001|-0.006|0.001|0.023|0.016|-0.001|-0.018|-0.033|-0.053|-0.038|-0.036|-0.033|-0.038|-0.055|-0.063|-0.077|-0.055|-0.048|-0.045|-0.060|-0.058|-0.058|-0.033|-0.028|-0.026|-0.031|-0.031|-0.014|-0.001|0.021|0.038|0.023|0.004|0.013|0.035|0.055|0.045|0.048|0.038|0.031|0.023|0.026|0.021|0.026|0.028|0.018|-0.006|-0.016|-0.021|-0.018|-0.016|-0.031|-0.043|-0.043|-0.038|-0.033|-0.036|-0.033|-0.045|-0.045|-0.043|-0.031|-0.018|-0.026|-0.028|-0.026|-0.006|0.006|0.004|-0.001|-0.006|0.004|0.026|0.031|0.038|0.021|0.016|0.016|0.023|0.028|0.040|0.033|0.021|0.011|0.018|0.021|0.028|0.018|0.001|0.004|-0.004|-0.004|-0.009|-0.009|-0.014|-0.016|-0.028|-0.036|-0.033|-0.033|-0.043|-0.033|-0.028|-0.021|-0.023|-0.026|-0.033|-0.018|-0.011|0.001|0.008|-0.004|-0.001|0.004|0.011|0.006|0.013|0.028|0.021|0.008|0.008|0.013|0.008|0.006|-0.001|0.006|0.001|-0.004|-0.011|-0.014|-0.011|-0.028|-0.033|-0.031|-0.021|-0.026|-0.041|-0.048|-0.041|-0.038|-0.031|-0.038|-0.031|-0.036|-0.053|-0.041|-0.023|-0.004|-0.011|-0.006|-0.006|-0.011|-0.004|0.018|0.040|0.043|0.031|0.023|0.021|0.040|0.043|0.050|0.043|0.033|0.016|-0.001|0.001|0.008|0.018|0.006|-0.018|-0.036|-0.031|-0.038|-0.041|-0.043|-0.048|-0.055|-0.060|-0.063|-0.053|-0.050|-0.053|-0.065|-0.060|-0.053|-0.036|-0.018|-0.023|-0.033|-0.036|-0.038|-0.009|0.028|0.045|0.026|0.016|0.008|0.035|0.045|0.043|0.040|0.040|0.035|0.035|0.023|0.026|0.033|0.028|0.016|0.006|-0.009|-0.016|-0.009|-0.028|-0.026|-0.038|-0.041|-0.036|-0.033|-0.031|-0.041|-0.048|-0.045|-0.036|-0.023|-0.021|-0.023|-0.031|-0.043|-0.018|-0.001|0.008|0.001|0.001|0.008|0.023|0.021|0.028|0.016|0.023|0.006|0.023|0.028|0.035|0.033|0.021|0.016|0.013|0.028|0.026|0.008|0.006|-0.001|0.001|0.004|-0.018|-0.026|-0.011|-0.009|-0.016|-0.038|-0.041|-0.045|-0.036|-0.026|-0.036|-0.031|-0.028|-0.016|-0.021|-0.026|-0.011|-0.001|0.006|-0.004|0.001|-0.009|0.008|0.004|0.011|0.018|0.023|0.023|0.001|0.008|0.016|0.004|0.004|0.006|0.006|-0.004|-0.016|-0.011|-0.014|-0.023|-0.028|-0.023|-0.028|-0.023|-0.036|-0.053|-0.050|-0.033|-0.023|-0.036|-0.038|-0.031|-0.043|-0.043|-0.031|-0.006|-0.011|-0.011|-0.009|-0.004|-0.001|0.016|0.040|0.043|0.028|0.028|0.026|0.035|0.048|0.043|0.043|0.048|0.026|0.008|0.004|0.016|0.023|-0.001|-0.011|-0.033|-0.033|-0.043|-0.041|-0.043|-0.048|-0.053|-0.058|-0.070|-0.060|-0.058|-0.048|-0.055|-0.065|-0.053|-0.043|-0.021|-0.021|-0.028|-0.043|-0.041|-0.018|0.023|0.045|0.038|0.008|0.018|0.028|0.040|0.045|0.048|0.053|0.038|0.031|0.011|0.016|0.028|0.035|0.026|0.004|-0.014|-0.023|-0.014|-0.023|-0.026|-0.038|-0.041|-0.036|-0.033|-0.036|-0.045|-0.048|-0.053|-0.041|-0.028|-0.018|-0.021|-0.033|-0.026|-0.016|0.004|0.018|0.006|-0.011|0.001|0.016|0.040|0.040|0.035|0.021|0.016|0.016|0.028|0.031|0.035|0.033|0.018|0.016|0.018|0.028|0.016|0.021|0.011|-0.001|-0.018|-0.018|-0.018|-0.021|-0.011|-0.011|-0.016|-0.026|-0.045|-0.055|-0.041|-0.036|-0.018|-0.018|-0.018|-0.028|-0.023|-0.018|-0.001|0.006|0.004|0.008|0.016|0.006|0.001|0.008|0.021|0.016|0.011|0.016|0.008|0.001|-0.004|0.004|0.008|-0.004|-0.011|-0.004|-0.014|-0.016|-0.014|-0.028|-0.028|-0.028|-0.026|-0.038|-0.050|-0.053|-0.036|-0.026|-0.023|-0.036|-0.033|-0.041|-0.041|-0.026|0.008|-0.009|-0.028|-0.018|0.008|0.001|0.006|0.026|0.040|0.040|0.026|0.028|0.040|0.050|0.040|0.035|0.035|0.031|0.018|0.008|0.004|0.006|0.006|-0.011|-0.028|-0.031|-0.031|-0.036|-0.053|-0.053|-0.050|-0.058|-0.060|-0.063|-0.053|-0.045|-0.050|-0.063|-0.063|-0.043|-0.023|-0.026|-0.026|-0.031|-0.033|-0.018|0.001|0.033|0.038|0.013|0.016|0.021|0.035|0.050|0.038|0.031|0.033|0.038|0.031|0.021|0.021|0.026|0.023|0.016|-0.006|-0.014|-0.016|-0.016|-0.018|-0.028|-0.028|-0.043|-0.041|-0.041|-0.031|-0.045|-0.041|-0.041|-0.028|-0.031|-0.026|-0.028|-0.023|-0.016|-0.006|0.013|0.004|0.001|-0.014|0.013|0.031|0.031|0.028|0.021|0.016|0.013|0.021|0.038|0.035|0.040|0.021|0.008|0.016|0.026|0.028|0.001|-0.004|-0.006|-0.001|-0.009|-0.009|-0.018|-0.016|-0.016|-0.028|-0.036|-0.045|-0.041|-0.036|-0.036|-0.036|-0.033|-0.021|-0.018|-0.021|-0.023|-0.009|0.001|0.001|-0.004|-0.006|0.001|0.011|0.011|0.013|0.016|0.018|0.008|0.001|0.016|0.006|0.008|0.008|0.004|0.001|-0.018|-0.014|-0.011|-0.023|-0.021|-0.021|-0.026|-0.033|-0.031|-0.038|-0.045|-0.077|-0.033|-0.036|-0.043|-0.038|-0.038|-0.043|-0.036|-0.018|-0.014|-0.014|-0.018|-0.006|0.004|0.008|0.016|0.035|0.031|0.021|0.031|0.031|0.043|0.050|0.040|0.035|0.028|0.013|0.008|0.011|0.011|0.001|-0.016|-0.018|-0.028|-0.031|-0.031|-0.043|-0.041|-0.045|-0.050|-0.053|-0.067|-0.053|-0.050|-0.045|-0.065|-0.065|-0.053|-0.031|-0.016|-0.021|-0.041|-0.043|-0.031|0.001|0.048|0.043|0.023|0.008|0.011|0.031|0.040|0.040|0.045|0.040|0.035|0.023|0.018|0.021|0.038|0.028|0.008|-0.009|-0.006|-0.016|-0.018|-0.021|-0.028|-0.038|-0.036|-0.036|-0.033|-0.031|-0.041|-0.050|-0.031|-0.026|-0.021|-0.021|-0.038|-0.021|-0.028|-0.001|0.011|0.013|-0.004|-0.014|0.004|0.028|0.035|0.038|0.021|0.016|0.026|0.028|0.035|0.031|0.031|0.023|0.021|0.023|0.018|0.013|0.011|0.008|0.004|-0.006|-0.001|-0.011|-0.021|-0.018|-0.011|-0.023|-0.038|-0.038|-0.043|-0.043|-0.031|-0.028|-0.018|-0.014|-0.023|-0.031|-0.031|-0.014|0.023|0.016|0.001|-0.006|-0.004|0.004|0.011|0.018|0.021|0.021|0.026|0.011|-0.001|0.001|0.008|0.011|0.001|0.004|-0.016|-0.018|-0.018|-0.018|-0.014|-0.028|-0.026|-0.033|-0.038|-0.041|-0.041|-0.038|-0.031|-0.038|-0.041|-0.045|-0.033|-0.038|-0.033|-0.028|-0.016|-0.018|-0.016|0.001|-0.006|0.004|0.026|0.028|0.035|0.038|0.038|0.035|0.038|0.040|0.040|0.033|0.035|0.028|0.016|0.001|0.008|-0.006|-0.009|-0.016|-0.021|-0.028|-0.038|-0.043|-0.058|-0.050|-0.053|-0.058|-0.070|-0.050|-0.045|-0.053|-0.067|-0.060|-0.055|-0.033|-0.016|-0.028|-0.033|-0.038|-0.026|-0.009|0.028|0.038|0.035|0.008|0.008|0.026|0.035|0.048|0.045|0.035|0.035|0.033|0.023|0.021|0.031|0.035|0.011|-0.004|-0.016|-0.014|-0.018|-0.016|-0.018|-0.038|-0.036|-0.043|-0.041|-0.038|-0.041|-0.048|-0.041|-0.038|-0.031|-0.021|-0.028|-0.026|-0.026|-0.009|0.004|0.006|-0.009|-0.009|0.001|0.031|0.035|0.035|0.021|0.004|0.011|0.021|0.031|0.038|0.035|0.033|0.021|0.021|0.011|0.004|0.011|0.018|0.004|-0.009|-0.011|-0.014|-0.018|-0.011|-0.006|-0.011|-0.038|-0.041|-0.041|-0.043|-0.033|-0.033|-0.028|-0.018|-0.026|-0.036|-0.026|-0.006|-0.001|0.006|0.001|-0.006|0.016|0.008|-0.006|0.018|0.026|0.026|0.016|0.001|0.001|0.004|0.008|0.006|0.008|0.004|-0.006|-0.011|-0.021|-0.018|-0.018|-0.018|-0.031|-0.036|-0.031|-0.038|-0.048|-0.041|-0.031|-0.028|-0.036|-0.048|-0.038|-0.036|-0.033|-0.031|-0.009|-0.021|-0.026|-0.006|0.011|0.011|0.006|0.021|0.035|0.031|0.028|0.031|0.048|0.048|0.035|0.031|0.031|0.031|0.026|0.006|-0.001|-0.004|0.001|-0.011|-0.011|-0.021|-0.036|-0.038|-0.053|-0.053|-0.050|-0.038|-0.055|-0.060|-0.058|-0.050|-0.058|-0.060|-0.050|-0.041|-0.026|-0.021|-0.026|-0.041|-0.033|-0.021|0.016|0.038|0.001|0.011|0.004|0.023|0.031|0.045|0.033|0.035|0.038|0.035|0.021|0.018|0.033|0.031|0.011|0.004|-0.006|-0.016|-0.021|-0.018|-0.026|-0.038|-0.031|-0.031|-0.031|-0.033|-0.045|-0.048|-0.038|-0.033|-0.021|-0.028|-0.036|-0.036|-0.033|-0.014|0.013|0.016|-0.001|-0.006|-0.004|0.023|0.035|0.048|0.031|0.011|0.013|0.011|0.031|0.048|0.040|0.028|0.018|0.011|0.023|0.021|0.011|0.008|-0.006|-0.009|0.001|-0.006|-0.028|-0.011|-0.009|-0.014|-0.026|-0.043|-0.048|-0.043|-0.026|-0.031|-0.031|-0.023|-0.009|-0.021|-0.026|-0.028|-0.016|0.006|0.008|0.001|-0.001|0.004|0.016|0.013|0.021|0.021|0.026|0.006|-0.001|0.004|0.001|0.011|0.011|-0.001|-0.009|-0.018|-0.018|-0.021|-0.011|-0.021|-0.031|-0.031|-0.033|-0.045|-0.041|-0.036|-0.031|-0.033|-0.038|-0.045|-0.033|-0.033|-0.023|-0.026|-0.031|-0.031|-0.023|-0.001|0.006|0.018|0.018|0.026|0.021|0.038|0.038|0.050|0.040|0.040|0.040|0.035|0.038|0.038|0.026|0.016|-0.004|-0.001|-0.004|-0.016|-0.021|-0.028|-0.036|-0.048|-0.050|-0.058|-0.041|-0.050|-0.060|-0.067|-0.060|-0.060|-0.050|-0.058|-0.060|-0.048|-0.028|-0.009|-0.023|-0.043|-0.033|-0.023|0.008|0.043|0.040|0.023|0.008|0.018|0.038|0.040|0.048|0.040|0.035|0.031|0.033|0.018|0.026|0.028|0.028|0.006|-0.011|-0.011|-0.016|-0.018|-0.014|-0.028|-0.038|-0.038|-0.031|-0.038|-0.048|-0.050|-0.041|-0.031|-0.028|-0.031|-0.026|-0.036|-0.023|-0.011|0.001|0.011|-0.004|-0.009|-0.001|0.021|0.038|0.038|0.031|0.018|0.011|0.016|0.031|0.043|0.031|0.035|0.026|0.011|0.001|0.008|0.023|0.035|0.018|-0.006|-0.014|-0.011|-0.018|-0.016|-0.006|-0.011|-0.021|-0.031|-0.041|-0.050|-0.045|-0.038|-0.028|-0.018|-0.009|-0.018|-0.021|-0.026|-0.018|-0.006|0.016|0.008|0.008|0.008|0.011|0.016|0.011|0.021|0.023|0.026|0.008|-0.001|-0.001|0.004|0.016|0.008|-0.004|-0.014|-0.016|-0.018|-0.018|-0.014|-0.026|-0.023|-0.038|-0.036|-0.048|-0.041|-0.036|-0.031|-0.045|-0.045|-0.038|-0.033|-0.038|-0.038|-0.021|-0.026|-0.026|-0.009|0.016|0.023|0.008|0.011|0.026|0.038|0.043|0.035|0.038|0.040|0.031|0.023|0.028|0.040|0.035|0.011|-0.004|-0.006|-0.001|-0.006|-0.011|-0.026|-0.036|-0.043|-0.048|-0.050|-0.045|-0.045|-0.053|-0.067|-0.060|-0.055|-0.050|-0.060|-0.058|-0.048|-0.036|-0.023|-0.021|-0.038|-0.038|-0.028|-0.001|0.035|0.048|0.021|0.006|0.018|0.040|0.055|0.040|0.038|0.035|0.038|0.028|0.011|0.013|0.021|0.026|0.011|-0.009|-0.016|-0.016|-0.016|-0.016|-0.026|-0.031|-0.038|-0.036|-0.041|-0.043|-0.043|-0.045|-0.038|-0.038|-0.033|-0.031|-0.026|-0.026|-0.011|-0.006|0.004|-0.004|-0.006|-0.004|0.008|0.021|0.035|0.031|0.021|0.021|0.016|0.023|0.035|0.040|0.038|0.023|0.008|0.018|0.028|0.021|0.016|-0.006|-0.009|0.001|-0.009|-0.016|-0.011|-0.016|-0.011|-0.018|-0.028|-0.038|-0.041|-0.036|-0.033|-0.031|-0.018|-0.016|-0.021|-0.033|-0.021|-0.014|-0.001|0.001|0.004|-0.004|-0.001|0.016|0.008|0.016|0.023|0.021|0.006|-0.009|0.004|0.006|0.016|0.011|0.004|-0.006|-0.016|-0.011|-0.016|-0.011|-0.011|-0.018|-0.045|-0.045|-0.036|-0.031|-0.031|-0.038|-0.036|-0.041|-0.041|-0.036|-0.026|-0.028|-0.033|-0.031|-0.021|-0.028|-0.011|0.006|0.006|0.001|0.001|0.021|0.040|0.040|0.038|0.038|0.045|0.033|0.035|0.040|0.038|0.028|0.011|-0.004|-0.004|-0.004|-0.001|-0.014|-0.023|-0.033|-0.038|-0.048|-0.050|-0.055|-0.048|-0.058|-0.065|-0.065|-0.055|-0.045|-0.053|-0.063|-0.055|-0.041|-0.023|-0.011|-0.021|-0.041|-0.031|-0.011|0.026|0.035|0.031|0.011|0.011|0.031|0.035|0.040|0.038|0.035|0.031|0.026|0.018|0.026|0.023|0.028|0.018|-0.006|-0.014|-0.014|-0.016|-0.016|-0.023|-0.038|-0.033|-0.038|-0.036|-0.041|-0.048|-0.045|-0.031|-0.021|-0.028|-0.031|-0.036|-0.033|-0.018|0.001|0.013|0.004|-0.001|-0.009|0.004|0.031|0.038|0.038|0.021|0.018|0.023|0.031|0.035|0.035|0.035|0.026|0.023|0.021|0.011|0.011|0.008|0.011|0.018|0.006|-0.006|-0.014|-0.011|-0.016|-0.016|-0.016|-0.028|-0.033|-0.045|-0.043|-0.041|-0.036|-0.026|-0.006|-0.001|-0.021|-0.031|-0.014|-0.001|0.016|0.011|-0.009|-0.004|0.008|0.011|0.008|0.016|0.021|0.033|0.004|-0.004|0.006|0.013|0.018|0.006|0.001|-0.004|-0.028|-0.023|-0.014|-0.011|-0.018|-0.031|-0.041|-0.041|-0.026|-0.033|-0.041|-0.033|-0.038|-0.043|-0.048|-0.036|-0.028|-0.026|-0.028|-0.036|-0.018|-0.001|0.011|0.016|0.018|0.008|0.008|0.031|0.040|0.053|0.045|0.031|0.031|0.028|0.043|0.048|0.045|0.018|-0.001|-0.011|-0.009|-0.006|-0.001|-0.016|-0.036|-0.048|-0.055|-0.050|-0.043|-0.048|-0.055|-0.060|-0.067|-0.063|-0.050|-0.053|-0.053|-0.065|-0.041|-0.018|-0.018|-0.028|-0.028|-0.023|-0.014|0.011|0.038|0.043|0.028|0.011|0.021|0.040|0.040|0.048|0.040|0.035|0.035|0.031|0.018|0.021|0.031|0.018|-0.001|-0.011|-0.014|-0.016|-0.016|-0.021|-0.031|-0.038|-0.041|-0.045|-0.038|-0.048|-0.045|-0.038|-0.036|-0.031|-0.036|-0.023|-0.018|-0.011|-0.009|-0.009|0.001|-0.009|-0.001|0.004|0.026|0.035|0.038|0.028|0.006|0.001|0.023|0.035|0.038|0.048|0.031|0.018|0.016|0.011|0.011|0.016|0.018|0.011|-0.006|-0.009|-0.018|-0.011|-0.009|-0.011|-0.016|-0.026|-0.033|-0.036|-0.048|-0.038|-0.038|-0.021|-0.021|-0.021|-0.023|-0.031|-0.011|-0.001|0.016|0.011|-0.004|-0.004|0.006|0.008|0.001|0.026|0.028|0.023|0.016|-0.004|-0.006|0.008|0.021|0.016|-0.009|-0.014|-0.018|-0.021|-0.011|-0.006|-0.018|-0.038|-0.036|-0.038|-0.033|-0.026|-0.038|-0.038|-0.043|-0.045|-0.043|-0.021|-0.065|-0.038|-0.041|-0.031|-0.023|-0.016|0.004|0.016|-0.001|-0.004|0.001|0.026|0.038|0.055|0.038|0.033|0.028|0.021|0.033|0.043|0.048|\n");

                                          jsulmJ Offline
                                          jsulmJ Offline
                                          jsulm
                                          Lifetime Qt Champion
                                          wrote on last edited by
                                          #20

                                          @DemonLord This is not JSON, no wonder parsing fails...

                                          https://forum.qt.io/topic/113070/qt-code-of-conduct

                                          D 1 Reply Last reply
                                          2

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved