cancel
Showing results for 
Search instead for 
Did you mean: 

iSPCChart Histogram X-Axis limits

0 Kudos

Hello

I would create a histogram chart (iSPCChart) with 7 bars.

X-Axis should start from 0 and each bar should have width 10.

How can I specify this in an iSPCChart object?

I found the parameters for number of bars, but I can't find the start of X-Axis and the bar widths.

Note: the begin of X-Axis is very important for me (it represents time, then negative value is an error), bar size would be desirable.

Thank you a lot

Best regards

Fabio

MII 12.2 sp5

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Fabio,

We are running into a similar issue with X-Axis scales on a Histogram. Were you able to resolve the above issue ?

Appreciate any input on this topic.

Girish

ponilango_p
Explorer
0 Kudos

Hi Fabio & Girish,

There are two issues on the histogram chart being discussed here.

1. Negative values in the histogram chart-

As you know, Histogram chart counts the no. of records against the distinct values and provides the output as a bars with count of the records for those values.

This is the expected functionality out of the chart and it is working as expected in your case. All you need to do is validate the values as per the process requirements and remove the invalid values at transaction or query level.

Also striking a process orientation through established SoP(Standard operating procedures) wil ensure such invalid value wont occur any more.

2. Bar width can be fixed using the Histogram Cell Count parameter in the Parameters tab of the iSPCChart configuration.

So by adjusting the width of the chart at HTML applet parameters and the histogram cell count parameter using the java script function "iSPCChart.getChartObject.setHistogramCellCount(int)', you can set the bar width.

With regards,

Ponilango

0 Kudos

Hello

About point 1: I already implemented the filter (just values >0 and <=70), but the MII logic starts from negative value. If you want to make a test, at the end of this post you will find XML with my data: I use the column "Total".

About point 2: I already used HistogramCellCount, but it fixes just the number of bars. I would have 7 bars between 1 and 70, then each bar should represent the value for a range of 10 (1-10; 11-20; 21-30;...). The behavior of the graph is different.

Thank you

Best regards

Fabio

