home *** CD-ROM | disk | FTP | other *** search
/ moodle.waes.ac.uk / moodle.waes.ac.uk.zip / moodle.waes.ac.uk / TMG / SP1-TMG-KB981324-AMD64-ENU.msp / PCW_CAB_SHFx2 / F2143_msfpcui.dll / BINARY / 25476 < prev    next >
Extensible Markup Language  |  2010-06-15  |  75KB  |  1,293 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
  3.   <ReportParameters>
  4.     <ReportParameter Name="FromDate">
  5.       <DataType>String</DataType>
  6.       <DefaultValue>
  7.         <Values>
  8.           <Value>=DateTime.Today.AddDays(-1).AddSeconds(1)</Value>
  9.         </Values>
  10.       </DefaultValue>
  11.       <Prompt>From Date:</Prompt>
  12.     </ReportParameter>
  13.     <ReportParameter Name="ToDate">
  14.       <DataType>String</DataType>
  15.       <DefaultValue>
  16.         <Values>
  17.           <Value>=DateTime.Today.AddSeconds(1)</Value>
  18.         </Values>
  19.       </DefaultValue>
  20.       <Prompt>To Date:</Prompt>
  21.     </ReportParameter>
  22.     <ReportParameter Name="ReportType">
  23.       <DataType>String</DataType>
  24.       <DefaultValue>
  25.         <Values>
  26.           <Value>Daily</Value>
  27.         </Values>
  28.       </DefaultValue>
  29.       <Prompt>Report Type:</Prompt>
  30.       <ValidValues>
  31.         <ParameterValues>
  32.           <ParameterValue>
  33.             <Value>Monthly</Value>
  34.           </ParameterValue>
  35.           <ParameterValue>
  36.             <Value>Daily</Value>
  37.           </ParameterValue>
  38.           <ParameterValue>
  39.             <Value>Immediate</Value>
  40.           </ParameterValue>
  41.         </ParameterValues>
  42.       </ValidValues>
  43.     </ReportParameter>
  44.     <ReportParameter Name="Category">
  45.       <DataType>String</DataType>
  46.       <AllowBlank>true</AllowBlank>
  47.       <Prompt>Report Category:</Prompt>
  48.     </ReportParameter>
  49.   </ReportParameters>
  50.   <DataSets>
  51.     <DataSet Name="ISARS">
  52.       <Query>
  53.         <CommandType>StoredProcedure</CommandType>
  54.         <CommandText>ISA_spWebHttpReponsesRDL</CommandText>
  55.         <QueryParameters>
  56.           <QueryParameter Name="@FromDate">
  57.             <Value>=Parameters!FromDate.Value</Value>
  58.           </QueryParameter>
  59.           <QueryParameter Name="@ToDate">
  60.             <Value>=Parameters!ToDate.Value</Value>
  61.           </QueryParameter>
  62.           <QueryParameter Name="@ReportType">
  63.             <Value>=Parameters!ReportType.Value</Value>
  64.           </QueryParameter>
  65.         </QueryParameters>
  66.         <DataSourceName>ISA_RS_Db</DataSourceName>
  67.       </Query>
  68.       <Fields>
  69.         <Field Name="Requests">
  70.           <DataField>Requests</DataField>
  71.         </Field>
  72.         <Field Name="RequestRatio">
  73.           <DataField>RequestRatio</DataField>
  74.         </Field>
  75.         <Field Name="Response">
  76.           <DataField>Response</DataField>
  77.         </Field>
  78.       </Fields>
  79.     </DataSet>
  80.     <DataSet Name="DummyDataset">
  81.       <Query>
  82.         <CommandText>select null</CommandText>
  83.         <DataSourceName>ISA_RS_Db</DataSourceName>
  84.       </Query>
  85.     </DataSet>
  86.   </DataSets>
  87.   <Code>Public Function GetByteScaleString(ByVal MaxBytes As Long) As String
  88.     If MaxBytes < 1000 Then
  89.         Return "{[8001]}"
  90.     Else If (MaxBytes/1024) < 1000 Then
  91.         Return "{[8002]}"
  92.     Else If (MaxBytes/1024/1024) < 1000 Then
  93.         Return "{[8003]}"
  94.     Else
  95.         Return "{[8004]}"
  96.     End If
  97. End Function
  98. Public Function GetNormalizedScaleStringByType(ByVal MaxBytes As Long, ByVal ValType As Long) As String
  99.     If ValType = 1 Then
  100.         Return GetNormalizeByteScale(MaxBytes)
  101.     Else
  102.         Return Format(MaxBytes, "F")
  103.     End If
  104. End Function
  105. Public Function GetByteScaleInt(ByVal MaxBytes As Long) As Long
  106.     If (MaxBytes < 1000) Then
  107.         Return 1
  108.     Else If ((MaxBytes/1024) < 1000) Then
  109.         Return 1024
  110.     Else If ((MaxBytes/1024/1024) < 1000) Then
  111.         Return 1024*1024
  112.     Else
  113.         Return 1024*1024*1024
  114.     End If
  115. End Function
  116. Public Function GetNormalizeByteScale(ByVal MaxBytes As Long) As String
  117.     Return Format(MaxBytes/GetByteScaleInt(MaxBytes), "F") & " " & GetByteScaleString(MaxBytes)
  118. End Function
  119. Public Function GetChartSortAxisString(ByVal SortOrder As String, ByVal Scale As String) As String
  120.     If (SortOrder = "Requests") Then
  121.         Return "{[23016]}"
  122.     Else If (SortOrder = "BytesIn") Then
  123.         Return "{[23017]}" & " [" & Scale & "]"
  124.     Else If (SortOrder = "BytesOut") Then
  125.         Return "{[23018]}" & " [" & Scale & "]"
  126.     Else
  127.         Return "{[23021]}" & " [" & Scale & "]"
  128.     End If
  129. End Function
  130. Private palette As String() = {"#F0A5A5A5", "#F04F81BD", "#F0F0A210", "#F09BBB59", "#F0C0504D", "#F08064A2", "#F0F79646", "#F04BACC6"}
  131. Public Function GetColor(ByVal index As Integer) As String
  132.   Dim c As String = palette(index Mod palette.Length)
  133.   Return c
  134. End Function</Code>
  135.   <EmbeddedImages>
  136.     <EmbeddedImage Name="Forefront">
  137.       <MIMEType>image/png</MIMEType>
  138.       <ImageData>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</ImageData>
  139.     </EmbeddedImage>
  140.   </EmbeddedImages>
  141.   <Width>0.03125in</Width>
  142.   <Page>
  143.     <Style />
  144.     <PageHeight>455in</PageHeight>
  145.   </Page>
  146.   <Body>
  147.     <Height>0.03125in</Height>
  148.     <ReportItems>
  149.       <Tablix Name="table_MainReportLayoutTable">
  150.         <DataSetName>ISARS</DataSetName>
  151.         <TablixBody>
  152.           <TablixColumns>
  153.             <TablixColumn>
  154.               <Width>12in</Width>
  155.             </TablixColumn>
  156.           </TablixColumns>
  157.           <TablixRows>
  158.             <TablixRow>
  159.               <Height>0.25in</Height>
  160.               <TablixCells>
  161.                 <TablixCell>
  162.                   <CellContents>
  163.                     <Textbox Name="ReportCategory">
  164.                       <Visibility>
  165.                         <Hidden>true</Hidden>
  166.                       </Visibility>
  167.                       <CanGrow>true</CanGrow>
  168.                       <KeepTogether>true</KeepTogether>
  169.                       <Paragraphs>
  170.                         <Paragraph>
  171.                           <TextRuns>
  172.                             <TextRun>
  173.                               <Value>=Parameters!Category.Value</Value>
  174.                               <Style />
  175.                             </TextRun>
  176.                           </TextRuns>
  177.                           <Style />
  178.                         </Paragraph>
  179.                       </Paragraphs>
  180.                       <Style />
  181.                       <DataElementName>ReportCategory</DataElementName>
  182.                       <DataElementStyle>Element</DataElementStyle>
  183.                       <DataElementOutput>Output</DataElementOutput>
  184.                     </Textbox>
  185.                     <ColSpan>1</ColSpan>
  186.                   </CellContents>
  187.                 </TablixCell>
  188.               </TablixCells>
  189.             </TablixRow>
  190.             <TablixRow>
  191.               <Height>0.6in</Height>
  192.               <TablixCells>
  193.                 <TablixCell>
  194.                   <CellContents>
  195.                     <Tablix Name="table_ReportTitle">
  196.                       <TablixBody>
  197.                         <TablixColumns>
  198.                           <TablixColumn>
  199.                             <Width>11.4in</Width>
  200.                           </TablixColumn>
  201.                           <TablixColumn>
  202.                             <Width>0.6in</Width>
  203.                           </TablixColumn>
  204.                         </TablixColumns>
  205.                         <TablixRows>
  206.                           <TablixRow>
  207.                             <Height>0.6in</Height>
  208.                             <TablixCells>
  209.                               <TablixCell>
  210.                                 <CellContents>
  211.                                   <Textbox Name="ReportTitle">
  212.                                     <CanGrow>true</CanGrow>
  213.                                     <KeepTogether>true</KeepTogether>
  214.                                     <Paragraphs>
  215.                                       <Paragraph>
  216.                                         <TextRuns>
  217.                                           <TextRun>
  218.                                             <Value>{[25068]}</Value>
  219.                                             <Style>
  220.                                               <FontFamily>Segoe UI</FontFamily>
  221.                                               <FontSize>28pt</FontSize>
  222.                                               <Color>#19822d</Color>
  223.                                             </Style>
  224.                                           </TextRun>
  225.                                         </TextRuns>
  226.                                         <Style>
  227.                                           <TextAlign>Left</TextAlign>
  228.                                         </Style>
  229.                                       </Paragraph>
  230.                                     </Paragraphs>
  231.                                     <Style>
  232.                                       <Border>
  233.                                         <Color>WhiteSmoke</Color>
  234.                                         <Style>Solid</Style>
  235.                                       </Border>
  236.                                       <TopBorder>
  237.                                         <Color>Silver</Color>
  238.                                         <Width>3pt</Width>
  239.                                       </TopBorder>
  240.                                       <BottomBorder>
  241.                                         <Color>Silver</Color>
  242.                                         <Width>0.5pt</Width>
  243.                                       </BottomBorder>
  244.                                       <LeftBorder>
  245.                                         <Color>Silver</Color>
  246.                                         <Width>0.5pt</Width>
  247.                                       </LeftBorder>
  248.                                       <RightBorder>
  249.                                         <Style>None</Style>
  250.                                       </RightBorder>
  251.                                       <VerticalAlign>Bottom</VerticalAlign>
  252.                                       <PaddingLeft>8pt</PaddingLeft>
  253.                                       <PaddingRight>2pt</PaddingRight>
  254.                                       <PaddingTop>2pt</PaddingTop>
  255.                                       <PaddingBottom>4pt</PaddingBottom>
  256.                                     </Style>
  257.                                     <DataElementName>ReportName</DataElementName>
  258.                                     <DataElementStyle>Element</DataElementStyle>
  259.                                     <DataElementOutput>Output</DataElementOutput>
  260.                                   </Textbox>
  261.                                 </CellContents>
  262.                               </TablixCell>
  263.                               <TablixCell>
  264.                                 <CellContents>
  265.                                   <Image Name="Image1">
  266.                                     <Source>Embedded</Source>
  267.                                     <Value>Forefront</Value>
  268.                                     <Sizing>Fit</Sizing>
  269.                                     <Style>
  270.                                       <Border>
  271.                                         <Style>None</Style>
  272.                                       </Border>
  273.                                       <TopBorder>
  274.                                         <Color>Silver</Color>
  275.                                         <Style>Solid</Style>
  276.                                         <Width>3pt</Width>
  277.                                       </TopBorder>
  278.                                       <BottomBorder>
  279.                                         <Color>Silver</Color>
  280.                                         <Style>Solid</Style>
  281.                                         <Width>0.5pt</Width>
  282.                                       </BottomBorder>
  283.                                       <RightBorder>
  284.                                         <Color>Silver</Color>
  285.                                         <Style>Solid</Style>
  286.                                         <Width>0.5pt</Width>
  287.                                       </RightBorder>
  288.                                       <PaddingLeft>6pt</PaddingLeft>
  289.                                       <PaddingRight>6pt</PaddingRight>
  290.                                       <PaddingTop>6pt</PaddingTop>
  291.                                       <PaddingBottom>6pt</PaddingBottom>
  292.                                     </Style>
  293.                                   </Image>
  294.                                 </CellContents>
  295.                               </TablixCell>
  296.                             </TablixCells>
  297.                           </TablixRow>
  298.                         </TablixRows>
  299.                       </TablixBody>
  300.                       <TablixColumnHierarchy>
  301.                         <TablixMembers>
  302.                           <TablixMember />
  303.                           <TablixMember />
  304.                         </TablixMembers>
  305.                       </TablixColumnHierarchy>
  306.                       <TablixRowHierarchy>
  307.                         <TablixMembers>
  308.                           <TablixMember />
  309.                         </TablixMembers>
  310.                       </TablixRowHierarchy>
  311.                       <Style>
  312.                       </Style>
  313.                     </Tablix>
  314.                   </CellContents>
  315.                 </TablixCell>
  316.               </TablixCells>
  317.             </TablixRow>
  318.             <TablixRow>
  319.               <Height>0.25in</Height>
  320.               <TablixCells>
  321.                 <TablixCell>
  322.                   <CellContents>
  323.                     <Textbox Name="ReportSynopsys">
  324.                       <CanGrow>true</CanGrow>
  325.                       <KeepTogether>true</KeepTogether>
  326.                       <Paragraphs>
  327.                         <Paragraph>
  328.                           <TextRuns>
  329.                             <TextRun>
  330.                               <Value>{[25069]}</Value>
  331.                               <Style>
  332.                                 <FontFamily>Verdana</FontFamily>
  333.                                 <FontSize>10pt</FontSize>
  334.                                 <Color>DimGray</Color>
  335.                               </Style>
  336.                             </TextRun>
  337.                           </TextRuns>
  338.                           <Style />
  339.                         </Paragraph>
  340.                       </Paragraphs>
  341.                       <Style>
  342.                         <PaddingLeft>8pt</PaddingLeft>
  343.                         <PaddingRight>8pt</PaddingRight>
  344.                         <PaddingTop>16pt</PaddingTop>
  345.                         <PaddingBottom>16pt</PaddingBottom>
  346.                       </Style>
  347.                       <DataElementName>ReportDescription</DataElementName>
  348.                       <DataElementStyle>Element</DataElementStyle>
  349.                       <DataElementOutput>Output</DataElementOutput>
  350.                     </Textbox>
  351.                   </CellContents>
  352.                 </TablixCell>
  353.               </TablixCells>
  354.             </TablixRow>
  355.             <TablixRow>
  356.               <Height>6.15in</Height>
  357.               <TablixCells>
  358.                 <TablixCell>
  359.                   <CellContents>
  360.                     <Chart Name="control_deb74914745e47888c09cfd7e4818636">
  361.                       <ChartCategoryHierarchy>
  362.                         <ChartMembers>
  363.                           <ChartMember>
  364.                             <Group Name="control_deb74914745e47888c09cfd7e4818636_CategoryGroup1">
  365.                               <GroupExpressions>
  366.                                 <GroupExpression>=Fields!Response.Value</GroupExpression>
  367.                               </GroupExpressions>
  368.                             </Group>
  369.                             <Label>=Fields!Response.Value</Label>
  370.                           </ChartMember>
  371.                         </ChartMembers>
  372.                       </ChartCategoryHierarchy>
  373.                       <ChartSeriesHierarchy>
  374.                         <ChartMembers>
  375.                           <ChartMember>
  376.                             <Label>None</Label>
  377.                           </ChartMember>
  378.                         </ChartMembers>
  379.                       </ChartSeriesHierarchy>
  380.                       <ChartData>
  381.                         <ChartSeriesCollection>
  382.                           <ChartSeries Name="chartSeries_89229e465598429cab08af434ac10807">
  383.                             <ChartDataPoints>
  384.                               <ChartDataPoint>
  385.                                 <ChartDataPointValues>
  386.                                   <Y>=Fields!RequestRatio.Value</Y>
  387.                                 </ChartDataPointValues>
  388.                                 <ChartDataLabel>
  389.                                   <Style>
  390.                                     <FontFamily>Verdana</FontFamily>
  391.                                     <FontSize>9pt</FontSize>
  392.                                     <Color>DimGray</Color>
  393.                                   </Style>
  394.                                   <Label>#PERCENT</Label>
  395.                                   <Visible>true</Visible>
  396.                                   <Position>Outside</Position>
  397.                                 </ChartDataLabel>
  398.                                 <Style>
  399.                                   <Border>
  400.                                     <Color>#004fffbd</Color>
  401.                                     <Width>0.5pt</Width>
  402.                                   </Border>
  403.                                   <Color>=Code.GetColor(RowNumber("ISARS"))</Color>
  404.                                   <BackgroundGradientType>None</BackgroundGradientType>
  405.                                   <BackgroundGradientEndColor>#00ffffff</BackgroundGradientEndColor>
  406.                                 </Style>
  407.                                 <ChartMarker>
  408.                                   <Style />
  409.                                 </ChartMarker>
  410.                                 <DataElementOutput>Output</DataElementOutput>
  411.                                 <ChartItemInLegend>
  412.                                   <LegendText>#AXISLABEL (#PERCENT)</LegendText>
  413.                                 </ChartItemInLegend>
  414.                                 <CustomProperties>
  415.                                   <CustomProperty>
  416.                                     <Name>PieLabelStyle</Name>
  417.                                     <Value>Outside</Value>
  418.                                   </CustomProperty>
  419.                                   <CustomProperty>
  420.                                     <Name>PieLineColor</Name>
  421.                                     <Value>=Code.GetColor(RowNumber("ISARS"))</Value>
  422.                                   </CustomProperty>
  423.                                 </CustomProperties>
  424.                               </ChartDataPoint>
  425.                             </ChartDataPoints>
  426.                             <Type>Shape</Type>
  427.                             <Subtype>ExplodedPie</Subtype>
  428.                             <Style />
  429.                             <ChartEmptyPoints>
  430.                               <Style />
  431.                               <ChartMarker>
  432.                                 <Style />
  433.                               </ChartMarker>
  434.                               <ChartDataLabel>
  435.                                 <Style>
  436.                                   <Border>
  437.                                     <Color>Silver</Color>
  438.                                     <Style>Solid</Style>
  439.                                     <Width>0.75pt</Width>
  440.                                   </Border>
  441.                                 </Style>
  442.                               </ChartDataLabel>
  443.                             </ChartEmptyPoints>
  444.                             <CustomProperties>
  445.                               <CustomProperty>
  446.                                 <Name>PieStartAngle</Name>
  447.                                 <Value>30</Value>
  448.                               </CustomProperty>
  449.                               <CustomProperty>
  450.                                 <Name>3DLabelLineSize</Name>
  451.                                 <Value>30</Value>
  452.                               </CustomProperty>
  453.                               <CustomProperty>
  454.                                 <Name>MinimumRelativePieSize</Name>
  455.                                 <Value>70</Value>
  456.                               </CustomProperty>
  457.                               <CustomProperty>
  458.                                 <Name>PieLabelStyle</Name>
  459.                                 <Value>Outside</Value>
  460.                               </CustomProperty>
  461.                               <CustomProperty>
  462.                                 <Name>CollectedSliceExploded</Name>
  463.                                 <Value>true</Value>
  464.                               </CustomProperty>
  465.                               <CustomProperty>
  466.                                 <Name>CollectedThreshold</Name>
  467.                                 <Value>2</Value>
  468.                               </CustomProperty>
  469.                               <CustomProperty>
  470.                                 <Name>CollectedChartShowLabels</Name>
  471.                                 <Value>true</Value>
  472.                               </CustomProperty>
  473.                               <CustomProperty>
  474.                                 <Name>CollectedChartShowLegend</Name>
  475.                                 <Value>true</Value>
  476.                               </CustomProperty>
  477.                             </CustomProperties>
  478.                             <ValueAxisName>Primary</ValueAxisName>
  479.                             <CategoryAxisName>Primary</CategoryAxisName>
  480.                             <ChartSmartLabel>
  481.                               <CalloutLineColor>Black</CalloutLineColor>
  482.                               <MinMovingDistance>0pt</MinMovingDistance>
  483.                             </ChartSmartLabel>
  484.                           </ChartSeries>
  485.                         </ChartSeriesCollection>
  486.                       </ChartData>
  487.                       <ChartAreas>
  488.                         <ChartArea Name="Default">
  489.                           <ChartCategoryAxes>
  490.                             <ChartAxis Name="Primary">
  491.                               <Style>
  492.                                 <Border>
  493.                                   <Color>Silver</Color>
  494.                                   <Style>Solid</Style>
  495.                                   <Width>0.75pt</Width>
  496.                                 </Border>
  497.                                 <FontFamily>Verdana</FontFamily>
  498.                                 <FontSize>9pt</FontSize>
  499.                                 <Color>DarkSlateGray</Color>
  500.                               </Style>
  501.                               <ChartAxisTitle>
  502.                                 <Caption>AXIS X CAPTION (User)</Caption>
  503.                                 <Style>
  504.                                   <FontFamily>Verdana</FontFamily>
  505.                                   <Color>DimGray</Color>
  506.                                 </Style>
  507.                               </ChartAxisTitle>
  508.                               <ChartMajorGridLines>
  509.                                 <Enabled>True</Enabled>
  510.                                 <Style>
  511.                                   <Border>
  512.                                     <Color>Silver</Color>
  513.                                     <Style>Solid</Style>
  514.                                     <Width>0.75pt</Width>
  515.                                   </Border>
  516.                                 </Style>
  517.                               </ChartMajorGridLines>
  518.                               <ChartMajorTickMarks>
  519.                                 <Style>
  520.                                   <Border>
  521.                                     <Color>Silver</Color>
  522.                                     <Style>Solid</Style>
  523.                                     <Width>0.75pt</Width>
  524.                                   </Border>
  525.                                 </Style>
  526.                               </ChartMajorTickMarks>
  527.                               <ChartMinorTickMarks>
  528.                                 <Length>0.5</Length>
  529.                               </ChartMinorTickMarks>
  530.                               <CrossAt>NaN</CrossAt>
  531.                               <Minimum>NaN</Minimum>
  532.                               <Maximum>NaN</Maximum>
  533.                               <MinFontSize>9pt</MinFontSize>
  534.                             </ChartAxis>
  535.                             <ChartAxis Name="Secondary">
  536.                               <Style>
  537.                                 <FontFamily>Verdana</FontFamily>
  538.                                 <FontSize>9pt</FontSize>
  539.                               </Style>
  540.                               <ChartAxisTitle>
  541.                                 <Caption>Axis Title</Caption>
  542.                                 <Style>
  543.                                   <FontFamily>Verdana</FontFamily>
  544.                                   <FontSize>9pt</FontSize>
  545.                                 </Style>
  546.                               </ChartAxisTitle>
  547.                               <ChartMajorGridLines>
  548.                                 <Enabled>True</Enabled>
  549.                                 <Style>
  550.                                   <Border>
  551.                                     <Color>Silver</Color>
  552.                                     <Style>Solid</Style>
  553.                                     <Width>0.75pt</Width>
  554.                                   </Border>
  555.                                 </Style>
  556.                               </ChartMajorGridLines>
  557.                               <ChartMinorTickMarks>
  558.                                 <Length>0.5</Length>
  559.                               </ChartMinorTickMarks>
  560.                               <CrossAt>NaN</CrossAt>
  561.                               <Location>Opposite</Location>
  562.                               <Minimum>NaN</Minimum>
  563.                               <Maximum>NaN</Maximum>
  564.                             </ChartAxis>
  565.                           </ChartCategoryAxes>
  566.                           <ChartValueAxes>
  567.                             <ChartAxis Name="Primary">
  568.                               <Style>
  569.                                 <Border>
  570.                                   <Color>Silver</Color>
  571.                                   <Style>Solid</Style>
  572.                                   <Width>0.75pt</Width>
  573.                                 </Border>
  574.                                 <FontFamily>Verdana</FontFamily>
  575.                                 <FontSize>9pt</FontSize>
  576.                                 <Color>DarkSlateGray</Color>
  577.                               </Style>
  578.                               <ChartAxisTitle>
  579.                                 <Caption>AXIS Y CAPTION (Total Bytes)</Caption>
  580.                                 <Style>
  581.                                   <FontFamily>Verdana</FontFamily>
  582.                                   <Color>DimGray</Color>
  583.                                 </Style>
  584.                               </ChartAxisTitle>
  585.                               <ChartMajorGridLines>
  586.                                 <Enabled>True</Enabled>
  587.                                 <Style>
  588.                                   <Border>
  589.                                     <Color>Silver</Color>
  590.                                     <Style>Solid</Style>
  591.                                     <Width>0.75pt</Width>
  592.                                   </Border>
  593.                                 </Style>
  594.                               </ChartMajorGridLines>
  595.                               <ChartMajorTickMarks>
  596.                                 <Style>
  597.                                   <Border>
  598.                                     <Color>Silver</Color>
  599.                                     <Style>Solid</Style>
  600.                                     <Width>0.75pt</Width>
  601.                                   </Border>
  602.                                 </Style>
  603.                               </ChartMajorTickMarks>
  604.                               <ChartMinorTickMarks>
  605.                                 <Length>0.5</Length>
  606.                               </ChartMinorTickMarks>
  607.                               <CrossAt>NaN</CrossAt>
  608.                               <Minimum>NaN</Minimum>
  609.                               <Maximum>NaN</Maximum>
  610.                               <MinFontSize>9pt</MinFontSize>
  611.                             </ChartAxis>
  612.                             <ChartAxis Name="Secondary">
  613.                               <Style>
  614.                                 <FontFamily>Verdana</FontFamily>
  615.                                 <FontSize>9pt</FontSize>
  616.                               </Style>
  617.                               <ChartAxisTitle>
  618.                                 <Caption>Axis Title</Caption>
  619.                                 <Style>
  620.                                   <FontFamily>Verdana</FontFamily>
  621.                                   <FontSize>9pt</FontSize>
  622.                                 </Style>
  623.                               </ChartAxisTitle>
  624.                               <ChartMajorGridLines>
  625.                                 <Enabled>True</Enabled>
  626.                                 <Style>
  627.                                   <Border>
  628.                                     <Color>Silver</Color>
  629.                                     <Style>Solid</Style>
  630.                                     <Width>0.75pt</Width>
  631.                                   </Border>
  632.                                 </Style>
  633.                               </ChartMajorGridLines>
  634.                               <ChartMinorTickMarks>
  635.                                 <Length>0.5</Length>
  636.                               </ChartMinorTickMarks>
  637.                               <CrossAt>NaN</CrossAt>
  638.                               <Location>Opposite</Location>
  639.                               <Minimum>NaN</Minimum>
  640.                               <Maximum>NaN</Maximum>
  641.                             </ChartAxis>
  642.                           </ChartValueAxes>
  643.                           <ChartThreeDProperties>
  644.                             <Enabled>true</Enabled>
  645.                             <DepthRatio>120</DepthRatio>
  646.                             <GapDepth>90</GapDepth>
  647.                             <WallThickness>1</WallThickness>
  648.                             <Clustered>true</Clustered>
  649.                           </ChartThreeDProperties>
  650.                           <Style>
  651.                             <Border>
  652.                               <Color>Silver</Color>
  653.                               <Style>None</Style>
  654.                               <Width>0.75pt</Width>
  655.                             </Border>
  656.                             <BackgroundColor>#00ffffff</BackgroundColor>
  657.                             <BackgroundGradientEndColor>#00ffffff</BackgroundGradientEndColor>
  658.                           </Style>
  659.                         </ChartArea>
  660.                       </ChartAreas>
  661.                       <ChartLegends>
  662.                         <ChartLegend Name="Default">
  663.                           <TextWrapThreshold>80</TextWrapThreshold>
  664.                           <Style>
  665.                             <Border>
  666.                               <Color>DimGray</Color>
  667.                               <Style>Solid</Style>
  668.                               <Width>0.75pt</Width>
  669.                             </Border>
  670.                             <BackgroundGradientType>DiagonalLeft</BackgroundGradientType>
  671.                             <BackgroundGradientEndColor>WhiteSmoke</BackgroundGradientEndColor>
  672.                             <FontFamily>Verdana</FontFamily>
  673.                             <FontSize>9pt</FontSize>
  674.                             <Color>DimGray</Color>
  675.                             <ShadowOffset>2pt</ShadowOffset>
  676.                           </Style>
  677.                           <Position>BottomLeft</Position>
  678.                           <Layout>Column</Layout>
  679.                           <DockOutsideChartArea>true</DockOutsideChartArea>
  680.                           <ChartLegendTitle>
  681.                             <Caption />
  682.                             <Style />
  683.                           </ChartLegendTitle>
  684.                           <AutoFitTextDisabled>true</AutoFitTextDisabled>
  685.                           <MinFontSize>9pt</MinFontSize>
  686.                           <MaxAutoSize>80</MaxAutoSize>
  687.                         </ChartLegend>
  688.                       </ChartLegends>
  689.                       <ChartTitles>
  690.                         <ChartTitle Name="Default">
  691.                           <Caption>{[25071]}</Caption>
  692.                           <Style>
  693.                             <BackgroundGradientType>None</BackgroundGradientType>
  694.                             <FontFamily>Verdana</FontFamily>
  695.                             <FontWeight>Bold</FontWeight>
  696.                             <TextAlign>General</TextAlign>
  697.                             <VerticalAlign>Top</VerticalAlign>
  698.                             <Color>DimGray</Color>
  699.                           </Style>
  700.                         </ChartTitle>
  701.                       </ChartTitles>
  702.                       <Palette>SeaGreen</Palette>
  703.                       <ChartBorderSkin>
  704.                         <Style>
  705.                           <BackgroundColor>DimGray</BackgroundColor>
  706.                           <BackgroundGradientType>None</BackgroundGradientType>
  707.                           <Color>White</Color>
  708.                         </Style>
  709.                       </ChartBorderSkin>
  710.                       <ChartNoDataMessage Name="NoDataMessage">
  711.                         <Caption />
  712.                         <Style />
  713.                       </ChartNoDataMessage>
  714.                       <DataSetName>ISARS</DataSetName>
  715.                       <Style>
  716.                         <Border>
  717.                           <Color>DimGray</Color>
  718.                           <Style>Solid</Style>
  719.                           <Width>0.75pt</Width>
  720.                         </Border>
  721.                         <BackgroundColor>White</BackgroundColor>
  722.                         <BackgroundGradientType>None</BackgroundGradientType>
  723.                       </Style>
  724.                     </Chart>
  725.                   </CellContents>
  726.                 </TablixCell>
  727.               </TablixCells>
  728.             </TablixRow>
  729.             <TablixRow>
  730.               <Height>0.25in</Height>
  731.               <TablixCells>
  732.                 <TablixCell>
  733.                   <CellContents>
  734.                     <Textbox Name="emptyTextbox321d68b9d43142e285edee63ea45bacf">
  735.                       <KeepTogether>true</KeepTogether>
  736.                       <Paragraphs>
  737.                         <Paragraph>
  738.                           <TextRuns>
  739.                             <TextRun>
  740.                               <Value />
  741.                               <Style />
  742.                             </TextRun>
  743.                           </TextRuns>
  744.                           <Style />
  745.                         </Paragraph>
  746.                       </Paragraphs>
  747.                       <Style />
  748.                     </Textbox>
  749.                     <ColSpan>1</ColSpan>
  750.                   </CellContents>
  751.                 </TablixCell>
  752.               </TablixCells>
  753.             </TablixRow>
  754.             <TablixRow>
  755.               <Height>0.255in</Height>
  756.               <TablixCells>
  757.                 <TablixCell>
  758.                   <CellContents>
  759.                     <Tablix Name="table1">
  760.                       <DataSetName>ISARS</DataSetName>
  761.                       <Style />
  762.                       <TablixBody>
  763.                         <TablixColumns>
  764.                           <TablixColumn>
  765.                             <Width>6in</Width>
  766.                           </TablixColumn>
  767.                           <TablixColumn>
  768.                             <Width>3in</Width>
  769.                           </TablixColumn>
  770.                           <TablixColumn>
  771.                             <Width>3in</Width>
  772.                           </TablixColumn>
  773.                         </TablixColumns>
  774.                         <TablixRows>
  775.                           <TablixRow>
  776.                             <Height>0.255in</Height>
  777.                             <TablixCells>
  778.                               <TablixCell>
  779.                                 <CellContents>
  780.                                   <Textbox Name="ErrorTypeTitle">
  781.                                     <CanGrow>true</CanGrow>
  782.                                     <KeepTogether>true</KeepTogether>
  783.                                     <Paragraphs>
  784.                                       <Paragraph>
  785.                                         <TextRuns>
  786.                                           <TextRun>
  787.                                             <Value>{[25133]}</Value>
  788.                                             <Style>
  789.                                               <FontFamily>Verdana</FontFamily>
  790.                                               <FontWeight>Bold</FontWeight>
  791.                                               <Color>WhiteSmoke</Color>
  792.                                             </Style>
  793.                                           </TextRun>
  794.                                         </TextRuns>
  795.                                         <Style>
  796.                                           <TextAlign>Center</TextAlign>
  797.                                         </Style>
  798.                                       </Paragraph>
  799.                                     </Paragraphs>
  800.                                     <Style>
  801.                                       <Border>
  802.                                         <Color>DimGray</Color>
  803.                                         <Style>Solid</Style>
  804.                                         <Width>0.5pt</Width>
  805.                                       </Border>
  806.                                       <RightBorder>
  807.                                         <Color>WhiteSmoke</Color>
  808.                                       </RightBorder>
  809.                                       <BackgroundColor>DimGray</BackgroundColor>
  810.                                       <VerticalAlign>Middle</VerticalAlign>
  811.                                       <Color>DimGray</Color>
  812.                                       <PaddingLeft>2pt</PaddingLeft>
  813.                                       <PaddingRight>2pt</PaddingRight>
  814.                                       <PaddingTop>2pt</PaddingTop>
  815.                                       <PaddingBottom>2pt</PaddingBottom>
  816.                                     </Style>
  817.                                     <DataElementOutput>Output</DataElementOutput>
  818.                                     <DataElementStyle>Element</DataElementStyle>
  819.                                     <DataElementName>Column0</DataElementName>
  820.                                   </Textbox>
  821.                                 </CellContents>
  822.                               </TablixCell>
  823.                               <TablixCell>
  824.                                 <CellContents>
  825.                                   <Textbox Name="ErrorsTitle">
  826.                                     <CanGrow>true</CanGrow>
  827.                                     <KeepTogether>true</KeepTogether>
  828.                                     <Paragraphs>
  829.                                       <Paragraph>
  830.                                         <TextRuns>
  831.                                           <TextRun>
  832.                                             <Value>{[25103]}</Value>
  833.                                             <Style>
  834.                                               <FontFamily>Verdana</FontFamily>
  835.                                               <FontWeight>Bold</FontWeight>
  836.                                               <Color>WhiteSmoke</Color>
  837.                                             </Style>
  838.                                           </TextRun>
  839.                                         </TextRuns>
  840.                                         <Style>
  841.                                           <TextAlign>Center</TextAlign>
  842.                                         </Style>
  843.                                       </Paragraph>
  844.                                     </Paragraphs>
  845.                                     <Style>
  846.                                       <Border>
  847.                                         <Color>DimGray</Color>
  848.                                         <Style>Solid</Style>
  849.                                         <Width>0.5pt</Width>
  850.                                       </Border>
  851.                                       <LeftBorder>
  852.                                         <Color>WhiteSmoke</Color>
  853.                                       </LeftBorder>
  854.                                       <RightBorder>
  855.                                         <Color>WhiteSmoke</Color>
  856.                                       </RightBorder>
  857.                                       <BackgroundColor>DimGray</BackgroundColor>
  858.                                       <VerticalAlign>Middle</VerticalAlign>
  859.                                       <Color>DimGray</Color>
  860.                                       <PaddingLeft>2pt</PaddingLeft>
  861.                                       <PaddingRight>2pt</PaddingRight>
  862.                                       <PaddingTop>2pt</PaddingTop>
  863.                                       <PaddingBottom>2pt</PaddingBottom>
  864.                                     </Style>
  865.                                     <DataElementOutput>Output</DataElementOutput>
  866.                                     <DataElementStyle>Element</DataElementStyle>
  867.                                     <DataElementName>Column1</DataElementName>
  868.                                   </Textbox>
  869.                                 </CellContents>
  870.                               </TablixCell>
  871.                               <TablixCell>
  872.                                 <CellContents>
  873.                                   <Textbox Name="PercentageTitle">
  874.                                     <CanGrow>true</CanGrow>
  875.                                     <KeepTogether>true</KeepTogether>
  876.                                     <Paragraphs>
  877.                                       <Paragraph>
  878.                                         <TextRuns>
  879.                                           <TextRun>
  880.                                             <Value>{[25104]}</Value>
  881.                                             <Style>
  882.                                               <FontFamily>Verdana</FontFamily>
  883.                                               <FontWeight>Bold</FontWeight>
  884.                                               <Color>WhiteSmoke</Color>
  885.                                             </Style>
  886.                                           </TextRun>
  887.                                         </TextRuns>
  888.                                         <Style>
  889.                                           <TextAlign>Center</TextAlign>
  890.                                         </Style>
  891.                                       </Paragraph>
  892.                                     </Paragraphs>
  893.                                     <Style>
  894.                                       <Border>
  895.                                         <Color>DimGray</Color>
  896.                                         <Style>Solid</Style>
  897.                                         <Width>0.5pt</Width>
  898.                                       </Border>
  899.                                       <LeftBorder>
  900.                                         <Color>WhiteSmoke</Color>
  901.                                       </LeftBorder>
  902.                                       <BackgroundColor>DimGray</BackgroundColor>
  903.                                       <VerticalAlign>Middle</VerticalAlign>
  904.                                       <Color>DimGray</Color>
  905.                                       <PaddingLeft>2pt</PaddingLeft>
  906.                                       <PaddingRight>2pt</PaddingRight>
  907.                                       <PaddingTop>2pt</PaddingTop>
  908.                                       <PaddingBottom>2pt</PaddingBottom>
  909.                                     </Style>
  910.                                     <DataElementOutput>Output</DataElementOutput>
  911.                                     <DataElementStyle>Element</DataElementStyle>
  912.                                     <DataElementName>Column2</DataElementName>
  913.                                   </Textbox>
  914.                                 </CellContents>
  915.                               </TablixCell>
  916.                             </TablixCells>
  917.                           </TablixRow>
  918.                           <TablixRow>
  919.                             <Height>0.255in</Height>
  920.                             <TablixCells>
  921.                               <TablixCell>
  922.                                 <CellContents>
  923.                                   <Textbox Name="ErrorType">
  924.                                     <CanGrow>true</CanGrow>
  925.                                     <KeepTogether>true</KeepTogether>
  926.                                     <Paragraphs>
  927.                                       <Paragraph>
  928.                                         <TextRuns>
  929.                                           <TextRun>
  930.                                             <Value>=Fields!Response.Value</Value>
  931.                                             <Style>
  932.                                               <FontFamily>Verdana</FontFamily>
  933.                                               <Color>=iif((RowNumber(nothing) Mod 2), "#404040", "#303030")</Color>
  934.                                             </Style>
  935.                                           </TextRun>
  936.                                         </TextRuns>
  937.                                         <Style>
  938.                                         </Style>
  939.                                       </Paragraph>
  940.                                     </Paragraphs>
  941.                                     <Style>
  942.                                       <Border>
  943.                                         <Color>DimGray</Color>
  944.                                         <Style>Solid</Style>
  945.                                         <Width>0.5pt</Width>
  946.                                       </Border>
  947.                                       <BackgroundColor>=iif((RowNumber(nothing) Mod 2), "#ffffff", "#efefef")</BackgroundColor>
  948.                                       <VerticalAlign>Middle</VerticalAlign>
  949.                                       <Color>DimGray</Color>
  950.                                       <PaddingLeft>4pt</PaddingLeft>
  951.                                       <PaddingRight>4pt</PaddingRight>
  952.                                       <PaddingTop>2pt</PaddingTop>
  953.                                       <PaddingBottom>2pt</PaddingBottom>
  954.                                     </Style>
  955.                                     <DataElementOutput>Output</DataElementOutput>
  956.                                     <DataElementStyle>Attribute</DataElementStyle>
  957.                                     <DataElementName>Column0</DataElementName>
  958.                                   </Textbox>
  959.                                 </CellContents>
  960.                               </TablixCell>
  961.                               <TablixCell>
  962.                                 <CellContents>
  963.                                   <Textbox Name="Errors">
  964.                                     <CanGrow>true</CanGrow>
  965.                                     <KeepTogether>true</KeepTogether>
  966.                                     <Paragraphs>
  967.                                       <Paragraph>
  968.                                         <TextRuns>
  969.                                           <TextRun>
  970.                                             <Value>=Fields!Requests.Value</Value>
  971.                                             <Style>
  972.                                               <FontFamily>Verdana</FontFamily>
  973.                                               <Format>n0</Format>
  974.                                               <Color>=iif((RowNumber(nothing) Mod 2), "#404040", "#303030")</Color>
  975.                                             </Style>
  976.                                           </TextRun>
  977.                                         </TextRuns>
  978.                                         <Style>
  979.                                         </Style>
  980.                                       </Paragraph>
  981.                                     </Paragraphs>
  982.                                     <Style>
  983.                                       <Border>
  984.                                         <Color>DimGray</Color>
  985.                                         <Style>Solid</Style>
  986.                                         <Width>0.5pt</Width>
  987.                                       </Border>
  988.                                       <BackgroundColor>=iif((RowNumber(nothing) Mod 2), "#ffffff", "#efefef")</BackgroundColor>
  989.                                       <VerticalAlign>Middle</VerticalAlign>
  990.                                       <Color>DimGray</Color>
  991.                                       <PaddingLeft>4pt</PaddingLeft>
  992.                                       <PaddingRight>4pt</PaddingRight>
  993.                                       <PaddingTop>2pt</PaddingTop>
  994.                                       <PaddingBottom>2pt</PaddingBottom>
  995.                                     </Style>
  996.                                     <DataElementOutput>Output</DataElementOutput>
  997.                                     <DataElementStyle>Attribute</DataElementStyle>
  998.                                     <DataElementName>Column1</DataElementName>
  999.                                   </Textbox>
  1000.                                 </CellContents>
  1001.                               </TablixCell>
  1002.                               <TablixCell>
  1003.                                 <CellContents>
  1004.                                   <Textbox Name="Percentage">
  1005.                                     <CanGrow>true</CanGrow>
  1006.                                     <KeepTogether>true</KeepTogether>
  1007.                                     <Paragraphs>
  1008.                                       <Paragraph>
  1009.                                         <TextRuns>
  1010.                                           <TextRun>
  1011.                                             <Value>=Fields!RequestRatio.Value</Value>
  1012.                                             <Style>
  1013.                                               <FontFamily>Verdana</FontFamily>
  1014.                                               <Format>P</Format>
  1015.                                               <Color>=iif((RowNumber(nothing) Mod 2), "#404040", "#303030")</Color>
  1016.                                             </Style>
  1017.                                           </TextRun>
  1018.                                         </TextRuns>
  1019.                                         <Style>
  1020.                                         </Style>
  1021.                                       </Paragraph>
  1022.                                     </Paragraphs>
  1023.                                     <Style>
  1024.                                       <Border>
  1025.                                         <Color>DimGray</Color>
  1026.                                         <Style>Solid</Style>
  1027.                                         <Width>0.5pt</Width>
  1028.                                       </Border>
  1029.                                       <BackgroundColor>=iif((RowNumber(nothing) Mod 2), "#ffffff", "#efefef")</BackgroundColor>
  1030.                                       <VerticalAlign>Middle</VerticalAlign>
  1031.                                       <Color>DimGray</Color>
  1032.                                       <PaddingLeft>4pt</PaddingLeft>
  1033.                                       <PaddingRight>4pt</PaddingRight>
  1034.                                       <PaddingTop>2pt</PaddingTop>
  1035.                                       <PaddingBottom>2pt</PaddingBottom>
  1036.                                     </Style>
  1037.                                     <DataElementOutput>Output</DataElementOutput>
  1038.                                     <DataElementStyle>Attribute</DataElementStyle>
  1039.                                     <DataElementName>Column2</DataElementName>
  1040.                                   </Textbox>
  1041.                                 </CellContents>
  1042.                               </TablixCell>
  1043.                             </TablixCells>
  1044.                           </TablixRow>
  1045.                           <TablixRow>
  1046.                             <Height>0.255in</Height>
  1047.                             <TablixCells>
  1048.                               <TablixCell>
  1049.                                 <CellContents>
  1050.                                   <Textbox Name="ProtocolFooter">
  1051.                                     <CanGrow>true</CanGrow>
  1052.                                     <KeepTogether>true</KeepTogether>
  1053.                                     <Paragraphs>
  1054.                                       <Paragraph>
  1055.                                         <TextRuns>
  1056.                                           <TextRun>
  1057.                                             <Value>{[23133]}</Value>
  1058.                                             <Style>
  1059.                                               <FontFamily>Verdana</FontFamily>
  1060.                                               <FontWeight>Bold</FontWeight>
  1061.                                               <Color>DimGray</Color>
  1062.                                             </Style>
  1063.                                           </TextRun>
  1064.                                         </TextRuns>
  1065.                                         <Style>
  1066.                                         </Style>
  1067.                                       </Paragraph>
  1068.                                     </Paragraphs>
  1069.                                     <Style>
  1070.                                       <Border>
  1071.                                         <Style>None</Style>
  1072.                                       </Border>
  1073.                                       <TopBorder>
  1074.                                         <Color>DimGray</Color>
  1075.                                         <Style>Solid</Style>
  1076.                                         <Width>0.5pt</Width>
  1077.                                       </TopBorder>
  1078.                                       <BackgroundColor>White</BackgroundColor>
  1079.                                       <VerticalAlign>Middle</VerticalAlign>
  1080.                                       <Color>DimGray</Color>
  1081.                                       <PaddingLeft>4pt</PaddingLeft>
  1082.                                       <PaddingRight>4pt</PaddingRight>
  1083.                                       <PaddingTop>2pt</PaddingTop>
  1084.                                       <PaddingBottom>2pt</PaddingBottom>
  1085.                                     </Style>
  1086.                                     <DataElementOutput>Output</DataElementOutput>
  1087.                                     <DataElementStyle>Element</DataElementStyle>
  1088.                                     <DataElementName>Column0</DataElementName>
  1089.                                   </Textbox>
  1090.                                 </CellContents>
  1091.                               </TablixCell>
  1092.                               <TablixCell>
  1093.                                 <CellContents>
  1094.                                   <Textbox Name="RequestsFooter">
  1095.                                     <CanGrow>true</CanGrow>
  1096.                                     <KeepTogether>true</KeepTogether>
  1097.                                     <Paragraphs>
  1098.                                       <Paragraph>
  1099.                                         <TextRuns>
  1100.                                           <TextRun>
  1101.                                             <Value>=SUM(Fields!Requests.Value)</Value>
  1102.                                             <Style>
  1103.                                               <FontFamily>Verdana</FontFamily>
  1104.                                               <FontWeight>Bold</FontWeight>
  1105.                                               <Format>n0</Format>
  1106.                                               <Color>DimGray</Color>
  1107.                                             </Style>
  1108.                                           </TextRun>
  1109.                                         </TextRuns>
  1110.                                         <Style>
  1111.                                         </Style>
  1112.                                       </Paragraph>
  1113.                                     </Paragraphs>
  1114.                                     <Style>
  1115.                                       <Border>
  1116.                                         <Style>None</Style>
  1117.                                       </Border>
  1118.                                       <TopBorder>
  1119.                                         <Color>DimGray</Color>
  1120.                                         <Style>Solid</Style>
  1121.                                         <Width>0.5pt</Width>
  1122.                                       </TopBorder>
  1123.                                       <BackgroundColor>White</BackgroundColor>
  1124.                                       <VerticalAlign>Middle</VerticalAlign>
  1125.                                       <Color>DimGray</Color>
  1126.                                       <PaddingLeft>4pt</PaddingLeft>
  1127.                                       <PaddingRight>4pt</PaddingRight>
  1128.                                       <PaddingTop>2pt</PaddingTop>
  1129.                                       <PaddingBottom>2pt</PaddingBottom>
  1130.                                     </Style>
  1131.                                     <DataElementOutput>Output</DataElementOutput>
  1132.                                     <DataElementStyle>Element</DataElementStyle>
  1133.                                     <DataElementName>Column1</DataElementName>
  1134.                                   </Textbox>
  1135.                                 </CellContents>
  1136.                               </TablixCell>
  1137.                               <TablixCell>
  1138.                                 <CellContents>
  1139.                                   <Textbox Name="PercentageFooter">
  1140.                                     <CanGrow>true</CanGrow>
  1141.                                     <KeepTogether>true</KeepTogether>
  1142.                                     <Paragraphs>
  1143.                                       <Paragraph>
  1144.                                         <TextRuns>
  1145.                                           <TextRun>
  1146.                                             <Value>=SUM(Fields!RequestRatio.Value)</Value>
  1147.                                             <Style>
  1148.                                               <FontFamily>Verdana</FontFamily>
  1149.                                               <FontWeight>Bold</FontWeight>
  1150.                                               <Format>P</Format>
  1151.                                               <Color>DimGray</Color>
  1152.                                             </Style>
  1153.                                           </TextRun>
  1154.                                         </TextRuns>
  1155.                                         <Style>
  1156.                                         </Style>
  1157.                                       </Paragraph>
  1158.                                     </Paragraphs>
  1159.                                     <Style>
  1160.                                       <Border>
  1161.                                         <Style>None</Style>
  1162.                                       </Border>
  1163.                                       <TopBorder>
  1164.                                         <Color>DimGray</Color>
  1165.                                         <Style>Solid</Style>
  1166.                                         <Width>0.5pt</Width>
  1167.                                       </TopBorder>
  1168.                                       <BackgroundColor>White</BackgroundColor>
  1169.                                       <VerticalAlign>Middle</VerticalAlign>
  1170.                                       <Color>DimGray</Color>
  1171.                                       <PaddingLeft>4pt</PaddingLeft>
  1172.                                       <PaddingRight>4pt</PaddingRight>
  1173.                                       <PaddingTop>2pt</PaddingTop>
  1174.                                       <PaddingBottom>2pt</PaddingBottom>
  1175.                                     </Style>
  1176.                                     <DataElementOutput>Output</DataElementOutput>
  1177.                                     <DataElementStyle>Element</DataElementStyle>
  1178.                                     <DataElementName>Column2</DataElementName>
  1179.                                   </Textbox>
  1180.                                 </CellContents>
  1181.                               </TablixCell>
  1182.                             </TablixCells>
  1183.                           </TablixRow>
  1184.                         </TablixRows>
  1185.                       </TablixBody>
  1186.                       <TablixColumnHierarchy>
  1187.                         <TablixMembers>
  1188.                           <TablixMember />
  1189.                           <TablixMember />
  1190.                           <TablixMember />
  1191.                         </TablixMembers>
  1192.                       </TablixColumnHierarchy>
  1193.                       <TablixRowHierarchy>
  1194.                         <TablixMembers>
  1195.                           <TablixMember>
  1196.                             <DataElementName>Header</DataElementName>
  1197.                             <DataElementOutput>Output</DataElementOutput>
  1198.                             <KeepWithGroup>After</KeepWithGroup>
  1199.                             <KeepTogether>true</KeepTogether>
  1200.                           </TablixMember>
  1201.                           <TablixMember>
  1202.                             <DataElementName>Detail_Collection</DataElementName>
  1203.                             <DataElementOutput>Output</DataElementOutput>
  1204.                             <Group Name="table1_Details_Group">
  1205.                               <DataElementName>Detail</DataElementName>
  1206.                             </Group>
  1207.                             <TablixMembers>
  1208.                               <TablixMember />
  1209.                             </TablixMembers>
  1210.                             <KeepTogether>true</KeepTogether>
  1211.                           </TablixMember>
  1212.                           <TablixMember>
  1213.                             <DataElementName>Total</DataElementName>
  1214.                             <DataElementOutput>Output</DataElementOutput>
  1215.                             <KeepWithGroup>After</KeepWithGroup>
  1216.                             <KeepTogether>true</KeepTogether>
  1217.                           </TablixMember>
  1218.                         </TablixMembers>
  1219.                       </TablixRowHierarchy>
  1220.                     </Tablix>
  1221.                   </CellContents>
  1222.                 </TablixCell>
  1223.               </TablixCells>
  1224.             </TablixRow>
  1225.             <TablixRow>
  1226.               <Height>0.25in</Height>
  1227.               <TablixCells>
  1228.                 <TablixCell>
  1229.                   <CellContents>
  1230.                     <Textbox Name="emptyTextbox134fe0207c4e48919d0aaeecafbc886e">
  1231.                       <KeepTogether>true</KeepTogether>
  1232.                       <Paragraphs>
  1233.                         <Paragraph>
  1234.                           <TextRuns>
  1235.                             <TextRun>
  1236.                               <Value />
  1237.                               <Style />
  1238.                             </TextRun>
  1239.                           </TextRuns>
  1240.                           <Style />
  1241.                         </Paragraph>
  1242.                       </Paragraphs>
  1243.                       <Style />
  1244.                     </Textbox>
  1245.                     <ColSpan>1</ColSpan>
  1246.                   </CellContents>
  1247.                 </TablixCell>
  1248.               </TablixCells>
  1249.             </TablixRow>
  1250.           </TablixRows>
  1251.         </TablixBody>
  1252.         <TablixColumnHierarchy>
  1253.           <TablixMembers>
  1254.             <TablixMember />
  1255.           </TablixMembers>
  1256.         </TablixColumnHierarchy>
  1257.         <TablixRowHierarchy>
  1258.           <TablixMembers>
  1259.             <TablixMember>
  1260.               <KeepTogether>true</KeepTogether>
  1261.             </TablixMember>
  1262.             <TablixMember>
  1263.               <KeepTogether>true</KeepTogether>
  1264.             </TablixMember>
  1265.             <TablixMember>
  1266.               <KeepTogether>true</KeepTogether>
  1267.             </TablixMember>
  1268.             <TablixMember>
  1269.               <KeepTogether>true</KeepTogether>
  1270.             </TablixMember>
  1271.             <TablixMember>
  1272.               <KeepTogether>true</KeepTogether>
  1273.             </TablixMember>
  1274.             <TablixMember>
  1275.               <KeepTogether>true</KeepTogether>
  1276.             </TablixMember>
  1277.             <TablixMember>
  1278.               <KeepTogether>true</KeepTogether>
  1279.             </TablixMember>
  1280.           </TablixMembers>
  1281.         </TablixRowHierarchy>
  1282.       </Tablix>
  1283.     </ReportItems>
  1284.   </Body>
  1285.   <DataSources>
  1286.     <DataSource Name="ISA_RS_Db">
  1287.       <DataSourceReference>ISA_RS_Db</DataSourceReference>
  1288.       <rd:DataSourceID>aa248b64-7a50-47b6-af0d-94b638232c0b</rd:DataSourceID>
  1289.       <rd:SecurityType>None</rd:SecurityType>
  1290.     </DataSource>
  1291.   </DataSources>
  1292. </Report>
  1293.