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 4.0k 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.
  • 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
                          • jsulmJ jsulm

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

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

                            @jsulm Is there another method you could recommend me for parsing this kind of data? Im not sure if it needs parsing because i tried without parsig as well and no numbers were displaying

                            jsulmJ 1 Reply Last reply
                            0
                            • D DemonLord

                              @jsulm Is there another method you could recommend me for parsing this kind of data? Im not sure if it needs parsing because i tried without parsig as well and no numbers were displaying

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

                              @DemonLord Of course you have to parse it!
                              Use https://doc.qt.io/qt-5/qstring.html#split-5 to split (sep parameter would be '|' in your case).

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

                              D 1 Reply Last reply
                              0
                              • jsulmJ jsulm

                                @DemonLord Of course you have to parse it!
                                Use https://doc.qt.io/qt-5/qstring.html#split-5 to split (sep parameter would be '|' in your case).

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

                                @jsulm following the example

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

                                qDebug()<< "Got Data:" << data;
                                 QString str;
                                 QStringList list;
                                
                                 str=data;
                                 list =str.split(QRegularExpression("|"));
                                
                                 m_ui->plainTextEdit->insertPlainText(str);
                                

                                // QString str;
                                // QStringList list;

                                // str = "Some text\n\twith strange whitespace.";
                                // list = str.split(QRegExp("\s+"));

                                }

                                It still doesnt show up im not sure if i wrote it correctly

                                jsulmJ 1 Reply Last reply
                                0
                                • D DemonLord

                                  @jsulm following the example

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

                                  qDebug()<< "Got Data:" << data;
                                   QString str;
                                   QStringList list;
                                  
                                   str=data;
                                   list =str.split(QRegularExpression("|"));
                                  
                                   m_ui->plainTextEdit->insertPlainText(str);
                                  

                                  // QString str;
                                  // QStringList list;

                                  // str = "Some text\n\twith strange whitespace.";
                                  // list = str.split(QRegExp("\s+"));

                                  }

                                  It still doesnt show up im not sure if i wrote it correctly

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

                                  @DemonLord Please at least try to do some debugging by yourself.
                                  What does str contains after you assign data to it?

                                  str=data;
                                  qDebug()  << str;
                                  

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

                                  D 1 Reply Last reply
                                  0
                                  • jsulmJ jsulm

                                    @DemonLord Please at least try to do some debugging by yourself.
                                    What does str contains after you assign data to it?

                                    str=data;
                                    qDebug()  << str;
                                    
                                    D Offline
                                    D Offline
                                    DemonLord
                                    wrote on last edited by
                                    #25

                                    @jsulm sorry i cant use qdebug cause the data is displaying at the application output which prevents me for being able to see the qdebug message

                                    jsulmJ 1 Reply Last reply
                                    0
                                    • D DemonLord

                                      @jsulm sorry i cant use qdebug cause the data is displaying at the application output which prevents me for being able to see the qdebug message

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

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

                                      sorry i cant use qdebug cause the data is displaying at the application output which prevents me for being able to see the qdebug message

                                      Don't know what this means.
                                      You can also use std::cout, you can use debugger, you can write into a file...

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

                                      D 1 Reply Last reply
                                      3
                                      • jsulmJ jsulm

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

                                        sorry i cant use qdebug cause the data is displaying at the application output which prevents me for being able to see the qdebug message

                                        Don't know what this means.
                                        You can also use std::cout, you can use debugger, you can write into a file...

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

                                        @jsulm Hi i managed to see the data when i did the debugging.....but im not sure why its not displaying on the plain text edit widget?

                                        1 Reply Last reply
                                        0

                                        • Login

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