Below my data

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<Rowsets CachedTime="" DateCreated="2014-01-21T07:59:18" EndDate="2014-01-21T07:59:18" StartDate="2014-01-21T06:59:18" Version="12.2.5 Build(58)">

  <Rowset>

  <Columns>

  <Column Description="Total" MaxRange="1" MinRange="0" Name="Total" SQLDataType="4" SourceColumn="Total" />

  <Column Description="RequestCreationToResponseInsert" MaxRange="1" MinRange="0" Name="RequestCreationToResponseInsert" SQLDataType="4" SourceColumn="RequestCreationToResponseInsert" />

  <Column Description="RequestInsertToResponeRead" MaxRange="1" MinRange="0" Name="RequestInsertToResponeRead" SQLDataType="4" SourceColumn="RequestInsertToResponeRead" />

  <Column Description="MII" MaxRange="1" MinRange="0" Name="MII" SQLDataType="4" SourceColumn="MII" />

  <Column Description="PLC" MaxRange="1" MinRange="0" Name="PLC" SQLDataType="4" SourceColumn="PLC" />

  <Column Description="PlcToDb" MaxRange="1" MinRange="0" Name="PlcToDb" SQLDataType="4" SourceColumn="PlcToDb" />

  <Column Description="MiiRead" MaxRange="1" MinRange="0" Name="MiiRead" SQLDataType="4" SourceColumn="MiiRead" />

  <Column Description="MiiLogic" MaxRange="1" MinRange="0" Name="MiiLogic" SQLDataType="4" SourceColumn="MiiLogic" />

  <Column Description="MiiToDb" MaxRange="1" MinRange="0" Name="MiiToDb" SQLDataType="4" SourceColumn="MiiToDb" />

  <Column Description="PlcRead" MaxRange="1" MinRange="0" Name="PlcRead" SQLDataType="4" SourceColumn="PlcRead" />

  </Columns>

  <Row>

  <Total>24</Total>

  <RequestCreationToResponseInsert>23</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>17</PLC>

  <PlcToDb>16</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>21</Total>

  <RequestCreationToResponseInsert>20</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>5</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>17</PLC>

  <PlcToDb>16</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>25</Total>

  <RequestCreationToResponseInsert>23</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>18</PLC>

  <PlcToDb>16</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>24</Total>

  <RequestCreationToResponseInsert>23</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>16</PLC>

  <PlcToDb>15</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>28</Total>

  <RequestCreationToResponseInsert>26</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>12</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>18</PLC>

  <PlcToDb>16</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>19</Total>

  <RequestCreationToResponseInsert>17</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>17</PLC>

  <PlcToDb>15</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>28</Total>

  <RequestCreationToResponseInsert>27</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>12</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>17</PLC>

  <PlcToDb>16</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>24</Total>

  <RequestCreationToResponseInsert>23</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>15</PLC>

  <PlcToDb>14</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>24</Total>

  <RequestCreationToResponseInsert>23</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>16</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>14</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>17</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>5</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>22</Total>

  <RequestCreationToResponseInsert>21</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>21</Total>

  <RequestCreationToResponseInsert>20</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>17</Total>

  <RequestCreationToResponseInsert>16</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>17</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>5</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>26</Total>

  <RequestCreationToResponseInsert>25</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>12</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>15</PLC>

  <PlcToDb>14</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>26</Total>

  <RequestCreationToResponseInsert>24</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>17</PLC>

  <PlcToDb>15</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>25</Total>

  <RequestCreationToResponseInsert>24</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>15</PLC>

  <PlcToDb>14</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>17</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>5</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>20</Total>

  <RequestCreationToResponseInsert>19</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>16</Total>

  <RequestCreationToResponseInsert>15</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>2</RequestInsertToResponeRead>

  <MII>1</MII>

  <PLC>15</PLC>

  <PlcToDb>14</PlcToDb>

  <MiiRead>1</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>17</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>5</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>21</Total>

  <RequestCreationToResponseInsert>20</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>20</Total>

  <RequestCreationToResponseInsert>19</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>24</Total>

  <RequestCreationToResponseInsert>22</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>15</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>-2</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>17</Total>

  <RequestCreationToResponseInsert>15</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>15</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>-2</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>17</Total>

  <RequestCreationToResponseInsert>16</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>-2</MiiLogic>

  <MiiToDb>2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>23</Total>

  <RequestCreationToResponseInsert>22</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>-2</MiiLogic>

  <MiiToDb>2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>25</Total>

  <RequestCreationToResponseInsert>24</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>15</PLC>

  <PlcToDb>14</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>-2</MiiLogic>

  <MiiToDb>2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>25</Total>

  <RequestCreationToResponseInsert>24</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>12</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>23</Total>

  <RequestCreationToResponseInsert>22</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>16</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>5</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>15</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>-2</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>16</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>14</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>17</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>13</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>14</Total>

  <RequestCreationToResponseInsert>13</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>3</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>12</PLC>

  <PlcToDb>11</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>17</Total>

  <RequestCreationToResponseInsert>16</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>12</PLC>

  <PlcToDb>11</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>23</Total>

  <RequestCreationToResponseInsert>22</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>12</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>12</PLC>

  <PlcToDb>11</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>14</Total>

  <RequestCreationToResponseInsert>13</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>3</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>12</PLC>

  <PlcToDb>11</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>21</Total>

  <RequestCreationToResponseInsert>19</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>13</PLC>

  <PlcToDb>11</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>14</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>3</RequestInsertToResponeRead>

  <MII>1</MII>

  <PLC>13</PLC>

  <PlcToDb>11</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>17</Total>

  <RequestCreationToResponseInsert>16</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>12</PLC>

  <PlcToDb>11</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>19</Total>

  <RequestCreationToResponseInsert>18</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>12</PLC>

  <PlcToDb>11</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>16</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>14</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>17</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>13</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>24</Total>

  <RequestCreationToResponseInsert>22</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>13</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>13</PLC>

  <PlcToDb>11</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>14</Total>

  <RequestCreationToResponseInsert>13</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>2</RequestInsertToResponeRead>

  <MII>1</MII>

  <PLC>13</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>17</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>13</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>24</Total>

  <RequestCreationToResponseInsert>23</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>12</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>13</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>23</Total>

  <RequestCreationToResponseInsert>22</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>13</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>14</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>2</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>12</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>20</Total>

  <RequestCreationToResponseInsert>19</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>13</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>21</Total>

  <RequestCreationToResponseInsert>19</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>14</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>20</Total>

  <RequestCreationToResponseInsert>19</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>13</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>16</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>14</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>25</Total>

  <RequestCreationToResponseInsert>23</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>13</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>14</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>12</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>16</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>14</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>23</Total>

  <RequestCreationToResponseInsert>22</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>13</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>23</Total>

  <RequestCreationToResponseInsert>22</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>13</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>23</Total>

  <RequestCreationToResponseInsert>21</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>15</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>24</Total>

  <RequestCreationToResponseInsert>23</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>14</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>10</Total>

  <RequestCreationToResponseInsert>9</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>5</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>6</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>11</Total>

  <RequestCreationToResponseInsert>10</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>3</PLC>

  <PlcToDb>2</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>12</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>3</PLC>

  <PlcToDb>2</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>-2</MiiLogic>

  <MiiToDb>2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>5</Total>

  <RequestCreationToResponseInsert>4</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>3</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>3</PLC>

  <PlcToDb>2</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>-2</MiiLogic>

  <MiiToDb>2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>10</Total>

  <RequestCreationToResponseInsert>9</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>3</PLC>

  <PlcToDb>2</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>-2</MiiLogic>

  <MiiToDb>2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>10</Total>

  <RequestCreationToResponseInsert>8</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>8</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>15</Total>

  <RequestCreationToResponseInsert>13</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>8</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>-2</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>11</Total>

  <RequestCreationToResponseInsert>9</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>5</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>8</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>11</Total>

  <RequestCreationToResponseInsert>10</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>5</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>7</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>15</Total>

  <RequestCreationToResponseInsert>13</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>8</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>8</Total>

  <RequestCreationToResponseInsert>7</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>3</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>6</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>10</Total>

  <RequestCreationToResponseInsert>8</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>8</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>12</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>7</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>13</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>7</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>14</Total>

  <RequestCreationToResponseInsert>13</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>6</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>7</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>3</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>3</MiiLogic>

  <MiiToDb>-3</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>14</Total>

  <RequestCreationToResponseInsert>13</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>3</MiiLogic>

  <MiiToDb>-3</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>15</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>6</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-3</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>13</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>12</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>7</Total>

  <RequestCreationToResponseInsert>5</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>3</RequestInsertToResponeRead>

  <MII>1</MII>

  <PLC>6</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-3</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>16</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>12</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>6</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-3</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>8</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>6</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-3</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>13</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>14</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>6</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>8</Total>

  <RequestCreationToResponseInsert>7</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>14</Total>

  <RequestCreationToResponseInsert>13</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>13</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>17</Total>

  <RequestCreationToResponseInsert>16</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>12</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>6</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>8</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>3</RequestInsertToResponeRead>

  <MII>1</MII>

  <PLC>7</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>1</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>15</Total>

  <RequestCreationToResponseInsert>13</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>7</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>16</Total>

  <RequestCreationToResponseInsert>15</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>6</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>13</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>6</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>16</Total>

  <RequestCreationToResponseInsert>15</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>6</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>7</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>2</RequestInsertToResponeRead>

  <MII>1</MII>

  <PLC>6</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>1</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>8</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>6</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>10</Total>

  <RequestCreationToResponseInsert>9</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>17</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>8</PLC>

  <PlcToDb>7</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>15</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>7</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>13</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>7</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>13</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>7</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>16</Total>

  <RequestCreationToResponseInsert>15</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>8</PLC>

  <PlcToDb>7</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>12</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>5</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>8</PLC>

  <PlcToDb>7</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>11</Total>

  <RequestCreationToResponseInsert>10</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>6</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>18</Total>

  <RequestCreationToResponseInsert>16</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>12</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>8</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>12</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>6</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>12</Total>

  <RequestCreationToResponseInsert>10</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>8</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>15</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>13</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>12</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>16</Total>

  <RequestCreationToResponseInsert>15</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>12</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>15</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>11</Total>

  <RequestCreationToResponseInsert>10</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>4</PLC>

  <PlcToDb>3</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>15</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>12</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>4</PLC>

  <PlcToDb>3</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>10</Total>

  <RequestCreationToResponseInsert>9</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>5</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>33</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>29</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>26</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>22</PlcRead>

  </Row>

  <Row>

  <Total>21</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>13</PLC>

  <PlcToDb>3</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>10</PlcRead>

  </Row>

  <Row>

  <Total>31</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>26</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>25</PLC>

  <PlcToDb>5</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>20</PlcRead>

  </Row>

  <Row>

  <Total>37</Total>

  <RequestCreationToResponseInsert>15</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>33</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>26</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>22</PlcRead>

  </Row>

  <Row>

  <Total>21</Total>

  <RequestCreationToResponseInsert>8</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>17</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>17</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>13</PlcRead>

  </Row>

  <Row>

  <Total>22</Total>

  <RequestCreationToResponseInsert>10</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>16</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>12</PlcRead>

  </Row>

  <Row>

  <Total>22</Total>

  <RequestCreationToResponseInsert>9</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>17</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>13</PlcRead>

  </Row>

  <Row>

  <Total>20</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>11</PLC>

  <PlcToDb>2</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>9</PlcRead>

  </Row>

  <Row>

  <Total>21</Total>

  <RequestCreationToResponseInsert>5</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>19</PLC>

  <PlcToDb>3</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>16</PlcRead>

  </Row>

  <Row>

  <Total>20</Total>

  <RequestCreationToResponseInsert>8</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>14</PLC>

  <PlcToDb>2</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>12</PlcRead>

  </Row>

  <Row>

  <Total>20</Total>

  <RequestCreationToResponseInsert>7</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>15</PLC>

  <PlcToDb>2</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>13</PlcRead>

  </Row>

  <Row>

  <Total>20</Total>

  <RequestCreationToResponseInsert>5</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>17</PLC>

  <PlcToDb>2</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>15</PlcRead>

  </Row>

  <Row>

  <Total>20</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>12</MII>

  <PLC>8</PLC>

  <PlcToDb>2</PlcToDb>

  <MiiRead>12</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>6</PlcRead>

  </Row>

  <Row>

  <Total>21</Total>

  <RequestCreationToResponseInsert>14</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>17</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>11</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>-2</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>7</PlcRead>

  </Row>

  <Row>

  <Total>48</Total>

  <RequestCreationToResponseInsert>33</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>45</PLC>

  <PlcToDb>30</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>15</PlcRead>

  </Row>

  <Row>

  <Total>34</Total>

  <RequestCreationToResponseInsert>22</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>17</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>29</PLC>

  <PlcToDb>17</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>12</PlcRead>

  </Row>

  <Row>

  <Total>56</Total>

  <RequestCreationToResponseInsert>42</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>52</PLC>

  <PlcToDb>38</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>14</PlcRead>

  </Row>

  <Row>

  <Total>56</Total>

  <RequestCreationToResponseInsert>43</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>51</PLC>

  <PlcToDb>38</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>13</PlcRead>

  </Row>

  <Row>

  <Total>50</Total>

  <RequestCreationToResponseInsert>42</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>40</PLC>

  <PlcToDb>32</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>8</PlcRead>

  </Row>

  <Row>

  <Total>41</Total>

  <RequestCreationToResponseInsert>32</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>18</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>32</PLC>

  <PlcToDb>23</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>9</PlcRead>

  </Row>

  <Row>

  <Total>44</Total>

  <RequestCreationToResponseInsert>32</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>17</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>39</PLC>

  <PlcToDb>27</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>12</PlcRead>

  </Row>

  <Row>

  <Total>35</Total>

  <RequestCreationToResponseInsert>33</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>14</RequestInsertToResponeRead>

  <MII>12</MII>

  <PLC>23</PLC>

  <PlcToDb>21</PlcToDb>

  <MiiRead>12</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>52</Total>

  <RequestCreationToResponseInsert>51</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>45</PLC>

  <PlcToDb>44</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>62</Total>

  <RequestCreationToResponseInsert>61</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>56</PLC>

  <PlcToDb>55</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>58</Total>

  <RequestCreationToResponseInsert>51</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>14</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>51</PLC>

  <PlcToDb>44</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>7</PlcRead>

  </Row>

  <Row>

  <Total>59</Total>

  <RequestCreationToResponseInsert>58</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>52</PLC>

  <PlcToDb>51</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>42</Total>

  <RequestCreationToResponseInsert>38</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>14</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>32</PLC>

  <PlcToDb>28</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>4</PlcRead>

  </Row>

  <Row>

  <Total>43</Total>

  <RequestCreationToResponseInsert>38</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>40</PLC>

  <PlcToDb>35</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>5</PlcRead>

  </Row>

  <Row>

  <Total>51</Total>

  <RequestCreationToResponseInsert>48</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>46</PLC>

  <PlcToDb>43</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>3</PlcRead>

  </Row>

  <Row>

  <Total>47</Total>

  <RequestCreationToResponseInsert>29</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>24</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>41</PLC>

  <PlcToDb>23</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>18</PlcRead>

  </Row>

  <Row>

  <Total>66</Total>

  <RequestCreationToResponseInsert>59</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>1</MII>

  <PLC>65</PLC>

  <PlcToDb>58</PlcToDb>

  <MiiRead>1</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>7</PlcRead>

  </Row>

  <Row>

  <Total>41</Total>

  <RequestCreationToResponseInsert>38</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>37</PLC>

  <PlcToDb>34</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>3</PlcRead>

  </Row>

  <Row>

  <Total>39</Total>

  <RequestCreationToResponseInsert>38</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>32</PLC>

  <PlcToDb>31</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>63</Total>

  <RequestCreationToResponseInsert>58</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>14</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>54</PLC>

  <PlcToDb>49</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>5</PlcRead>

  </Row>

  <Row>

  <Total>34</Total>

  <RequestCreationToResponseInsert>29</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>31</PLC>

  <PlcToDb>26</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>5</PlcRead>

  </Row>

  <Row>

  <Total>64</Total>

  <RequestCreationToResponseInsert>59</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>15</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>54</PLC>

  <PlcToDb>49</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>5</PlcRead>

  </Row>

  <Row>

  <Total>7</Total>

  <RequestCreationToResponseInsert>7</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>11</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>3</Total>

  <RequestCreationToResponseInsert>3</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>3</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>2</Total>

  <RequestCreationToResponseInsert>2</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>2</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>8</Total>

  <RequestCreationToResponseInsert>8</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>11</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>4</Total>

  <RequestCreationToResponseInsert>4</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>2</Total>

  <RequestCreationToResponseInsert>2</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>2</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>4</Total>

  <RequestCreationToResponseInsert>4</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>8</Total>

  <RequestCreationToResponseInsert>8</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>6</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>7</Total>

  <RequestCreationToResponseInsert>7</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>4</Total>

  <RequestCreationToResponseInsert>4</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>4</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>5</Total>

  <RequestCreationToResponseInsert>5</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>5</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>6</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>3</Total>

  <RequestCreationToResponseInsert>3</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>3</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>3</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>6</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>6</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>8</Total>

  <RequestCreationToResponseInsert>8</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>6</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>10</Total>

  <RequestCreationToResponseInsert>10</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>10</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>6</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>8</Total>

  <RequestCreationToResponseInsert>8</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>9</Total>

  <RequestCreationToResponseInsert>9</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>6</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>2</Total>

  <RequestCreationToResponseInsert>2</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>2</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>11</Total>

  <RequestCreationToResponseInsert>11</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>11</RequestInsertToResponeRead>

  <MII>11</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>11</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>6</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>1</Total>

  <RequestCreationToResponseInsert>1</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>1</RequestInsertToResponeRead>

  <MII>1</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>1</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>9</Total>

  <RequestCreationToResponseInsert>9</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>6</Total>

  <RequestCreationToResponseInsert>6</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>6</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>8</Total>

  <RequestCreationToResponseInsert>8</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>9</Total>

  <RequestCreationToResponseInsert>9</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>9</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>0</PLC>

  <PlcToDb>0</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>0</MiiToDb>

  <PlcRead>0</PlcRead>

  </Row>

  <Row>

  <Total>11</Total>

  <RequestCreationToResponseInsert>10</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>4</PLC>

  <PlcToDb>3</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>45</Total>

  <RequestCreationToResponseInsert>40</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>43</PLC>

  <PlcToDb>38</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>5</PlcRead>

  </Row>

  <Row>

  <Total>22</Total>

  <RequestCreationToResponseInsert>20</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>16</PLC>

  <PlcToDb>14</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>53</Total>

  <RequestCreationToResponseInsert>50</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>48</PLC>

  <PlcToDb>45</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>3</PlcRead>

  </Row>

  <Row>

  <Total>17</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>13</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>9</PLC>

  <PlcToDb>4</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>5</PlcRead>

  </Row>

  <Row>

  <Total>54</Total>

  <RequestCreationToResponseInsert>22</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>42</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>44</PLC>

  <PlcToDb>12</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>32</PlcRead>

  </Row>

  <Row>

  <Total>66</Total>

  <RequestCreationToResponseInsert>62</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>4</MII>

  <PLC>62</PLC>

  <PlcToDb>58</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>4</PlcRead>

  </Row>

  <Row>

  <Total>58</Total>

  <RequestCreationToResponseInsert>52</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>13</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>51</PLC>

  <PlcToDb>45</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>6</PlcRead>

  </Row>

  <Row>

  <Total>69</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>66</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>60</PLC>

  <PlcToDb>3</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>57</PlcRead>

  </Row>

  <Row>

  <Total>44</Total>

  <RequestCreationToResponseInsert>42</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>38</PLC>

  <PlcToDb>36</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>47</Total>

  <RequestCreationToResponseInsert>42</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>14</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>38</PLC>

  <PlcToDb>33</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>-1</MiiLogic>

  <MiiToDb>1</MiiToDb>

  <PlcRead>5</PlcRead>

  </Row>

  <Row>

  <Total>14</Total>

  <RequestCreationToResponseInsert>9</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>3</MII>

  <PLC>11</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>4</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>5</PlcRead>

  </Row>

  <Row>

  <Total>16</Total>

  <RequestCreationToResponseInsert>10</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>14</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>8</PLC>

  <PlcToDb>2</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>6</PlcRead>

  </Row>

  <Row>

  <Total>44</Total>

  <RequestCreationToResponseInsert>40</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>14</RequestInsertToResponeRead>

  <MII>10</MII>

  <PLC>34</PLC>

  <PlcToDb>30</PlcToDb>

  <MiiRead>10</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>4</PlcRead>

  </Row>

  <Row>

  <Total>61</Total>

  <RequestCreationToResponseInsert>60</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>54</PLC>

  <PlcToDb>53</PlcToDb>

  <MiiRead>7</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>63</Total>

  <RequestCreationToResponseInsert>60</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>58</PLC>

  <PlcToDb>55</PlcToDb>

  <MiiRead>5</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>3</PlcRead>

  </Row>

  <Row>

  <Total>21</Total>

  <RequestCreationToResponseInsert>15</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>14</RequestInsertToResponeRead>

  <MII>8</MII>

  <PLC>13</PLC>

  <PlcToDb>7</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>126</MiiLogic>

  <MiiToDb>-126</MiiToDb>

  <PlcRead>6</PlcRead>

  </Row>

  <Row>

  <Total>13</Total>

  <RequestCreationToResponseInsert>12</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>6</MII>

  <PLC>7</PLC>

  <PlcToDb>6</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>1</PlcRead>

  </Row>

  <Row>

  <Total>27</Total>

  <RequestCreationToResponseInsert>20</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>14</RequestInsertToResponeRead>

  <MII>7</MII>

  <PLC>20</PLC>

  <PlcToDb>13</PlcToDb>

  <MiiRead>8</MiiRead>

  <MiiLogic>0</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>7</PlcRead>

  </Row>

  <Row>

  <Total>51</Total>

  <RequestCreationToResponseInsert>49</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>5</MII>

  <PLC>46</PLC>

  <PlcToDb>44</PlcToDb>

  <MiiRead>6</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>2</PlcRead>

  </Row>

  <Row>

  <Total>34</Total>

  <RequestCreationToResponseInsert>30</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>13</RequestInsertToResponeRead>

  <MII>9</MII>

  <PLC>25</PLC>

  <PlcToDb>21</PlcToDb>

  <MiiRead>9</MiiRead>

  <MiiLogic>2</MiiLogic>

  <MiiToDb>-2</MiiToDb>

  <PlcRead>4</PlcRead>

  </Row>

  <Row>

  <Total>46</Total>

  <RequestCreationToResponseInsert>40</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>7</RequestInsertToResponeRead>

  <MII>1</MII>

  <PLC>45</PLC>

  <PlcToDb>39</PlcToDb>

  <MiiRead>1</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>6</PlcRead>

  </Row>

  <Row>

  <Total>66</Total>

  <RequestCreationToResponseInsert>60</RequestCreationToResponseInsert>

  <RequestInsertToResponeRead>8</RequestInsertToResponeRead>

  <MII>2</MII>

  <PLC>64</PLC>

  <PlcToDb>58</PlcToDb>

  <MiiRead>2</MiiRead>

  <MiiLogic>1</MiiLogic>

  <MiiToDb>-1</MiiToDb>

  <PlcRead>6</PlcRead>

  </Row>

  </Rowset>

  <Messages>

  <Message>Unable To Create Stylesheet Transformation</Message>

  </Messages>

</Rowsets>

Former Member
0 Kudos

Thanks for both of your responses.  See the Histogram Below.

If you look at the X-Axis values - you will notice that the values are - 0.9132, 0.9134, 0.9135. 0.9136, 0.9138, 0.9140, 0.9142, 0.9145, 0.9146, 0.9147, 0.9149.

Values on X-Axis (so called bins) are not uniformly distibuted .. some time it is 1/100th of difference and some times it is 2/100th .. If you plot the histogram with same value set in any other statistical software such as Minitab, you will see that the bins are unformly distributed (in Minitab you will see that the bin is 2/100th difference).

Histogram cell count influcnces the no of bars .. is there anyway you could influence how the bins are calculated so that they are unformly distributed.

I have raised a tickect to SAP OSS as well .. we are on MII 14.0 SP 4 Patch 1.

Any thoughts ?

ponilango_p
Explorer
0 Kudos

Hello Fabio & Girish,

Your problems (both are almost the same) are much clearly depicted, thanks for that.

I have to concede that the iSPC Chart of Type Histogram, is not having any direct parameters to achieve what you both are trying to do. (At least up to my knowledge)

But implementing some flexible transaction logic to group your values into your desired ranges will certainly help you produce the desired result.

I have taken the sample XML provided by you (Fabio) and applied a simple logic to get your values grouped in the desired range.

Please find the Transaction which follows the simple logical sequence,

  1. Repeat over your 'Total' values
  2. Using the combination of modulo and division operators based logic below against a flexible range limit value (From the sample 10 as Local.RangeLimit)
  3. Row.Range =

if(number(Repeater.Output{/Row/Total})%Local.RangeLimit>0,

floor(number(Repeater.Output{/Row/Total})/Local.RangeLimit)+1,

floor(number(Repeater.Output{/Row/Total})/Local.RangeLimit)+0)

   4. Range 1 means your Total value is lying between 1-10, Range 2 means 11-20 and so on.

   5. Construct a new MII XML Doc with these values included as a new column –Range

   6. When using Range as the value column in the SPC Chart of type Histogram with Histogram Cell count (8=>7+1) I get the chart output as captured below.

In case of you (Girish) try changing the RangeLimit value to 0.001 or 0.002 to group your values and assign a suitable range (0.9136-0.9138) for your display column.

Hope this helps, if you want the transaction and chart files – send me a direct message I’ll try to send it across.

With regards,

Poni

Former Member
0 Kudos

Hi Poni,

Interesting approach .. I will try with our anaylsts (but I do not think they will go for it). The values are product dimensions and this chart is produced as the operator is entering the dimensional data for the product.  Operator reviews this chart, looks at the dimensional trend and then adjusts the machine ..  we plan to us Histogram and XBAR-MR chart in combination. XBAR-MR chart in MII is very good .. behaves very close to a minitab chart.

I have opened a ticket to SAP and waiting to hear from them.  The other thing I noticed is, when you right click on the Histogram and select the SPC results, Cp, Cpk values etc show up as 'NA' which does not make any sense. Even the standard deviation is display as zero.

In any case, can you send me the files to .. 'ghegde@gtweed.com'.

Thanks,

Girish

0 Kudos

Hello Ponilango

This idea could be implemented directly in SQL query, using "/10" in selected column.

The result is the same.

But in this way, the user loses the direct conversion between image and logic.

For example, if range is 5 and column X value is 16 to 17...real range is...boh: he needs a calculator.

For this reason, I cannot use this method.

Thank you

Best regards

Fabio

ponilango_p
Explorer
0 Kudos

Dear Fabio & Girish,

Excuse my delay.

Fabio,

I just worked out on your given data sample - so the transaction, MII allows you to place to your logic in your Query, Transaction, XSL or in your JavaScript.

To make the output more readable I can just multiply "Local.RangeLimit" by the Calculated "Range" column from the above mentioned expression.

Another complex development that you could use to derive your required output may be to,

1. Generate your SPC values out of a custom transaction employing MII's SPC Action blocks

2. Custom chart with bar and line chart for displaying the values.

I agree with your thought (out of my personal experience)  - MII SPCCharts are not completely equipped when compared to Minitab & other SPC tools. But that's were MII's development tools comes to your aid like above.

When you want such specific requests to be addressed by SAP tech support, the usual reply you get will be a re-direct to their consulting department.

Who will consult you with a similar walk through using possible MII work-arounds. Good luck with that.

With regards,

Ponilango P