﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<StiSerializer version="1.02" type="Net" application="StiReport">
  <Dictionary Ref="1" type="Dictionary" isKey="true">
    <BusinessObjects isList="true" count="0" />
    <Databases isList="true" count="1">
      <Connection Ref="2" type="Stimulsoft.Report.Dictionary.StiSqlDatabase" isKey="true">
        <Alias>Connection</Alias>
        <ConnectionString>data source=db_server;UID=db_user;PWD=db_pass;initial catalog=db;  Connect Timeout=100000000</ConnectionString>
        <Name>Connection</Name>
      </Connection>
    </Databases>
    <DataSources isList="true" count="3">
      <usmAdmin Ref="3" type="Stimulsoft.Report.Dictionary.StiSqlSource" isKey="true">
        <Alias>usmAdmin</Alias>
        <Columns isList="true" count="6">
          <value>RayonCode,System.String</value>
          <value>PaymentCode,System.String</value>
          <value>countAmount,System.Int32</value>
          <value>Amount,System.Decimal</value>
          <value>countNotReg,System.Int32</value>
          <value>sumNotReg,System.Decimal</value>
        </Columns>
        <CommandTimeout>300000</CommandTimeout>
        <Dictionary isRef="1" />
        <Name>usmAdmin</Name>
        <NameInSource>Connection</NameInSource>
        <Parameters isList="true" count="4">
          <value>RayonCodeSenderP,RayonCode,22,3</value>
          <value>endDateP,endDate,31,0</value>
          <value>startDateP,startDate,31,0</value>
          <value>CultureID,languageIDVar,8,0</value>
        </Parameters>
        <SqlCommand>DECLARE @s TABLE(PaymentCode VARCHAR(8),ChapterName VARCHAR(255),countAmount INT, Amount DECIMAL(20,5),countNotReg INT, sumNotReg DECIMAL(20,5),RayonCode VARCHAR(3))

INSERT INTO @s
EXEC usmAdministrationReportPayments   @startDateP,@endDateP,@RayonCodeSenderP,@CultureID;


SELECT t.RayonCode, t.PaymentCode,SUM(countAmount) countAmount, SUM(Amount) Amount, SUM(countNotReg) countNotReg, SUM(sumNotReg) sumNotReg FROM @s t

GROUP BY t.RayonCode,
t.PaymentCode</SqlCommand>
      </usmAdmin>
      <RayonStat Ref="4" type="Stimulsoft.Report.Dictionary.StiSqlSource" isKey="true">
        <Alias>RayonStat</Alias>
        <Columns isList="true" count="6">
          <value>CodeValue,System.String</value>
          <value>DisplayText,System.String</value>
          <value>countAmount,System.Int32</value>
          <value>Amount,System.Decimal</value>
          <value>countNotReg,System.Int32</value>
          <value>sumNotReg,System.Decimal</value>
        </Columns>
        <CommandTimeout>30</CommandTimeout>
        <Dictionary isRef="1" />
        <Name>RayonStat</Name>
        <NameInSource>Connection</NameInSource>
        <Parameters isList="true" count="4">
          <value>startDateP,startDate,31,0</value>
          <value>endDateP,endDate,31,0</value>
          <value>RayonCodeSenderP,RayonCode,22,3</value>
          <value>CultureID,languageIDVar,8,0</value>
        </Parameters>
        <SqlCommand>--DECLARE @startDateP DATE = '2012-03-01';
--DECLARE @endDateP DATE = '2012-03-31';
--DECLARE @RayonCodeSenderP VARCHAR(3) = '00_';
--DECLARE @CultureID INT = 1049;

DECLARE @s TABLE(PaymentCode VARCHAR(8),ChapterName VARCHAR(255),countAmount INT, Amount DECIMAL(20,5),countNotReg INT, sumNotReg DECIMAL(20,5),RayonCode VARCHAR(3))

INSERT INTO @s
EXEC usmAdministrationReportPayments   @startDateP,@endDateP,@RayonCodeSenderP,@CultureID;


WITH R AS (	  SELECT '00_' as CodeValue ,'Центральный аппарат' as DisplayText,0 as RowNumber
              UNION ALL
SELECT gch.CodeValue,
	gch.DisplayText,
	ROW_NUMBER() OVER(ORDER BY CURRENT_TIMESTAMP) RowNumber
              FROM   dbo.GetCodeHierarchy(@RayonCodeSenderP, NULL, 15, 1049, ' ') 
                     gch
              WHERE gch.[TYPE] IN (88,89,92)
          ),
Rayons AS (
SELECT *,
	'#' +
	STUFF(
	(   
	SELECT '#' + CONVERT(VARCHAR(50), CodeValue)
						   FROM  dbo.GetCodeHierarchy(r.CodeValue, NULL, 15, 1049, ' ') t2 FOR XML PATH('')
						  
							
					   ),
					   1,
					   1,
					   ''
				   ) + '#' AS CodeWithChilds
			FROM   R r	
	),	
T AS(
		
SELECT * FROM @s s
)



SELECT t.CodeValue,t.DisplayText, SUM(countAmount) countAmount, SUM(Amount) Amount, SUM(countNotReg) countNotReg, SUM(sumNotReg) sumNotReg FROM (
SELECT r.CodeValue,r.DisplayText, t.PaymentCode, ChapterName,SUM(countAmount) countAmount, SUM(Amount) Amount, SUM(countNotReg) countNotReg, SUM(sumNotReg) sumNotReg,r.RowNumber
FROM Rayons r LEFT JOIN T t ON PATINDEX('%#'+ t.RayonCode +'#%', r.CodeWithChilds) &gt; 0
GROUP BY r.CodeValue,r.DisplayText, t.PaymentCode, T.ChapterName, r.RowNumber
--ORDER BY r.RowNumber
) t

GROUP BY t.CodeValue,t.DisplayText,
--t.[Description],
t.RowNumber
ORDER BY t.RowNumber</SqlCommand>
      </RayonStat>
      <admin3 Ref="5" type="DataTableSource" isKey="true">
        <Alias>admin3</Alias>
        <Columns isList="true" count="11">
          <value>PaymentCode,System.String</value>
          <value>ChapterName,System.String</value>
          <value>countAmount,System.Int32</value>
          <value>Amount,System.Decimal</value>
          <value>countNotReg,System.Int32</value>
          <value>sumNotReg,System.Decimal</value>
          <value>RayonCodeSender,System.String</value>
          <value>startDate,,System.DateTime</value>
          <value>endDate,,System.DateTime</value>
          <value>RayonCode,,System.String</value>
          <value>languageIDVar,,System.Int32</value>
        </Columns>
        <Dictionary isRef="1" />
        <Name>admin3</Name>
        <NameInSource>База</NameInSource>
      </admin3>
    </DataSources>
    <Relations isList="true" count="1">
      <un Ref="6" type="DataRelation" isKey="true">
        <Alias>un</Alias>
        <ChildColumns isList="true" count="1">
          <value>RayonCode</value>
        </ChildColumns>
        <ChildSource isRef="3" />
        <Dictionary isRef="1" />
        <Name>un</Name>
        <NameInSource>Связь</NameInSource>
        <ParentColumns isList="true" count="1">
          <value>CodeValue</value>
        </ParentColumns>
        <ParentSource isRef="4" />
      </un>
    </Relations>
    <Report isRef="0" />
    <Variables isList="true" count="4">
      <value>,RayonCode,RayonCode,System.String,_x0030_0_,False,False</value>
      <value>,languageIDVar,languageIDVar,System.Int32,_x0031_049,False,False</value>
      <value>,startDate,startDate,System.DateTime,_x0033__x002F_1_x002F_2012_x0020_12:00:00_x0020_PM,False,False</value>
      <value>,endDate,endDate,System.DateTime,_x0033__x002F_31_x002F_2012_x0020_12:00:00_x0020_PM,False,False</value>
    </Variables>
  </Dictionary>
  <EngineVersion>EngineV2</EngineVersion>
  <GlobalizationStrings isList="true" count="0" />
  <MetaTags isList="true" count="0" />
  <Pages isList="true" count="1">
    <Page1 Ref="7" type="Page" isKey="true">
      <Border>None;Black;2;Solid;False;4;Black</Border>
      <Brush>Transparent</Brush>
      <Components isList="true" count="4">
        <HeaderBand1 Ref="8" type="HeaderBand" isKey="true">
          <Brush>Transparent</Brush>
          <ClientRectangle>0,0.4,28.7,1.9</ClientRectangle>
          <Components isList="true" count="12">
            <Text5 Ref="9" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>0,0,12.8,1.4</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <Guid>a7cfa9b1adbe449995f1f69978db6209</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text5</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>Наименование УГНС,
Код платежа</Text>
              <TextBrush>Black</TextBrush>
              <TextOptions>HotkeyPrefix=None, LineLimit=False, RightToLeft=False, Trimming=None, WordWrap=True, Angle=0, FirstTabOffset=40, DistanceBetweenTabs=20,</TextOptions>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text5>
            <Text6 Ref="10" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>12.8,0,5.2,0.8</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <Guid>dcdafc15f0814157aa24f1c85ab407cc</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text6</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>Всего</Text>
              <TextBrush>Black</TextBrush>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text6>
            <Text23 Ref="11" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>12.8,1.4,2.6,0.5</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,8</Font>
              <Guid>ee2217ee49624f7aa2bbdd6fcb7d8b4f</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text23</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>2</Text>
              <TextBrush>Black</TextBrush>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text23>
            <Text7 Ref="12" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>18,0,5.2,0.8</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <Guid>71d734cdce9e4cacbe1324cc63581d41</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text7</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>Из них дикарей</Text>
              <TextBrush>Black</TextBrush>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text7>
            <Text8 Ref="13" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>18,0.8,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <Guid>2cb753611a524fae8cfb3f21255041d3</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text8</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>Кол-во</Text>
              <TextBrush>Black</TextBrush>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text8>
            <Text9 Ref="14" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>20.6,0.8,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <Guid>4a76679e7ea540ec8c85ecdfbf44483a</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text9</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>Сумма</Text>
              <TextBrush>Black</TextBrush>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text9>
            <Text25 Ref="15" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>15.4,1.4,2.6,0.5</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,8</Font>
              <Guid>043fd424bd74430ebcff3f06ada3d313</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text25</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>3</Text>
              <TextBrush>Black</TextBrush>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text25>
            <Text26 Ref="16" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>18,1.4,2.6,0.5</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,8</Font>
              <Guid>3f94c6525a2a4e03a04dd94353f6403c</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text26</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>4</Text>
              <TextBrush>Black</TextBrush>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text26>
            <Text15 Ref="17" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>20.6,1.4,2.6,0.5</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,8</Font>
              <Guid>7002ee73040341598d4a3381e081adc8</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text15</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>5</Text>
              <TextBrush>Black</TextBrush>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text15>
            <Text16 Ref="18" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>12.8,0.8,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <Guid>c9b6bae536514c8a9a2dc978a50f7489</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text16</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>Кол-во</Text>
              <TextBrush>Black</TextBrush>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text16>
            <Text17 Ref="19" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>15.4,0.8,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <Guid>3c5d191df1bc4e978ec473b93a5c2b6c</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text17</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>Сумма</Text>
              <TextBrush>Black</TextBrush>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text17>
            <Text22 Ref="20" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>0,1.4,12.8,0.5</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,8</Font>
              <Guid>bd9d27df69ba4000a37b4689e090ccfe</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text22</Name>
              <Page isRef="7" />
              <Parent isRef="8" />
              <Text>1</Text>
              <TextBrush>Black</TextBrush>
              <TextOptions>HotkeyPrefix=None, LineLimit=False, RightToLeft=False, Trimming=None, WordWrap=True, Angle=0, FirstTabOffset=40, DistanceBetweenTabs=20,</TextOptions>
              <Type>Expression</Type>
              <VertAlignment>Center</VertAlignment>
            </Text22>
          </Components>
          <Conditions isList="true" count="0" />
          <Name>HeaderBand1</Name>
          <Page isRef="7" />
          <Parent isRef="7" />
          <PrintIfEmpty>True</PrintIfEmpty>
        </HeaderBand1>
        <DataBand2 Ref="21" type="DataBand" isKey="true">
          <Brush>Transparent</Brush>
          <BusinessObjectGuid isNull="true" />
          <ClientRectangle>0,3.1,28.7,0.6</ClientRectangle>
          <Components isList="true" count="5">
            <Text1 Ref="22" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <CanGrow>True</CanGrow>
              <ClientRectangle>0,0,12.8,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <GrowToHeight>True</GrowToHeight>
              <Margins>0,0,0,0</Margins>
              <Name>Text1</Name>
              <Page isRef="7" />
              <Parent isRef="21" />
              <Text>{RayonStat.DisplayText}</Text>
              <TextBrush>Black</TextBrush>
              <TextOptions>HotkeyPrefix=None, LineLimit=False, RightToLeft=False, Trimming=None, WordWrap=True, Angle=0, FirstTabOffset=40, DistanceBetweenTabs=20,</TextOptions>
              <Type>DataColumn</Type>
              <VertAlignment>Center</VertAlignment>
            </Text1>
            <Text2 Ref="23" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <CanGrow>True</CanGrow>
              <ClientRectangle>12.8,0,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <GrowToHeight>True</GrowToHeight>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text2</Name>
              <Page isRef="7" />
              <Parent isRef="21" />
              <Text>{RayonStat.countAmount}</Text>
              <TextBrush>Black</TextBrush>
              <TextOptions>HotkeyPrefix=None, LineLimit=False, RightToLeft=False, Trimming=None, WordWrap=True, Angle=0, FirstTabOffset=40, DistanceBetweenTabs=20,</TextOptions>
              <Type>DataColumn</Type>
              <VertAlignment>Center</VertAlignment>
            </Text2>
            <Text3 Ref="24" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>15.4,0,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text3</Name>
              <Page isRef="7" />
              <Parent isRef="21" />
              <Text>{RayonStat.Amount}</Text>
              <TextBrush>Black</TextBrush>
              <TextFormat Ref="25" type="CustomFormat" isKey="true">
                <StringFormat>n2</StringFormat>
              </TextFormat>
              <Type>DataColumn</Type>
              <VertAlignment>Center</VertAlignment>
            </Text3>
            <Text13 Ref="26" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>18,0,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <Guid>eca66339fdbc4b059a7b7e79c728fa74</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text13</Name>
              <Page isRef="7" />
              <Parent isRef="21" />
              <Text>{RayonStat.countNotReg}</Text>
              <TextBrush>Black</TextBrush>
              <Type>DataColumn</Type>
              <VertAlignment>Center</VertAlignment>
            </Text13>
            <Text18 Ref="27" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <ClientRectangle>20.6,0,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <Guid>31c00c014a984693b2184134720d42e9</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text18</Name>
              <Page isRef="7" />
              <Parent isRef="21" />
              <Text>{RayonStat.sumNotReg}</Text>
              <TextBrush>Black</TextBrush>
              <TextFormat Ref="28" type="CustomFormat" isKey="true">
                <StringFormat>n2</StringFormat>
              </TextFormat>
              <Type>DataColumn</Type>
              <VertAlignment>Center</VertAlignment>
            </Text18>
          </Components>
          <Conditions isList="true" count="0" />
          <DataRelationName isNull="true" />
          <DataSourceName>RayonStat</DataSourceName>
          <Filters isList="true" count="0" />
          <Name>DataBand2</Name>
          <Page isRef="7" />
          <Parent isRef="7" />
          <PrintIfDetailEmpty>True</PrintIfDetailEmpty>
          <Sort isList="true" count="0" />
        </DataBand2>
        <DataBand1 Ref="29" type="DataBand" isKey="true">
          <Brush>Transparent</Brush>
          <BusinessObjectGuid isNull="true" />
          <ClientRectangle>0,4.5,28.7,0.6</ClientRectangle>
          <Components isList="true" count="6">
            <Text4 Ref="30" type="Text" isKey="true">
              <Border>Top, Right, Bottom;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <CanGrow>True</CanGrow>
              <ClientRectangle>0.6,0,12.2,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <GrowToHeight>True</GrowToHeight>
              <Margins>0,0,0,0</Margins>
              <Name>Text4</Name>
              <Page isRef="7" />
              <Parent isRef="29" />
              <Text>{usmAdmin.PaymentCode}</Text>
              <TextBrush>Black</TextBrush>
              <TextOptions>HotkeyPrefix=None, LineLimit=False, RightToLeft=False, Trimming=None, WordWrap=True, Angle=0, FirstTabOffset=40, DistanceBetweenTabs=20,</TextOptions>
              <Type>DataColumn</Type>
              <VertAlignment>Center</VertAlignment>
            </Text4>
            <Text10 Ref="31" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <CanGrow>True</CanGrow>
              <ClientRectangle>12.8,0,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <GrowToHeight>True</GrowToHeight>
              <Guid>20aa4f629b53436586143eb5924c5713</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text10</Name>
              <Page isRef="7" />
              <Parent isRef="29" />
              <Text>{usmAdmin.countAmount}</Text>
              <TextBrush>Black</TextBrush>
              <TextOptions>HotkeyPrefix=None, LineLimit=False, RightToLeft=False, Trimming=None, WordWrap=True, Angle=0, FirstTabOffset=40, DistanceBetweenTabs=20,</TextOptions>
              <Type>DataColumn</Type>
              <VertAlignment>Center</VertAlignment>
            </Text10>
            <Text11 Ref="32" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <CanGrow>True</CanGrow>
              <ClientRectangle>15.4,0,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <GrowToHeight>True</GrowToHeight>
              <Guid>6f5cbdb055924349a32bbbdd7faf079b</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text11</Name>
              <Page isRef="7" />
              <Parent isRef="29" />
              <Text>{usmAdmin.Amount}</Text>
              <TextBrush>Black</TextBrush>
              <TextFormat Ref="33" type="CustomFormat" isKey="true">
                <StringFormat>n2</StringFormat>
              </TextFormat>
              <TextOptions>HotkeyPrefix=None, LineLimit=False, RightToLeft=False, Trimming=None, WordWrap=True, Angle=0, FirstTabOffset=40, DistanceBetweenTabs=20,</TextOptions>
              <Type>DataColumn</Type>
              <VertAlignment>Center</VertAlignment>
            </Text11>
            <Text12 Ref="34" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <CanGrow>True</CanGrow>
              <ClientRectangle>18,0,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <GrowToHeight>True</GrowToHeight>
              <Guid>a3df48949f2440938e4227af7c542a76</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text12</Name>
              <Page isRef="7" />
              <Parent isRef="29" />
              <Text>{usmAdmin.countNotReg}</Text>
              <TextBrush>Black</TextBrush>
              <TextOptions>HotkeyPrefix=None, LineLimit=False, RightToLeft=False, Trimming=None, WordWrap=True, Angle=0, FirstTabOffset=40, DistanceBetweenTabs=20,</TextOptions>
              <Type>DataColumn</Type>
              <VertAlignment>Center</VertAlignment>
            </Text12>
            <Text14 Ref="35" type="Text" isKey="true">
              <Border>Top, Left, Bottom;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <CanGrow>True</CanGrow>
              <ClientRectangle>0,0,0.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <GrowToHeight>True</GrowToHeight>
              <Margins>0,0,0,0</Margins>
              <Name>Text14</Name>
              <Page isRef="7" />
              <Parent isRef="29" />
              <TextBrush>Black</TextBrush>
              <TextOptions>HotkeyPrefix=None, LineLimit=False, RightToLeft=False, Trimming=None, WordWrap=True, Angle=0, FirstTabOffset=40, DistanceBetweenTabs=20,</TextOptions>
            </Text14>
            <Text19 Ref="36" type="Text" isKey="true">
              <Border>All;Black;1;Solid;False;4;Black</Border>
              <Brush>Transparent</Brush>
              <CanGrow>True</CanGrow>
              <ClientRectangle>20.6,0,2.6,0.6</ClientRectangle>
              <Conditions isList="true" count="0" />
              <Font>Arial,9</Font>
              <GrowToHeight>True</GrowToHeight>
              <Guid>770d523d9d8545b883d30c62686a24b5</Guid>
              <HorAlignment>Center</HorAlignment>
              <Margins>0,0,0,0</Margins>
              <Name>Text19</Name>
              <Page isRef="7" />
              <Parent isRef="29" />
              <Text>{usmAdmin.sumNotReg}</Text>
              <TextBrush>Black</TextBrush>
              <TextFormat Ref="37" type="CustomFormat" isKey="true">
                <StringFormat>n2</StringFormat>
              </TextFormat>
              <TextOptions>HotkeyPrefix=None, LineLimit=False, RightToLeft=False, Trimming=None, WordWrap=True, Angle=0, FirstTabOffset=40, DistanceBetweenTabs=20,</TextOptions>
              <Type>DataColumn</Type>
              <VertAlignment>Center</VertAlignment>
            </Text19>
          </Components>
          <Conditions isList="true" count="0" />
          <DataRelationName>Связь</DataRelationName>
          <DataSourceName>usmAdmin</DataSourceName>
          <Filters isList="true" count="0" />
          <MasterComponent isRef="21" />
          <Name>DataBand1</Name>
          <Page isRef="7" />
          <Parent isRef="7" />
          <Sort isList="true" count="0" />
        </DataBand1>
        <FooterTextReserved0 Ref="38" type="Text" isKey="true">
          <Border>None;[193:152:89];1;Solid;False;4;Black</Border>
          <Brush>Transparent</Brush>
          <ClientRectangle>28.7,16.69,0.38,2.79</ClientRectangle>
          <Conditions isList="true" count="0" />
          <Font>Times New Roman,9</Font>
          <Margins>0,0,0,0</Margins>
          <Name>FooterTextReserved0</Name>
          <Page isRef="7" />
          <Parent isRef="7" />
          <Text>12.07.2012 10:56:20</Text>
          <TextBrush>Black</TextBrush>
          <TextOptions>HotkeyPrefix=None, LineLimit=False, RightToLeft=False, Trimming=None, WordWrap=False, Angle=90, FirstTabOffset=40, DistanceBetweenTabs=20,</TextOptions>
        </FooterTextReserved0>
      </Components>
      <Conditions isList="true" count="0" />
      <Guid>37131552c93c4ddebfab7774dd373a03</Guid>
      <LargeHeight>True</LargeHeight>
      <Margins>0.5,0.5,0.5,0.5</Margins>
      <Name>Page1</Name>
      <Orientation>Landscape</Orientation>
      <PageHeight>21</PageHeight>
      <PageWidth>29.7</PageWidth>
      <Report isRef="0" />
      <Watermark Ref="39" type="Stimulsoft.Report.Components.StiWatermark" isKey="true">
        <Font>Arial,100</Font>
        <TextBrush>[50:0:0:0]</TextBrush>
      </Watermark>
    </Page1>
  </Pages>
  <PrinterSettings Ref="40" type="Stimulsoft.Report.Print.StiPrinterSettings" isKey="true" />
  <ReferencedAssemblies isList="true" count="8">
    <value>System.Dll</value>
    <value>System.Drawing.Dll</value>
    <value>System.Windows.Forms.Dll</value>
    <value>System.Data.Dll</value>
    <value>System.Xml.Dll</value>
    <value>Stimulsoft.Controls.Dll</value>
    <value>Stimulsoft.Base.Dll</value>
    <value>Stimulsoft.Report.Dll</value>
  </ReferencedAssemblies>
  <ReportAlias>Report</ReportAlias>
  <ReportChanged>7/12/2012 10:48:41 AM</ReportChanged>
  <ReportCreated>9/19/2011 2:06:23 PM</ReportCreated>
  <ReportFile>C:\Users\User\Desktop\for support.mrt</ReportFile>
  <ReportGuid>82c75e443e3a44478d7b2b16cb13f789</ReportGuid>
  <ReportName>Report</ReportName>
  <ReportUnit>Centimeters</ReportUnit>
  <ReportVersion>2012.1.1300</ReportVersion>
  <Script>using System;
using System.Drawing;
using System.Windows.Forms;
using System.Data;
using Stimulsoft.Controls;
using Stimulsoft.Base.Drawing;
using Stimulsoft.Report;
using Stimulsoft.Report.Dialogs;
using Stimulsoft.Report.Components;

namespace Reports
{
    public class Report : Stimulsoft.Report.StiReport
    {
        public Report()        {
            this.InitializeComponent();
        }

        #region StiReport Designer generated code - do not modify
        public Stimulsoft.Report.Dictionary.StiDataRelation Parentun2;
        public Stimulsoft.Report.Dictionary.StiDataRelation Parentun1;
        public DateTime reciveDateVar;
        public string rayonCodeVar;
        public int languageIDVar;
        public int diopVar;
        public Stimulsoft.Report.Components.StiPage Page1;
        public Stimulsoft.Report.Components.StiReportTitleBand ReportTitleBand1;
        public Stimulsoft.Report.Components.StiText Text1;
        public Stimulsoft.Report.Components.StiText Text2;
        public Stimulsoft.Report.Components.StiText Text3;
        public Stimulsoft.Report.Components.StiText Text268;
        public Stimulsoft.Report.Components.StiHeaderBand HeaderBand1;
        public Stimulsoft.Report.Components.StiText Text4;
        public Stimulsoft.Report.Components.StiText Text5;
        public Stimulsoft.Report.Components.StiText Text6;
        public Stimulsoft.Report.Components.StiText Text21;
        public Stimulsoft.Report.Components.StiText Text22;
        public Stimulsoft.Report.Components.StiText Text23;
        public Stimulsoft.Report.Components.StiText Text7;
        public Stimulsoft.Report.Components.StiText Text8;
        public Stimulsoft.Report.Components.StiText Text9;
        public Stimulsoft.Report.Components.StiText Text10;
        public Stimulsoft.Report.Components.StiText Text11;
        public Stimulsoft.Report.Components.StiText Text12;
        public Stimulsoft.Report.Components.StiText Text13;
        public Stimulsoft.Report.Components.StiText Text14;
        public Stimulsoft.Report.Components.StiText Text15;
        public Stimulsoft.Report.Components.StiText Text16;
        public Stimulsoft.Report.Components.StiText Text17;
        public Stimulsoft.Report.Components.StiText Text18;
        public Stimulsoft.Report.Components.StiText Text19;
        public Stimulsoft.Report.Components.StiText Text20;
        public Stimulsoft.Report.Components.StiText Text24;
        public Stimulsoft.Report.Components.StiText Text25;
        public Stimulsoft.Report.Components.StiText Text26;
        public Stimulsoft.Report.Components.StiText Text27;
        public Stimulsoft.Report.Components.StiText Text28;
        public Stimulsoft.Report.Components.StiText Text29;
        public Stimulsoft.Report.Components.StiText Text30;
        public Stimulsoft.Report.Components.StiText Text31;
        public Stimulsoft.Report.Components.StiText Text32;
        public Stimulsoft.Report.Components.StiText Text33;
        public Stimulsoft.Report.Components.StiText Text34;
        public Stimulsoft.Report.Components.StiText Text35;
        public Stimulsoft.Report.Components.StiText Text36;
        public Stimulsoft.Report.Components.StiText Text37;
        public Stimulsoft.Report.Components.StiGroupHeaderBand GroupHeaderBand1;
        public Stimulsoft.Report.Components.StiText Text110;
        public Stimulsoft.Report.Components.StiGroupHeaderBand GroupHeaderBand2;
        public Stimulsoft.Report.Components.StiText Text38;
        public Stimulsoft.Report.Components.StiDataBand DataBand2;
        public Stimulsoft.Report.Components.StiText Text39;
        public Stimulsoft.Report.Components.StiText Text391;
        public Stimulsoft.Report.Components.StiText Text40;
        public Stimulsoft.Report.Components.StiText Text41;
        public Stimulsoft.Report.Components.StiText Text42;
        public Stimulsoft.Report.Components.StiText Text43;
        public Stimulsoft.Report.Components.StiText Text44;
        public Stimulsoft.Report.Components.StiText Text45;
        public Stimulsoft.Report.Components.StiText Text46;
        public Stimulsoft.Report.Components.StiText Text47;
        public Stimulsoft.Report.Components.StiText Text48;
        public Stimulsoft.Report.Components.StiText Text49;
        public Stimulsoft.Report.Components.StiText Text50;
        public Stimulsoft.Report.Components.StiText Text51;
        public Stimulsoft.Report.Components.StiText Text52;
        public Stimulsoft.Report.Components.StiText Text53;
        public Stimulsoft.Report.Components.StiText Text54;
        public Stimulsoft.Report.Components.StiText Text55;
        public Stimulsoft.Report.Components.StiText Text56;
        public Stimulsoft.Report.Components.StiText Text57;
        public Stimulsoft.Report.Components.StiText Text58;
        public Stimulsoft.Report.Components.StiText Text59;
        public Stimulsoft.Report.Components.StiText Text60;
        public Stimulsoft.Report.Components.StiText Text61;
        public Stimulsoft.Report.Components.StiText Text62;
        public Stimulsoft.Report.Components.StiText Text63;
        public Stimulsoft.Report.Components.StiText Text64;
        public Stimulsoft.Report.Components.StiText Text65;
        public Stimulsoft.Report.Components.StiText Text66;
        public Stimulsoft.Report.Components.StiText Text67;
        public Stimulsoft.Report.Components.StiText Text68;
        public Stimulsoft.Report.Components.StiText Text69;
        public Stimulsoft.Report.Components.StiText Text70;
        public Stimulsoft.Report.Components.StiText Text71;
        public Stimulsoft.Report.Components.StiText Text72;
        public Stimulsoft.Report.Components.StiText Text73;
        public Stimulsoft.Report.Components.StiText Text74;
        public Stimulsoft.Report.Components.StiText Text75;
        public Stimulsoft.Report.Components.StiText Text76;
        public Stimulsoft.Report.Components.StiText Text77;
        public Stimulsoft.Report.Components.StiText Text78;
        public Stimulsoft.Report.Components.StiText Text79;
        public Stimulsoft.Report.Components.StiText Text80;
        public Stimulsoft.Report.Components.StiText Text81;
        public Stimulsoft.Report.Components.StiText Text82;
        public Stimulsoft.Report.Components.StiText Text83;
        public Stimulsoft.Report.Components.StiText Text84;
        public Stimulsoft.Report.Components.StiText Text85;
        public Stimulsoft.Report.Components.StiText Text86;
        public Stimulsoft.Report.Components.StiText Text87;
        public Stimulsoft.Report.Components.StiText Text88;
        public Stimulsoft.Report.Components.StiText Text89;
        public Stimulsoft.Report.Components.StiText Text90;
        public Stimulsoft.Report.Components.StiText Text91;
        public Stimulsoft.Report.Components.StiText Text92;
        public Stimulsoft.Report.Components.StiText Text93;
        public Stimulsoft.Report.Components.StiText Text94;
        public Stimulsoft.Report.Components.StiText Text95;
        public Stimulsoft.Report.Components.StiText Text96;
        public Stimulsoft.Report.Components.StiGroupFooterBand GroupFooterBand1;
        public Stimulsoft.Report.Components.StiText Text200;
        public Stimulsoft.Report.Components.StiText Text98;
        public Stimulsoft.Report.Components.StiText Text99;
        public Stimulsoft.Report.Components.StiText Text100;
        public Stimulsoft.Report.Components.StiText Text101;
        public Stimulsoft.Report.Components.StiText Text102;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text102_Sum;
        public Stimulsoft.Report.Components.StiText Text103;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text103_Sum;
        public Stimulsoft.Report.Components.StiText Text104;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text104_Sum;
        public Stimulsoft.Report.Components.StiText Text105;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text105_Sum;
        public Stimulsoft.Report.Components.StiText Text106;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text106_Sum;
        public Stimulsoft.Report.Components.StiText Text107;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text107_Sum;
        public Stimulsoft.Report.Components.StiText Text108;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text108_Sum;
        public Stimulsoft.Report.Components.StiText Text109;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text109_Sum;
        public Stimulsoft.Report.Components.StiText Text111;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text111_Sum;
        public Stimulsoft.Report.Components.StiText Text112;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text112_Sum;
        public Stimulsoft.Report.Components.StiText Text113;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text113_Sum;
        public Stimulsoft.Report.Components.StiText Text114;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text114_Sum;
        public Stimulsoft.Report.Components.StiText Text115;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text115_Sum;
        public Stimulsoft.Report.Components.StiText Text116;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text116_Sum;
        public Stimulsoft.Report.Components.StiText Text117;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text117_Sum;
        public Stimulsoft.Report.Components.StiText Text118;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text118_Sum;
        public Stimulsoft.Report.Components.StiText Text119;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text119_Sum;
        public Stimulsoft.Report.Components.StiText Text120;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text120_Sum;
        public Stimulsoft.Report.Components.StiText Text121;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text121_Sum;
        public Stimulsoft.Report.Components.StiText Text122;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text122_Sum;
        public Stimulsoft.Report.Components.StiText Text123;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text123_Sum;
        public Stimulsoft.Report.Components.StiText Text124;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text124_Sum;
        public Stimulsoft.Report.Components.StiText Text125;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text125_Sum;
        public Stimulsoft.Report.Components.StiText Text126;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text126_Sum;
        public Stimulsoft.Report.Components.StiText Text127;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text127_Sum;
        public Stimulsoft.Report.Components.StiText Text128;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text128_Sum;
        public Stimulsoft.Report.Components.StiText Text129;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text129_Sum;
        public Stimulsoft.Report.Components.StiText Text130;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text130_Sum;
        public Stimulsoft.Report.Components.StiText Text131;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text131_Sum;
        public Stimulsoft.Report.Components.StiText Text132;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text132_Sum;
        public Stimulsoft.Report.Components.StiText Text133;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text133_Sum;
        public Stimulsoft.Report.Components.StiText Text134;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text134_Sum;
        public Stimulsoft.Report.Components.StiText Text135;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text135_Sum;
        public Stimulsoft.Report.Components.StiText Text136;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text136_Sum;
        public Stimulsoft.Report.Components.StiText Text137;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text137_Sum;
        public Stimulsoft.Report.Components.StiText Text138;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text138_Sum;
        public Stimulsoft.Report.Components.StiText Text139;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text139_Sum;
        public Stimulsoft.Report.Components.StiText Text140;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text140_Sum;
        public Stimulsoft.Report.Components.StiText Text141;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text141_Sum;
        public Stimulsoft.Report.Components.StiText Text142;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text142_Sum;
        public Stimulsoft.Report.Components.StiText Text143;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text143_Sum;
        public Stimulsoft.Report.Components.StiText Text144;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text144_Sum;
        public Stimulsoft.Report.Components.StiText Text145;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text145_Sum;
        public Stimulsoft.Report.Components.StiText Text146;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text146_Sum;
        public Stimulsoft.Report.Components.StiText Text147;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text147_Sum;
        public Stimulsoft.Report.Components.StiText Text148;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text148_Sum;
        public Stimulsoft.Report.Components.StiText Text149;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text149_Sum;
        public Stimulsoft.Report.Components.StiText Text150;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text150_Sum;
        public Stimulsoft.Report.Components.StiText Text151;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text151_Sum;
        public Stimulsoft.Report.Components.StiText Text152;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text152_Sum;
        public Stimulsoft.Report.Components.StiText Text153;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text153_Sum;
        public Stimulsoft.Report.Components.StiText Text154;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text154_Sum;
        public Stimulsoft.Report.Components.StiGroupFooterBand GroupFooterBand2;
        public Stimulsoft.Report.Components.StiText Text272;
        public Stimulsoft.Report.Components.StiText Text155;
        public Stimulsoft.Report.Components.StiText Text156;
        public Stimulsoft.Report.Components.StiText Text157;
        public Stimulsoft.Report.Components.StiText Text158;
        public Stimulsoft.Report.Components.StiText Text159;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text159_Sum;
        public Stimulsoft.Report.Components.StiText Text160;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text160_Sum;
        public Stimulsoft.Report.Components.StiText Text161;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text161_Sum;
        public Stimulsoft.Report.Components.StiText Text162;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text162_Sum;
        public Stimulsoft.Report.Components.StiText Text163;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text163_Sum;
        public Stimulsoft.Report.Components.StiText Text164;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text164_Sum;
        public Stimulsoft.Report.Components.StiText Text165;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text165_Sum;
        public Stimulsoft.Report.Components.StiText Text166;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text166_Sum;
        public Stimulsoft.Report.Components.StiText Text167;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text167_Sum;
        public Stimulsoft.Report.Components.StiText Text168;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text168_Sum;
        public Stimulsoft.Report.Components.StiText Text169;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text169_Sum;
        public Stimulsoft.Report.Components.StiText Text170;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text170_Sum;
        public Stimulsoft.Report.Components.StiText Text171;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text171_Sum;
        public Stimulsoft.Report.Components.StiText Text172;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text172_Sum;
        public Stimulsoft.Report.Components.StiText Text173;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text173_Sum;
        public Stimulsoft.Report.Components.StiText Text174;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text174_Sum;
        public Stimulsoft.Report.Components.StiText Text175;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text175_Sum;
        public Stimulsoft.Report.Components.StiText Text176;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text176_Sum;
        public Stimulsoft.Report.Components.StiText Text177;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text177_Sum;
        public Stimulsoft.Report.Components.StiText Text178;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text178_Sum;
        public Stimulsoft.Report.Components.StiText Text179;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text179_Sum;
        public Stimulsoft.Report.Components.StiText Text180;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text180_Sum;
        public Stimulsoft.Report.Components.StiText Text181;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text181_Sum;
        public Stimulsoft.Report.Components.StiText Text182;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text182_Sum;
        public Stimulsoft.Report.Components.StiText Text183;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text183_Sum;
        public Stimulsoft.Report.Components.StiText Text184;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text184_Sum;
        public Stimulsoft.Report.Components.StiText Text185;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text185_Sum;
        public Stimulsoft.Report.Components.StiText Text186;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text186_Sum;
        public Stimulsoft.Report.Components.StiText Text187;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text187_Sum;
        public Stimulsoft.Report.Components.StiText Text188;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text188_Sum;
        public Stimulsoft.Report.Components.StiText Text189;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text189_Sum;
        public Stimulsoft.Report.Components.StiText Text190;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text190_Sum;
        public Stimulsoft.Report.Components.StiText Text191;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text191_Sum;
        public Stimulsoft.Report.Components.StiText Text192;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text192_Sum;
        public Stimulsoft.Report.Components.StiText Text193;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text193_Sum;
        public Stimulsoft.Report.Components.StiText Text194;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text194_Sum;
        public Stimulsoft.Report.Components.StiText Text195;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text195_Sum;
        public Stimulsoft.Report.Components.StiText Text196;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text196_Sum;
        public Stimulsoft.Report.Components.StiText Text197;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text197_Sum;
        public Stimulsoft.Report.Components.StiText Text198;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text198_Sum;
        public Stimulsoft.Report.Components.StiText Text199;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text199_Sum;
        public Stimulsoft.Report.Components.StiText Text201;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text201_Sum;
        public Stimulsoft.Report.Components.StiText Text202;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text202_Sum;
        public Stimulsoft.Report.Components.StiText Text203;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text203_Sum;
        public Stimulsoft.Report.Components.StiText Text208;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text208_Sum;
        public Stimulsoft.Report.Components.StiText Text209;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text209_Sum;
        public Stimulsoft.Report.Components.StiText Text210;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text210_Sum;
        public Stimulsoft.Report.Components.StiText Text211;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text211_Sum;
        public Stimulsoft.Report.Components.StiText Text204;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text204_Sum;
        public Stimulsoft.Report.Components.StiText Text205;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text205_Sum;
        public Stimulsoft.Report.Components.StiText Text206;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text206_Sum;
        public Stimulsoft.Report.Components.StiText Text207;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text207_Sum;
        public Stimulsoft.Report.Components.StiReportSummaryBand ReportSummaryBand2;
        public Stimulsoft.Report.Components.StiText Text273;
        public Stimulsoft.Report.Components.StiText Text212;
        public Stimulsoft.Report.Components.StiText Text213;
        public Stimulsoft.Report.Components.StiText Text214;
        public Stimulsoft.Report.Components.StiText Text215;
        public Stimulsoft.Report.Components.StiText Text216;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text216_Sum;
        public Stimulsoft.Report.Components.StiText Text217;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text217_Sum;
        public Stimulsoft.Report.Components.StiText Text218;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text218_Sum;
        public Stimulsoft.Report.Components.StiText Text219;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text219_Sum;
        public Stimulsoft.Report.Components.StiText Text220;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text220_Sum;
        public Stimulsoft.Report.Components.StiText Text221;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text221_Sum;
        public Stimulsoft.Report.Components.StiText Text222;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text222_Sum;
        public Stimulsoft.Report.Components.StiText Text223;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text223_Sum;
        public Stimulsoft.Report.Components.StiText Text224;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text224_Sum;
        public Stimulsoft.Report.Components.StiText Text225;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text225_Sum;
        public Stimulsoft.Report.Components.StiText Text226;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text226_Sum;
        public Stimulsoft.Report.Components.StiText Text227;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text227_Sum;
        public Stimulsoft.Report.Components.StiText Text228;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text228_Sum;
        public Stimulsoft.Report.Components.StiText Text229;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text229_Sum;
        public Stimulsoft.Report.Components.StiText Text230;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text230_Sum;
        public Stimulsoft.Report.Components.StiText Text231;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text231_Sum;
        public Stimulsoft.Report.Components.StiText Text232;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text232_Sum;
        public Stimulsoft.Report.Components.StiText Text233;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text233_Sum;
        public Stimulsoft.Report.Components.StiText Text234;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text234_Sum;
        public Stimulsoft.Report.Components.StiText Text235;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text235_Sum;
        public Stimulsoft.Report.Components.StiText Text236;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text236_Sum;
        public Stimulsoft.Report.Components.StiText Text237;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text237_Sum;
        public Stimulsoft.Report.Components.StiText Text238;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text238_Sum;
        public Stimulsoft.Report.Components.StiText Text239;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text239_Sum;
        public Stimulsoft.Report.Components.StiText Text240;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text240_Sum;
        public Stimulsoft.Report.Components.StiText Text241;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text241_Sum;
        public Stimulsoft.Report.Components.StiText Text242;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text242_Sum;
        public Stimulsoft.Report.Components.StiText Text243;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text243_Sum;
        public Stimulsoft.Report.Components.StiText Text244;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text244_Sum;
        public Stimulsoft.Report.Components.StiText Text245;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text245_Sum;
        public Stimulsoft.Report.Components.StiText Text246;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text246_Sum;
        public Stimulsoft.Report.Components.StiText Text247;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text247_Sum;
        public Stimulsoft.Report.Components.StiText Text248;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text248_Sum;
        public Stimulsoft.Report.Components.StiText Text249;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text249_Sum;
        public Stimulsoft.Report.Components.StiText Text250;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text250_Sum;
        public Stimulsoft.Report.Components.StiText Text251;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text251_Sum;
        public Stimulsoft.Report.Components.StiText Text252;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text252_Sum;
        public Stimulsoft.Report.Components.StiText Text253;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text253_Sum;
        public Stimulsoft.Report.Components.StiText Text254;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text254_Sum;
        public Stimulsoft.Report.Components.StiText Text255;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text255_Sum;
        public Stimulsoft.Report.Components.StiText Text256;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text256_Sum;
        public Stimulsoft.Report.Components.StiText Text257;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text257_Sum;
        public Stimulsoft.Report.Components.StiText Text258;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text258_Sum;
        public Stimulsoft.Report.Components.StiText Text259;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text259_Sum;
        public Stimulsoft.Report.Components.StiText Text264;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text264_Sum;
        public Stimulsoft.Report.Components.StiText Text265;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text265_Sum;
        public Stimulsoft.Report.Components.StiText Text266;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text266_Sum;
        public Stimulsoft.Report.Components.StiText Text267;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text267_Sum;
        public Stimulsoft.Report.Components.StiText Text260;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text260_Sum;
        public Stimulsoft.Report.Components.StiText Text261;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text261_Sum;
        public Stimulsoft.Report.Components.StiText Text262;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text262_Sum;
        public Stimulsoft.Report.Components.StiText Text263;
        public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text263_Sum;
        public Stimulsoft.Report.Components.StiReportSummaryBand ReportSummaryBand1;
        public Stimulsoft.Report.Components.StiText Text97;
        public Stimulsoft.Report.Components.StiWatermark Page1_Watermark;
        public Stimulsoft.Report.Print.StiPrinterSettings Report_PrinterSettings;
        public usm7HSelectDataSource usm7HSelect;
        public RayonNameDataSource RayonName;
        public oblDataSource obl;
        public rayonDataSource rayon;
        
        public void Text1__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Отчет\r\nо налоговой задолженности, превышении и излишне уплаченных суммах налогов\r" +
"\nпо состоянию на " + ToString(sender, Format("{0:dd.MM.yyyy} г.", reciveDateVar), true) + " по " + ToString(sender, RayonName.RayonName, true);
        }
        
        public void Text2__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Утверждено приказом ГНС при ПКР\r\nот _______________ 2010 года №";
        }
        
        public void Text3__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "форма № 7-H";
        }
        
        public void Text268__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "(в тыс. сом)";
        }
        
        public void Text4__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "№";
        }
        
        public void Text5__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "ИНН";
        }
        
        public void Text6__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Наименование\r\nплательщика";
        }
        
        public void Text21__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "1";
        }
        
        public void Text22__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "2";
        }
        
        public void Text23__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "3";
        }
        
        public void Text8__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Подоход.\r\nналог";
        }
        
        public void Text9__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Налог на\r\nприбыль";
        }
        
        public void Text10__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "НДС";
        }
        
        public void Text11__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Акциз";
        }
        
        public void Text12__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Земельный\r\nналог";
        }
        
        public void Text13__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Налог на \r\nимущество";
        }
        
        public void Text14__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "ФЧС";
        }
        
        public void Text15__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Налог за\r\nа/д";
        }
        
        public void Text16__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Налог за\r\nнедра";
        }
        
        public void Text17__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Налог с\r\nпродаж";
        }
        
        public void Text18__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Налог\r\nна спец-\r\nсредства";
        }
        
        public void Text19__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Прочие";
        }
        
        public void Text20__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Всего";
        }
        
        public void Text25__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "4";
        }
        
        public void Text26__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "5";
        }
        
        public void Text27__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "6";
        }
        
        public void Text28__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "7";
        }
        
        public void Text29__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "8";
        }
        
        public void Text30__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "9";
        }
        
        public void Text31__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "10";
        }
        
        public void Text32__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "11";
        }
        
        public void Text33__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "12";
        }
        
        public void Text34__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "13";
        }
        
        public void Text35__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "14";
        }
        
        public void Text36__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "15";
        }
        
        public void Text37__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "16";
        }
        
        public void GroupHeaderBand1__GetValue(object sender, Stimulsoft.Report.Events.StiValueEventArgs e)
        {
            e.Value = usm7HSelect.un2.un1.DecodeNameScreen;
        }
        
        private void GroupHeaderBand1_Conditions(object sender, System.EventArgs e)
        {
            if (Stimulsoft.Report.Dictionary.StiFunctionsPrintState.IsNull(obl,"CodeID")==true)
            {
                ((Stimulsoft.Report.Components.IStiBrush)(sender)).Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
                ((Stimulsoft.Report.Components.StiComponent)(sender)).Enabled = false;
                return;
            }
        }
        
        public void Text110__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, usm7HSelect.un2.un1.DecodeNameScreen, true);
        }
        
        public void GroupHeaderBand2__GetValue(object sender, Stimulsoft.Report.Events.StiValueEventArgs e)
        {
            e.Value = usm7HSelect.un2.DecodeNameScreen;
        }
        
        public void Text38__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, usm7HSelect.un2.DecodeNameScreen, true);
        }
        
        public void Text39__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, LineThrough, true);
        }
        
        public void Text391__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, usm7HSelect.TIN, true);
        }
        
        public void Text40__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, usm7HSelect.ShortName, true);
        }
        
        public void Text41__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Н";
        }
        
        public void Text42__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "П";
        }
        
        public void Text43__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Пеня";
        }
        
        public void Text44__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Н/С";
        }
        
        private void Text45_Conditions(object sender, System.EventArgs e)
        {
            if (usm7HSelect.c4_1_2== (decimal?)null)
            {
                ((Stimulsoft.Report.Components.IStiTextBrush)(sender)).TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
                ((Stimulsoft.Report.Components.IStiBrush)(sender)).Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
                ((Stimulsoft.Report.Components.IStiFont)(sender)).Font = new System.Drawing.Font("Arial", 8F);
                ((Stimulsoft.Report.Components.StiComponent)(sender)).Enabled = true;
                return;
            }
        }
        
        private void Text45_ConditionsTextValue(object sender, Stimulsoft.Report.Events.StiValueEventArgs e)
        {
            System.String value = ((System.String)(e.Value));
            string tag = ((StiComponent)sender).TagValue as string;
            string tooltip = ((StiComponent)sender).ToolTipValue as string;
            string hyperlink = ((StiComponent)sender).HyperlinkValue as string;
            if (usm7HSelect.c4_1_2== (decimal?)null)
            {
                ((Stimulsoft.Report.Components.StiText)(sender)).TextValue = this.ToString("ошибка");
                return;
            }
        }
        
        public void Text45__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender,  IIF(Stimulsoft.Report.Dictionary.StiFunctionsPrintState.IsNull(usm7HSelect,c4_1_2) ,"error",Format("{0:n1}",usm7HSelect.c4_1_2))      , true);
        }
        
        public void Text46__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c4_2), true);
        }
        
        public void Text47__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c4_3), true);
        }
        
        public void Text48__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c4_4) , true);
        }
        
        public void Text49__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c5_1_2), true);
        }
        
        public void Text50__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c5_2), true);
        }
        
        public void Text51__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c5_3), true);
        }
        
        public void Text52__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c5_4), true);
        }
        
        public void Text53__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c6_1_2), true);
        }
        
        public void Text54__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c6_2), true);
        }
        
        public void Text55__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c6_3), true);
        }
        
        public void Text56__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c6_4), true);
        }
        
        public void Text57__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c7_1_2), true);
        }
        
        public void Text58__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c7_2), true);
        }
        
        public void Text59__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c7_3), true);
        }
        
        public void Text60__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c7_4), true);
        }
        
        public void Text61__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c8_1_2), true);
        }
        
        public void Text62__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c8_2), true);
        }
        
        public void Text63__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c8_3), true);
        }
        
        public void Text64__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c8_4), true);
        }
        
        public void Text65__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c9_1_2), true);
        }
        
        public void Text66__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c9_2), true);
        }
        
        public void Text67__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c9_3), true);
        }
        
        public void Text68__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c9_4), true);
        }
        
        public void Text69__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c10_1_2), true);
        }
        
        public void Text70__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c10_2), true);
        }
        
        public void Text71__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c10_3), true);
        }
        
        public void Text72__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c10_4), true);
        }
        
        public void Text73__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c11_1_2), true);
        }
        
        public void Text74__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c11_2), true);
        }
        
        public void Text75__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c11_3), true);
        }
        
        public void Text76__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c11_4), true);
        }
        
        public void Text77__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c12_1_2), true);
        }
        
        public void Text78__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c12_2), true);
        }
        
        public void Text79__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c12_3), true);
        }
        
        public void Text80__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c12_4), true);
        }
        
        public void Text81__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c13_1_2), true);
        }
        
        public void Text82__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c13_2), true);
        }
        
        public void Text83__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c13_3), true);
        }
        
        public void Text84__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c13_4), true);
        }
        
        public void Text85__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c14_1_2), true);
        }
        
        public void Text86__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c14_2), true);
        }
        
        public void Text87__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c14_3), true);
        }
        
        public void Text88__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c14_4), true);
        }
        
        public void Text89__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c15_1_2), true);
        }
        
        public void Text90__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c15_2), true);
        }
        
        public void Text91__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c15_3), true);
        }
        
        public void Text92__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c15_4), true);
        }
        
        public void Text93__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c4_1_2+usm7HSelect.c5_1_2+usm7HSelect.c6_1_2+usm7HSelect.c7_1_2+usm7HSelect.c8_1_2+usm7HSelect.c9_1_2+usm7HSelect.c10_1_2+usm7HSelect.c11_1_2+usm7HSelect.c12_1_2+usm7HSelect.c13_1_2+usm7HSelect.c14_1_2+usm7HSelect.c15_1_2), true);
        }
        
        public void Text94__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c4_2+usm7HSelect.c5_2+usm7HSelect.c6_2+usm7HSelect.c7_2+usm7HSelect.c8_2+usm7HSelect.c9_2+usm7HSelect.c10_2+usm7HSelect.c11_2+usm7HSelect.c12_2+usm7HSelect.c14_2+usm7HSelect.c13_2+usm7HSelect.c15_2), true);
        }
        
        public void Text95__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c4_3+usm7HSelect.c5_3+usm7HSelect.c6_3+usm7HSelect.c7_3+usm7HSelect.c8_3+usm7HSelect.c9_3+usm7HSelect.c10_3+usm7HSelect.c11_3+usm7HSelect.c12_3+usm7HSelect.c13_3+usm7HSelect.c14_3+usm7HSelect.c15_3), true);
        }
        
        public void Text96__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = ToString(sender, Format("{0:n1}",usm7HSelect.c4_4+usm7HSelect.c5_4+usm7HSelect.c6_4+usm7HSelect.c7_4+usm7HSelect.c8_4+usm7HSelect.c9_4+usm7HSelect.c10_4+usm7HSelect.c11_4+usm7HSelect.c12_4+usm7HSelect.c13_4+usm7HSelect.c14_4+usm7HSelect.c15_4), true);
        }
        
        public void Text200__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Итого по району";
        }
        
        public void Text98__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Н";
        }
        
        public void Text99__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "П";
        }
        
        public void Text100__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Пеня";
        }
        
        public void Text101__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Н/С";
        }
        
        public void Text102__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text102_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text102_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text103__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text103_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text103_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text104__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text104_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text104_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text105__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text105_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text105_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text106__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c5_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text106_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text106_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text107__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c5_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text107_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text107_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text108__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c5_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text108_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text108_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text109__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c5_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text109_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text109_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text111__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c6_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text111_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text111_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text112__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c6_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text112_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text112_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text113__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c6_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text113_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text113_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text114__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c6_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text114_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text114_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text115__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c7_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text115_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text115_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text116__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c7_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text116_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text116_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text117__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c7_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text117_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text117_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text118__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c7_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text118_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text118_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text119__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c8_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text119_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text119_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text120__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c8_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text120_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text120_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text121__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c8_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text121_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text121_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text122__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c8_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text122_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text122_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text123__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c9_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text123_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text123_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text124__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c9_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text124_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text124_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text125__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c9_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text125_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text125_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text126__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c9_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text126_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text126_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text127__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c10_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text127_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text127_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text128__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c10_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text128_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text128_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text129__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c10_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text129_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text129_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text130__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c10_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text130_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text130_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text131__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c11_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text131_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text131_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text132__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c11_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text132_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text132_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text133__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c11_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text133_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text133_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text134__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c11_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text134_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text134_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text135__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c12_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text135_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text135_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text136__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c12_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text136_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text136_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text137__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c12_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text137_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text137_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text138__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c12_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text138_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text138_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text139__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c13_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text139_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text139_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text140__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c13_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text140_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text140_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text141__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c13_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text141_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text141_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text142__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c13_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text142_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text142_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text143__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c14_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text143_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text143_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text144__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c14_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text144_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text144_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text145__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c14_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text145_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text145_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text146__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c14_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text146_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text146_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text147__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c15_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text147_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text147_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text148__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c15_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text148_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text148_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text149__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c15_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text149_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text149_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text150__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c15_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text150_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text150_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text151__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_1_2+usm7HSelect.c5_1_2+us" +
"m7HSelect.c6_1_2+usm7HSelect.c7_1_2+usm7HSelect.c8_1_2+usm7HSelect.c9_1_2+usm7HS" +
"elect.c10_1_2+usm7HSelect.c11_1_2+usm7HSelect.c12_1_2+usm7HSelect.c13_1_2+usm7HS" +
"elect.c14_1_2+usm7HSelect.c15_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text151_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text151_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text152__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_2+usm7HSelect.c5_2+usm7HS" +
"elect.c6_2+usm7HSelect.c7_2+usm7HSelect.c8_2+usm7HSelect.c9_2+usm7HSelect.c10_2+" +
"usm7HSelect.c11_2+usm7HSelect.c12_2+usm7HSelect.c14_2+usm7HSelect.c13_2+usm7HSel" +
"ect.c15_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text152_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text152_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text153__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_3+usm7HSelect.c5_3+usm7HS" +
"elect.c6_3+usm7HSelect.c7_3+usm7HSelect.c8_3+usm7HSelect.c9_3+usm7HSelect.c10_3+" +
"usm7HSelect.c11_3+usm7HSelect.c12_3+usm7HSelect.c13_3+usm7HSelect.c14_3+usm7HSel" +
"ect.c15_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text153_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text153_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text154__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_4+usm7HSelect.c5_4+usm7HS" +
"elect.c6_4+usm7HSelect.c7_4+usm7HSelect.c8_4+usm7HSelect.c9_4+usm7HSelect.c10_4+" +
"usm7HSelect.c11_4+usm7HSelect.c12_4+usm7HSelect.c13_4+usm7HSelect.c14_4+usm7HSel" +
"ect.c15_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text154_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text154_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        private void GroupFooterBand2_Conditions(object sender, System.EventArgs e)
        {
            if (Stimulsoft.Report.Dictionary.StiFunctionsPrintState.IsNull(obl,"CodeID")==true)
            {
                ((Stimulsoft.Report.Components.IStiBrush)(sender)).Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
                ((Stimulsoft.Report.Components.StiComponent)(sender)).Enabled = false;
                return;
            }
        }
        
        public void Text272__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Итого по Области";
        }
        
        public void Text155__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Н";
        }
        
        public void Text156__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "П";
        }
        
        public void Text157__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Пеня";
        }
        
        public void Text158__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Н/С";
        }
        
        public void Text159__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text159_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text159_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text160__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text160_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text160_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text161__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text161_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text161_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text162__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text162_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text162_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text163__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c5_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text163_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text163_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text164__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c5_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text164_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text164_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text165__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c5_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text165_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text165_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text166__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c5_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text166_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text166_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text167__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c6_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text167_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text167_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text168__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c6_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text168_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text168_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text169__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c6_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text169_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text169_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text170__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c6_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text170_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text170_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text171__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c7_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text171_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text171_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text172__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c7_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text172_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text172_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text173__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c7_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text173_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text173_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text174__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c7_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text174_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text174_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text175__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c8_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text175_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text175_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text176__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c8_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text176_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text176_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text177__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c8_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text177_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text177_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text178__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c8_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text178_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text178_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text179__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c9_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text179_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text179_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text180__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c9_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text180_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text180_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text181__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c9_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text181_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text181_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text182__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c9_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text182_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text182_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text183__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c10_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text183_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text183_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text184__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c10_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text184_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text184_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text185__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c10_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text185_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text185_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text186__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c10_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text186_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text186_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text187__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c11_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text187_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text187_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text188__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c11_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text188_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text188_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text189__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c11_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text189_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text189_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text190__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c11_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text190_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text190_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text191__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c12_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text191_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text191_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text192__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c12_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text192_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text192_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text193__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c12_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text193_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text193_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text194__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c12_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text194_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text194_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text195__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c13_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text195_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text195_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text196__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c13_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text196_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text196_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text197__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c13_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text197_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text197_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text198__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c13_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text198_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text198_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text199__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c14_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text199_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text199_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text201__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c14_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text201_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text201_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text202__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c14_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text202_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text202_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text203__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c14_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text203_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text203_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text208__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_1_2+usm7HSelect.c5_1_2+us" +
"m7HSelect.c6_1_2+usm7HSelect.c7_1_2+usm7HSelect.c8_1_2+usm7HSelect.c9_1_2+usm7HS" +
"elect.c10_1_2+usm7HSelect.c11_1_2+usm7HSelect.c12_1_2+usm7HSelect.c13_1_2+usm7HS" +
"elect.c14_1_2+usm7HSelect.c15_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text208_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text208_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text209__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_2+usm7HSelect.c5_2+usm7HS" +
"elect.c6_2+usm7HSelect.c7_2+usm7HSelect.c8_2+usm7HSelect.c9_2+usm7HSelect.c10_2+" +
"usm7HSelect.c11_2+usm7HSelect.c12_2+usm7HSelect.c14_2+usm7HSelect.c13_2+usm7HSel" +
"ect.c15_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text209_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text209_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text210__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_3+usm7HSelect.c5_3+usm7HS" +
"elect.c6_3+usm7HSelect.c7_3+usm7HSelect.c8_3+usm7HSelect.c9_3+usm7HSelect.c10_3+" +
"usm7HSelect.c11_3+usm7HSelect.c12_3+usm7HSelect.c13_3+usm7HSelect.c14_3+usm7HSel" +
"ect.c15_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text210_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text210_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text211__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c4_4+usm7HSelect.c5_4+usm7HS" +
"elect.c6_4+usm7HSelect.c7_4+usm7HSelect.c8_4+usm7HSelect.c9_4+usm7HSelect.c10_4+" +
"usm7HSelect.c11_4+usm7HSelect.c12_4+usm7HSelect.c13_4+usm7HSelect.c14_4+usm7HSel" +
"ect.c15_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text211_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text211_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text204__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c15_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text204_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text204_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text205__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c15_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text205_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text205_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text206__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c15_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text206_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text206_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text207__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(GroupHeaderBand2,usm7HSelect.c15_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text207_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text207_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        private void ReportSummaryBand2_Conditions(object sender, System.EventArgs e)
        {
            if (rayonCodeVar!="00_")
            {
                ((Stimulsoft.Report.Components.IStiBrush)(sender)).Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
                ((Stimulsoft.Report.Components.StiComponent)(sender)).Enabled = false;
                return;
            }
        }
        
        public void Text273__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Итого по Республике";
        }
        
        public void Text212__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Н";
        }
        
        public void Text213__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "П";
        }
        
        public void Text214__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Пеня";
        }
        
        public void Text215__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Н/С";
        }
        
        public void Text216__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c4_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text216_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text216_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text217__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c4_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text217_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text217_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text218__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c4_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text218_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text218_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text219__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c4_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text219_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text219_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text220__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c5_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text220_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text220_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text221__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c5_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text221_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text221_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text222__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c5_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text222_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text222_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text223__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c5_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text223_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text223_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text224__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c6_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text224_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text224_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text225__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c6_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text225_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text225_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text226__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c6_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text226_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text226_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text227__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c6_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text227_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text227_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text228__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c7_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text228_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text228_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text229__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c7_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text229_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text229_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text230__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c7_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text230_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text230_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text231__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c7_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text231_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text231_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text232__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c8_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text232_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text232_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text233__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c8_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text233_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text233_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text234__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c8_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text234_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text234_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text235__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c8_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text235_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text235_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text236__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c9_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text236_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text236_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text237__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c9_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text237_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text237_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text238__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c9_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text238_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text238_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text239__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c9_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text239_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text239_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text240__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c10_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text240_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text240_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text241__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c10_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text241_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text241_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text242__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c10_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text242_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text242_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text243__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c10_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text243_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text243_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text244__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c11_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text244_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text244_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text245__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c11_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text245_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text245_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text246__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c11_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text246_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text246_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text247__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c11_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text247_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text247_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text248__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c12_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text248_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text248_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text249__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c12_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text249_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text249_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text250__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c12_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text250_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text250_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text251__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c12_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text251_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text251_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text252__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c13_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text252_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text252_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text253__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c13_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text253_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text253_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text254__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c13_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text254_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text254_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text255__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c13_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text255_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text255_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text256__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c14_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text256_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text256_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text257__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c14_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text257_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text257_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text258__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c14_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text258_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text258_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text259__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c14_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text259_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text259_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text264__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c4_1_2+usm7HSelect.c5_1_2+usm7HSele" +
"ct.c6_1_2+usm7HSelect.c7_1_2+usm7HSelect.c8_1_2+usm7HSelect.c9_1_2+usm7HSelect.c" +
"10_1_2+usm7HSelect.c11_1_2+usm7HSelect.c12_1_2+usm7HSelect.c13_1_2+usm7HSelect.c" +
"14_1_2+usm7HSelect.c15_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text264_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text264_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text265__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c4_2+usm7HSelect.c5_2+usm7HSelect.c" +
"6_2+usm7HSelect.c7_2+usm7HSelect.c8_2+usm7HSelect.c9_2+usm7HSelect.c10_2+usm7HSe" +
"lect.c11_2+usm7HSelect.c12_2+usm7HSelect.c14_2+usm7HSelect.c13_2+usm7HSelect.c15" +
"_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text265_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text265_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text266__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c4_3+usm7HSelect.c5_3+usm7HSelect.c" +
"6_3+usm7HSelect.c7_3+usm7HSelect.c8_3+usm7HSelect.c9_3+usm7HSelect.c10_3+usm7HSe" +
"lect.c11_3+usm7HSelect.c12_3+usm7HSelect.c13_3+usm7HSelect.c14_3+usm7HSelect.c15" +
"_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text266_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text266_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text267__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c4_4+usm7HSelect.c5_4+usm7HSelect.c" +
"6_4+usm7HSelect.c7_4+usm7HSelect.c8_4+usm7HSelect.c9_4+usm7HSelect.c10_4+usm7HSe" +
"lect.c11_4+usm7HSelect.c12_4+usm7HSelect.c13_4+usm7HSelect.c14_4+usm7HSelect.c15" +
"_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text267_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text267_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text260__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c15_1_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text260_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text260_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text261__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c15_2))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text261_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text261_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text262__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c15_3))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text262_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text262_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        public void Text263__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "#%#{Format(\"{0:n1}\",Sum(DataBand2,usm7HSelect.c15_4))}";
            e.StoreToPrinted = true;
        }
        
        public System.String Text263_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
        {
            return ToString(sender, Format("{0:n1}",((decimal)(StiReport.ChangeType(this.Text263_Sum.GetValue(), typeof(decimal), true)))), true);
        }
        
        private void ReportSummaryBand1_Conditions(object sender, System.EventArgs e)
        {
            if (diopVar!=0)
            {
                ((Stimulsoft.Report.Components.IStiBrush)(sender)).Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
                ((Stimulsoft.Report.Components.IStiBorder)(sender)).Border.Side = Stimulsoft.Base.Drawing.StiBorderSides.None;
                ((Stimulsoft.Report.Components.StiComponent)(sender)).Enabled = false;
                return;
            }
        }
        
        public void Text97__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
        {
            e.Value = "Начальник УГНС по           району (области)\r\nНачальник отдела взыскания налогов\r" +
"\nНачальник отдела учета и налоговой статистики\r\nИсполнитель ФИО инспекторов отде" +
"лов, № телефонов\r\nн - недоимка \tсумма граф 4-16 дает итог суммы недоимки по райо" +
"ну, региону и республике\r\n\t\t\t\tсумма граф 4-16 дает итог суммы превышения и излиш" +
"не уплаченной суммы налога по району, региону и республике\r\nпеня - \tв соответств" +
"ии со ст. 71 НК, установлена в размере, равном 0.09%\r\n\t\t\t\tсумма граф 4-16 дает и" +
"тог суммы по пене по району, региону и республике\r\nн/с - налоговая санкция в соо" +
"тветствии со ст. 141-144 НК\r\n\t\t\t\tсумма граф 4-16 дает итог суммы налоговой санкц" +
"ии по району, региону и республике\r\nпревышение, излишне уплаченный налог - превы" +
"шение по НДС в соответствии со ст.278и 279 НК, излишне уплаченный налог в соотве" +
"тствии со ст.81 НК\r\n\r\nПериодичность представления:\r\n1) райгорнал. органы в облна" +
"л. орган - ежемесячно до 6 числа следцющего за отчетным месяцем\r\n2) в облнал. ор" +
"ганы, ГНСККН, ГНС г.Бишкек, г.Ош в ГНСПКР - ежемесячно до 8 числа следующего за " +
"отчетным месяцем";
        }
        
        public void GroupHeaderBand2__BeginRender(object sender, System.EventArgs e)
        {
            this.Text102_Sum.Init();
            this.Text102.TextValue = "";
            this.Text103_Sum.Init();
            this.Text103.TextValue = "";
            this.Text104_Sum.Init();
            this.Text104.TextValue = "";
            this.Text105_Sum.Init();
            this.Text105.TextValue = "";
            this.Text106_Sum.Init();
            this.Text106.TextValue = "";
            this.Text107_Sum.Init();
            this.Text107.TextValue = "";
            this.Text108_Sum.Init();
            this.Text108.TextValue = "";
            this.Text109_Sum.Init();
            this.Text109.TextValue = "";
            this.Text111_Sum.Init();
            this.Text111.TextValue = "";
            this.Text112_Sum.Init();
            this.Text112.TextValue = "";
            this.Text113_Sum.Init();
            this.Text113.TextValue = "";
            this.Text114_Sum.Init();
            this.Text114.TextValue = "";
            this.Text115_Sum.Init();
            this.Text115.TextValue = "";
            this.Text116_Sum.Init();
            this.Text116.TextValue = "";
            this.Text117_Sum.Init();
            this.Text117.TextValue = "";
            this.Text118_Sum.Init();
            this.Text118.TextValue = "";
            this.Text119_Sum.Init();
            this.Text119.TextValue = "";
            this.Text120_Sum.Init();
            this.Text120.TextValue = "";
            this.Text121_Sum.Init();
            this.Text121.TextValue = "";
            this.Text122_Sum.Init();
            this.Text122.TextValue = "";
            this.Text123_Sum.Init();
            this.Text123.TextValue = "";
            this.Text124_Sum.Init();
            this.Text124.TextValue = "";
            this.Text125_Sum.Init();
            this.Text125.TextValue = "";
            this.Text126_Sum.Init();
            this.Text126.TextValue = "";
            this.Text127_Sum.Init();
            this.Text127.TextValue = "";
            this.Text128_Sum.Init();
            this.Text128.TextValue = "";
            this.Text129_Sum.Init();
            this.Text129.TextValue = "";
            this.Text130_Sum.Init();
            this.Text130.TextValue = "";
            this.Text131_Sum.Init();
            this.Text131.TextValue = "";
            this.Text132_Sum.Init();
            this.Text132.TextValue = "";
            this.Text133_Sum.Init();
            this.Text133.TextValue = "";
            this.Text134_Sum.Init();
            this.Text134.TextValue = "";
            this.Text135_Sum.Init();
            this.Text135.TextValue = "";
            this.Text136_Sum.Init();
            this.Text136.TextValue = "";
            this.Text137_Sum.Init();
            this.Text137.TextValue = "";
            this.Text138_Sum.Init();
            this.Text138.TextValue = "";
            this.Text139_Sum.Init();
            this.Text139.TextValue = "";
            this.Text140_Sum.Init();
            this.Text140.TextValue = "";
            this.Text141_Sum.Init();
            this.Text141.TextValue = "";
            this.Text142_Sum.Init();
            this.Text142.TextValue = "";
            this.Text143_Sum.Init();
            this.Text143.TextValue = "";
            this.Text144_Sum.Init();
            this.Text144.TextValue = "";
            this.Text145_Sum.Init();
            this.Text145.TextValue = "";
            this.Text146_Sum.Init();
            this.Text146.TextValue = "";
            this.Text147_Sum.Init();
            this.Text147.TextValue = "";
            this.Text148_Sum.Init();
            this.Text148.TextValue = "";
            this.Text149_Sum.Init();
            this.Text149.TextValue = "";
            this.Text150_Sum.Init();
            this.Text150.TextValue = "";
            this.Text151_Sum.Init();
            this.Text151.TextValue = "";
            this.Text152_Sum.Init();
            this.Text152.TextValue = "";
            this.Text153_Sum.Init();
            this.Text153.TextValue = "";
            this.Text154_Sum.Init();
            this.Text154.TextValue = "";
        }
        
        public void GroupHeaderBand2__EndRender(object sender, System.EventArgs e)
        {
            this.Text102.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text102_GetValue_End));
            this.Text103.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text103_GetValue_End));
            this.Text104.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text104_GetValue_End));
            this.Text105.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text105_GetValue_End));
            this.Text106.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text106_GetValue_End));
            this.Text107.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text107_GetValue_End));
            this.Text108.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text108_GetValue_End));
            this.Text109.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text109_GetValue_End));
            this.Text111.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text111_GetValue_End));
            this.Text112.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text112_GetValue_End));
            this.Text113.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text113_GetValue_End));
            this.Text114.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text114_GetValue_End));
            this.Text115.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text115_GetValue_End));
            this.Text116.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text116_GetValue_End));
            this.Text117.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text117_GetValue_End));
            this.Text118.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text118_GetValue_End));
            this.Text119.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text119_GetValue_End));
            this.Text120.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text120_GetValue_End));
            this.Text121.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text121_GetValue_End));
            this.Text122.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text122_GetValue_End));
            this.Text123.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text123_GetValue_End));
            this.Text124.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text124_GetValue_End));
            this.Text125.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text125_GetValue_End));
            this.Text126.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text126_GetValue_End));
            this.Text127.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text127_GetValue_End));
            this.Text128.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text128_GetValue_End));
            this.Text129.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text129_GetValue_End));
            this.Text130.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text130_GetValue_End));
            this.Text131.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text131_GetValue_End));
            this.Text132.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text132_GetValue_End));
            this.Text133.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text133_GetValue_End));
            this.Text134.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text134_GetValue_End));
            this.Text135.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text135_GetValue_End));
            this.Text136.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text136_GetValue_End));
            this.Text137.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text137_GetValue_End));
            this.Text138.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text138_GetValue_End));
            this.Text139.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text139_GetValue_End));
            this.Text140.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text140_GetValue_End));
            this.Text141.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text141_GetValue_End));
            this.Text142.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text142_GetValue_End));
            this.Text143.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text143_GetValue_End));
            this.Text144.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text144_GetValue_End));
            this.Text145.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text145_GetValue_End));
            this.Text146.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text146_GetValue_End));
            this.Text147.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text147_GetValue_End));
            this.Text148.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text148_GetValue_End));
            this.Text149.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text149_GetValue_End));
            this.Text150.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text150_GetValue_End));
            this.Text151.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text151_GetValue_End));
            this.Text152.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text152_GetValue_End));
            this.Text153.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text153_GetValue_End));
            this.Text154.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text154_GetValue_End));
        }
        
        public void GroupHeaderBand1__BeginRender(object sender, System.EventArgs e)
        {
            this.Text159_Sum.Init();
            this.Text159.TextValue = "";
            this.Text160_Sum.Init();
            this.Text160.TextValue = "";
            this.Text161_Sum.Init();
            this.Text161.TextValue = "";
            this.Text162_Sum.Init();
            this.Text162.TextValue = "";
            this.Text163_Sum.Init();
            this.Text163.TextValue = "";
            this.Text164_Sum.Init();
            this.Text164.TextValue = "";
            this.Text165_Sum.Init();
            this.Text165.TextValue = "";
            this.Text166_Sum.Init();
            this.Text166.TextValue = "";
            this.Text167_Sum.Init();
            this.Text167.TextValue = "";
            this.Text168_Sum.Init();
            this.Text168.TextValue = "";
            this.Text169_Sum.Init();
            this.Text169.TextValue = "";
            this.Text170_Sum.Init();
            this.Text170.TextValue = "";
            this.Text171_Sum.Init();
            this.Text171.TextValue = "";
            this.Text172_Sum.Init();
            this.Text172.TextValue = "";
            this.Text173_Sum.Init();
            this.Text173.TextValue = "";
            this.Text174_Sum.Init();
            this.Text174.TextValue = "";
            this.Text175_Sum.Init();
            this.Text175.TextValue = "";
            this.Text176_Sum.Init();
            this.Text176.TextValue = "";
            this.Text177_Sum.Init();
            this.Text177.TextValue = "";
            this.Text178_Sum.Init();
            this.Text178.TextValue = "";
            this.Text179_Sum.Init();
            this.Text179.TextValue = "";
            this.Text180_Sum.Init();
            this.Text180.TextValue = "";
            this.Text181_Sum.Init();
            this.Text181.TextValue = "";
            this.Text182_Sum.Init();
            this.Text182.TextValue = "";
            this.Text183_Sum.Init();
            this.Text183.TextValue = "";
            this.Text184_Sum.Init();
            this.Text184.TextValue = "";
            this.Text185_Sum.Init();
            this.Text185.TextValue = "";
            this.Text186_Sum.Init();
            this.Text186.TextValue = "";
            this.Text187_Sum.Init();
            this.Text187.TextValue = "";
            this.Text188_Sum.Init();
            this.Text188.TextValue = "";
            this.Text189_Sum.Init();
            this.Text189.TextValue = "";
            this.Text190_Sum.Init();
            this.Text190.TextValue = "";
            this.Text191_Sum.Init();
            this.Text191.TextValue = "";
            this.Text192_Sum.Init();
            this.Text192.TextValue = "";
            this.Text193_Sum.Init();
            this.Text193.TextValue = "";
            this.Text194_Sum.Init();
            this.Text194.TextValue = "";
            this.Text195_Sum.Init();
            this.Text195.TextValue = "";
            this.Text196_Sum.Init();
            this.Text196.TextValue = "";
            this.Text197_Sum.Init();
            this.Text197.TextValue = "";
            this.Text198_Sum.Init();
            this.Text198.TextValue = "";
            this.Text199_Sum.Init();
            this.Text199.TextValue = "";
            this.Text201_Sum.Init();
            this.Text201.TextValue = "";
            this.Text202_Sum.Init();
            this.Text202.TextValue = "";
            this.Text203_Sum.Init();
            this.Text203.TextValue = "";
            this.Text208_Sum.Init();
            this.Text208.TextValue = "";
            this.Text209_Sum.Init();
            this.Text209.TextValue = "";
            this.Text210_Sum.Init();
            this.Text210.TextValue = "";
            this.Text211_Sum.Init();
            this.Text211.TextValue = "";
            this.Text204_Sum.Init();
            this.Text204.TextValue = "";
            this.Text205_Sum.Init();
            this.Text205.TextValue = "";
            this.Text206_Sum.Init();
            this.Text206.TextValue = "";
            this.Text207_Sum.Init();
            this.Text207.TextValue = "";
        }
        
        public void GroupHeaderBand1__EndRender(object sender, System.EventArgs e)
        {
            this.Text159.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text159_GetValue_End));
            this.Text160.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text160_GetValue_End));
            this.Text161.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text161_GetValue_End));
            this.Text162.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text162_GetValue_End));
            this.Text163.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text163_GetValue_End));
            this.Text164.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text164_GetValue_End));
            this.Text165.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text165_GetValue_End));
            this.Text166.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text166_GetValue_End));
            this.Text167.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text167_GetValue_End));
            this.Text168.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text168_GetValue_End));
            this.Text169.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text169_GetValue_End));
            this.Text170.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text170_GetValue_End));
            this.Text171.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text171_GetValue_End));
            this.Text172.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text172_GetValue_End));
            this.Text173.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text173_GetValue_End));
            this.Text174.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text174_GetValue_End));
            this.Text175.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text175_GetValue_End));
            this.Text176.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text176_GetValue_End));
            this.Text177.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text177_GetValue_End));
            this.Text178.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text178_GetValue_End));
            this.Text179.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text179_GetValue_End));
            this.Text180.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text180_GetValue_End));
            this.Text181.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text181_GetValue_End));
            this.Text182.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text182_GetValue_End));
            this.Text183.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text183_GetValue_End));
            this.Text184.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text184_GetValue_End));
            this.Text185.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text185_GetValue_End));
            this.Text186.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text186_GetValue_End));
            this.Text187.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text187_GetValue_End));
            this.Text188.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text188_GetValue_End));
            this.Text189.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text189_GetValue_End));
            this.Text190.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text190_GetValue_End));
            this.Text191.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text191_GetValue_End));
            this.Text192.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text192_GetValue_End));
            this.Text193.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text193_GetValue_End));
            this.Text194.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text194_GetValue_End));
            this.Text195.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text195_GetValue_End));
            this.Text196.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text196_GetValue_End));
            this.Text197.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text197_GetValue_End));
            this.Text198.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text198_GetValue_End));
            this.Text199.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text199_GetValue_End));
            this.Text201.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text201_GetValue_End));
            this.Text202.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text202_GetValue_End));
            this.Text203.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text203_GetValue_End));
            this.Text208.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text208_GetValue_End));
            this.Text209.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text209_GetValue_End));
            this.Text210.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text210_GetValue_End));
            this.Text211.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text211_GetValue_End));
            this.Text204.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text204_GetValue_End));
            this.Text205.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text205_GetValue_End));
            this.Text206.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text206_GetValue_End));
            this.Text207.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text207_GetValue_End));
        }
        
        public void DataBand2__BeginRender(object sender, System.EventArgs e)
        {
            this.Text216_Sum.Init();
            this.Text216.TextValue = "";
            this.Text217_Sum.Init();
            this.Text217.TextValue = "";
            this.Text218_Sum.Init();
            this.Text218.TextValue = "";
            this.Text219_Sum.Init();
            this.Text219.TextValue = "";
            this.Text220_Sum.Init();
            this.Text220.TextValue = "";
            this.Text221_Sum.Init();
            this.Text221.TextValue = "";
            this.Text222_Sum.Init();
            this.Text222.TextValue = "";
            this.Text223_Sum.Init();
            this.Text223.TextValue = "";
            this.Text224_Sum.Init();
            this.Text224.TextValue = "";
            this.Text225_Sum.Init();
            this.Text225.TextValue = "";
            this.Text226_Sum.Init();
            this.Text226.TextValue = "";
            this.Text227_Sum.Init();
            this.Text227.TextValue = "";
            this.Text228_Sum.Init();
            this.Text228.TextValue = "";
            this.Text229_Sum.Init();
            this.Text229.TextValue = "";
            this.Text230_Sum.Init();
            this.Text230.TextValue = "";
            this.Text231_Sum.Init();
            this.Text231.TextValue = "";
            this.Text232_Sum.Init();
            this.Text232.TextValue = "";
            this.Text233_Sum.Init();
            this.Text233.TextValue = "";
            this.Text234_Sum.Init();
            this.Text234.TextValue = "";
            this.Text235_Sum.Init();
            this.Text235.TextValue = "";
            this.Text236_Sum.Init();
            this.Text236.TextValue = "";
            this.Text237_Sum.Init();
            this.Text237.TextValue = "";
            this.Text238_Sum.Init();
            this.Text238.TextValue = "";
            this.Text239_Sum.Init();
            this.Text239.TextValue = "";
            this.Text240_Sum.Init();
            this.Text240.TextValue = "";
            this.Text241_Sum.Init();
            this.Text241.TextValue = "";
            this.Text242_Sum.Init();
            this.Text242.TextValue = "";
            this.Text243_Sum.Init();
            this.Text243.TextValue = "";
            this.Text244_Sum.Init();
            this.Text244.TextValue = "";
            this.Text245_Sum.Init();
            this.Text245.TextValue = "";
            this.Text246_Sum.Init();
            this.Text246.TextValue = "";
            this.Text247_Sum.Init();
            this.Text247.TextValue = "";
            this.Text248_Sum.Init();
            this.Text248.TextValue = "";
            this.Text249_Sum.Init();
            this.Text249.TextValue = "";
            this.Text250_Sum.Init();
            this.Text250.TextValue = "";
            this.Text251_Sum.Init();
            this.Text251.TextValue = "";
            this.Text252_Sum.Init();
            this.Text252.TextValue = "";
            this.Text253_Sum.Init();
            this.Text253.TextValue = "";
            this.Text254_Sum.Init();
            this.Text254.TextValue = "";
            this.Text255_Sum.Init();
            this.Text255.TextValue = "";
            this.Text256_Sum.Init();
            this.Text256.TextValue = "";
            this.Text257_Sum.Init();
            this.Text257.TextValue = "";
            this.Text258_Sum.Init();
            this.Text258.TextValue = "";
            this.Text259_Sum.Init();
            this.Text259.TextValue = "";
            this.Text264_Sum.Init();
            this.Text264.TextValue = "";
            this.Text265_Sum.Init();
            this.Text265.TextValue = "";
            this.Text266_Sum.Init();
            this.Text266.TextValue = "";
            this.Text267_Sum.Init();
            this.Text267.TextValue = "";
            this.Text260_Sum.Init();
            this.Text260.TextValue = "";
            this.Text261_Sum.Init();
            this.Text261.TextValue = "";
            this.Text262_Sum.Init();
            this.Text262.TextValue = "";
            this.Text263_Sum.Init();
            this.Text263.TextValue = "";
        }
        
        public void DataBand2__EndRender(object sender, System.EventArgs e)
        {
            this.Text216.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text216_GetValue_End));
            this.Text217.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text217_GetValue_End));
            this.Text218.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text218_GetValue_End));
            this.Text219.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text219_GetValue_End));
            this.Text220.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text220_GetValue_End));
            this.Text221.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text221_GetValue_End));
            this.Text222.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text222_GetValue_End));
            this.Text223.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text223_GetValue_End));
            this.Text224.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text224_GetValue_End));
            this.Text225.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text225_GetValue_End));
            this.Text226.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text226_GetValue_End));
            this.Text227.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text227_GetValue_End));
            this.Text228.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text228_GetValue_End));
            this.Text229.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text229_GetValue_End));
            this.Text230.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text230_GetValue_End));
            this.Text231.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text231_GetValue_End));
            this.Text232.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text232_GetValue_End));
            this.Text233.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text233_GetValue_End));
            this.Text234.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text234_GetValue_End));
            this.Text235.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text235_GetValue_End));
            this.Text236.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text236_GetValue_End));
            this.Text237.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text237_GetValue_End));
            this.Text238.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text238_GetValue_End));
            this.Text239.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text239_GetValue_End));
            this.Text240.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text240_GetValue_End));
            this.Text241.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text241_GetValue_End));
            this.Text242.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text242_GetValue_End));
            this.Text243.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text243_GetValue_End));
            this.Text244.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text244_GetValue_End));
            this.Text245.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text245_GetValue_End));
            this.Text246.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text246_GetValue_End));
            this.Text247.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text247_GetValue_End));
            this.Text248.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text248_GetValue_End));
            this.Text249.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text249_GetValue_End));
            this.Text250.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text250_GetValue_End));
            this.Text251.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text251_GetValue_End));
            this.Text252.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text252_GetValue_End));
            this.Text253.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text253_GetValue_End));
            this.Text254.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text254_GetValue_End));
            this.Text255.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text255_GetValue_End));
            this.Text256.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text256_GetValue_End));
            this.Text257.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text257_GetValue_End));
            this.Text258.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text258_GetValue_End));
            this.Text259.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text259_GetValue_End));
            this.Text264.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text264_GetValue_End));
            this.Text265.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text265_GetValue_End));
            this.Text266.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text266_GetValue_End));
            this.Text267.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text267_GetValue_End));
            this.Text260.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text260_GetValue_End));
            this.Text261.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text261_GetValue_End));
            this.Text262.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text262_GetValue_End));
            this.Text263.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text263_GetValue_End));
        }
        
        public void GroupHeaderBand2__Rendering(object sender, System.EventArgs e)
        {
            this.Text102_Sum.CalcItem(usm7HSelect.c4_1_2);
            this.Text103_Sum.CalcItem(usm7HSelect.c4_2);
            this.Text104_Sum.CalcItem(usm7HSelect.c4_3);
            this.Text105_Sum.CalcItem(usm7HSelect.c4_4);
            this.Text106_Sum.CalcItem(usm7HSelect.c5_1_2);
            this.Text107_Sum.CalcItem(usm7HSelect.c5_2);
            this.Text108_Sum.CalcItem(usm7HSelect.c5_3);
            this.Text109_Sum.CalcItem(usm7HSelect.c5_4);
            this.Text111_Sum.CalcItem(usm7HSelect.c6_1_2);
            this.Text112_Sum.CalcItem(usm7HSelect.c6_2);
            this.Text113_Sum.CalcItem(usm7HSelect.c6_3);
            this.Text114_Sum.CalcItem(usm7HSelect.c6_4);
            this.Text115_Sum.CalcItem(usm7HSelect.c7_1_2);
            this.Text116_Sum.CalcItem(usm7HSelect.c7_2);
            this.Text117_Sum.CalcItem(usm7HSelect.c7_3);
            this.Text118_Sum.CalcItem(usm7HSelect.c7_4);
            this.Text119_Sum.CalcItem(usm7HSelect.c8_1_2);
            this.Text120_Sum.CalcItem(usm7HSelect.c8_2);
            this.Text121_Sum.CalcItem(usm7HSelect.c8_3);
            this.Text122_Sum.CalcItem(usm7HSelect.c8_4);
            this.Text123_Sum.CalcItem(usm7HSelect.c9_1_2);
            this.Text124_Sum.CalcItem(usm7HSelect.c9_2);
            this.Text125_Sum.CalcItem(usm7HSelect.c9_3);
            this.Text126_Sum.CalcItem(usm7HSelect.c9_4);
            this.Text127_Sum.CalcItem(usm7HSelect.c10_1_2);
            this.Text128_Sum.CalcItem(usm7HSelect.c10_2);
            this.Text129_Sum.CalcItem(usm7HSelect.c10_3);
            this.Text130_Sum.CalcItem(usm7HSelect.c10_4);
            this.Text131_Sum.CalcItem(usm7HSelect.c11_1_2);
            this.Text132_Sum.CalcItem(usm7HSelect.c11_2);
            this.Text133_Sum.CalcItem(usm7HSelect.c11_3);
            this.Text134_Sum.CalcItem(usm7HSelect.c11_4);
            this.Text135_Sum.CalcItem(usm7HSelect.c12_1_2);
            this.Text136_Sum.CalcItem(usm7HSelect.c12_2);
            this.Text137_Sum.CalcItem(usm7HSelect.c12_3);
            this.Text138_Sum.CalcItem(usm7HSelect.c12_4);
            this.Text139_Sum.CalcItem(usm7HSelect.c13_1_2);
            this.Text140_Sum.CalcItem(usm7HSelect.c13_2);
            this.Text141_Sum.CalcItem(usm7HSelect.c13_3);
            this.Text142_Sum.CalcItem(usm7HSelect.c13_4);
            this.Text143_Sum.CalcItem(usm7HSelect.c14_1_2);
            this.Text144_Sum.CalcItem(usm7HSelect.c14_2);
            this.Text145_Sum.CalcItem(usm7HSelect.c14_3);
            this.Text146_Sum.CalcItem(usm7HSelect.c14_4);
            this.Text147_Sum.CalcItem(usm7HSelect.c15_1_2);
            this.Text148_Sum.CalcItem(usm7HSelect.c15_2);
            this.Text149_Sum.CalcItem(usm7HSelect.c15_3);
            this.Text150_Sum.CalcItem(usm7HSelect.c15_4);
            this.Text151_Sum.CalcItem(usm7HSelect.c4_1_2+usm7HSelect.c5_1_2+usm7HSelect.c6_1_2+usm7HSelect.c7_1_2+usm7HSelect.c8_1_2+usm7HSelect.c9_1_2+usm7HSelect.c10_1_2+usm7HSelect.c11_1_2+usm7HSelect.c12_1_2+usm7HSelect.c13_1_2+usm7HSelect.c14_1_2+usm7HSelect.c15_1_2);
            this.Text152_Sum.CalcItem(usm7HSelect.c4_2+usm7HSelect.c5_2+usm7HSelect.c6_2+usm7HSelect.c7_2+usm7HSelect.c8_2+usm7HSelect.c9_2+usm7HSelect.c10_2+usm7HSelect.c11_2+usm7HSelect.c12_2+usm7HSelect.c14_2+usm7HSelect.c13_2+usm7HSelect.c15_2);
            this.Text153_Sum.CalcItem(usm7HSelect.c4_3+usm7HSelect.c5_3+usm7HSelect.c6_3+usm7HSelect.c7_3+usm7HSelect.c8_3+usm7HSelect.c9_3+usm7HSelect.c10_3+usm7HSelect.c11_3+usm7HSelect.c12_3+usm7HSelect.c13_3+usm7HSelect.c14_3+usm7HSelect.c15_3);
            this.Text154_Sum.CalcItem(usm7HSelect.c4_4+usm7HSelect.c5_4+usm7HSelect.c6_4+usm7HSelect.c7_4+usm7HSelect.c8_4+usm7HSelect.c9_4+usm7HSelect.c10_4+usm7HSelect.c11_4+usm7HSelect.c12_4+usm7HSelect.c13_4+usm7HSelect.c14_4+usm7HSelect.c15_4);
            this.Text159_Sum.CalcItem(usm7HSelect.c4_1_2);
            this.Text160_Sum.CalcItem(usm7HSelect.c4_2);
            this.Text161_Sum.CalcItem(usm7HSelect.c4_3);
            this.Text162_Sum.CalcItem(usm7HSelect.c4_4);
            this.Text163_Sum.CalcItem(usm7HSelect.c5_1_2);
            this.Text164_Sum.CalcItem(usm7HSelect.c5_2);
            this.Text165_Sum.CalcItem(usm7HSelect.c5_3);
            this.Text166_Sum.CalcItem(usm7HSelect.c5_4);
            this.Text167_Sum.CalcItem(usm7HSelect.c6_1_2);
            this.Text168_Sum.CalcItem(usm7HSelect.c6_2);
            this.Text169_Sum.CalcItem(usm7HSelect.c6_3);
            this.Text170_Sum.CalcItem(usm7HSelect.c6_4);
            this.Text171_Sum.CalcItem(usm7HSelect.c7_1_2);
            this.Text172_Sum.CalcItem(usm7HSelect.c7_2);
            this.Text173_Sum.CalcItem(usm7HSelect.c7_3);
            this.Text174_Sum.CalcItem(usm7HSelect.c7_4);
            this.Text175_Sum.CalcItem(usm7HSelect.c8_1_2);
            this.Text176_Sum.CalcItem(usm7HSelect.c8_2);
            this.Text177_Sum.CalcItem(usm7HSelect.c8_3);
            this.Text178_Sum.CalcItem(usm7HSelect.c8_4);
            this.Text179_Sum.CalcItem(usm7HSelect.c9_1_2);
            this.Text180_Sum.CalcItem(usm7HSelect.c9_2);
            this.Text181_Sum.CalcItem(usm7HSelect.c9_3);
            this.Text182_Sum.CalcItem(usm7HSelect.c9_4);
            this.Text183_Sum.CalcItem(usm7HSelect.c10_1_2);
            this.Text184_Sum.CalcItem(usm7HSelect.c10_2);
            this.Text185_Sum.CalcItem(usm7HSelect.c10_3);
            this.Text186_Sum.CalcItem(usm7HSelect.c10_4);
            this.Text187_Sum.CalcItem(usm7HSelect.c11_1_2);
            this.Text188_Sum.CalcItem(usm7HSelect.c11_2);
            this.Text189_Sum.CalcItem(usm7HSelect.c11_3);
            this.Text190_Sum.CalcItem(usm7HSelect.c11_4);
            this.Text191_Sum.CalcItem(usm7HSelect.c12_1_2);
            this.Text192_Sum.CalcItem(usm7HSelect.c12_2);
            this.Text193_Sum.CalcItem(usm7HSelect.c12_3);
            this.Text194_Sum.CalcItem(usm7HSelect.c12_4);
            this.Text195_Sum.CalcItem(usm7HSelect.c13_1_2);
            this.Text196_Sum.CalcItem(usm7HSelect.c13_2);
            this.Text197_Sum.CalcItem(usm7HSelect.c13_3);
            this.Text198_Sum.CalcItem(usm7HSelect.c13_4);
            this.Text199_Sum.CalcItem(usm7HSelect.c14_1_2);
            this.Text201_Sum.CalcItem(usm7HSelect.c14_2);
            this.Text202_Sum.CalcItem(usm7HSelect.c14_3);
            this.Text203_Sum.CalcItem(usm7HSelect.c14_4);
            this.Text208_Sum.CalcItem(usm7HSelect.c4_1_2+usm7HSelect.c5_1_2+usm7HSelect.c6_1_2+usm7HSelect.c7_1_2+usm7HSelect.c8_1_2+usm7HSelect.c9_1_2+usm7HSelect.c10_1_2+usm7HSelect.c11_1_2+usm7HSelect.c12_1_2+usm7HSelect.c13_1_2+usm7HSelect.c14_1_2+usm7HSelect.c15_1_2);
            this.Text209_Sum.CalcItem(usm7HSelect.c4_2+usm7HSelect.c5_2+usm7HSelect.c6_2+usm7HSelect.c7_2+usm7HSelect.c8_2+usm7HSelect.c9_2+usm7HSelect.c10_2+usm7HSelect.c11_2+usm7HSelect.c12_2+usm7HSelect.c14_2+usm7HSelect.c13_2+usm7HSelect.c15_2);
            this.Text210_Sum.CalcItem(usm7HSelect.c4_3+usm7HSelect.c5_3+usm7HSelect.c6_3+usm7HSelect.c7_3+usm7HSelect.c8_3+usm7HSelect.c9_3+usm7HSelect.c10_3+usm7HSelect.c11_3+usm7HSelect.c12_3+usm7HSelect.c13_3+usm7HSelect.c14_3+usm7HSelect.c15_3);
            this.Text211_Sum.CalcItem(usm7HSelect.c4_4+usm7HSelect.c5_4+usm7HSelect.c6_4+usm7HSelect.c7_4+usm7HSelect.c8_4+usm7HSelect.c9_4+usm7HSelect.c10_4+usm7HSelect.c11_4+usm7HSelect.c12_4+usm7HSelect.c13_4+usm7HSelect.c14_4+usm7HSelect.c15_4);
            this.Text204_Sum.CalcItem(usm7HSelect.c15_1_2);
            this.Text205_Sum.CalcItem(usm7HSelect.c15_2);
            this.Text206_Sum.CalcItem(usm7HSelect.c15_3);
            this.Text207_Sum.CalcItem(usm7HSelect.c15_4);
        }
        
        public void DataBand2__Rendering(object sender, System.EventArgs e)
        {
            this.Text216_Sum.CalcItem(usm7HSelect.c4_1_2);
            this.Text217_Sum.CalcItem(usm7HSelect.c4_2);
            this.Text218_Sum.CalcItem(usm7HSelect.c4_3);
            this.Text219_Sum.CalcItem(usm7HSelect.c4_4);
            this.Text220_Sum.CalcItem(usm7HSelect.c5_1_2);
            this.Text221_Sum.CalcItem(usm7HSelect.c5_2);
            this.Text222_Sum.CalcItem(usm7HSelect.c5_3);
            this.Text223_Sum.CalcItem(usm7HSelect.c5_4);
            this.Text224_Sum.CalcItem(usm7HSelect.c6_1_2);
            this.Text225_Sum.CalcItem(usm7HSelect.c6_2);
            this.Text226_Sum.CalcItem(usm7HSelect.c6_3);
            this.Text227_Sum.CalcItem(usm7HSelect.c6_4);
            this.Text228_Sum.CalcItem(usm7HSelect.c7_1_2);
            this.Text229_Sum.CalcItem(usm7HSelect.c7_2);
            this.Text230_Sum.CalcItem(usm7HSelect.c7_3);
            this.Text231_Sum.CalcItem(usm7HSelect.c7_4);
            this.Text232_Sum.CalcItem(usm7HSelect.c8_1_2);
            this.Text233_Sum.CalcItem(usm7HSelect.c8_2);
            this.Text234_Sum.CalcItem(usm7HSelect.c8_3);
            this.Text235_Sum.CalcItem(usm7HSelect.c8_4);
            this.Text236_Sum.CalcItem(usm7HSelect.c9_1_2);
            this.Text237_Sum.CalcItem(usm7HSelect.c9_2);
            this.Text238_Sum.CalcItem(usm7HSelect.c9_3);
            this.Text239_Sum.CalcItem(usm7HSelect.c9_4);
            this.Text240_Sum.CalcItem(usm7HSelect.c10_1_2);
            this.Text241_Sum.CalcItem(usm7HSelect.c10_2);
            this.Text242_Sum.CalcItem(usm7HSelect.c10_3);
            this.Text243_Sum.CalcItem(usm7HSelect.c10_4);
            this.Text244_Sum.CalcItem(usm7HSelect.c11_1_2);
            this.Text245_Sum.CalcItem(usm7HSelect.c11_2);
            this.Text246_Sum.CalcItem(usm7HSelect.c11_3);
            this.Text247_Sum.CalcItem(usm7HSelect.c11_4);
            this.Text248_Sum.CalcItem(usm7HSelect.c12_1_2);
            this.Text249_Sum.CalcItem(usm7HSelect.c12_2);
            this.Text250_Sum.CalcItem(usm7HSelect.c12_3);
            this.Text251_Sum.CalcItem(usm7HSelect.c12_4);
            this.Text252_Sum.CalcItem(usm7HSelect.c13_1_2);
            this.Text253_Sum.CalcItem(usm7HSelect.c13_2);
            this.Text254_Sum.CalcItem(usm7HSelect.c13_3);
            this.Text255_Sum.CalcItem(usm7HSelect.c13_4);
            this.Text256_Sum.CalcItem(usm7HSelect.c14_1_2);
            this.Text257_Sum.CalcItem(usm7HSelect.c14_2);
            this.Text258_Sum.CalcItem(usm7HSelect.c14_3);
            this.Text259_Sum.CalcItem(usm7HSelect.c14_4);
            this.Text264_Sum.CalcItem(usm7HSelect.c4_1_2+usm7HSelect.c5_1_2+usm7HSelect.c6_1_2+usm7HSelect.c7_1_2+usm7HSelect.c8_1_2+usm7HSelect.c9_1_2+usm7HSelect.c10_1_2+usm7HSelect.c11_1_2+usm7HSelect.c12_1_2+usm7HSelect.c13_1_2+usm7HSelect.c14_1_2+usm7HSelect.c15_1_2);
            this.Text265_Sum.CalcItem(usm7HSelect.c4_2+usm7HSelect.c5_2+usm7HSelect.c6_2+usm7HSelect.c7_2+usm7HSelect.c8_2+usm7HSelect.c9_2+usm7HSelect.c10_2+usm7HSelect.c11_2+usm7HSelect.c12_2+usm7HSelect.c14_2+usm7HSelect.c13_2+usm7HSelect.c15_2);
            this.Text266_Sum.CalcItem(usm7HSelect.c4_3+usm7HSelect.c5_3+usm7HSelect.c6_3+usm7HSelect.c7_3+usm7HSelect.c8_3+usm7HSelect.c9_3+usm7HSelect.c10_3+usm7HSelect.c11_3+usm7HSelect.c12_3+usm7HSelect.c13_3+usm7HSelect.c14_3+usm7HSelect.c15_3);
            this.Text267_Sum.CalcItem(usm7HSelect.c4_4+usm7HSelect.c5_4+usm7HSelect.c6_4+usm7HSelect.c7_4+usm7HSelect.c8_4+usm7HSelect.c9_4+usm7HSelect.c10_4+usm7HSelect.c11_4+usm7HSelect.c12_4+usm7HSelect.c13_4+usm7HSelect.c14_4+usm7HSelect.c15_4);
            this.Text260_Sum.CalcItem(usm7HSelect.c15_1_2);
            this.Text261_Sum.CalcItem(usm7HSelect.c15_2);
            this.Text262_Sum.CalcItem(usm7HSelect.c15_3);
            this.Text263_Sum.CalcItem(usm7HSelect.c15_4);
        }
        
        private void InitializeComponent()
        {
            this.rayon = new rayonDataSource();
            this.obl = new oblDataSource();
            this.RayonName = new RayonNameDataSource();
            this.usm7HSelect = new usm7HSelectDataSource();
            this.Parentun2 = new Stimulsoft.Report.Dictionary.StiDataRelation("un2", "un2", "un2", this.rayon, this.usm7HSelect, new System.String[] {
                        "CodeValue"}, new System.String[] {
                        "rayonCode"});
            this.Parentun1 = new Stimulsoft.Report.Dictionary.StiDataRelation("un1", "un1", "un1", this.obl, this.rayon, new System.String[] {
                        "CodeID"}, new System.String[] {
                        "ParentID"});
            this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "reciveDateVar", "reciveDateVar", "", typeof(DateTime), "3/31/2012 12:00:00 AM", false, false, false));
            this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "rayonCodeVar", "rayonCodeVar", "", typeof(string), "058", false, false, false));
            this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "languageIDVar", "languageIDVar", "", typeof(int), "1049", false, false, false));
            this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "diopVar", "diopVar", "", typeof(int), "", false, false, false));
            this.NeedsCompiling = false;
            this.Text263_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text262_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text261_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text260_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text267_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text266_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text265_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text264_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text259_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text258_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text257_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text256_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text255_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text254_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text253_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text252_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text251_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text250_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text249_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text248_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text247_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text246_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text245_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text244_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text243_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text242_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text241_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text240_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text239_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text238_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text237_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text236_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text235_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text234_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text233_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text232_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text231_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text230_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text229_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text228_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text227_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text226_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text225_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text224_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text223_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text222_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text221_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text220_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text219_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text218_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text217_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text216_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text207_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text206_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text205_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text204_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text211_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text210_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text209_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text208_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text203_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text202_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text201_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text199_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text198_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text197_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text196_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text195_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text194_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text193_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text192_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text191_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text190_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text189_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text188_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text187_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text186_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text185_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text184_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text183_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text182_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text181_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text180_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text179_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text178_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text177_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text176_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text175_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text174_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text173_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text172_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text171_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text170_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text169_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text168_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text167_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text166_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text165_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text164_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text163_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text162_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text161_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text160_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text159_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text154_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text153_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text152_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text151_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text150_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text149_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text148_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text147_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text146_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text145_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text144_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text143_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text142_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text141_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text140_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text139_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text138_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text137_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text136_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text135_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text134_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text133_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text132_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text131_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text130_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text129_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text128_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text127_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text126_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text125_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text124_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text123_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text122_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text121_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text120_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text119_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text118_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text117_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text116_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text115_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text114_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text113_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text112_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text111_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text109_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text108_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text107_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text106_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text105_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text104_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text103_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            this.Text102_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
            // Variables init
            // Variables init
            this.reciveDateVar = ParseDateTime("3/31/2012 12:00:00 AM");
            this.rayonCodeVar = "058";
            this.languageIDVar = 1049;
            this.diopVar = 0;
            this.EngineVersion = Stimulsoft.Report.Engine.StiEngineVersion.EngineV2;
            this.ReferencedAssemblies = new System.String[] {
                    "System.Dll",
                    "System.Drawing.Dll",
                    "System.Windows.Forms.Dll",
                    "System.Data.Dll",
                    "System.Xml.Dll",
                    "Stimulsoft.Controls.Dll",
                    "Stimulsoft.Base.Dll",
                    "Stimulsoft.Report.Dll"};
            this.ReportAlias = "Report";
            // 
            // ReportChanged
            // 
            this.ReportChanged = new DateTime(2012, 4, 9, 19, 45, 14, 939);
            // 
            // ReportCreated
            // 
            this.ReportCreated = new DateTime(2011, 9, 19, 14, 6, 23, 0);
            this.ReportFile = "D:\\ITAS\\Sources\\ITAS\\STS.ITAS.Web\\Reports\\Reports\\7H.mrt";
            this.ReportGuid = "e2fca182bbb44a25be8ad005e7ab54de";
            this.ReportName = "Report";
            this.ReportUnit = Stimulsoft.Report.StiReportUnitType.Centimeters;
            this.ReportVersion = "2010.3.900";
            this.ScriptLanguage = Stimulsoft.Report.StiReportLanguageType.CSharp;
            // 
            // Page1
            // 
            this.Page1 = new Stimulsoft.Report.Components.StiPage();
            this.Page1.Guid = "37131552c93c4ddebfab7774dd373a03";
            this.Page1.LargeHeight = true;
            this.Page1.Name = "Page1";
            this.Page1.Orientation = Stimulsoft.Report.Components.StiPageOrientation.Landscape;
            this.Page1.PageHeight = 21;
            this.Page1.PageWidth = 29.7;
            this.Page1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 2, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Page1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            // 
            // ReportTitleBand1
            // 
            this.ReportTitleBand1 = new Stimulsoft.Report.Components.StiReportTitleBand();
            this.ReportTitleBand1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0.4, 28.7, 2.7);
            this.ReportTitleBand1.Name = "ReportTitleBand1";
            this.ReportTitleBand1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.ReportTitleBand1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            // 
            // Text1
            // 
            this.Text1 = new Stimulsoft.Report.Components.StiText();
            this.Text1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.53, 0.58, 21.59, 1.26);
            this.Text1.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text1.Name = "Text1";
            this.Text1.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text1__GetValue);
            this.Text1.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text1.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text1.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
            this.Text1.Guid = null;
            this.Text1.Interaction = null;
            this.Text1.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text1.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text1.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text2
            // 
            this.Text2 = new Stimulsoft.Report.Components.StiText();
            this.Text2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(23.26, 0.25, 5.1, 1.05);
            this.Text2.Name = "Text2";
            this.Text2.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text2__GetValue);
            this.Text2.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text2.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text2.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text2.Font = new System.Drawing.Font("Arial", 8F);
            this.Text2.Guid = null;
            this.Text2.Interaction = null;
            this.Text2.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text2.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text2.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text3
            // 
            this.Text3 = new Stimulsoft.Report.Components.StiText();
            this.Text3.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.24, 1.44, 3.18, 0.7);
            this.Text3.Name = "Text3";
            this.Text3.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text3__GetValue);
            this.Text3.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text3.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text3.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text3.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
            this.Text3.Guid = null;
            this.Text3.Interaction = null;
            this.Text3.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text3.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text3.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text268
            // 
            this.Text268 = new Stimulsoft.Report.Components.StiText();
            this.Text268.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(26.2, 2.2, 2.2, 0.6);
            this.Text268.Name = "Text268";
            this.Text268.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text268__GetValue);
            this.Text268.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text268.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text268.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text268.Font = new System.Drawing.Font("Arial", 10F);
            this.Text268.Guid = null;
            this.Text268.Interaction = null;
            this.Text268.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text268.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text268.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            this.ReportTitleBand1.Guid = null;
            this.ReportTitleBand1.Interaction = null;
            // 
            // HeaderBand1
            // 
            this.HeaderBand1 = new Stimulsoft.Report.Components.StiHeaderBand();
            this.HeaderBand1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 3.9, 28.7, 2.5);
            this.HeaderBand1.Name = "HeaderBand1";
            this.HeaderBand1.PrintIfEmpty = true;
            this.HeaderBand1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.HeaderBand1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            // 
            // Text4
            // 
            this.Text4 = new Stimulsoft.Report.Components.StiText();
            this.Text4.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0, 0.9, 2);
            this.Text4.Guid = "e449b665e04a4a9fa8e75c9565b75fe5";
            this.Text4.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text4.Name = "Text4";
            this.Text4.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text4__GetValue);
            this.Text4.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text4.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text4.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text4.Font = new System.Drawing.Font("Arial", 8F);
            this.Text4.Interaction = null;
            this.Text4.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text4.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text4.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text5
            // 
            this.Text5 = new Stimulsoft.Report.Components.StiText();
            this.Text5.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.9, 0, 2.5, 2);
            this.Text5.Guid = "a7cfa9b1adbe449995f1f69978db6209";
            this.Text5.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text5.Name = "Text5";
            this.Text5.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text5__GetValue);
            this.Text5.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text5.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text5.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text5.Font = new System.Drawing.Font("Arial", 8F);
            this.Text5.Interaction = null;
            this.Text5.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text5.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text5.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text6
            // 
            this.Text6 = new Stimulsoft.Report.Components.StiText();
            this.Text6.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(3.4, 0, 4.2, 2);
            this.Text6.Guid = "dcdafc15f0814157aa24f1c85ab407cc";
            this.Text6.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text6.Name = "Text6";
            this.Text6.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text6__GetValue);
            this.Text6.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text6.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text6.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text6.Font = new System.Drawing.Font("Arial", 8F);
            this.Text6.Interaction = null;
            this.Text6.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text6.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text6.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text21
            // 
            this.Text21 = new Stimulsoft.Report.Components.StiText();
            this.Text21.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 2, 0.9, 0.5);
            this.Text21.Guid = "3d440bf15c924706836432e5a5a45181";
            this.Text21.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text21.Name = "Text21";
            this.Text21.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text21__GetValue);
            this.Text21.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text21.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text21.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text21.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text21.Font = new System.Drawing.Font("Arial", 8F);
            this.Text21.Interaction = null;
            this.Text21.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text21.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text21.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text22
            // 
            this.Text22 = new Stimulsoft.Report.Components.StiText();
            this.Text22.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.9, 2, 2.5, 0.5);
            this.Text22.Guid = "4e06010bb1cd450b8fec6782710f874c";
            this.Text22.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text22.Name = "Text22";
            this.Text22.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text22__GetValue);
            this.Text22.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text22.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text22.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text22.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text22.Font = new System.Drawing.Font("Arial", 8F);
            this.Text22.Interaction = null;
            this.Text22.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text22.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text22.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text23
            // 
            this.Text23 = new Stimulsoft.Report.Components.StiText();
            this.Text23.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(3.4, 2, 4.2, 0.5);
            this.Text23.Guid = "ee2217ee49624f7aa2bbdd6fcb7d8b4f";
            this.Text23.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text23.Name = "Text23";
            this.Text23.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text23__GetValue);
            this.Text23.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text23.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text23.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text23.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text23.Font = new System.Drawing.Font("Arial", 8F);
            this.Text23.Interaction = null;
            this.Text23.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text23.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text23.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text7
            // 
            this.Text7 = new Stimulsoft.Report.Components.StiText();
            this.Text7.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 0, 1.5, 2);
            this.Text7.Guid = "71d734cdce9e4cacbe1324cc63581d41";
            this.Text7.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text7.Name = "Text7";
            this.Text7.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text7.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text7.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text7.Font = new System.Drawing.Font("Arial", 8F);
            this.Text7.Interaction = null;
            this.Text7.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text7.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text7.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text8
            // 
            this.Text8 = new Stimulsoft.Report.Components.StiText();
            this.Text8.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 0, 1.5, 2);
            this.Text8.Guid = "2cb753611a524fae8cfb3f21255041d3";
            this.Text8.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text8.Name = "Text8";
            this.Text8.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text8__GetValue);
            this.Text8.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text8.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text8.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text8.Font = new System.Drawing.Font("Arial", 8F);
            this.Text8.Interaction = null;
            this.Text8.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text8.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text8.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text9
            // 
            this.Text9 = new Stimulsoft.Report.Components.StiText();
            this.Text9.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 0, 1.5, 2);
            this.Text9.Guid = "4a76679e7ea540ec8c85ecdfbf44483a";
            this.Text9.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text9.Name = "Text9";
            this.Text9.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text9__GetValue);
            this.Text9.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text9.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text9.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text9.Font = new System.Drawing.Font("Arial", 8F);
            this.Text9.Interaction = null;
            this.Text9.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text9.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text9.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text10
            // 
            this.Text10 = new Stimulsoft.Report.Components.StiText();
            this.Text10.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 0, 1.5, 2);
            this.Text10.Guid = "ec652a73bc5041f7a9f70c5ed194a4eb";
            this.Text10.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text10.Name = "Text10";
            this.Text10.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text10__GetValue);
            this.Text10.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text10.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text10.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text10.Font = new System.Drawing.Font("Arial", 8F);
            this.Text10.Interaction = null;
            this.Text10.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text10.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text10.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text11
            // 
            this.Text11 = new Stimulsoft.Report.Components.StiText();
            this.Text11.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 0, 1.5, 2);
            this.Text11.Guid = "8444a54cd9db4bbb88cdf72ccba5ce3a";
            this.Text11.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text11.Name = "Text11";
            this.Text11.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text11__GetValue);
            this.Text11.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text11.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text11.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text11.Font = new System.Drawing.Font("Arial", 8F);
            this.Text11.Interaction = null;
            this.Text11.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text11.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text11.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text12
            // 
            this.Text12 = new Stimulsoft.Report.Components.StiText();
            this.Text12.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 0, 1.5, 2);
            this.Text12.Guid = "16169bc9c48c44458b602380c0d4b2ac";
            this.Text12.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text12.Name = "Text12";
            this.Text12.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text12__GetValue);
            this.Text12.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text12.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text12.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text12.Font = new System.Drawing.Font("Arial", 8F);
            this.Text12.Interaction = null;
            this.Text12.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text12.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text12.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text13
            // 
            this.Text13 = new Stimulsoft.Report.Components.StiText();
            this.Text13.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 0, 1.5, 2);
            this.Text13.Guid = "67b770d3faa6405abe9ff745f05fb5ba";
            this.Text13.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text13.Name = "Text13";
            this.Text13.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text13__GetValue);
            this.Text13.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text13.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text13.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text13.Font = new System.Drawing.Font("Arial", 8F);
            this.Text13.Interaction = null;
            this.Text13.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text13.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text13.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text14
            // 
            this.Text14 = new Stimulsoft.Report.Components.StiText();
            this.Text14.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 0, 1.5, 2);
            this.Text14.Guid = "a22307629055458b97b739ac3a0206c8";
            this.Text14.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text14.Name = "Text14";
            this.Text14.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text14__GetValue);
            this.Text14.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text14.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text14.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text14.Font = new System.Drawing.Font("Arial", 8F);
            this.Text14.Interaction = null;
            this.Text14.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text14.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text14.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text15
            // 
            this.Text15 = new Stimulsoft.Report.Components.StiText();
            this.Text15.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 0, 1.5, 2);
            this.Text15.Guid = "ddbd8e9d29f24eb5be8c7771eeb864f5";
            this.Text15.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text15.Name = "Text15";
            this.Text15.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text15__GetValue);
            this.Text15.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text15.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text15.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text15.Font = new System.Drawing.Font("Arial", 8F);
            this.Text15.Interaction = null;
            this.Text15.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text15.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text15.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text16
            // 
            this.Text16 = new Stimulsoft.Report.Components.StiText();
            this.Text16.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 0, 1.5, 2);
            this.Text16.Guid = "b99b5e3a64144f1b9df9563c8e647ec1";
            this.Text16.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text16.Name = "Text16";
            this.Text16.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text16__GetValue);
            this.Text16.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text16.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text16.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text16.Font = new System.Drawing.Font("Arial", 8F);
            this.Text16.Interaction = null;
            this.Text16.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text16.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text16.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text17
            // 
            this.Text17 = new Stimulsoft.Report.Components.StiText();
            this.Text17.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 0, 1.5, 2);
            this.Text17.Guid = "8b9f462c778e4d9e9b992f0cad2ab0d0";
            this.Text17.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text17.Name = "Text17";
            this.Text17.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text17__GetValue);
            this.Text17.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text17.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text17.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text17.Font = new System.Drawing.Font("Arial", 8F);
            this.Text17.Interaction = null;
            this.Text17.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text17.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text17.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text18
            // 
            this.Text18 = new Stimulsoft.Report.Components.StiText();
            this.Text18.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 0, 1.5, 2);
            this.Text18.Guid = "1592a5373e5f4959b6ca8677cb9bea01";
            this.Text18.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text18.Name = "Text18";
            this.Text18.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text18__GetValue);
            this.Text18.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text18.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text18.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text18.Font = new System.Drawing.Font("Arial", 8F);
            this.Text18.Interaction = null;
            this.Text18.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text18.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text18.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text19
            // 
            this.Text19 = new Stimulsoft.Report.Components.StiText();
            this.Text19.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 0, 1.5, 2);
            this.Text19.Guid = "a7f58e4d860c4a199760de0ebb7c919f";
            this.Text19.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text19.Name = "Text19";
            this.Text19.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text19__GetValue);
            this.Text19.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text19.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text19.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text19.Font = new System.Drawing.Font("Arial", 8F);
            this.Text19.Interaction = null;
            this.Text19.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text19.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text19.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text20
            // 
            this.Text20 = new Stimulsoft.Report.Components.StiText();
            this.Text20.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 0, 1.6, 2);
            this.Text20.Guid = "765a3e5ed10149b9900214ea6d96f88f";
            this.Text20.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text20.Name = "Text20";
            this.Text20.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text20__GetValue);
            this.Text20.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text20.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text20.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text20.Font = new System.Drawing.Font("Arial", 8F);
            this.Text20.Interaction = null;
            this.Text20.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text20.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text20.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text24
            // 
            this.Text24 = new Stimulsoft.Report.Components.StiText();
            this.Text24.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 2, 1.5, 0.5);
            this.Text24.Guid = "e5fc77b4f6d3434c8e33d3e5337e8bba";
            this.Text24.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text24.Name = "Text24";
            this.Text24.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text24.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text24.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text24.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text24.Font = new System.Drawing.Font("Arial", 8F);
            this.Text24.Interaction = null;
            this.Text24.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text24.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text24.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text25
            // 
            this.Text25 = new Stimulsoft.Report.Components.StiText();
            this.Text25.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 2, 1.5, 0.5);
            this.Text25.Guid = "043fd424bd74430ebcff3f06ada3d313";
            this.Text25.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text25.Name = "Text25";
            this.Text25.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text25__GetValue);
            this.Text25.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text25.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text25.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text25.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text25.Font = new System.Drawing.Font("Arial", 8F);
            this.Text25.Interaction = null;
            this.Text25.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text25.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text25.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text26
            // 
            this.Text26 = new Stimulsoft.Report.Components.StiText();
            this.Text26.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 2, 1.5, 0.5);
            this.Text26.Guid = "3f94c6525a2a4e03a04dd94353f6403c";
            this.Text26.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text26.Name = "Text26";
            this.Text26.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text26__GetValue);
            this.Text26.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text26.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text26.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text26.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text26.Font = new System.Drawing.Font("Arial", 8F);
            this.Text26.Interaction = null;
            this.Text26.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text26.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text26.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text27
            // 
            this.Text27 = new Stimulsoft.Report.Components.StiText();
            this.Text27.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 2, 1.5, 0.5);
            this.Text27.Guid = "03149a864cca4df7a40a10e7d612e38b";
            this.Text27.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text27.Name = "Text27";
            this.Text27.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text27__GetValue);
            this.Text27.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text27.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text27.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text27.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text27.Font = new System.Drawing.Font("Arial", 8F);
            this.Text27.Interaction = null;
            this.Text27.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text27.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text27.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text28
            // 
            this.Text28 = new Stimulsoft.Report.Components.StiText();
            this.Text28.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 2, 1.5, 0.5);
            this.Text28.Guid = "e7ab64c41683446cb32fa921dff535cb";
            this.Text28.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text28.Name = "Text28";
            this.Text28.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text28__GetValue);
            this.Text28.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text28.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text28.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text28.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text28.Font = new System.Drawing.Font("Arial", 8F);
            this.Text28.Interaction = null;
            this.Text28.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text28.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text28.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text29
            // 
            this.Text29 = new Stimulsoft.Report.Components.StiText();
            this.Text29.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 2, 1.5, 0.5);
            this.Text29.Guid = "4fb3e0de72e04915a559a8e419cf541f";
            this.Text29.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text29.Name = "Text29";
            this.Text29.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text29__GetValue);
            this.Text29.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text29.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text29.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text29.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text29.Font = new System.Drawing.Font("Arial", 8F);
            this.Text29.Interaction = null;
            this.Text29.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text29.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text29.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text30
            // 
            this.Text30 = new Stimulsoft.Report.Components.StiText();
            this.Text30.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 2, 1.5, 0.5);
            this.Text30.Guid = "0d6d1e8c6bb144c6adc85e872211985a";
            this.Text30.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text30.Name = "Text30";
            this.Text30.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text30__GetValue);
            this.Text30.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text30.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text30.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text30.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text30.Font = new System.Drawing.Font("Arial", 8F);
            this.Text30.Interaction = null;
            this.Text30.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text30.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text30.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text31
            // 
            this.Text31 = new Stimulsoft.Report.Components.StiText();
            this.Text31.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 2, 1.5, 0.5);
            this.Text31.Guid = "4d2ae861b9344bf3816faf351b4083bf";
            this.Text31.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text31.Name = "Text31";
            this.Text31.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text31__GetValue);
            this.Text31.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text31.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text31.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text31.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text31.Font = new System.Drawing.Font("Arial", 8F);
            this.Text31.Interaction = null;
            this.Text31.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text31.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text31.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text32
            // 
            this.Text32 = new Stimulsoft.Report.Components.StiText();
            this.Text32.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 2, 1.5, 0.5);
            this.Text32.Guid = "33536aacaf6848f9b936d08eb5ea9aef";
            this.Text32.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text32.Name = "Text32";
            this.Text32.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text32__GetValue);
            this.Text32.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text32.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text32.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text32.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text32.Font = new System.Drawing.Font("Arial", 8F);
            this.Text32.Interaction = null;
            this.Text32.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text32.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text32.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text33
            // 
            this.Text33 = new Stimulsoft.Report.Components.StiText();
            this.Text33.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 2, 1.5, 0.5);
            this.Text33.Guid = "bc94371f693244bd83d6bb5f3d228d98";
            this.Text33.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text33.Name = "Text33";
            this.Text33.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text33__GetValue);
            this.Text33.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text33.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text33.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text33.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text33.Font = new System.Drawing.Font("Arial", 8F);
            this.Text33.Interaction = null;
            this.Text33.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text33.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text33.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text34
            // 
            this.Text34 = new Stimulsoft.Report.Components.StiText();
            this.Text34.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 2, 1.5, 0.5);
            this.Text34.Guid = "14117f6ea76846389cdf48fddee41284";
            this.Text34.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text34.Name = "Text34";
            this.Text34.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text34__GetValue);
            this.Text34.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text34.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text34.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text34.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text34.Font = new System.Drawing.Font("Arial", 8F);
            this.Text34.Interaction = null;
            this.Text34.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text34.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text34.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text35
            // 
            this.Text35 = new Stimulsoft.Report.Components.StiText();
            this.Text35.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 2, 1.5, 0.5);
            this.Text35.Guid = "ff5205651daf4d3cb562714eb2aa6b67";
            this.Text35.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text35.Name = "Text35";
            this.Text35.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text35__GetValue);
            this.Text35.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text35.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text35.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text35.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text35.Font = new System.Drawing.Font("Arial", 8F);
            this.Text35.Interaction = null;
            this.Text35.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text35.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text35.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text36
            // 
            this.Text36 = new Stimulsoft.Report.Components.StiText();
            this.Text36.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 2, 1.5, 0.5);
            this.Text36.Guid = "17e27fe59e3a4259bf110a51be0610f7";
            this.Text36.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text36.Name = "Text36";
            this.Text36.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text36__GetValue);
            this.Text36.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text36.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text36.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text36.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text36.Font = new System.Drawing.Font("Arial", 8F);
            this.Text36.Interaction = null;
            this.Text36.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text36.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text36.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text37
            // 
            this.Text37 = new Stimulsoft.Report.Components.StiText();
            this.Text37.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 2, 1.6, 0.5);
            this.Text37.Guid = "79f78dc6d15b46bdab1071b641f06db7";
            this.Text37.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text37.Name = "Text37";
            this.Text37.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text37__GetValue);
            this.Text37.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text37.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text37.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text37.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text37.Font = new System.Drawing.Font("Arial", 8F);
            this.Text37.Interaction = null;
            this.Text37.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text37.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text37.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            this.HeaderBand1.Guid = null;
            this.HeaderBand1.Interaction = null;
            // 
            // GroupHeaderBand1
            // 
            this.GroupHeaderBand1 = new Stimulsoft.Report.Components.StiGroupHeaderBand();
            this.GroupHeaderBand1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 7.2, 28.7, 0.8);
            this.GroupHeaderBand1.GetValue += new Stimulsoft.Report.Events.StiValueEventHandler(this.GroupHeaderBand1__GetValue);
            this.GroupHeaderBand1.BeforePrint += new System.EventHandler(this.GroupHeaderBand1_Conditions);
            this.GroupHeaderBand1.Name = "GroupHeaderBand1";
            this.GroupHeaderBand1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.GroupHeaderBand1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            // 
            // Text110
            // 
            this.Text110 = new Stimulsoft.Report.Components.StiText();
            this.Text110.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0, 14.2, 0.8);
            this.Text110.Name = "Text110";
            this.Text110.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text110__GetValue);
            this.Text110.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text110.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text110.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text110.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text110.Font = new System.Drawing.Font("Arial", 10F);
            this.Text110.Guid = null;
            this.Text110.Interaction = null;
            this.Text110.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text110.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text110.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            this.GroupHeaderBand1.Guid = null;
            this.GroupHeaderBand1.Interaction = null;
            // 
            // GroupHeaderBand2
            // 
            this.GroupHeaderBand2 = new Stimulsoft.Report.Components.StiGroupHeaderBand();
            this.GroupHeaderBand2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 8.8, 28.7, 0.8);
            this.GroupHeaderBand2.GetValue += new Stimulsoft.Report.Events.StiValueEventHandler(this.GroupHeaderBand2__GetValue);
            this.GroupHeaderBand2.Name = "GroupHeaderBand2";
            this.GroupHeaderBand2.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.GroupHeaderBand2.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            // 
            // Text38
            // 
            this.Text38 = new Stimulsoft.Report.Components.StiText();
            this.Text38.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.8, 0, 14.2, 0.8);
            this.Text38.Name = "Text38";
            this.Text38.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text38__GetValue);
            this.Text38.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text38.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text38.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text38.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text38.Font = new System.Drawing.Font("Arial", 10F);
            this.Text38.Guid = null;
            this.Text38.Interaction = null;
            this.Text38.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text38.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text38.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            this.GroupHeaderBand2.Guid = null;
            this.GroupHeaderBand2.Interaction = null;
            // 
            // DataBand2
            // 
            this.DataBand2 = new Stimulsoft.Report.Components.StiDataBand();
            this.DataBand2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 10.4, 28.7, 2);
            this.DataBand2.DataRelationName = "un2";
            this.DataBand2.DataSourceName = "usm7HSelect";
            this.DataBand2.Name = "DataBand2";
            this.DataBand2.Sort = new System.String[0];
            this.DataBand2.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.DataBand2.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.DataBand2.BusinessObjectGuid = null;
            // 
            // Text39
            // 
            this.Text39 = new Stimulsoft.Report.Components.StiText();
            this.Text39.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0, 0.9, 2);
            this.Text39.Guid = "f762368655ee4d328b96decd30b00928";
            this.Text39.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text39.Name = "Text39";
            this.Text39.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text39__GetValue);
            this.Text39.Type = Stimulsoft.Report.Components.StiSystemTextType.SystemVariables;
            this.Text39.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text39.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text39.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text39.Font = new System.Drawing.Font("Arial", 8F);
            this.Text39.Interaction = null;
            this.Text39.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text39.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text39.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text391
            // 
            this.Text391 = new Stimulsoft.Report.Components.StiText();
            this.Text391.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.9, 0, 2.5, 2);
            this.Text391.Guid = "73b048df311047c191f164eb7706734d";
            this.Text391.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text391.Name = "Text391";
            this.Text391.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text391__GetValue);
            this.Text391.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text391.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text391.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text391.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text391.Font = new System.Drawing.Font("Arial", 8F);
            this.Text391.Interaction = null;
            this.Text391.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text391.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text391.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text40
            // 
            this.Text40 = new Stimulsoft.Report.Components.StiText();
            this.Text40.CanGrow = true;
            this.Text40.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(3.4, 0, 4.2, 2);
            this.Text40.Guid = "f3f7c00345cb42e2ac27fd45dbfe44a1";
            this.Text40.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text40.Name = "Text40";
            this.Text40.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text40__GetValue);
            this.Text40.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text40.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text40.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.InitializeComponent2();
        }
        
        public void InitializeComponent2()
        {
            this.Text40.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text40.Font = new System.Drawing.Font("Arial", 8F);
            this.Text40.Interaction = null;
            this.Text40.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text40.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text40.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text41
            // 
            this.Text41 = new Stimulsoft.Report.Components.StiText();
            this.Text41.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 0, 1.5, 0.5);
            this.Text41.Guid = "6c27d6f183fe46e990eaa3e3695aa86b";
            this.Text41.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text41.Name = "Text41";
            this.Text41.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text41__GetValue);
            this.Text41.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text41.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text41.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text41.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text41.Font = new System.Drawing.Font("Arial", 8F);
            this.Text41.Interaction = null;
            this.Text41.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text41.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text41.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text42
            // 
            this.Text42 = new Stimulsoft.Report.Components.StiText();
            this.Text42.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 0.5, 1.5, 0.5);
            this.Text42.Guid = "ec5bc085637640c983b2b135ec27be15";
            this.Text42.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text42.Name = "Text42";
            this.Text42.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text42__GetValue);
            this.Text42.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text42.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text42.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text42.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text42.Font = new System.Drawing.Font("Arial", 8F);
            this.Text42.Interaction = null;
            this.Text42.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text42.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text42.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text43
            // 
            this.Text43 = new Stimulsoft.Report.Components.StiText();
            this.Text43.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 1, 1.5, 0.5);
            this.Text43.Guid = "10010b40094b488e9f048c66423e84c5";
            this.Text43.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text43.Name = "Text43";
            this.Text43.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text43__GetValue);
            this.Text43.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text43.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text43.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text43.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text43.Font = new System.Drawing.Font("Arial", 8F);
            this.Text43.Interaction = null;
            this.Text43.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text43.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text43.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text44
            // 
            this.Text44 = new Stimulsoft.Report.Components.StiText();
            this.Text44.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 1.5, 1.5, 0.5);
            this.Text44.Guid = "16dea69451e8479084676b40f7623af0";
            this.Text44.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text44.Name = "Text44";
            this.Text44.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text44__GetValue);
            this.Text44.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text44.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text44.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text44.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text44.Font = new System.Drawing.Font("Arial", 8F);
            this.Text44.Interaction = null;
            this.Text44.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text44.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text44.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text45
            // 
            this.Text45 = new Stimulsoft.Report.Components.StiText();
            this.Text45.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 0, 1.5, 0.5);
            this.Text45.BeforePrint += new System.EventHandler(this.Text45_Conditions);
            this.Text45.TextProcess += new Stimulsoft.Report.Events.StiValueEventHandler(this.Text45_ConditionsTextValue);
            this.Text45.Guid = "6f707098822742e8a2781280447e81f5";
            this.Text45.HideZeros = true;
            this.Text45.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text45.Name = "Text45";
            this.Text45.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text45__GetValue);
            this.Text45.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text45.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text45.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text45.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text45.Font = new System.Drawing.Font("Arial", 8F);
            this.Text45.Interaction = null;
            this.Text45.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text45.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text45.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text46
            // 
            this.Text46 = new Stimulsoft.Report.Components.StiText();
            this.Text46.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 0.5, 1.5, 0.5);
            this.Text46.Guid = "445b4f3928de4c5cb10a797969d2db37";
            this.Text46.HideZeros = true;
            this.Text46.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text46.Name = "Text46";
            this.Text46.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text46__GetValue);
            this.Text46.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text46.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text46.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text46.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text46.Font = new System.Drawing.Font("Arial", 8F);
            this.Text46.Interaction = null;
            this.Text46.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text46.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text46.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text47
            // 
            this.Text47 = new Stimulsoft.Report.Components.StiText();
            this.Text47.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 1, 1.5, 0.5);
            this.Text47.Guid = "f692fb2b361848448f77145ae216bf0a";
            this.Text47.HideZeros = true;
            this.Text47.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text47.Name = "Text47";
            this.Text47.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text47__GetValue);
            this.Text47.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text47.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text47.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text47.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text47.Font = new System.Drawing.Font("Arial", 8F);
            this.Text47.Interaction = null;
            this.Text47.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text47.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text47.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text48
            // 
            this.Text48 = new Stimulsoft.Report.Components.StiText();
            this.Text48.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 1.5, 1.5, 0.5);
            this.Text48.Guid = "edf02ae6e98f42c8b601e856ed27169b";
            this.Text48.HideZeros = true;
            this.Text48.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text48.Name = "Text48";
            this.Text48.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text48__GetValue);
            this.Text48.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text48.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text48.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text48.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text48.Font = new System.Drawing.Font("Arial", 8F);
            this.Text48.Interaction = null;
            this.Text48.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text48.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text48.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text49
            // 
            this.Text49 = new Stimulsoft.Report.Components.StiText();
            this.Text49.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 0, 1.5, 0.5);
            this.Text49.Guid = "ae82da374b23458bb785a1d7809f51d1";
            this.Text49.HideZeros = true;
            this.Text49.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text49.Name = "Text49";
            this.Text49.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text49__GetValue);
            this.Text49.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text49.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text49.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text49.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text49.Font = new System.Drawing.Font("Arial", 8F);
            this.Text49.Interaction = null;
            this.Text49.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text49.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text49.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text50
            // 
            this.Text50 = new Stimulsoft.Report.Components.StiText();
            this.Text50.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 0.5, 1.5, 0.5);
            this.Text50.Guid = "d1d5ada32b5a431188ffa16ec3fb6ece";
            this.Text50.HideZeros = true;
            this.Text50.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text50.Name = "Text50";
            this.Text50.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text50__GetValue);
            this.Text50.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text50.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text50.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text50.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text50.Font = new System.Drawing.Font("Arial", 8F);
            this.Text50.Interaction = null;
            this.Text50.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text50.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text50.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text51
            // 
            this.Text51 = new Stimulsoft.Report.Components.StiText();
            this.Text51.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 1, 1.5, 0.5);
            this.Text51.Guid = "0393e67ad67a49d69416868250941204";
            this.Text51.HideZeros = true;
            this.Text51.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text51.Name = "Text51";
            this.Text51.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text51__GetValue);
            this.Text51.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text51.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text51.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text51.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text51.Font = new System.Drawing.Font("Arial", 8F);
            this.Text51.Interaction = null;
            this.Text51.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text51.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text51.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text52
            // 
            this.Text52 = new Stimulsoft.Report.Components.StiText();
            this.Text52.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 1.5, 1.5, 0.5);
            this.Text52.Guid = "68a4a9fbc3544fb594ebea59f74309ec";
            this.Text52.HideZeros = true;
            this.Text52.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text52.Name = "Text52";
            this.Text52.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text52__GetValue);
            this.Text52.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text52.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text52.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text52.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text52.Font = new System.Drawing.Font("Arial", 8F);
            this.Text52.Interaction = null;
            this.Text52.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text52.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text52.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text53
            // 
            this.Text53 = new Stimulsoft.Report.Components.StiText();
            this.Text53.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 0, 1.5, 0.5);
            this.Text53.Guid = "ace3b5cbbe4546848e6c5a0c295737b2";
            this.Text53.HideZeros = true;
            this.Text53.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text53.Name = "Text53";
            this.Text53.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text53__GetValue);
            this.Text53.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text53.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text53.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text53.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text53.Font = new System.Drawing.Font("Arial", 8F);
            this.Text53.Interaction = null;
            this.Text53.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text53.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text53.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text54
            // 
            this.Text54 = new Stimulsoft.Report.Components.StiText();
            this.Text54.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 0.5, 1.5, 0.5);
            this.Text54.Guid = "a4ea67f378494024a803e86a117c7669";
            this.Text54.HideZeros = true;
            this.Text54.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text54.Name = "Text54";
            this.Text54.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text54__GetValue);
            this.Text54.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text54.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text54.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text54.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text54.Font = new System.Drawing.Font("Arial", 8F);
            this.Text54.Interaction = null;
            this.Text54.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text54.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text54.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text55
            // 
            this.Text55 = new Stimulsoft.Report.Components.StiText();
            this.Text55.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 1, 1.5, 0.5);
            this.Text55.Guid = "c8871d4682d548a08eebdf6918e019ba";
            this.Text55.HideZeros = true;
            this.Text55.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text55.Name = "Text55";
            this.Text55.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text55__GetValue);
            this.Text55.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text55.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text55.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text55.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text55.Font = new System.Drawing.Font("Arial", 8F);
            this.Text55.Interaction = null;
            this.Text55.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text55.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text55.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text56
            // 
            this.Text56 = new Stimulsoft.Report.Components.StiText();
            this.Text56.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 1.5, 1.5, 0.5);
            this.Text56.Guid = "c8cb739de8bf4a6396b80926c761fae8";
            this.Text56.HideZeros = true;
            this.Text56.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text56.Name = "Text56";
            this.Text56.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text56__GetValue);
            this.Text56.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text56.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text56.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text56.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text56.Font = new System.Drawing.Font("Arial", 8F);
            this.Text56.Interaction = null;
            this.Text56.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text56.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text56.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text57
            // 
            this.Text57 = new Stimulsoft.Report.Components.StiText();
            this.Text57.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 0, 1.5, 0.5);
            this.Text57.Guid = "904a54dcb38449278c7199112042c1fe";
            this.Text57.HideZeros = true;
            this.Text57.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text57.Name = "Text57";
            this.Text57.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text57__GetValue);
            this.Text57.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text57.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text57.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text57.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text57.Font = new System.Drawing.Font("Arial", 8F);
            this.Text57.Interaction = null;
            this.Text57.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text57.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text57.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text58
            // 
            this.Text58 = new Stimulsoft.Report.Components.StiText();
            this.Text58.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 0.5, 1.5, 0.5);
            this.Text58.Guid = "d23d101742634945b73404156207a11a";
            this.Text58.HideZeros = true;
            this.Text58.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text58.Name = "Text58";
            this.Text58.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text58__GetValue);
            this.Text58.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text58.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text58.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text58.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text58.Font = new System.Drawing.Font("Arial", 8F);
            this.Text58.Interaction = null;
            this.Text58.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text58.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text58.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text59
            // 
            this.Text59 = new Stimulsoft.Report.Components.StiText();
            this.Text59.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 1, 1.5, 0.5);
            this.Text59.Guid = "a5d7d06d06714882ba9f18f20184ca47";
            this.Text59.HideZeros = true;
            this.Text59.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text59.Name = "Text59";
            this.Text59.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text59__GetValue);
            this.Text59.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text59.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text59.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text59.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text59.Font = new System.Drawing.Font("Arial", 8F);
            this.Text59.Interaction = null;
            this.Text59.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text59.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text59.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text60
            // 
            this.Text60 = new Stimulsoft.Report.Components.StiText();
            this.Text60.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 1.5, 1.5, 0.5);
            this.Text60.Guid = "10a1117ba63a4ba6a8b5d467e84a7c7f";
            this.Text60.HideZeros = true;
            this.Text60.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text60.Name = "Text60";
            this.Text60.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text60__GetValue);
            this.Text60.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text60.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text60.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text60.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text60.Font = new System.Drawing.Font("Arial", 8F);
            this.Text60.Interaction = null;
            this.Text60.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text60.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text60.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text61
            // 
            this.Text61 = new Stimulsoft.Report.Components.StiText();
            this.Text61.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 0, 1.5, 0.5);
            this.Text61.Guid = "e9a8fde4aaad4803a1d888a7608e566c";
            this.Text61.HideZeros = true;
            this.Text61.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text61.Name = "Text61";
            this.Text61.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text61__GetValue);
            this.Text61.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text61.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text61.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text61.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text61.Font = new System.Drawing.Font("Arial", 8F);
            this.Text61.Interaction = null;
            this.Text61.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text61.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text61.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text62
            // 
            this.Text62 = new Stimulsoft.Report.Components.StiText();
            this.Text62.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 0.5, 1.5, 0.5);
            this.Text62.Guid = "f38b88c3fc2243699d99816b3d594926";
            this.Text62.HideZeros = true;
            this.Text62.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text62.Name = "Text62";
            this.Text62.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text62__GetValue);
            this.Text62.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text62.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text62.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text62.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text62.Font = new System.Drawing.Font("Arial", 8F);
            this.Text62.Interaction = null;
            this.Text62.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text62.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text62.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text63
            // 
            this.Text63 = new Stimulsoft.Report.Components.StiText();
            this.Text63.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 1, 1.5, 0.5);
            this.Text63.Guid = "6518d7f8dca441b393fdb7b6b2963ec3";
            this.Text63.HideZeros = true;
            this.Text63.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text63.Name = "Text63";
            this.Text63.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text63__GetValue);
            this.Text63.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text63.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text63.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text63.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text63.Font = new System.Drawing.Font("Arial", 8F);
            this.Text63.Interaction = null;
            this.Text63.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text63.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text63.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text64
            // 
            this.Text64 = new Stimulsoft.Report.Components.StiText();
            this.Text64.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 1.5, 1.5, 0.5);
            this.Text64.Guid = "dced329cb30b4d1b8fcb623e8baca4f4";
            this.Text64.HideZeros = true;
            this.Text64.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text64.Name = "Text64";
            this.Text64.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text64__GetValue);
            this.Text64.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text64.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text64.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text64.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text64.Font = new System.Drawing.Font("Arial", 8F);
            this.Text64.Interaction = null;
            this.Text64.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text64.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text64.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text65
            // 
            this.Text65 = new Stimulsoft.Report.Components.StiText();
            this.Text65.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 0, 1.5, 0.5);
            this.Text65.Guid = "caab3bb5b0234962808e60f9d101ab1c";
            this.Text65.HideZeros = true;
            this.Text65.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text65.Name = "Text65";
            this.Text65.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text65__GetValue);
            this.Text65.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text65.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text65.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text65.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text65.Font = new System.Drawing.Font("Arial", 8F);
            this.Text65.Interaction = null;
            this.Text65.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text65.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text65.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text66
            // 
            this.Text66 = new Stimulsoft.Report.Components.StiText();
            this.Text66.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 0.5, 1.5, 0.5);
            this.Text66.Guid = "67f67a642b3640d0bf762cd8af9d0f5f";
            this.Text66.HideZeros = true;
            this.Text66.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text66.Name = "Text66";
            this.Text66.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text66__GetValue);
            this.Text66.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text66.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text66.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text66.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text66.Font = new System.Drawing.Font("Arial", 8F);
            this.Text66.Interaction = null;
            this.Text66.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text66.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text66.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text67
            // 
            this.Text67 = new Stimulsoft.Report.Components.StiText();
            this.Text67.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 1, 1.5, 0.5);
            this.Text67.Guid = "f892bab05d394abd9ae7948a3017cdbf";
            this.Text67.HideZeros = true;
            this.Text67.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text67.Name = "Text67";
            this.Text67.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text67__GetValue);
            this.Text67.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text67.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text67.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text67.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text67.Font = new System.Drawing.Font("Arial", 8F);
            this.Text67.Interaction = null;
            this.Text67.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text67.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text67.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text68
            // 
            this.Text68 = new Stimulsoft.Report.Components.StiText();
            this.Text68.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 1.5, 1.5, 0.5);
            this.Text68.Guid = "8186630ac2e84cdfac2fdfba7a463941";
            this.Text68.HideZeros = true;
            this.Text68.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text68.Name = "Text68";
            this.Text68.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text68__GetValue);
            this.Text68.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text68.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text68.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text68.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text68.Font = new System.Drawing.Font("Arial", 8F);
            this.Text68.Interaction = null;
            this.Text68.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text68.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text68.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text69
            // 
            this.Text69 = new Stimulsoft.Report.Components.StiText();
            this.Text69.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 0, 1.5, 0.5);
            this.Text69.Guid = "eabeea4194974591af513d6ad3c832fa";
            this.Text69.HideZeros = true;
            this.Text69.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text69.Name = "Text69";
            this.Text69.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text69__GetValue);
            this.Text69.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text69.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text69.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text69.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text69.Font = new System.Drawing.Font("Arial", 8F);
            this.Text69.Interaction = null;
            this.Text69.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text69.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text69.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text70
            // 
            this.Text70 = new Stimulsoft.Report.Components.StiText();
            this.Text70.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 0.5, 1.5, 0.5);
            this.Text70.Guid = "ec749fd809fb4e019875c2570518ec9e";
            this.Text70.HideZeros = true;
            this.Text70.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text70.Name = "Text70";
            this.Text70.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text70__GetValue);
            this.Text70.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text70.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text70.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text70.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text70.Font = new System.Drawing.Font("Arial", 8F);
            this.Text70.Interaction = null;
            this.Text70.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text70.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text70.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text71
            // 
            this.Text71 = new Stimulsoft.Report.Components.StiText();
            this.Text71.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 1, 1.5, 0.5);
            this.Text71.Guid = "fc4ff6ec5d5c4974b37bceb6f46fb2db";
            this.Text71.HideZeros = true;
            this.Text71.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text71.Name = "Text71";
            this.Text71.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text71__GetValue);
            this.Text71.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text71.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text71.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text71.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text71.Font = new System.Drawing.Font("Arial", 8F);
            this.Text71.Interaction = null;
            this.Text71.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text71.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text71.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text72
            // 
            this.Text72 = new Stimulsoft.Report.Components.StiText();
            this.Text72.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 1.5, 1.5, 0.5);
            this.Text72.Guid = "1b1d6f338ff8419ea11bad569448e000";
            this.Text72.HideZeros = true;
            this.Text72.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text72.Name = "Text72";
            this.Text72.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text72__GetValue);
            this.Text72.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text72.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text72.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text72.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text72.Font = new System.Drawing.Font("Arial", 8F);
            this.Text72.Interaction = null;
            this.Text72.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text72.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text72.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text73
            // 
            this.Text73 = new Stimulsoft.Report.Components.StiText();
            this.Text73.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 0, 1.5, 0.5);
            this.Text73.Guid = "e5eea90f48214e419416403036f93980";
            this.Text73.HideZeros = true;
            this.Text73.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text73.Name = "Text73";
            this.Text73.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text73__GetValue);
            this.Text73.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text73.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text73.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text73.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text73.Font = new System.Drawing.Font("Arial", 8F);
            this.Text73.Interaction = null;
            this.Text73.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text73.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text73.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text74
            // 
            this.Text74 = new Stimulsoft.Report.Components.StiText();
            this.Text74.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 0.5, 1.5, 0.5);
            this.Text74.Guid = "b6ff64f63ade4ec4b56f507f8b0a23f3";
            this.Text74.HideZeros = true;
            this.Text74.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text74.Name = "Text74";
            this.Text74.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text74__GetValue);
            this.Text74.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text74.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text74.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text74.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text74.Font = new System.Drawing.Font("Arial", 8F);
            this.Text74.Interaction = null;
            this.Text74.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text74.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text74.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text75
            // 
            this.Text75 = new Stimulsoft.Report.Components.StiText();
            this.Text75.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 1, 1.5, 0.5);
            this.Text75.Guid = "ad40d91403f54ad386de6d4bc52b49b2";
            this.Text75.HideZeros = true;
            this.Text75.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text75.Name = "Text75";
            this.Text75.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text75__GetValue);
            this.Text75.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text75.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text75.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text75.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text75.Font = new System.Drawing.Font("Arial", 8F);
            this.Text75.Interaction = null;
            this.Text75.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text75.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text75.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text76
            // 
            this.Text76 = new Stimulsoft.Report.Components.StiText();
            this.Text76.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 1.5, 1.5, 0.5);
            this.Text76.Guid = "27684670af9d433e825b3f7546118097";
            this.Text76.HideZeros = true;
            this.Text76.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text76.Name = "Text76";
            this.Text76.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text76__GetValue);
            this.Text76.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text76.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text76.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text76.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text76.Font = new System.Drawing.Font("Arial", 8F);
            this.Text76.Interaction = null;
            this.Text76.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text76.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text76.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text77
            // 
            this.Text77 = new Stimulsoft.Report.Components.StiText();
            this.Text77.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 0, 1.5, 0.5);
            this.Text77.Guid = "fe30998a898f49d38daf744963aaac77";
            this.Text77.HideZeros = true;
            this.Text77.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text77.Name = "Text77";
            this.Text77.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text77__GetValue);
            this.Text77.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text77.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text77.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text77.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text77.Font = new System.Drawing.Font("Arial", 8F);
            this.Text77.Interaction = null;
            this.Text77.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text77.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text77.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text78
            // 
            this.Text78 = new Stimulsoft.Report.Components.StiText();
            this.Text78.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 0.5, 1.5, 0.5);
            this.Text78.Guid = "69ddca36eefb4c04963dbb12cbfaccb8";
            this.Text78.HideZeros = true;
            this.Text78.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text78.Name = "Text78";
            this.Text78.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text78__GetValue);
            this.Text78.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text78.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text78.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text78.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text78.Font = new System.Drawing.Font("Arial", 8F);
            this.Text78.Interaction = null;
            this.Text78.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text78.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text78.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text79
            // 
            this.Text79 = new Stimulsoft.Report.Components.StiText();
            this.Text79.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 1, 1.5, 0.5);
            this.Text79.Guid = "5a770b97ce6249e7a1e6d30c121a6591";
            this.Text79.HideZeros = true;
            this.Text79.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text79.Name = "Text79";
            this.Text79.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text79__GetValue);
            this.Text79.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text79.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text79.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text79.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text79.Font = new System.Drawing.Font("Arial", 8F);
            this.Text79.Interaction = null;
            this.Text79.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text79.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text79.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text80
            // 
            this.Text80 = new Stimulsoft.Report.Components.StiText();
            this.Text80.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 1.5, 1.5, 0.5);
            this.Text80.Guid = "5628e07dcf1f422cae1a086089c6ed1d";
            this.Text80.HideZeros = true;
            this.Text80.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text80.Name = "Text80";
            this.Text80.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text80__GetValue);
            this.Text80.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text80.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text80.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text80.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text80.Font = new System.Drawing.Font("Arial", 8F);
            this.Text80.Interaction = null;
            this.Text80.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text80.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text80.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text81
            // 
            this.Text81 = new Stimulsoft.Report.Components.StiText();
            this.Text81.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 0, 1.5, 0.5);
            this.Text81.Guid = "b80b724e67b34ef09d3178758f754045";
            this.Text81.HideZeros = true;
            this.Text81.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text81.Name = "Text81";
            this.Text81.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text81__GetValue);
            this.Text81.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text81.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text81.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text81.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text81.Font = new System.Drawing.Font("Arial", 8F);
            this.Text81.Interaction = null;
            this.Text81.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text81.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text81.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text82
            // 
            this.Text82 = new Stimulsoft.Report.Components.StiText();
            this.Text82.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 0.5, 1.5, 0.5);
            this.Text82.Guid = "2c72a79cd5414a19ab5d2ab07116bc5d";
            this.Text82.HideZeros = true;
            this.Text82.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text82.Name = "Text82";
            this.Text82.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text82__GetValue);
            this.Text82.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text82.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text82.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text82.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text82.Font = new System.Drawing.Font("Arial", 8F);
            this.Text82.Interaction = null;
            this.Text82.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text82.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text82.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text83
            // 
            this.Text83 = new Stimulsoft.Report.Components.StiText();
            this.Text83.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 1, 1.5, 0.5);
            this.Text83.Guid = "1555456081a04d73a7d37b90e8a168c0";
            this.Text83.HideZeros = true;
            this.Text83.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text83.Name = "Text83";
            this.Text83.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text83__GetValue);
            this.Text83.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text83.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text83.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text83.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text83.Font = new System.Drawing.Font("Arial", 8F);
            this.Text83.Interaction = null;
            this.Text83.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text83.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text83.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text84
            // 
            this.Text84 = new Stimulsoft.Report.Components.StiText();
            this.Text84.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 1.5, 1.5, 0.5);
            this.Text84.Guid = "b6579c5779764e1a825b9c7b86bc70db";
            this.Text84.HideZeros = true;
            this.Text84.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text84.Name = "Text84";
            this.Text84.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text84__GetValue);
            this.Text84.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text84.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text84.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text84.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text84.Font = new System.Drawing.Font("Arial", 8F);
            this.Text84.Interaction = null;
            this.Text84.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text84.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text84.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text85
            // 
            this.Text85 = new Stimulsoft.Report.Components.StiText();
            this.Text85.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 0, 1.5, 0.5);
            this.Text85.Guid = "7f3c1a0b43b9403b8739d298da7e1ec4";
            this.Text85.HideZeros = true;
            this.Text85.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text85.Name = "Text85";
            this.Text85.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text85__GetValue);
            this.Text85.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text85.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text85.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text85.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text85.Font = new System.Drawing.Font("Arial", 8F);
            this.Text85.Interaction = null;
            this.Text85.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text85.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text85.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text86
            // 
            this.Text86 = new Stimulsoft.Report.Components.StiText();
            this.Text86.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 0.5, 1.5, 0.5);
            this.Text86.Guid = "4d6dbb11a779486b8670d030025d2c7e";
            this.Text86.HideZeros = true;
            this.Text86.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text86.Name = "Text86";
            this.Text86.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text86__GetValue);
            this.Text86.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text86.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text86.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text86.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text86.Font = new System.Drawing.Font("Arial", 8F);
            this.Text86.Interaction = null;
            this.Text86.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text86.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text86.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text87
            // 
            this.Text87 = new Stimulsoft.Report.Components.StiText();
            this.Text87.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 1, 1.5, 0.5);
            this.Text87.Guid = "54850d5165364ce28813987a6af969d5";
            this.Text87.HideZeros = true;
            this.Text87.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text87.Name = "Text87";
            this.Text87.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text87__GetValue);
            this.Text87.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text87.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text87.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text87.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text87.Font = new System.Drawing.Font("Arial", 8F);
            this.Text87.Interaction = null;
            this.Text87.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text87.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text87.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text88
            // 
            this.Text88 = new Stimulsoft.Report.Components.StiText();
            this.Text88.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 1.5, 1.5, 0.5);
            this.Text88.Guid = "024b76b9abf142959c8d2bb60f2316e1";
            this.Text88.HideZeros = true;
            this.Text88.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text88.Name = "Text88";
            this.Text88.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text88__GetValue);
            this.Text88.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text88.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text88.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text88.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text88.Font = new System.Drawing.Font("Arial", 8F);
            this.Text88.Interaction = null;
            this.Text88.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text88.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text88.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text89
            // 
            this.Text89 = new Stimulsoft.Report.Components.StiText();
            this.Text89.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 0, 1.5, 0.5);
            this.Text89.Guid = "9d2c64d25ac041fc872e0efcaf9b58a8";
            this.Text89.HideZeros = true;
            this.Text89.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text89.Name = "Text89";
            this.Text89.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text89__GetValue);
            this.Text89.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text89.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text89.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text89.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text89.Font = new System.Drawing.Font("Arial", 8F);
            this.Text89.Interaction = null;
            this.Text89.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text89.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text89.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text90
            // 
            this.Text90 = new Stimulsoft.Report.Components.StiText();
            this.Text90.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 0.5, 1.5, 0.5);
            this.Text90.Guid = "1d1cf57ba4874bc2a150f069472aad25";
            this.Text90.HideZeros = true;
            this.Text90.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text90.Name = "Text90";
            this.Text90.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text90__GetValue);
            this.Text90.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text90.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text90.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text90.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text90.Font = new System.Drawing.Font("Arial", 8F);
            this.Text90.Interaction = null;
            this.Text90.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text90.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text90.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text91
            // 
            this.Text91 = new Stimulsoft.Report.Components.StiText();
            this.Text91.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 1, 1.5, 0.5);
            this.Text91.Guid = "1866def2b6eb4c2f99837e3a29a5cbb1";
            this.Text91.HideZeros = true;
            this.Text91.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text91.Name = "Text91";
            this.Text91.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text91__GetValue);
            this.Text91.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text91.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text91.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text91.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text91.Font = new System.Drawing.Font("Arial", 8F);
            this.Text91.Interaction = null;
            this.Text91.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text91.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text91.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text92
            // 
            this.Text92 = new Stimulsoft.Report.Components.StiText();
            this.Text92.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 1.5, 1.5, 0.5);
            this.Text92.Guid = "7fc553484fe547f99b326aa51a02e4ac";
            this.Text92.HideZeros = true;
            this.Text92.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text92.Name = "Text92";
            this.Text92.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text92__GetValue);
            this.Text92.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text92.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text92.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text92.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text92.Font = new System.Drawing.Font("Arial", 8F);
            this.Text92.Interaction = null;
            this.Text92.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text92.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text92.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text93
            // 
            this.Text93 = new Stimulsoft.Report.Components.StiText();
            this.Text93.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 0, 1.6, 0.5);
            this.Text93.Guid = "cb087d5a9d4049d6800cf20b4b448be5";
            this.Text93.HideZeros = true;
            this.Text93.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.InitializeComponent3();
        }
        
        public void InitializeComponent3()
        {
            this.Text93.Name = "Text93";
            this.Text93.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text93__GetValue);
            this.Text93.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text93.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text93.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text93.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text93.Font = new System.Drawing.Font("Arial", 8F);
            this.Text93.Interaction = null;
            this.Text93.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text93.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text93.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text94
            // 
            this.Text94 = new Stimulsoft.Report.Components.StiText();
            this.Text94.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 0.5, 1.6, 0.5);
            this.Text94.Guid = "1da3695fb6624047a3e1504175ca8294";
            this.Text94.HideZeros = true;
            this.Text94.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text94.Name = "Text94";
            this.Text94.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text94__GetValue);
            this.Text94.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text94.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text94.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text94.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text94.Font = new System.Drawing.Font("Arial", 8F);
            this.Text94.Interaction = null;
            this.Text94.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text94.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text94.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text95
            // 
            this.Text95 = new Stimulsoft.Report.Components.StiText();
            this.Text95.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 1, 1.6, 0.5);
            this.Text95.Guid = "5a1230178c9a4bc2b6f09cc8fc52c26c";
            this.Text95.HideZeros = true;
            this.Text95.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text95.Name = "Text95";
            this.Text95.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text95__GetValue);
            this.Text95.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text95.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text95.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text95.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text95.Font = new System.Drawing.Font("Arial", 8F);
            this.Text95.Interaction = null;
            this.Text95.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text95.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text95.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text96
            // 
            this.Text96 = new Stimulsoft.Report.Components.StiText();
            this.Text96.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 1.5, 1.6, 0.5);
            this.Text96.Guid = "c01671a489c746dfb23e944b85267d98";
            this.Text96.HideZeros = true;
            this.Text96.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text96.Name = "Text96";
            this.Text96.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text96__GetValue);
            this.Text96.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text96.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text96.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text96.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text96.Font = new System.Drawing.Font("Arial", 8F);
            this.Text96.Interaction = null;
            this.Text96.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text96.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text96.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            this.DataBand2.Guid = null;
            this.DataBand2.Interaction = null;
            this.DataBand2.MasterComponent = null;
            // 
            // GroupFooterBand1
            // 
            this.GroupFooterBand1 = new Stimulsoft.Report.Components.StiGroupFooterBand();
            this.GroupFooterBand1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 13.2, 28.7, 2);
            this.GroupFooterBand1.Name = "GroupFooterBand1";
            this.GroupFooterBand1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.GroupFooterBand1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            // 
            // Text200
            // 
            this.Text200 = new Stimulsoft.Report.Components.StiText();
            this.Text200.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0, 7.6, 2);
            this.Text200.Guid = "9a99c7c918b642169be74f186a91fbe2";
            this.Text200.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
            this.Text200.Name = "Text200";
            this.Text200.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text200__GetValue);
            this.Text200.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text200.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text200.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text200.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text200.Font = new System.Drawing.Font("Arial", 10F);
            this.Text200.Interaction = null;
            this.Text200.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text200.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text200.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text98
            // 
            this.Text98 = new Stimulsoft.Report.Components.StiText();
            this.Text98.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 0, 1.5, 0.5);
            this.Text98.Guid = "5e46c82b5a414ff4b29b47a472dd0c2d";
            this.Text98.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text98.Name = "Text98";
            this.Text98.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text98__GetValue);
            this.Text98.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text98.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text98.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text98.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text98.Font = new System.Drawing.Font("Arial", 8F);
            this.Text98.Interaction = null;
            this.Text98.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text98.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text98.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text99
            // 
            this.Text99 = new Stimulsoft.Report.Components.StiText();
            this.Text99.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 0.5, 1.5, 0.5);
            this.Text99.Guid = "c3bd4a25494147d5b4a1f86a47ebfe79";
            this.Text99.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text99.Name = "Text99";
            this.Text99.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text99__GetValue);
            this.Text99.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text99.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text99.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text99.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text99.Font = new System.Drawing.Font("Arial", 8F);
            this.Text99.Interaction = null;
            this.Text99.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text99.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text99.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text100
            // 
            this.Text100 = new Stimulsoft.Report.Components.StiText();
            this.Text100.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 1, 1.5, 0.5);
            this.Text100.Guid = "2cc79c52bb414f3e816cfe5c46d4f6b2";
            this.Text100.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text100.Name = "Text100";
            this.Text100.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text100__GetValue);
            this.Text100.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text100.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text100.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text100.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text100.Font = new System.Drawing.Font("Arial", 8F);
            this.Text100.Interaction = null;
            this.Text100.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text100.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text100.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text101
            // 
            this.Text101 = new Stimulsoft.Report.Components.StiText();
            this.Text101.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 1.5, 1.5, 0.5);
            this.Text101.Guid = "fd0a06c5830747f483c9c5072b4c296d";
            this.Text101.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text101.Name = "Text101";
            this.Text101.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text101__GetValue);
            this.Text101.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text101.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text101.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text101.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text101.Font = new System.Drawing.Font("Arial", 8F);
            this.Text101.Interaction = null;
            this.Text101.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text101.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text101.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text102
            // 
            this.Text102 = new Stimulsoft.Report.Components.StiText();
            this.Text102.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 0, 1.5, 0.5);
            this.Text102.Guid = "c9b20af21e6243dc8b71b9438d7d11df";
            this.Text102.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text102.Name = "Text102";
            // 
            // Text102_Sum
            // 
            this.Text102.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text102__GetValue);
            this.Text102.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text102.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text102.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text102.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text102.Font = new System.Drawing.Font("Arial", 8F);
            this.Text102.Interaction = null;
            this.Text102.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text102.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text102.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text103
            // 
            this.Text103 = new Stimulsoft.Report.Components.StiText();
            this.Text103.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 0.5, 1.5, 0.5);
            this.Text103.Guid = "bfe640e68ef841478c2a569645cb8c81";
            this.Text103.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text103.Name = "Text103";
            // 
            // Text103_Sum
            // 
            this.Text103.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text103__GetValue);
            this.Text103.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals;
            this.Text103.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text103.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text103.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text103.Font = new System.Drawing.Font("Arial", 8F);
            this.Text103.Interaction = null;
            this.Text103.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text103.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text103.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text104
            // 
            this.Text104 = new Stimulsoft.Report.Components.StiText();
            this.Text104.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 1, 1.5, 0.5);
            this.Text104.Guid = "639950e71a694a9aa2e5cc61409c4692";
            this.Text104.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text104.Name = "Text104";
            // 
            // Text104_Sum
            // 
            this.Text104.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text104__GetValue);
            this.Text104.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals;
            this.Text104.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text104.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text104.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text104.Font = new System.Drawing.Font("Arial", 8F);
            this.Text104.Interaction = null;
            this.Text104.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text104.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text104.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text105
            // 
            this.Text105 = new Stimulsoft.Report.Components.StiText();
            this.Text105.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 1.5, 1.5, 0.5);
            this.Text105.Guid = "fb05e40770f84364b6a1e50f26fe1417";
            this.Text105.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text105.Name = "Text105";
            // 
            // Text105_Sum
            // 
            this.Text105.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text105__GetValue);
            this.Text105.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals;
            this.Text105.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text105.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text105.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text105.Font = new System.Drawing.Font("Arial", 8F);
            this.Text105.Interaction = null;
            this.Text105.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text105.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text105.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text106
            // 
            this.Text106 = new Stimulsoft.Report.Components.StiText();
            this.Text106.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 0, 1.5, 0.5);
            this.Text106.Guid = "a15c2f64a5744d59a4f540df928362b3";
            this.Text106.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text106.Name = "Text106";
            // 
            // Text106_Sum
            // 
            this.Text106.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text106__GetValue);
            this.Text106.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals;
            this.Text106.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text106.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text106.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text106.Font = new System.Drawing.Font("Arial", 8F);
            this.Text106.Interaction = null;
            this.Text106.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text106.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text106.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text107
            // 
            this.Text107 = new Stimulsoft.Report.Components.StiText();
            this.Text107.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 0.5, 1.5, 0.5);
            this.Text107.Guid = "98a7870e1e724fc4bf999f9e92248ba1";
            this.Text107.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text107.Name = "Text107";
            // 
            // Text107_Sum
            // 
            this.Text107.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text107__GetValue);
            this.Text107.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals;
            this.Text107.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text107.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text107.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text107.Font = new System.Drawing.Font("Arial", 8F);
            this.Text107.Interaction = null;
            this.Text107.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text107.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text107.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text108
            // 
            this.Text108 = new Stimulsoft.Report.Components.StiText();
            this.Text108.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 1, 1.5, 0.5);
            this.Text108.Guid = "d1a23bca3e674e2abfc3418ad5e272b1";
            this.Text108.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text108.Name = "Text108";
            // 
            // Text108_Sum
            // 
            this.Text108.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text108__GetValue);
            this.Text108.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals;
            this.Text108.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text108.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text108.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text108.Font = new System.Drawing.Font("Arial", 8F);
            this.Text108.Interaction = null;
            this.Text108.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text108.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text108.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text109
            // 
            this.Text109 = new Stimulsoft.Report.Components.StiText();
            this.Text109.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 1.5, 1.5, 0.5);
            this.Text109.Guid = "ba12b84860fe4dc7a441c921c9ca0ea4";
            this.Text109.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text109.Name = "Text109";
            // 
            // Text109_Sum
            // 
            this.Text109.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text109__GetValue);
            this.Text109.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals;
            this.Text109.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text109.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text109.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text109.Font = new System.Drawing.Font("Arial", 8F);
            this.Text109.Interaction = null;
            this.Text109.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text109.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text109.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text111
            // 
            this.Text111 = new Stimulsoft.Report.Components.StiText();
            this.Text111.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 0, 1.5, 0.5);
            this.Text111.Guid = "84a6487642384670b5483e84a649aa41";
            this.Text111.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text111.Name = "Text111";
            // 
            // Text111_Sum
            // 
            this.Text111.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text111__GetValue);
            this.Text111.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals;
            this.Text111.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text111.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text111.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text111.Font = new System.Drawing.Font("Arial", 8F);
            this.Text111.Interaction = null;
            this.Text111.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text111.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text111.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text112
            // 
            this.Text112 = new Stimulsoft.Report.Components.StiText();
            this.Text112.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 0.5, 1.5, 0.5);
            this.Text112.Guid = "1503dbe16bf64c63a250a877f61f9ad0";
            this.Text112.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text112.Name = "Text112";
            // 
            // Text112_Sum
            // 
            this.Text112.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text112__GetValue);
            this.Text112.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text112.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text112.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text112.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text112.Font = new System.Drawing.Font("Arial", 8F);
            this.Text112.Interaction = null;
            this.Text112.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text112.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text112.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text113
            // 
            this.Text113 = new Stimulsoft.Report.Components.StiText();
            this.Text113.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 1, 1.5, 0.5);
            this.Text113.Guid = "0f117dbc0fe443a786091c8d5c5bbe0a";
            this.Text113.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text113.Name = "Text113";
            // 
            // Text113_Sum
            // 
            this.Text113.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text113__GetValue);
            this.Text113.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text113.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text113.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text113.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text113.Font = new System.Drawing.Font("Arial", 8F);
            this.Text113.Interaction = null;
            this.Text113.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text113.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text113.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text114
            // 
            this.Text114 = new Stimulsoft.Report.Components.StiText();
            this.Text114.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 1.5, 1.5, 0.5);
            this.Text114.Guid = "cfba60a9701a4de3a5673c0ec2da7a09";
            this.Text114.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text114.Name = "Text114";
            // 
            // Text114_Sum
            // 
            this.Text114.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text114__GetValue);
            this.Text114.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text114.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text114.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text114.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text114.Font = new System.Drawing.Font("Arial", 8F);
            this.Text114.Interaction = null;
            this.Text114.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text114.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text114.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text115
            // 
            this.Text115 = new Stimulsoft.Report.Components.StiText();
            this.Text115.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 0, 1.5, 0.5);
            this.Text115.Guid = "807d812837af4af79af7c43ef81e4a26";
            this.Text115.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text115.Name = "Text115";
            // 
            // Text115_Sum
            // 
            this.Text115.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text115__GetValue);
            this.Text115.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text115.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text115.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text115.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text115.Font = new System.Drawing.Font("Arial", 8F);
            this.Text115.Interaction = null;
            this.Text115.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text115.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text115.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text116
            // 
            this.Text116 = new Stimulsoft.Report.Components.StiText();
            this.Text116.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 0.5, 1.5, 0.5);
            this.Text116.Guid = "1dfbdd3f5b62480a8175a50ecf673aed";
            this.Text116.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text116.Name = "Text116";
            // 
            // Text116_Sum
            // 
            this.Text116.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text116__GetValue);
            this.Text116.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text116.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text116.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text116.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text116.Font = new System.Drawing.Font("Arial", 8F);
            this.Text116.Interaction = null;
            this.Text116.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text116.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text116.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text117
            // 
            this.Text117 = new Stimulsoft.Report.Components.StiText();
            this.Text117.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 1, 1.5, 0.5);
            this.Text117.Guid = "51e9c5a50c34408791fef29567e4fbfd";
            this.Text117.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text117.Name = "Text117";
            // 
            // Text117_Sum
            // 
            this.Text117.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text117__GetValue);
            this.Text117.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text117.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text117.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text117.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text117.Font = new System.Drawing.Font("Arial", 8F);
            this.Text117.Interaction = null;
            this.Text117.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text117.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text117.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text118
            // 
            this.Text118 = new Stimulsoft.Report.Components.StiText();
            this.Text118.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 1.5, 1.5, 0.5);
            this.Text118.Guid = "9dd7fb888d994abab95656ec8f2c6a59";
            this.Text118.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text118.Name = "Text118";
            // 
            // Text118_Sum
            // 
            this.Text118.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text118__GetValue);
            this.Text118.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text118.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text118.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text118.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text118.Font = new System.Drawing.Font("Arial", 8F);
            this.Text118.Interaction = null;
            this.Text118.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text118.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text118.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text119
            // 
            this.Text119 = new Stimulsoft.Report.Components.StiText();
            this.Text119.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 0, 1.5, 0.5);
            this.Text119.Guid = "b4bf698759c84ae4bc8336515ce1f418";
            this.Text119.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text119.Name = "Text119";
            // 
            // Text119_Sum
            // 
            this.Text119.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text119__GetValue);
            this.Text119.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text119.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text119.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text119.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text119.Font = new System.Drawing.Font("Arial", 8F);
            this.Text119.Interaction = null;
            this.Text119.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text119.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text119.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text120
            // 
            this.Text120 = new Stimulsoft.Report.Components.StiText();
            this.Text120.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 0.5, 1.5, 0.5);
            this.Text120.Guid = "5caa885f36934400a9aae9e2c4f9d226";
            this.Text120.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text120.Name = "Text120";
            // 
            // Text120_Sum
            // 
            this.Text120.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text120__GetValue);
            this.Text120.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text120.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text120.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text120.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text120.Font = new System.Drawing.Font("Arial", 8F);
            this.Text120.Interaction = null;
            this.Text120.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text120.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text120.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text121
            // 
            this.Text121 = new Stimulsoft.Report.Components.StiText();
            this.Text121.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 1, 1.5, 0.5);
            this.Text121.Guid = "10df519fed634c239cb5dda18596c989";
            this.Text121.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text121.Name = "Text121";
            // 
            // Text121_Sum
            // 
            this.Text121.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text121__GetValue);
            this.Text121.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text121.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text121.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text121.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text121.Font = new System.Drawing.Font("Arial", 8F);
            this.Text121.Interaction = null;
            this.Text121.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text121.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text121.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text122
            // 
            this.Text122 = new Stimulsoft.Report.Components.StiText();
            this.Text122.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 1.5, 1.5, 0.5);
            this.Text122.Guid = "1c3c3d5d1ae347eb9a08281da0fdd016";
            this.Text122.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text122.Name = "Text122";
            // 
            // Text122_Sum
            // 
            this.Text122.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text122__GetValue);
            this.Text122.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text122.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text122.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text122.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text122.Font = new System.Drawing.Font("Arial", 8F);
            this.Text122.Interaction = null;
            this.Text122.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text122.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text122.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text123
            // 
            this.Text123 = new Stimulsoft.Report.Components.StiText();
            this.Text123.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 0, 1.5, 0.5);
            this.Text123.Guid = "3104cb7705414c13bd3c445daae1554e";
            this.Text123.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text123.Name = "Text123";
            // 
            // Text123_Sum
            // 
            this.Text123.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text123__GetValue);
            this.Text123.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text123.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text123.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text123.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text123.Font = new System.Drawing.Font("Arial", 8F);
            this.Text123.Interaction = null;
            this.Text123.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text123.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text123.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text124
            // 
            this.Text124 = new Stimulsoft.Report.Components.StiText();
            this.Text124.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 0.5, 1.5, 0.5);
            this.Text124.Guid = "3e06febdd6794725b1cdd2183039f3a0";
            this.Text124.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text124.Name = "Text124";
            // 
            // Text124_Sum
            // 
            this.Text124.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text124__GetValue);
            this.Text124.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text124.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text124.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text124.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text124.Font = new System.Drawing.Font("Arial", 8F);
            this.Text124.Interaction = null;
            this.Text124.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text124.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text124.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text125
            // 
            this.Text125 = new Stimulsoft.Report.Components.StiText();
            this.Text125.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 1, 1.5, 0.5);
            this.Text125.Guid = "4376b26106ee4195b1c67da9edb3118c";
            this.Text125.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text125.Name = "Text125";
            // 
            // Text125_Sum
            // 
            this.Text125.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text125__GetValue);
            this.Text125.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text125.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text125.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text125.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text125.Font = new System.Drawing.Font("Arial", 8F);
            this.Text125.Interaction = null;
            this.Text125.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text125.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text125.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text126
            // 
            this.Text126 = new Stimulsoft.Report.Components.StiText();
            this.Text126.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 1.5, 1.5, 0.5);
            this.Text126.Guid = "9a7adce39e5c4293a20bddc3d1b4a88a";
            this.Text126.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text126.Name = "Text126";
            // 
            // Text126_Sum
            // 
            this.Text126.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text126__GetValue);
            this.Text126.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text126.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text126.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text126.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text126.Font = new System.Drawing.Font("Arial", 8F);
            this.Text126.Interaction = null;
            this.Text126.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text126.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text126.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text127
            // 
            this.Text127 = new Stimulsoft.Report.Components.StiText();
            this.Text127.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 0, 1.5, 0.5);
            this.Text127.Guid = "62dcaa42cf0441289bff810fc4b0193f";
            this.Text127.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text127.Name = "Text127";
            // 
            // Text127_Sum
            // 
            this.Text127.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text127__GetValue);
            this.Text127.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text127.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text127.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text127.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text127.Font = new System.Drawing.Font("Arial", 8F);
            this.Text127.Interaction = null;
            this.Text127.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text127.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text127.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text128
            // 
            this.Text128 = new Stimulsoft.Report.Components.StiText();
            this.Text128.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 0.5, 1.5, 0.5);
            this.Text128.Guid = "844c62c0d58e4e41ba39e26c30031efa";
            this.Text128.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text128.Name = "Text128";
            // 
            // Text128_Sum
            // 
            this.Text128.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text128__GetValue);
            this.Text128.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text128.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text128.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text128.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text128.Font = new System.Drawing.Font("Arial", 8F);
            this.Text128.Interaction = null;
            this.Text128.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text128.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text128.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text129
            // 
            this.Text129 = new Stimulsoft.Report.Components.StiText();
            this.Text129.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 1, 1.5, 0.5);
            this.Text129.Guid = "cdd43bc3f7ea43cbae6562cc2fbbc676";
            this.Text129.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text129.Name = "Text129";
            // 
            // Text129_Sum
            // 
            this.Text129.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text129__GetValue);
            this.Text129.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text129.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text129.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text129.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text129.Font = new System.Drawing.Font("Arial", 8F);
            this.Text129.Interaction = null;
            this.Text129.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text129.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text129.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text130
            // 
            this.Text130 = new Stimulsoft.Report.Components.StiText();
            this.Text130.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 1.5, 1.5, 0.5);
            this.Text130.Guid = "6fdfbd358f574855a8426470fc328a84";
            this.Text130.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text130.Name = "Text130";
            // 
            // Text130_Sum
            // 
            this.Text130.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text130__GetValue);
            this.Text130.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text130.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text130.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text130.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text130.Font = new System.Drawing.Font("Arial", 8F);
            this.Text130.Interaction = null;
            this.Text130.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text130.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text130.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text131
            // 
            this.Text131 = new Stimulsoft.Report.Components.StiText();
            this.Text131.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 0, 1.5, 0.5);
            this.Text131.Guid = "03d4005885fa40c8893a27a686463caf";
            this.Text131.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text131.Name = "Text131";
            // 
            // Text131_Sum
            // 
            this.Text131.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text131__GetValue);
            this.Text131.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text131.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text131.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text131.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text131.Font = new System.Drawing.Font("Arial", 8F);
            this.Text131.Interaction = null;
            this.Text131.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text131.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text131.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text132
            // 
            this.Text132 = new Stimulsoft.Report.Components.StiText();
            this.Text132.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 0.5, 1.5, 0.5);
            this.Text132.Guid = "9a383947a4594fcf8e61522b5d8b79eb";
            this.Text132.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text132.Name = "Text132";
            // 
            // Text132_Sum
            // 
            this.Text132.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text132__GetValue);
            this.Text132.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text132.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text132.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text132.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text132.Font = new System.Drawing.Font("Arial", 8F);
            this.Text132.Interaction = null;
            this.Text132.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text132.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text132.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text133
            // 
            this.Text133 = new Stimulsoft.Report.Components.StiText();
            this.Text133.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 1, 1.5, 0.5);
            this.Text133.Guid = "159c17132ab147aa8af79f180b81609b";
            this.Text133.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text133.Name = "Text133";
            // 
            // Text133_Sum
            // 
            this.Text133.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text133__GetValue);
            this.Text133.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text133.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text133.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text133.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text133.Font = new System.Drawing.Font("Arial", 8F);
            this.Text133.Interaction = null;
            this.Text133.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text133.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text133.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text134
            // 
            this.Text134 = new Stimulsoft.Report.Components.StiText();
            this.Text134.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 1.5, 1.5, 0.5);
            this.Text134.Guid = "46d607cdf74e471998feb6869bc5d4a1";
            this.Text134.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text134.Name = "Text134";
            // 
            // Text134_Sum
            // 
            this.Text134.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text134__GetValue);
            this.Text134.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text134.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text134.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text134.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text134.Font = new System.Drawing.Font("Arial", 8F);
            this.Text134.Interaction = null;
            this.Text134.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text134.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text134.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text135
            // 
            this.Text135 = new Stimulsoft.Report.Components.StiText();
            this.Text135.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 0, 1.5, 0.5);
            this.Text135.Guid = "e9d26a26bc2c428ba99e0b28156e21c0";
            this.Text135.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text135.Name = "Text135";
            // 
            // Text135_Sum
            // 
            this.Text135.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text135__GetValue);
            this.Text135.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text135.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text135.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text135.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text135.Font = new System.Drawing.Font("Arial", 8F);
            this.Text135.Interaction = null;
            this.Text135.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text135.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text135.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text136
            // 
            this.Text136 = new Stimulsoft.Report.Components.StiText();
            this.Text136.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 0.5, 1.5, 0.5);
            this.Text136.Guid = "8b16b6fbb4d54ecbbb54e3b3dc1fffe4";
            this.Text136.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text136.Name = "Text136";
            // 
            // Text136_Sum
            // 
            this.Text136.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text136__GetValue);
            this.Text136.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text136.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text136.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text136.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text136.Font = new System.Drawing.Font("Arial", 8F);
            this.Text136.Interaction = null;
            this.Text136.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text136.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text136.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text137
            // 
            this.Text137 = new Stimulsoft.Report.Components.StiText();
            this.Text137.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 1, 1.5, 0.5);
            this.Text137.Guid = "f345bea0e5a3437986192486abc970b6";
            this.Text137.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text137.Name = "Text137";
            // 
            // Text137_Sum
            // 
            this.Text137.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text137__GetValue);
            this.Text137.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text137.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text137.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text137.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text137.Font = new System.Drawing.Font("Arial", 8F);
            this.Text137.Interaction = null;
            this.Text137.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text137.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text137.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text138
            // 
            this.Text138 = new Stimulsoft.Report.Components.StiText();
            this.Text138.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 1.5, 1.5, 0.5);
            this.Text138.Guid = "f1df5b08518a4bd2a0ed842bbd27c9d4";
            this.Text138.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text138.Name = "Text138";
            // 
            // Text138_Sum
            // 
            this.Text138.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text138__GetValue);
            this.Text138.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text138.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text138.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text138.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text138.Font = new System.Drawing.Font("Arial", 8F);
            this.Text138.Interaction = null;
            this.Text138.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text138.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text138.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text139
            // 
            this.Text139 = new Stimulsoft.Report.Components.StiText();
            this.Text139.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 0, 1.5, 0.5);
            this.Text139.Guid = "c6e0fa0e8eab407282bbcaad7250f492";
            this.Text139.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text139.Name = "Text139";
            // 
            // Text139_Sum
            // 
            this.Text139.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text139__GetValue);
            this.Text139.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text139.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text139.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text139.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text139.Font = new System.Drawing.Font("Arial", 8F);
            this.Text139.Interaction = null;
            this.Text139.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text139.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text139.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text140
            // 
            this.Text140 = new Stimulsoft.Report.Components.StiText();
            this.Text140.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 0.5, 1.5, 0.5);
            this.Text140.Guid = "090e4edf17944364b88a8c0072456452";
            this.Text140.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text140.Name = "Text140";
            // 
            // Text140_Sum
            // 
            this.Text140.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text140__GetValue);
            this.Text140.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text140.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text140.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text140.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text140.Font = new System.Drawing.Font("Arial", 8F);
            this.Text140.Interaction = null;
            this.Text140.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text140.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text140.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text141
            // 
            this.Text141 = new Stimulsoft.Report.Components.StiText();
            this.Text141.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 1, 1.5, 0.5);
            this.Text141.Guid = "e0a341f817874e3886237510ffb71b49";
            this.Text141.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text141.Name = "Text141";
            // 
            // Text141_Sum
            // 
            this.Text141.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text141__GetValue);
            this.Text141.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text141.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text141.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text141.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text141.Font = new System.Drawing.Font("Arial", 8F);
            this.Text141.Interaction = null;
            this.Text141.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text141.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text141.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text142
            // 
            this.Text142 = new Stimulsoft.Report.Components.StiText();
            this.Text142.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 1.5, 1.5, 0.5);
            this.Text142.Guid = "63ed5c0d57684d34abd113924a8959ad";
            this.Text142.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text142.Name = "Text142";
            // 
            // Text142_Sum
            // 
            this.Text142.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text142__GetValue);
            this.InitializeComponent4();
        }
        
        public void InitializeComponent4()
        {
            this.Text142.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text142.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text142.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text142.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text142.Font = new System.Drawing.Font("Arial", 8F);
            this.Text142.Interaction = null;
            this.Text142.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text142.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text142.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text143
            // 
            this.Text143 = new Stimulsoft.Report.Components.StiText();
            this.Text143.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 0, 1.5, 0.5);
            this.Text143.Guid = "1569e57f5cfb4c75a6022218f11b04bb";
            this.Text143.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text143.Name = "Text143";
            // 
            // Text143_Sum
            // 
            this.Text143.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text143__GetValue);
            this.Text143.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text143.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text143.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text143.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text143.Font = new System.Drawing.Font("Arial", 8F);
            this.Text143.Interaction = null;
            this.Text143.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text143.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text143.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text144
            // 
            this.Text144 = new Stimulsoft.Report.Components.StiText();
            this.Text144.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 0.5, 1.5, 0.5);
            this.Text144.Guid = "36a2ea5ad661487cb5d66ec994df4f2e";
            this.Text144.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text144.Name = "Text144";
            // 
            // Text144_Sum
            // 
            this.Text144.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text144__GetValue);
            this.Text144.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text144.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text144.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text144.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text144.Font = new System.Drawing.Font("Arial", 8F);
            this.Text144.Interaction = null;
            this.Text144.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text144.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text144.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text145
            // 
            this.Text145 = new Stimulsoft.Report.Components.StiText();
            this.Text145.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 1, 1.5, 0.5);
            this.Text145.Guid = "77534a39b3a94e9589a9d5ffa0507213";
            this.Text145.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text145.Name = "Text145";
            // 
            // Text145_Sum
            // 
            this.Text145.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text145__GetValue);
            this.Text145.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text145.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text145.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text145.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text145.Font = new System.Drawing.Font("Arial", 8F);
            this.Text145.Interaction = null;
            this.Text145.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text145.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text145.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text146
            // 
            this.Text146 = new Stimulsoft.Report.Components.StiText();
            this.Text146.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 1.5, 1.5, 0.5);
            this.Text146.Guid = "a6a30b8942114bbb95f2af318b734bb9";
            this.Text146.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text146.Name = "Text146";
            // 
            // Text146_Sum
            // 
            this.Text146.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text146__GetValue);
            this.Text146.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text146.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text146.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text146.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text146.Font = new System.Drawing.Font("Arial", 8F);
            this.Text146.Interaction = null;
            this.Text146.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text146.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text146.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text147
            // 
            this.Text147 = new Stimulsoft.Report.Components.StiText();
            this.Text147.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 0, 1.5, 0.5);
            this.Text147.Guid = "b836261581cc473e82da4a47036e3da8";
            this.Text147.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text147.Name = "Text147";
            // 
            // Text147_Sum
            // 
            this.Text147.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text147__GetValue);
            this.Text147.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text147.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text147.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text147.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text147.Font = new System.Drawing.Font("Arial", 8F);
            this.Text147.Interaction = null;
            this.Text147.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text147.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text147.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text148
            // 
            this.Text148 = new Stimulsoft.Report.Components.StiText();
            this.Text148.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 0.5, 1.5, 0.5);
            this.Text148.Guid = "ad961f0d4f65489f86fe2b26e3a79913";
            this.Text148.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text148.Name = "Text148";
            // 
            // Text148_Sum
            // 
            this.Text148.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text148__GetValue);
            this.Text148.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text148.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text148.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text148.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text148.Font = new System.Drawing.Font("Arial", 8F);
            this.Text148.Interaction = null;
            this.Text148.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text148.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text148.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text149
            // 
            this.Text149 = new Stimulsoft.Report.Components.StiText();
            this.Text149.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 1, 1.5, 0.5);
            this.Text149.Guid = "90dc97811fc1426f9bbd1d45fc9b5ad5";
            this.Text149.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text149.Name = "Text149";
            // 
            // Text149_Sum
            // 
            this.Text149.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text149__GetValue);
            this.Text149.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text149.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text149.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text149.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text149.Font = new System.Drawing.Font("Arial", 8F);
            this.Text149.Interaction = null;
            this.Text149.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text149.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text149.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text150
            // 
            this.Text150 = new Stimulsoft.Report.Components.StiText();
            this.Text150.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 1.5, 1.5, 0.5);
            this.Text150.Guid = "bf7c411200c04e15b12f6e68893c0de8";
            this.Text150.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text150.Name = "Text150";
            // 
            // Text150_Sum
            // 
            this.Text150.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text150__GetValue);
            this.Text150.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text150.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text150.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text150.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text150.Font = new System.Drawing.Font("Arial", 8F);
            this.Text150.Interaction = null;
            this.Text150.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text150.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text150.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text151
            // 
            this.Text151 = new Stimulsoft.Report.Components.StiText();
            this.Text151.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 0, 1.6, 0.5);
            this.Text151.Guid = "2d0ea982ae024b7da3ada26a49832e34";
            this.Text151.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text151.Name = "Text151";
            // 
            // Text151_Sum
            // 
            this.Text151.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text151__GetValue);
            this.Text151.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text151.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text151.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text151.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text151.Font = new System.Drawing.Font("Arial", 8F);
            this.Text151.Interaction = null;
            this.Text151.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text151.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text151.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text152
            // 
            this.Text152 = new Stimulsoft.Report.Components.StiText();
            this.Text152.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 0.5, 1.6, 0.5);
            this.Text152.Guid = "405b8a1c6a194606b109342b0109aef6";
            this.Text152.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text152.Name = "Text152";
            // 
            // Text152_Sum
            // 
            this.Text152.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text152__GetValue);
            this.Text152.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text152.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text152.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text152.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text152.Font = new System.Drawing.Font("Arial", 8F);
            this.Text152.Interaction = null;
            this.Text152.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text152.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text152.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text153
            // 
            this.Text153 = new Stimulsoft.Report.Components.StiText();
            this.Text153.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 1, 1.6, 0.5);
            this.Text153.Guid = "f78de38359794907b5fcec7f3d7e29f2";
            this.Text153.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text153.Name = "Text153";
            // 
            // Text153_Sum
            // 
            this.Text153.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text153__GetValue);
            this.Text153.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text153.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text153.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text153.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text153.Font = new System.Drawing.Font("Arial", 8F);
            this.Text153.Interaction = null;
            this.Text153.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text153.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text153.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text154
            // 
            this.Text154 = new Stimulsoft.Report.Components.StiText();
            this.Text154.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 1.5, 1.6, 0.5);
            this.Text154.Guid = "b83c590ec636406084fca5aa1c193248";
            this.Text154.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text154.Name = "Text154";
            // 
            // Text154_Sum
            // 
            this.Text154.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text154__GetValue);
            this.Text154.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text154.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text154.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text154.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text154.Font = new System.Drawing.Font("Arial", 8F);
            this.Text154.Interaction = null;
            this.Text154.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text154.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text154.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            this.GroupFooterBand1.Guid = null;
            this.GroupFooterBand1.Interaction = null;
            // 
            // GroupFooterBand2
            // 
            this.GroupFooterBand2 = new Stimulsoft.Report.Components.StiGroupFooterBand();
            this.GroupFooterBand2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 16, 28.7, 2);
            this.GroupFooterBand2.BeforePrint += new System.EventHandler(this.GroupFooterBand2_Conditions);
            this.GroupFooterBand2.Name = "GroupFooterBand2";
            this.GroupFooterBand2.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.GroupFooterBand2.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            // 
            // Text272
            // 
            this.Text272 = new Stimulsoft.Report.Components.StiText();
            this.Text272.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0, 7.6, 2);
            this.Text272.Guid = "1fc9134a10024f63a423a97c14d853a9";
            this.Text272.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
            this.Text272.Name = "Text272";
            this.Text272.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text272__GetValue);
            this.Text272.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text272.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text272.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text272.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text272.Font = new System.Drawing.Font("Arial", 10F);
            this.Text272.Interaction = null;
            this.Text272.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text272.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text272.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text155
            // 
            this.Text155 = new Stimulsoft.Report.Components.StiText();
            this.Text155.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 0, 1.5, 0.5);
            this.Text155.Guid = "ef2c60db1e9e406897e8f4f5b47bf205";
            this.Text155.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text155.Name = "Text155";
            this.Text155.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text155__GetValue);
            this.Text155.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text155.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text155.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text155.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text155.Font = new System.Drawing.Font("Arial", 8F);
            this.Text155.Interaction = null;
            this.Text155.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text155.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text155.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text156
            // 
            this.Text156 = new Stimulsoft.Report.Components.StiText();
            this.Text156.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 0.5, 1.5, 0.5);
            this.Text156.Guid = "f9f0ba618f70406d90bfe148507fc1f0";
            this.Text156.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text156.Name = "Text156";
            this.Text156.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text156__GetValue);
            this.Text156.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text156.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text156.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text156.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text156.Font = new System.Drawing.Font("Arial", 8F);
            this.Text156.Interaction = null;
            this.Text156.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text156.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text156.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text157
            // 
            this.Text157 = new Stimulsoft.Report.Components.StiText();
            this.Text157.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 1, 1.5, 0.5);
            this.Text157.Guid = "7eb33817f8c44989ac22ac216b79a342";
            this.Text157.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text157.Name = "Text157";
            this.Text157.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text157__GetValue);
            this.Text157.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text157.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text157.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text157.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text157.Font = new System.Drawing.Font("Arial", 8F);
            this.Text157.Interaction = null;
            this.Text157.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text157.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text157.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text158
            // 
            this.Text158 = new Stimulsoft.Report.Components.StiText();
            this.Text158.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 1.5, 1.5, 0.5);
            this.Text158.Guid = "c118820053cb4905a0a59d68e495f464";
            this.Text158.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text158.Name = "Text158";
            this.Text158.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text158__GetValue);
            this.Text158.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text158.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text158.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text158.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text158.Font = new System.Drawing.Font("Arial", 8F);
            this.Text158.Interaction = null;
            this.Text158.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text158.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text158.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text159
            // 
            this.Text159 = new Stimulsoft.Report.Components.StiText();
            this.Text159.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 0, 1.5, 0.5);
            this.Text159.Guid = "1a5190732a004b0387fe4067311a811e";
            this.Text159.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text159.Name = "Text159";
            // 
            // Text159_Sum
            // 
            this.Text159.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text159__GetValue);
            this.Text159.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text159.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text159.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text159.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text159.Font = new System.Drawing.Font("Arial", 8F);
            this.Text159.Interaction = null;
            this.Text159.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text159.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text159.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text160
            // 
            this.Text160 = new Stimulsoft.Report.Components.StiText();
            this.Text160.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 0.5, 1.5, 0.5);
            this.Text160.Guid = "ee220e0961e14a65aecab956f0ddbd2c";
            this.Text160.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text160.Name = "Text160";
            // 
            // Text160_Sum
            // 
            this.Text160.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text160__GetValue);
            this.Text160.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text160.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text160.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text160.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text160.Font = new System.Drawing.Font("Arial", 8F);
            this.Text160.Interaction = null;
            this.Text160.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text160.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text160.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text161
            // 
            this.Text161 = new Stimulsoft.Report.Components.StiText();
            this.Text161.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 1, 1.5, 0.5);
            this.Text161.Guid = "0fec24c393db48c6befa3606a8ef5a74";
            this.Text161.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text161.Name = "Text161";
            // 
            // Text161_Sum
            // 
            this.Text161.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text161__GetValue);
            this.Text161.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text161.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text161.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text161.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text161.Font = new System.Drawing.Font("Arial", 8F);
            this.Text161.Interaction = null;
            this.Text161.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text161.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text161.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text162
            // 
            this.Text162 = new Stimulsoft.Report.Components.StiText();
            this.Text162.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 1.5, 1.5, 0.5);
            this.Text162.Guid = "cf821b4e67f344d2af12f831bce5f4d6";
            this.Text162.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text162.Name = "Text162";
            // 
            // Text162_Sum
            // 
            this.Text162.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text162__GetValue);
            this.Text162.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text162.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text162.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text162.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text162.Font = new System.Drawing.Font("Arial", 8F);
            this.Text162.Interaction = null;
            this.Text162.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text162.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text162.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text163
            // 
            this.Text163 = new Stimulsoft.Report.Components.StiText();
            this.Text163.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 0, 1.5, 0.5);
            this.Text163.Guid = "aad6926b06334e858db23bcac6dc0bea";
            this.Text163.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text163.Name = "Text163";
            // 
            // Text163_Sum
            // 
            this.Text163.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text163__GetValue);
            this.Text163.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text163.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text163.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text163.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text163.Font = new System.Drawing.Font("Arial", 8F);
            this.Text163.Interaction = null;
            this.Text163.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text163.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text163.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text164
            // 
            this.Text164 = new Stimulsoft.Report.Components.StiText();
            this.Text164.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 0.5, 1.5, 0.5);
            this.Text164.Guid = "e14f0b21f6364bbd940ce877044c75dc";
            this.Text164.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text164.Name = "Text164";
            // 
            // Text164_Sum
            // 
            this.Text164.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text164__GetValue);
            this.Text164.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text164.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text164.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text164.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text164.Font = new System.Drawing.Font("Arial", 8F);
            this.Text164.Interaction = null;
            this.Text164.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text164.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text164.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text165
            // 
            this.Text165 = new Stimulsoft.Report.Components.StiText();
            this.Text165.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 1, 1.5, 0.5);
            this.Text165.Guid = "efe5045feca247c19a75c07a266238a2";
            this.Text165.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text165.Name = "Text165";
            // 
            // Text165_Sum
            // 
            this.Text165.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text165__GetValue);
            this.Text165.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text165.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text165.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text165.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text165.Font = new System.Drawing.Font("Arial", 8F);
            this.Text165.Interaction = null;
            this.Text165.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text165.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text165.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text166
            // 
            this.Text166 = new Stimulsoft.Report.Components.StiText();
            this.Text166.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 1.5, 1.5, 0.5);
            this.Text166.Guid = "c78480a29e7449aca3d85aff0345e2e4";
            this.Text166.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text166.Name = "Text166";
            // 
            // Text166_Sum
            // 
            this.Text166.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text166__GetValue);
            this.Text166.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text166.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text166.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text166.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text166.Font = new System.Drawing.Font("Arial", 8F);
            this.Text166.Interaction = null;
            this.Text166.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text166.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text166.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text167
            // 
            this.Text167 = new Stimulsoft.Report.Components.StiText();
            this.Text167.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 0, 1.5, 0.5);
            this.Text167.Guid = "0574a542b8bf4aa3a08c092f37cc8682";
            this.Text167.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text167.Name = "Text167";
            // 
            // Text167_Sum
            // 
            this.Text167.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text167__GetValue);
            this.Text167.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text167.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text167.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text167.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text167.Font = new System.Drawing.Font("Arial", 8F);
            this.Text167.Interaction = null;
            this.Text167.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text167.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text167.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text168
            // 
            this.Text168 = new Stimulsoft.Report.Components.StiText();
            this.Text168.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 0.5, 1.5, 0.5);
            this.Text168.Guid = "ce5180db4b414fd5b6300f23fd1ce4d2";
            this.Text168.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text168.Name = "Text168";
            // 
            // Text168_Sum
            // 
            this.Text168.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text168__GetValue);
            this.Text168.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text168.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text168.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text168.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text168.Font = new System.Drawing.Font("Arial", 8F);
            this.Text168.Interaction = null;
            this.Text168.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text168.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text168.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text169
            // 
            this.Text169 = new Stimulsoft.Report.Components.StiText();
            this.Text169.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 1, 1.5, 0.5);
            this.Text169.Guid = "b39c8ed81d77476da01287b33cedc4f4";
            this.Text169.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text169.Name = "Text169";
            // 
            // Text169_Sum
            // 
            this.Text169.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text169__GetValue);
            this.Text169.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text169.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text169.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text169.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text169.Font = new System.Drawing.Font("Arial", 8F);
            this.Text169.Interaction = null;
            this.Text169.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text169.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text169.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text170
            // 
            this.Text170 = new Stimulsoft.Report.Components.StiText();
            this.Text170.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 1.5, 1.5, 0.5);
            this.Text170.Guid = "3e6797836e0346f694f0126d4e754ef1";
            this.Text170.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text170.Name = "Text170";
            // 
            // Text170_Sum
            // 
            this.Text170.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text170__GetValue);
            this.Text170.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text170.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text170.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text170.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text170.Font = new System.Drawing.Font("Arial", 8F);
            this.Text170.Interaction = null;
            this.Text170.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text170.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text170.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text171
            // 
            this.Text171 = new Stimulsoft.Report.Components.StiText();
            this.Text171.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 0, 1.5, 0.5);
            this.Text171.Guid = "ac49a75e6e42498fa83105d0402058b4";
            this.Text171.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text171.Name = "Text171";
            // 
            // Text171_Sum
            // 
            this.Text171.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text171__GetValue);
            this.Text171.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text171.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text171.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text171.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text171.Font = new System.Drawing.Font("Arial", 8F);
            this.Text171.Interaction = null;
            this.Text171.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text171.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text171.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text172
            // 
            this.Text172 = new Stimulsoft.Report.Components.StiText();
            this.Text172.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 0.5, 1.5, 0.5);
            this.Text172.Guid = "c54427514f964eb0b0e90c1b8ea326bb";
            this.Text172.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text172.Name = "Text172";
            // 
            // Text172_Sum
            // 
            this.Text172.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text172__GetValue);
            this.Text172.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text172.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text172.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text172.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text172.Font = new System.Drawing.Font("Arial", 8F);
            this.Text172.Interaction = null;
            this.Text172.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text172.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text172.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text173
            // 
            this.Text173 = new Stimulsoft.Report.Components.StiText();
            this.Text173.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 1, 1.5, 0.5);
            this.Text173.Guid = "d0faa7548ee04f2e83271083c599ead8";
            this.Text173.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text173.Name = "Text173";
            // 
            // Text173_Sum
            // 
            this.Text173.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text173__GetValue);
            this.Text173.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text173.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text173.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text173.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text173.Font = new System.Drawing.Font("Arial", 8F);
            this.Text173.Interaction = null;
            this.Text173.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text173.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text173.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text174
            // 
            this.Text174 = new Stimulsoft.Report.Components.StiText();
            this.Text174.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 1.5, 1.5, 0.5);
            this.Text174.Guid = "d1136adfdf914092b66ffb91e15af085";
            this.Text174.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text174.Name = "Text174";
            // 
            // Text174_Sum
            // 
            this.Text174.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text174__GetValue);
            this.Text174.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text174.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text174.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text174.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text174.Font = new System.Drawing.Font("Arial", 8F);
            this.Text174.Interaction = null;
            this.Text174.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text174.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text174.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text175
            // 
            this.Text175 = new Stimulsoft.Report.Components.StiText();
            this.Text175.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 0, 1.5, 0.5);
            this.Text175.Guid = "43c68f9cdd2c44acaf6e200c46dd0c6b";
            this.Text175.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text175.Name = "Text175";
            // 
            // Text175_Sum
            // 
            this.Text175.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text175__GetValue);
            this.Text175.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text175.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text175.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text175.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text175.Font = new System.Drawing.Font("Arial", 8F);
            this.Text175.Interaction = null;
            this.Text175.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text175.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text175.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text176
            // 
            this.Text176 = new Stimulsoft.Report.Components.StiText();
            this.Text176.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 0.5, 1.5, 0.5);
            this.Text176.Guid = "a6a98b7fbfc44da0b1b3dc2c3812bbe2";
            this.Text176.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text176.Name = "Text176";
            // 
            // Text176_Sum
            // 
            this.Text176.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text176__GetValue);
            this.Text176.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text176.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text176.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text176.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text176.Font = new System.Drawing.Font("Arial", 8F);
            this.Text176.Interaction = null;
            this.Text176.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text176.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text176.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text177
            // 
            this.Text177 = new Stimulsoft.Report.Components.StiText();
            this.Text177.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 1, 1.5, 0.5);
            this.Text177.Guid = "ed617907a370401295f9c8c127976e77";
            this.Text177.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text177.Name = "Text177";
            // 
            // Text177_Sum
            // 
            this.Text177.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text177__GetValue);
            this.Text177.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text177.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text177.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text177.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text177.Font = new System.Drawing.Font("Arial", 8F);
            this.Text177.Interaction = null;
            this.Text177.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text177.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text177.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text178
            // 
            this.Text178 = new Stimulsoft.Report.Components.StiText();
            this.Text178.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 1.5, 1.5, 0.5);
            this.Text178.Guid = "e623df93b4e14d5f95530441f09b1904";
            this.Text178.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text178.Name = "Text178";
            // 
            // Text178_Sum
            // 
            this.Text178.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text178__GetValue);
            this.Text178.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text178.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text178.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text178.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text178.Font = new System.Drawing.Font("Arial", 8F);
            this.Text178.Interaction = null;
            this.Text178.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text178.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text178.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text179
            // 
            this.Text179 = new Stimulsoft.Report.Components.StiText();
            this.Text179.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 0, 1.5, 0.5);
            this.Text179.Guid = "a670322dbbe84001a76665064248a790";
            this.Text179.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text179.Name = "Text179";
            // 
            // Text179_Sum
            // 
            this.Text179.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text179__GetValue);
            this.Text179.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text179.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text179.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text179.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text179.Font = new System.Drawing.Font("Arial", 8F);
            this.Text179.Interaction = null;
            this.Text179.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text179.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text179.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text180
            // 
            this.Text180 = new Stimulsoft.Report.Components.StiText();
            this.Text180.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 0.5, 1.5, 0.5);
            this.Text180.Guid = "ab251a9384c640978b69b67bb3d895d7";
            this.Text180.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text180.Name = "Text180";
            // 
            // Text180_Sum
            // 
            this.Text180.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text180__GetValue);
            this.Text180.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text180.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text180.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text180.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text180.Font = new System.Drawing.Font("Arial", 8F);
            this.Text180.Interaction = null;
            this.Text180.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text180.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text180.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text181
            // 
            this.Text181 = new Stimulsoft.Report.Components.StiText();
            this.Text181.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 1, 1.5, 0.5);
            this.Text181.Guid = "e38b426b9e5d45feb23d55ff334ee5cf";
            this.Text181.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text181.Name = "Text181";
            // 
            // Text181_Sum
            // 
            this.Text181.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text181__GetValue);
            this.Text181.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text181.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text181.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text181.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text181.Font = new System.Drawing.Font("Arial", 8F);
            this.Text181.Interaction = null;
            this.Text181.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text181.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text181.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text182
            // 
            this.Text182 = new Stimulsoft.Report.Components.StiText();
            this.Text182.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 1.5, 1.5, 0.5);
            this.Text182.Guid = "2a90b4a33674493ebff572aa08cdc8ae";
            this.Text182.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text182.Name = "Text182";
            // 
            // Text182_Sum
            // 
            this.Text182.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text182__GetValue);
            this.Text182.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text182.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text182.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text182.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text182.Font = new System.Drawing.Font("Arial", 8F);
            this.Text182.Interaction = null;
            this.Text182.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text182.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text182.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text183
            // 
            this.Text183 = new Stimulsoft.Report.Components.StiText();
            this.Text183.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 0, 1.5, 0.5);
            this.Text183.Guid = "f66ee384ad0c42f98ce6a5691e6d101e";
            this.Text183.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text183.Name = "Text183";
            // 
            // Text183_Sum
            // 
            this.Text183.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text183__GetValue);
            this.Text183.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text183.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text183.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text183.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text183.Font = new System.Drawing.Font("Arial", 8F);
            this.Text183.Interaction = null;
            this.Text183.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text183.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text183.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text184
            // 
            this.Text184 = new Stimulsoft.Report.Components.StiText();
            this.Text184.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 0.5, 1.5, 0.5);
            this.Text184.Guid = "c335a7d2bb5042b89dbd5f404fca178b";
            this.Text184.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text184.Name = "Text184";
            // 
            // Text184_Sum
            // 
            this.Text184.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text184__GetValue);
            this.Text184.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text184.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text184.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text184.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text184.Font = new System.Drawing.Font("Arial", 8F);
            this.Text184.Interaction = null;
            this.Text184.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text184.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text184.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text185
            // 
            this.Text185 = new Stimulsoft.Report.Components.StiText();
            this.Text185.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 1, 1.5, 0.5);
            this.Text185.Guid = "7435e70496864589ae5a9f6bf9202d25";
            this.Text185.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text185.Name = "Text185";
            // 
            // Text185_Sum
            // 
            this.Text185.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text185__GetValue);
            this.Text185.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text185.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text185.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text185.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text185.Font = new System.Drawing.Font("Arial", 8F);
            this.Text185.Interaction = null;
            this.Text185.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text185.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text185.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text186
            // 
            this.Text186 = new Stimulsoft.Report.Components.StiText();
            this.Text186.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 1.5, 1.5, 0.5);
            this.Text186.Guid = "93005f6f7c7f474aa0d9a9cded238011";
            this.Text186.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text186.Name = "Text186";
            // 
            // Text186_Sum
            // 
            this.Text186.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text186__GetValue);
            this.Text186.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text186.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text186.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text186.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text186.Font = new System.Drawing.Font("Arial", 8F);
            this.Text186.Interaction = null;
            this.Text186.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text186.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text186.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text187
            // 
            this.Text187 = new Stimulsoft.Report.Components.StiText();
            this.Text187.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 0, 1.5, 0.5);
            this.Text187.Guid = "2e36da695ee04e7a9579f72e5a63f2e2";
            this.Text187.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text187.Name = "Text187";
            // 
            // Text187_Sum
            // 
            this.Text187.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text187__GetValue);
            this.Text187.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text187.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text187.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text187.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text187.Font = new System.Drawing.Font("Arial", 8F);
            this.Text187.Interaction = null;
            this.Text187.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text187.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text187.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text188
            // 
            this.Text188 = new Stimulsoft.Report.Components.StiText();
            this.Text188.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 0.5, 1.5, 0.5);
            this.Text188.Guid = "2d3d6fa157b34015a5164b6917cd4f8a";
            this.Text188.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text188.Name = "Text188";
            // 
            // Text188_Sum
            // 
            this.Text188.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text188__GetValue);
            this.Text188.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text188.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text188.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text188.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text188.Font = new System.Drawing.Font("Arial", 8F);
            this.Text188.Interaction = null;
            this.Text188.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text188.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text188.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text189
            // 
            this.Text189 = new Stimulsoft.Report.Components.StiText();
            this.Text189.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 1, 1.5, 0.5);
            this.Text189.Guid = "ee6d7ed88dc24f1baf397ab2f11c3be2";
            this.Text189.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text189.Name = "Text189";
            this.InitializeComponent5();
        }
        
        public void InitializeComponent5()
        {
            // 
            // Text189_Sum
            // 
            this.Text189.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text189__GetValue);
            this.Text189.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text189.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text189.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text189.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text189.Font = new System.Drawing.Font("Arial", 8F);
            this.Text189.Interaction = null;
            this.Text189.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text189.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text189.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text190
            // 
            this.Text190 = new Stimulsoft.Report.Components.StiText();
            this.Text190.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 1.5, 1.5, 0.5);
            this.Text190.Guid = "94c78f3010d547bcb250f2a981df2f72";
            this.Text190.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text190.Name = "Text190";
            // 
            // Text190_Sum
            // 
            this.Text190.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text190__GetValue);
            this.Text190.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text190.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text190.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text190.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text190.Font = new System.Drawing.Font("Arial", 8F);
            this.Text190.Interaction = null;
            this.Text190.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text190.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text190.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text191
            // 
            this.Text191 = new Stimulsoft.Report.Components.StiText();
            this.Text191.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 0, 1.5, 0.5);
            this.Text191.Guid = "5dda8ded4a9e40e5a299ac6dce559478";
            this.Text191.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text191.Name = "Text191";
            // 
            // Text191_Sum
            // 
            this.Text191.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text191__GetValue);
            this.Text191.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text191.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text191.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text191.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text191.Font = new System.Drawing.Font("Arial", 8F);
            this.Text191.Interaction = null;
            this.Text191.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text191.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text191.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text192
            // 
            this.Text192 = new Stimulsoft.Report.Components.StiText();
            this.Text192.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 0.5, 1.5, 0.5);
            this.Text192.Guid = "4eb5c2fcd0b3402f9164d2fce063e115";
            this.Text192.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text192.Name = "Text192";
            // 
            // Text192_Sum
            // 
            this.Text192.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text192__GetValue);
            this.Text192.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text192.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text192.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text192.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text192.Font = new System.Drawing.Font("Arial", 8F);
            this.Text192.Interaction = null;
            this.Text192.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text192.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text192.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text193
            // 
            this.Text193 = new Stimulsoft.Report.Components.StiText();
            this.Text193.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 1, 1.5, 0.5);
            this.Text193.Guid = "36df9b28c045466180158d0fc522a8d4";
            this.Text193.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text193.Name = "Text193";
            // 
            // Text193_Sum
            // 
            this.Text193.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text193__GetValue);
            this.Text193.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text193.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text193.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text193.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text193.Font = new System.Drawing.Font("Arial", 8F);
            this.Text193.Interaction = null;
            this.Text193.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text193.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text193.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text194
            // 
            this.Text194 = new Stimulsoft.Report.Components.StiText();
            this.Text194.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 1.5, 1.5, 0.5);
            this.Text194.Guid = "8ceef803450e4b399e3f475f55238425";
            this.Text194.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text194.Name = "Text194";
            // 
            // Text194_Sum
            // 
            this.Text194.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text194__GetValue);
            this.Text194.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text194.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text194.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text194.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text194.Font = new System.Drawing.Font("Arial", 8F);
            this.Text194.Interaction = null;
            this.Text194.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text194.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text194.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text195
            // 
            this.Text195 = new Stimulsoft.Report.Components.StiText();
            this.Text195.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 0, 1.5, 0.5);
            this.Text195.Guid = "213832a39d88428daa43e7dc76df0394";
            this.Text195.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text195.Name = "Text195";
            // 
            // Text195_Sum
            // 
            this.Text195.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text195__GetValue);
            this.Text195.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text195.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text195.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text195.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text195.Font = new System.Drawing.Font("Arial", 8F);
            this.Text195.Interaction = null;
            this.Text195.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text195.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text195.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text196
            // 
            this.Text196 = new Stimulsoft.Report.Components.StiText();
            this.Text196.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 0.5, 1.5, 0.5);
            this.Text196.Guid = "1ed7da46ba2846e3956612957c6432a7";
            this.Text196.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text196.Name = "Text196";
            // 
            // Text196_Sum
            // 
            this.Text196.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text196__GetValue);
            this.Text196.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text196.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text196.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text196.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text196.Font = new System.Drawing.Font("Arial", 8F);
            this.Text196.Interaction = null;
            this.Text196.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text196.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text196.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text197
            // 
            this.Text197 = new Stimulsoft.Report.Components.StiText();
            this.Text197.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 1, 1.5, 0.5);
            this.Text197.Guid = "3bb99500f0464c3aa99e40deb8754bb6";
            this.Text197.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text197.Name = "Text197";
            // 
            // Text197_Sum
            // 
            this.Text197.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text197__GetValue);
            this.Text197.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text197.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text197.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text197.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text197.Font = new System.Drawing.Font("Arial", 8F);
            this.Text197.Interaction = null;
            this.Text197.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text197.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text197.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text198
            // 
            this.Text198 = new Stimulsoft.Report.Components.StiText();
            this.Text198.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 1.5, 1.5, 0.5);
            this.Text198.Guid = "8e671df7d43f42e5b54a46d2e65feaae";
            this.Text198.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text198.Name = "Text198";
            // 
            // Text198_Sum
            // 
            this.Text198.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text198__GetValue);
            this.Text198.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text198.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text198.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text198.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text198.Font = new System.Drawing.Font("Arial", 8F);
            this.Text198.Interaction = null;
            this.Text198.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text198.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text198.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text199
            // 
            this.Text199 = new Stimulsoft.Report.Components.StiText();
            this.Text199.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 0, 1.5, 0.5);
            this.Text199.Guid = "3f9be2a6d3e742eab3852b6e59f0a195";
            this.Text199.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text199.Name = "Text199";
            // 
            // Text199_Sum
            // 
            this.Text199.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text199__GetValue);
            this.Text199.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text199.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text199.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text199.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text199.Font = new System.Drawing.Font("Arial", 8F);
            this.Text199.Interaction = null;
            this.Text199.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text199.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text199.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text201
            // 
            this.Text201 = new Stimulsoft.Report.Components.StiText();
            this.Text201.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 0.5, 1.5, 0.5);
            this.Text201.Guid = "1ec61c269f7e4957ae3a364c94ce5fbb";
            this.Text201.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text201.Name = "Text201";
            // 
            // Text201_Sum
            // 
            this.Text201.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text201__GetValue);
            this.Text201.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text201.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text201.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text201.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text201.Font = new System.Drawing.Font("Arial", 8F);
            this.Text201.Interaction = null;
            this.Text201.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text201.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text201.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text202
            // 
            this.Text202 = new Stimulsoft.Report.Components.StiText();
            this.Text202.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 1, 1.5, 0.5);
            this.Text202.Guid = "c8836a59458a4820845b9526a9b66db6";
            this.Text202.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text202.Name = "Text202";
            // 
            // Text202_Sum
            // 
            this.Text202.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text202__GetValue);
            this.Text202.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text202.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text202.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text202.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text202.Font = new System.Drawing.Font("Arial", 8F);
            this.Text202.Interaction = null;
            this.Text202.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text202.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text202.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text203
            // 
            this.Text203 = new Stimulsoft.Report.Components.StiText();
            this.Text203.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 1.5, 1.5, 0.5);
            this.Text203.Guid = "686daafc871d4f378f9bf8162e3425ec";
            this.Text203.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text203.Name = "Text203";
            // 
            // Text203_Sum
            // 
            this.Text203.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text203__GetValue);
            this.Text203.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text203.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text203.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text203.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text203.Font = new System.Drawing.Font("Arial", 8F);
            this.Text203.Interaction = null;
            this.Text203.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text203.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text203.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text208
            // 
            this.Text208 = new Stimulsoft.Report.Components.StiText();
            this.Text208.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 0, 1.6, 0.5);
            this.Text208.Guid = "71008766183548a8ba4d0578f2e294d7";
            this.Text208.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text208.Name = "Text208";
            // 
            // Text208_Sum
            // 
            this.Text208.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text208__GetValue);
            this.Text208.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text208.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text208.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text208.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text208.Font = new System.Drawing.Font("Arial", 8F);
            this.Text208.Interaction = null;
            this.Text208.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text208.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text208.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text209
            // 
            this.Text209 = new Stimulsoft.Report.Components.StiText();
            this.Text209.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 0.5, 1.6, 0.5);
            this.Text209.Guid = "36fc3191a7d34465803b2ad6221c364b";
            this.Text209.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text209.Name = "Text209";
            // 
            // Text209_Sum
            // 
            this.Text209.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text209__GetValue);
            this.Text209.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text209.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text209.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text209.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text209.Font = new System.Drawing.Font("Arial", 8F);
            this.Text209.Interaction = null;
            this.Text209.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text209.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text209.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text210
            // 
            this.Text210 = new Stimulsoft.Report.Components.StiText();
            this.Text210.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 1, 1.6, 0.5);
            this.Text210.Guid = "db82746f4f0f4077908db2bd2918842b";
            this.Text210.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text210.Name = "Text210";
            // 
            // Text210_Sum
            // 
            this.Text210.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text210__GetValue);
            this.Text210.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text210.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text210.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text210.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text210.Font = new System.Drawing.Font("Arial", 8F);
            this.Text210.Interaction = null;
            this.Text210.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text210.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text210.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text211
            // 
            this.Text211 = new Stimulsoft.Report.Components.StiText();
            this.Text211.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 1.5, 1.6, 0.5);
            this.Text211.Guid = "57642a8cead94195833f4b76339539e2";
            this.Text211.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text211.Name = "Text211";
            // 
            // Text211_Sum
            // 
            this.Text211.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text211__GetValue);
            this.Text211.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text211.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text211.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text211.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text211.Font = new System.Drawing.Font("Arial", 8F);
            this.Text211.Interaction = null;
            this.Text211.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text211.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text211.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text204
            // 
            this.Text204 = new Stimulsoft.Report.Components.StiText();
            this.Text204.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 0, 1.5, 0.5);
            this.Text204.Guid = "9e8dc4a8745d417487c178225403fcab";
            this.Text204.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text204.Name = "Text204";
            // 
            // Text204_Sum
            // 
            this.Text204.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text204__GetValue);
            this.Text204.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text204.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text204.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text204.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text204.Font = new System.Drawing.Font("Arial", 8F);
            this.Text204.Interaction = null;
            this.Text204.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text204.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text204.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text205
            // 
            this.Text205 = new Stimulsoft.Report.Components.StiText();
            this.Text205.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 0.5, 1.5, 0.5);
            this.Text205.Guid = "839c443a0d3943a789978fc5ba795fe6";
            this.Text205.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text205.Name = "Text205";
            // 
            // Text205_Sum
            // 
            this.Text205.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text205__GetValue);
            this.Text205.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text205.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text205.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text205.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text205.Font = new System.Drawing.Font("Arial", 8F);
            this.Text205.Interaction = null;
            this.Text205.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text205.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text205.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text206
            // 
            this.Text206 = new Stimulsoft.Report.Components.StiText();
            this.Text206.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 1, 1.5, 0.5);
            this.Text206.Guid = "84fc90c3201a46c8af132a984a88af14";
            this.Text206.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text206.Name = "Text206";
            // 
            // Text206_Sum
            // 
            this.Text206.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text206__GetValue);
            this.Text206.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text206.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text206.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text206.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text206.Font = new System.Drawing.Font("Arial", 8F);
            this.Text206.Interaction = null;
            this.Text206.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text206.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text206.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text207
            // 
            this.Text207 = new Stimulsoft.Report.Components.StiText();
            this.Text207.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 1.5, 1.5, 0.5);
            this.Text207.Guid = "cc6b0effcc5340eebe9c707779d8d90f";
            this.Text207.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text207.Name = "Text207";
            // 
            // Text207_Sum
            // 
            this.Text207.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text207__GetValue);
            this.Text207.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text207.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text207.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text207.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text207.Font = new System.Drawing.Font("Arial", 8F);
            this.Text207.Interaction = null;
            this.Text207.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text207.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text207.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            this.GroupFooterBand2.Guid = null;
            this.GroupFooterBand2.Interaction = null;
            // 
            // ReportSummaryBand2
            // 
            this.ReportSummaryBand2 = new Stimulsoft.Report.Components.StiReportSummaryBand();
            this.ReportSummaryBand2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 18.8, 28.7, 2);
            this.ReportSummaryBand2.BeforePrint += new System.EventHandler(this.ReportSummaryBand2_Conditions);
            this.ReportSummaryBand2.Name = "ReportSummaryBand2";
            this.ReportSummaryBand2.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.ReportSummaryBand2.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            // 
            // Text273
            // 
            this.Text273 = new Stimulsoft.Report.Components.StiText();
            this.Text273.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0, 7.6, 2);
            this.Text273.Guid = "4df2a0772dd54fccaac33059a8e0a24d";
            this.Text273.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
            this.Text273.Name = "Text273";
            this.Text273.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text273__GetValue);
            this.Text273.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text273.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text273.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text273.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text273.Font = new System.Drawing.Font("Arial", 10F);
            this.Text273.Interaction = null;
            this.Text273.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text273.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text273.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text212
            // 
            this.Text212 = new Stimulsoft.Report.Components.StiText();
            this.Text212.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 0, 1.5, 0.5);
            this.Text212.Guid = "21402d0b01c143549a9d1c8df4fe9d74";
            this.Text212.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text212.Name = "Text212";
            this.Text212.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text212__GetValue);
            this.Text212.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text212.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text212.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text212.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text212.Font = new System.Drawing.Font("Arial", 8F);
            this.Text212.Interaction = null;
            this.Text212.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text212.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text212.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text213
            // 
            this.Text213 = new Stimulsoft.Report.Components.StiText();
            this.Text213.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 0.5, 1.5, 0.5);
            this.Text213.Guid = "9d5c8fcd71c14285b2cb6132e1ef778d";
            this.Text213.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text213.Name = "Text213";
            this.Text213.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text213__GetValue);
            this.Text213.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text213.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text213.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text213.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text213.Font = new System.Drawing.Font("Arial", 8F);
            this.Text213.Interaction = null;
            this.Text213.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text213.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text213.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text214
            // 
            this.Text214 = new Stimulsoft.Report.Components.StiText();
            this.Text214.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 1, 1.5, 0.5);
            this.Text214.Guid = "ffa43066047e46c4abed7ad40777e550";
            this.Text214.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text214.Name = "Text214";
            this.Text214.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text214__GetValue);
            this.Text214.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text214.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text214.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text214.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text214.Font = new System.Drawing.Font("Arial", 8F);
            this.Text214.Interaction = null;
            this.Text214.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text214.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text214.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text215
            // 
            this.Text215 = new Stimulsoft.Report.Components.StiText();
            this.Text215.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.6, 1.5, 1.5, 0.5);
            this.Text215.Guid = "1d164d3e68364ee6879e80f8d473e6b6";
            this.Text215.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text215.Name = "Text215";
            this.Text215.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text215__GetValue);
            this.Text215.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text215.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text215.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text215.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text215.Font = new System.Drawing.Font("Arial", 8F);
            this.Text215.Interaction = null;
            this.Text215.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text215.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text215.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text216
            // 
            this.Text216 = new Stimulsoft.Report.Components.StiText();
            this.Text216.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 0, 1.5, 0.5);
            this.Text216.Guid = "a6063c1142954fae9d3bd9d1099c6acc";
            this.Text216.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text216.Name = "Text216";
            // 
            // Text216_Sum
            // 
            this.Text216.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text216__GetValue);
            this.Text216.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text216.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text216.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text216.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text216.Font = new System.Drawing.Font("Arial", 8F);
            this.Text216.Interaction = null;
            this.Text216.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text216.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text216.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text217
            // 
            this.Text217 = new Stimulsoft.Report.Components.StiText();
            this.Text217.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 0.5, 1.5, 0.5);
            this.Text217.Guid = "67040d2906d34505ae8a0bd3ba67a0bd";
            this.Text217.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text217.Name = "Text217";
            // 
            // Text217_Sum
            // 
            this.Text217.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text217__GetValue);
            this.Text217.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text217.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text217.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text217.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text217.Font = new System.Drawing.Font("Arial", 8F);
            this.Text217.Interaction = null;
            this.Text217.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text217.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text217.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text218
            // 
            this.Text218 = new Stimulsoft.Report.Components.StiText();
            this.Text218.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 1, 1.5, 0.5);
            this.Text218.Guid = "9c9d860eaa2a472096f1f6041f801a45";
            this.Text218.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text218.Name = "Text218";
            // 
            // Text218_Sum
            // 
            this.Text218.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text218__GetValue);
            this.Text218.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text218.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text218.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text218.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text218.Font = new System.Drawing.Font("Arial", 8F);
            this.Text218.Interaction = null;
            this.Text218.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text218.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text218.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text219
            // 
            this.Text219 = new Stimulsoft.Report.Components.StiText();
            this.Text219.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.1, 1.5, 1.5, 0.5);
            this.Text219.Guid = "1b9da56e22d04f45bd65411a7fddc7db";
            this.Text219.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text219.Name = "Text219";
            // 
            // Text219_Sum
            // 
            this.Text219.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text219__GetValue);
            this.Text219.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text219.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text219.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text219.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text219.Font = new System.Drawing.Font("Arial", 8F);
            this.Text219.Interaction = null;
            this.Text219.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text219.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text219.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text220
            // 
            this.Text220 = new Stimulsoft.Report.Components.StiText();
            this.Text220.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 0, 1.5, 0.5);
            this.Text220.Guid = "0cce8b103b2a4f4888d574fa65604049";
            this.Text220.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text220.Name = "Text220";
            // 
            // Text220_Sum
            // 
            this.Text220.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text220__GetValue);
            this.Text220.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text220.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text220.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text220.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text220.Font = new System.Drawing.Font("Arial", 8F);
            this.Text220.Interaction = null;
            this.Text220.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text220.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text220.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text221
            // 
            this.Text221 = new Stimulsoft.Report.Components.StiText();
            this.Text221.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 0.5, 1.5, 0.5);
            this.Text221.Guid = "6f53b86c77a74c8da844bfa43c0dbd80";
            this.Text221.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text221.Name = "Text221";
            // 
            // Text221_Sum
            // 
            this.Text221.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text221__GetValue);
            this.Text221.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text221.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text221.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text221.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text221.Font = new System.Drawing.Font("Arial", 8F);
            this.Text221.Interaction = null;
            this.Text221.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text221.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text221.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text222
            // 
            this.Text222 = new Stimulsoft.Report.Components.StiText();
            this.Text222.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 1, 1.5, 0.5);
            this.Text222.Guid = "86efc20fe0a246639d0c1de567f8b32d";
            this.Text222.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text222.Name = "Text222";
            // 
            // Text222_Sum
            // 
            this.Text222.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text222__GetValue);
            this.Text222.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text222.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text222.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text222.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text222.Font = new System.Drawing.Font("Arial", 8F);
            this.Text222.Interaction = null;
            this.Text222.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text222.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text222.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text223
            // 
            this.Text223 = new Stimulsoft.Report.Components.StiText();
            this.Text223.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.6, 1.5, 1.5, 0.5);
            this.Text223.Guid = "cd40299ac90f4e87a0d10bcc53745cad";
            this.Text223.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text223.Name = "Text223";
            // 
            // Text223_Sum
            // 
            this.Text223.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text223__GetValue);
            this.Text223.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text223.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text223.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text223.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text223.Font = new System.Drawing.Font("Arial", 8F);
            this.Text223.Interaction = null;
            this.Text223.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text223.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text223.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text224
            // 
            this.Text224 = new Stimulsoft.Report.Components.StiText();
            this.Text224.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 0, 1.5, 0.5);
            this.Text224.Guid = "d26792d3d6f641c3ad8f17add6f7e7da";
            this.Text224.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text224.Name = "Text224";
            // 
            // Text224_Sum
            // 
            this.Text224.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text224__GetValue);
            this.Text224.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text224.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text224.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text224.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text224.Font = new System.Drawing.Font("Arial", 8F);
            this.Text224.Interaction = null;
            this.Text224.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text224.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text224.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text225
            // 
            this.Text225 = new Stimulsoft.Report.Components.StiText();
            this.Text225.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 0.5, 1.5, 0.5);
            this.Text225.Guid = "369f7f5a1e884a41881b4432e73cb3c0";
            this.Text225.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text225.Name = "Text225";
            // 
            // Text225_Sum
            // 
            this.Text225.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text225__GetValue);
            this.Text225.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text225.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text225.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text225.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text225.Font = new System.Drawing.Font("Arial", 8F);
            this.Text225.Interaction = null;
            this.Text225.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text225.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text225.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text226
            // 
            this.Text226 = new Stimulsoft.Report.Components.StiText();
            this.Text226.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 1, 1.5, 0.5);
            this.Text226.Guid = "2d7eb82c34c942ddab1bb3997330dcb6";
            this.Text226.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text226.Name = "Text226";
            // 
            // Text226_Sum
            // 
            this.Text226.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text226__GetValue);
            this.Text226.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text226.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text226.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text226.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text226.Font = new System.Drawing.Font("Arial", 8F);
            this.Text226.Interaction = null;
            this.Text226.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text226.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text226.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text227
            // 
            this.Text227 = new Stimulsoft.Report.Components.StiText();
            this.Text227.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.1, 1.5, 1.5, 0.5);
            this.Text227.Guid = "01abb1a179834546b54d1915cf4033a6";
            this.Text227.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text227.Name = "Text227";
            // 
            // Text227_Sum
            // 
            this.Text227.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text227__GetValue);
            this.Text227.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text227.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text227.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text227.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text227.Font = new System.Drawing.Font("Arial", 8F);
            this.Text227.Interaction = null;
            this.Text227.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text227.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text227.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text228
            // 
            this.Text228 = new Stimulsoft.Report.Components.StiText();
            this.Text228.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 0, 1.5, 0.5);
            this.Text228.Guid = "c62b8dcd28e34b53bf483611b0940027";
            this.Text228.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text228.Name = "Text228";
            // 
            // Text228_Sum
            // 
            this.Text228.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text228__GetValue);
            this.Text228.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text228.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text228.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text228.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text228.Font = new System.Drawing.Font("Arial", 8F);
            this.Text228.Interaction = null;
            this.Text228.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text228.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text228.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text229
            // 
            this.Text229 = new Stimulsoft.Report.Components.StiText();
            this.Text229.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 0.5, 1.5, 0.5);
            this.Text229.Guid = "61cbc6d4fa8d4d3e95cf45ea9cc4392e";
            this.Text229.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text229.Name = "Text229";
            // 
            // Text229_Sum
            // 
            this.Text229.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text229__GetValue);
            this.Text229.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text229.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text229.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text229.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text229.Font = new System.Drawing.Font("Arial", 8F);
            this.Text229.Interaction = null;
            this.Text229.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text229.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text229.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text230
            // 
            this.Text230 = new Stimulsoft.Report.Components.StiText();
            this.Text230.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 1, 1.5, 0.5);
            this.Text230.Guid = "ade78519e4b148639b0f9876e8818e8e";
            this.Text230.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text230.Name = "Text230";
            // 
            // Text230_Sum
            // 
            this.Text230.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text230__GetValue);
            this.Text230.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text230.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text230.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text230.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text230.Font = new System.Drawing.Font("Arial", 8F);
            this.Text230.Interaction = null;
            this.Text230.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text230.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text230.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text231
            // 
            this.Text231 = new Stimulsoft.Report.Components.StiText();
            this.Text231.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 1.5, 1.5, 0.5);
            this.Text231.Guid = "9a619164eba54c1aa268f38b578be3eb";
            this.Text231.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text231.Name = "Text231";
            // 
            // Text231_Sum
            // 
            this.Text231.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text231__GetValue);
            this.Text231.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text231.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text231.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text231.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text231.Font = new System.Drawing.Font("Arial", 8F);
            this.Text231.Interaction = null;
            this.Text231.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text231.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text231.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text232
            // 
            this.Text232 = new Stimulsoft.Report.Components.StiText();
            this.Text232.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 0, 1.5, 0.5);
            this.Text232.Guid = "f2658e054d8d43eab78e187b706aa15c";
            this.Text232.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text232.Name = "Text232";
            // 
            // Text232_Sum
            // 
            this.Text232.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text232__GetValue);
            this.Text232.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text232.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text232.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text232.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text232.Font = new System.Drawing.Font("Arial", 8F);
            this.Text232.Interaction = null;
            this.Text232.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text232.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text232.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text233
            // 
            this.Text233 = new Stimulsoft.Report.Components.StiText();
            this.Text233.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 0.5, 1.5, 0.5);
            this.Text233.Guid = "bd00adbb60074e7b83b600014f0d0fd0";
            this.Text233.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text233.Name = "Text233";
            // 
            // Text233_Sum
            // 
            this.Text233.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text233__GetValue);
            this.Text233.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text233.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text233.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text233.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text233.Font = new System.Drawing.Font("Arial", 8F);
            this.Text233.Interaction = null;
            this.Text233.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text233.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text233.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text234
            // 
            this.Text234 = new Stimulsoft.Report.Components.StiText();
            this.Text234.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 1, 1.5, 0.5);
            this.Text234.Guid = "5711ddb5d9b34e3aad2ab7207d8f21e7";
            this.Text234.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text234.Name = "Text234";
            // 
            // Text234_Sum
            // 
            this.Text234.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text234__GetValue);
            this.Text234.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text234.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text234.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text234.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text234.Font = new System.Drawing.Font("Arial", 8F);
            this.Text234.Interaction = null;
            this.Text234.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text234.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text234.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text235
            // 
            this.Text235 = new Stimulsoft.Report.Components.StiText();
            this.Text235.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.1, 1.5, 1.5, 0.5);
            this.Text235.Guid = "42ba64bcfecb4c61bf321def3bb3796a";
            this.Text235.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text235.Name = "Text235";
            // 
            // Text235_Sum
            // 
            this.Text235.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text235__GetValue);
            this.Text235.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text235.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text235.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text235.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text235.Font = new System.Drawing.Font("Arial", 8F);
            this.Text235.Interaction = null;
            this.Text235.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text235.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text235.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text236
            // 
            this.Text236 = new Stimulsoft.Report.Components.StiText();
            this.Text236.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 0, 1.5, 0.5);
            this.Text236.Guid = "814ac293fdbd4fadbef790401359a15e";
            this.Text236.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text236.Name = "Text236";
            // 
            // Text236_Sum
            // 
            this.Text236.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text236__GetValue);
            this.Text236.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text236.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text236.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text236.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text236.Font = new System.Drawing.Font("Arial", 8F);
            this.Text236.Interaction = null;
            this.Text236.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text236.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text236.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text237
            // 
            this.Text237 = new Stimulsoft.Report.Components.StiText();
            this.InitializeComponent6();
        }
        
        public void InitializeComponent6()
        {
            this.Text237.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 0.5, 1.5, 0.5);
            this.Text237.Guid = "036aca0360d84246b51f1ce5d85b4d1c";
            this.Text237.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text237.Name = "Text237";
            // 
            // Text237_Sum
            // 
            this.Text237.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text237__GetValue);
            this.Text237.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text237.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text237.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text237.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text237.Font = new System.Drawing.Font("Arial", 8F);
            this.Text237.Interaction = null;
            this.Text237.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text237.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text237.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text238
            // 
            this.Text238 = new Stimulsoft.Report.Components.StiText();
            this.Text238.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 1, 1.5, 0.5);
            this.Text238.Guid = "c9f8db4969d242859ae445b951ffb91e";
            this.Text238.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text238.Name = "Text238";
            // 
            // Text238_Sum
            // 
            this.Text238.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text238__GetValue);
            this.Text238.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text238.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text238.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text238.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text238.Font = new System.Drawing.Font("Arial", 8F);
            this.Text238.Interaction = null;
            this.Text238.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text238.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text238.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text239
            // 
            this.Text239 = new Stimulsoft.Report.Components.StiText();
            this.Text239.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.6, 1.5, 1.5, 0.5);
            this.Text239.Guid = "1678e5c3268e4a1495ef893c5e15ee3d";
            this.Text239.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text239.Name = "Text239";
            // 
            // Text239_Sum
            // 
            this.Text239.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text239__GetValue);
            this.Text239.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text239.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text239.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text239.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text239.Font = new System.Drawing.Font("Arial", 8F);
            this.Text239.Interaction = null;
            this.Text239.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text239.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text239.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text240
            // 
            this.Text240 = new Stimulsoft.Report.Components.StiText();
            this.Text240.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 0, 1.5, 0.5);
            this.Text240.Guid = "6d941cb5096a4717a882c38d7c6f330b";
            this.Text240.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text240.Name = "Text240";
            // 
            // Text240_Sum
            // 
            this.Text240.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text240__GetValue);
            this.Text240.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text240.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text240.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text240.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text240.Font = new System.Drawing.Font("Arial", 8F);
            this.Text240.Interaction = null;
            this.Text240.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text240.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text240.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text241
            // 
            this.Text241 = new Stimulsoft.Report.Components.StiText();
            this.Text241.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 0.5, 1.5, 0.5);
            this.Text241.Guid = "23dcf30215954cf0b9da6f3cb6bcc8ce";
            this.Text241.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text241.Name = "Text241";
            // 
            // Text241_Sum
            // 
            this.Text241.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text241__GetValue);
            this.Text241.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text241.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text241.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text241.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text241.Font = new System.Drawing.Font("Arial", 8F);
            this.Text241.Interaction = null;
            this.Text241.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text241.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text241.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text242
            // 
            this.Text242 = new Stimulsoft.Report.Components.StiText();
            this.Text242.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 1, 1.5, 0.5);
            this.Text242.Guid = "eb7ba6ec85bd45e1b58eec7372f922e3";
            this.Text242.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text242.Name = "Text242";
            // 
            // Text242_Sum
            // 
            this.Text242.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text242__GetValue);
            this.Text242.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text242.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text242.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text242.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text242.Font = new System.Drawing.Font("Arial", 8F);
            this.Text242.Interaction = null;
            this.Text242.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text242.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text242.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text243
            // 
            this.Text243 = new Stimulsoft.Report.Components.StiText();
            this.Text243.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.1, 1.5, 1.5, 0.5);
            this.Text243.Guid = "7ae2666010104d848069241bc40f7d70";
            this.Text243.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text243.Name = "Text243";
            // 
            // Text243_Sum
            // 
            this.Text243.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text243__GetValue);
            this.Text243.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text243.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text243.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text243.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text243.Font = new System.Drawing.Font("Arial", 8F);
            this.Text243.Interaction = null;
            this.Text243.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text243.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text243.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text244
            // 
            this.Text244 = new Stimulsoft.Report.Components.StiText();
            this.Text244.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 0, 1.5, 0.5);
            this.Text244.Guid = "797f0a0dc5284bc68f32eba50a19d1e5";
            this.Text244.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text244.Name = "Text244";
            // 
            // Text244_Sum
            // 
            this.Text244.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text244__GetValue);
            this.Text244.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text244.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text244.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text244.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text244.Font = new System.Drawing.Font("Arial", 8F);
            this.Text244.Interaction = null;
            this.Text244.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text244.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text244.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text245
            // 
            this.Text245 = new Stimulsoft.Report.Components.StiText();
            this.Text245.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 0.5, 1.5, 0.5);
            this.Text245.Guid = "4230737fd10b437da49e968e104d3ef0";
            this.Text245.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text245.Name = "Text245";
            // 
            // Text245_Sum
            // 
            this.Text245.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text245__GetValue);
            this.Text245.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text245.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text245.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text245.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text245.Font = new System.Drawing.Font("Arial", 8F);
            this.Text245.Interaction = null;
            this.Text245.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text245.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text245.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text246
            // 
            this.Text246 = new Stimulsoft.Report.Components.StiText();
            this.Text246.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 1, 1.5, 0.5);
            this.Text246.Guid = "6f310dc287804b0b91e3fd3fd6fff8a3";
            this.Text246.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text246.Name = "Text246";
            // 
            // Text246_Sum
            // 
            this.Text246.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text246__GetValue);
            this.Text246.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text246.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text246.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text246.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text246.Font = new System.Drawing.Font("Arial", 8F);
            this.Text246.Interaction = null;
            this.Text246.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text246.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text246.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text247
            // 
            this.Text247 = new Stimulsoft.Report.Components.StiText();
            this.Text247.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(19.6, 1.5, 1.5, 0.5);
            this.Text247.Guid = "be67fee5790f43f6b8c9a6e60b249f91";
            this.Text247.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text247.Name = "Text247";
            // 
            // Text247_Sum
            // 
            this.Text247.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text247__GetValue);
            this.Text247.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text247.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text247.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text247.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text247.Font = new System.Drawing.Font("Arial", 8F);
            this.Text247.Interaction = null;
            this.Text247.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text247.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text247.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text248
            // 
            this.Text248 = new Stimulsoft.Report.Components.StiText();
            this.Text248.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 0, 1.5, 0.5);
            this.Text248.Guid = "af7d6a781b084b2b892396d5bdbcb931";
            this.Text248.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text248.Name = "Text248";
            // 
            // Text248_Sum
            // 
            this.Text248.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text248__GetValue);
            this.Text248.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text248.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text248.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text248.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text248.Font = new System.Drawing.Font("Arial", 8F);
            this.Text248.Interaction = null;
            this.Text248.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text248.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text248.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text249
            // 
            this.Text249 = new Stimulsoft.Report.Components.StiText();
            this.Text249.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 0.5, 1.5, 0.5);
            this.Text249.Guid = "5634ca7c101141a9b4e04eecbb9d1371";
            this.Text249.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text249.Name = "Text249";
            // 
            // Text249_Sum
            // 
            this.Text249.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text249__GetValue);
            this.Text249.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text249.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text249.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text249.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text249.Font = new System.Drawing.Font("Arial", 8F);
            this.Text249.Interaction = null;
            this.Text249.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text249.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text249.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text250
            // 
            this.Text250 = new Stimulsoft.Report.Components.StiText();
            this.Text250.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 1, 1.5, 0.5);
            this.Text250.Guid = "47382852b01545118046e263a2b2c422";
            this.Text250.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text250.Name = "Text250";
            // 
            // Text250_Sum
            // 
            this.Text250.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text250__GetValue);
            this.Text250.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text250.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text250.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text250.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text250.Font = new System.Drawing.Font("Arial", 8F);
            this.Text250.Interaction = null;
            this.Text250.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text250.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text250.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text251
            // 
            this.Text251 = new Stimulsoft.Report.Components.StiText();
            this.Text251.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.1, 1.5, 1.5, 0.5);
            this.Text251.Guid = "2dc7be4f7a384ac8a0aee9bcc510bf7e";
            this.Text251.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text251.Name = "Text251";
            // 
            // Text251_Sum
            // 
            this.Text251.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text251__GetValue);
            this.Text251.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text251.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text251.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text251.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text251.Font = new System.Drawing.Font("Arial", 8F);
            this.Text251.Interaction = null;
            this.Text251.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text251.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text251.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text252
            // 
            this.Text252 = new Stimulsoft.Report.Components.StiText();
            this.Text252.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 0, 1.5, 0.5);
            this.Text252.Guid = "c1e8505d32af4f3e9c23ee13aaf3121f";
            this.Text252.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text252.Name = "Text252";
            // 
            // Text252_Sum
            // 
            this.Text252.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text252__GetValue);
            this.Text252.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text252.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text252.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text252.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text252.Font = new System.Drawing.Font("Arial", 8F);
            this.Text252.Interaction = null;
            this.Text252.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text252.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text252.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text253
            // 
            this.Text253 = new Stimulsoft.Report.Components.StiText();
            this.Text253.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 0.5, 1.5, 0.5);
            this.Text253.Guid = "c6e3baf2576440c18afde2103875665e";
            this.Text253.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text253.Name = "Text253";
            // 
            // Text253_Sum
            // 
            this.Text253.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text253__GetValue);
            this.Text253.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text253.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text253.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text253.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text253.Font = new System.Drawing.Font("Arial", 8F);
            this.Text253.Interaction = null;
            this.Text253.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text253.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text253.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text254
            // 
            this.Text254 = new Stimulsoft.Report.Components.StiText();
            this.Text254.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 1, 1.5, 0.5);
            this.Text254.Guid = "25ac279941b344f789bec434e9104f14";
            this.Text254.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text254.Name = "Text254";
            // 
            // Text254_Sum
            // 
            this.Text254.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text254__GetValue);
            this.Text254.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text254.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text254.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text254.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text254.Font = new System.Drawing.Font("Arial", 8F);
            this.Text254.Interaction = null;
            this.Text254.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text254.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text254.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text255
            // 
            this.Text255 = new Stimulsoft.Report.Components.StiText();
            this.Text255.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.6, 1.5, 1.5, 0.5);
            this.Text255.Guid = "7c46c243220649d581fcecf581a00042";
            this.Text255.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text255.Name = "Text255";
            // 
            // Text255_Sum
            // 
            this.Text255.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text255__GetValue);
            this.Text255.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text255.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text255.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text255.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text255.Font = new System.Drawing.Font("Arial", 8F);
            this.Text255.Interaction = null;
            this.Text255.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text255.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text255.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text256
            // 
            this.Text256 = new Stimulsoft.Report.Components.StiText();
            this.Text256.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 0, 1.5, 0.5);
            this.Text256.Guid = "e291b62574d54a64a3ca7014345cb62f";
            this.Text256.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text256.Name = "Text256";
            // 
            // Text256_Sum
            // 
            this.Text256.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text256__GetValue);
            this.Text256.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text256.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text256.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text256.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text256.Font = new System.Drawing.Font("Arial", 8F);
            this.Text256.Interaction = null;
            this.Text256.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text256.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text256.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text257
            // 
            this.Text257 = new Stimulsoft.Report.Components.StiText();
            this.Text257.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 0.5, 1.5, 0.5);
            this.Text257.Guid = "823d82ae19fc44c49f0625c5db4ab690";
            this.Text257.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text257.Name = "Text257";
            // 
            // Text257_Sum
            // 
            this.Text257.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text257__GetValue);
            this.Text257.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text257.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text257.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text257.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text257.Font = new System.Drawing.Font("Arial", 8F);
            this.Text257.Interaction = null;
            this.Text257.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text257.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text257.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text258
            // 
            this.Text258 = new Stimulsoft.Report.Components.StiText();
            this.Text258.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 1, 1.5, 0.5);
            this.Text258.Guid = "ab50786857704636a48ff244650f83f3";
            this.Text258.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text258.Name = "Text258";
            // 
            // Text258_Sum
            // 
            this.Text258.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text258__GetValue);
            this.Text258.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text258.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text258.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text258.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text258.Font = new System.Drawing.Font("Arial", 8F);
            this.Text258.Interaction = null;
            this.Text258.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text258.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text258.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text259
            // 
            this.Text259 = new Stimulsoft.Report.Components.StiText();
            this.Text259.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.1, 1.5, 1.5, 0.5);
            this.Text259.Guid = "af264dd9b5f54f72a021e0677b6f9ac9";
            this.Text259.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text259.Name = "Text259";
            // 
            // Text259_Sum
            // 
            this.Text259.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text259__GetValue);
            this.Text259.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
            this.Text259.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text259.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text259.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text259.Font = new System.Drawing.Font("Arial", 8F);
            this.Text259.Interaction = null;
            this.Text259.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text259.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text259.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text264
            // 
            this.Text264 = new Stimulsoft.Report.Components.StiText();
            this.Text264.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 0, 1.6, 0.5);
            this.Text264.Guid = "6f77ad1298b44a738b66124b5497164c";
            this.Text264.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text264.Name = "Text264";
            // 
            // Text264_Sum
            // 
            this.Text264.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text264__GetValue);
            this.Text264.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text264.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text264.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text264.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text264.Font = new System.Drawing.Font("Arial", 8F);
            this.Text264.Interaction = null;
            this.Text264.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text264.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text264.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text265
            // 
            this.Text265 = new Stimulsoft.Report.Components.StiText();
            this.Text265.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 0.5, 1.6, 0.5);
            this.Text265.Guid = "3c30deba238b4f8185f499833ec483a1";
            this.Text265.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text265.Name = "Text265";
            // 
            // Text265_Sum
            // 
            this.Text265.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text265__GetValue);
            this.Text265.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text265.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text265.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text265.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text265.Font = new System.Drawing.Font("Arial", 8F);
            this.Text265.Interaction = null;
            this.Text265.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text265.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text265.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text266
            // 
            this.Text266 = new Stimulsoft.Report.Components.StiText();
            this.Text266.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 1, 1.6, 0.5);
            this.Text266.Guid = "c62e858b90e240b0b435f48f496d1caa";
            this.Text266.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text266.Name = "Text266";
            // 
            // Text266_Sum
            // 
            this.Text266.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text266__GetValue);
            this.Text266.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text266.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text266.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text266.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text266.Font = new System.Drawing.Font("Arial", 8F);
            this.Text266.Interaction = null;
            this.Text266.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text266.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text266.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text267
            // 
            this.Text267 = new Stimulsoft.Report.Components.StiText();
            this.Text267.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.1, 1.5, 1.6, 0.5);
            this.Text267.Guid = "87a22e302e084bef9b8e64c406a21f3b";
            this.Text267.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text267.Name = "Text267";
            // 
            // Text267_Sum
            // 
            this.Text267.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text267__GetValue);
            this.Text267.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text267.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text267.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text267.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text267.Font = new System.Drawing.Font("Arial", 8F);
            this.Text267.Interaction = null;
            this.Text267.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text267.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text267.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text260
            // 
            this.Text260 = new Stimulsoft.Report.Components.StiText();
            this.Text260.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 0, 1.5, 0.5);
            this.Text260.Guid = "85e2ad51af424787b15e199d2b5c548c";
            this.Text260.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text260.Name = "Text260";
            // 
            // Text260_Sum
            // 
            this.Text260.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text260__GetValue);
            this.Text260.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text260.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text260.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text260.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text260.Font = new System.Drawing.Font("Arial", 8F);
            this.Text260.Interaction = null;
            this.Text260.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text260.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text260.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text261
            // 
            this.Text261 = new Stimulsoft.Report.Components.StiText();
            this.Text261.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 0.5, 1.5, 0.5);
            this.Text261.Guid = "240182e91b374372b455f9b3924cc165";
            this.Text261.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text261.Name = "Text261";
            // 
            // Text261_Sum
            // 
            this.Text261.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text261__GetValue);
            this.Text261.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text261.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text261.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text261.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text261.Font = new System.Drawing.Font("Arial", 8F);
            this.Text261.Interaction = null;
            this.Text261.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text261.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text261.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text262
            // 
            this.Text262 = new Stimulsoft.Report.Components.StiText();
            this.Text262.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 1, 1.5, 0.5);
            this.Text262.Guid = "2d642c8e18ea49fd9417d00b889cae46";
            this.Text262.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text262.Name = "Text262";
            // 
            // Text262_Sum
            // 
            this.Text262.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text262__GetValue);
            this.Text262.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text262.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text262.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text262.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text262.Font = new System.Drawing.Font("Arial", 8F);
            this.Text262.Interaction = null;
            this.Text262.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text262.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text262.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            // 
            // Text263
            // 
            this.Text263 = new Stimulsoft.Report.Components.StiText();
            this.Text263.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.6, 1.5, 1.5, 0.5);
            this.Text263.Guid = "2a07b2eddee341febc91c1f54864e52f";
            this.Text263.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
            this.Text263.Name = "Text263";
            // 
            // Text263_Sum
            // 
            this.Text263.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text263__GetValue);
            this.Text263.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text263.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
            this.Text263.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text263.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text263.Font = new System.Drawing.Font("Arial", 8F);
            this.Text263.Interaction = null;
            this.Text263.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text263.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text263.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            this.ReportSummaryBand2.Guid = null;
            this.ReportSummaryBand2.Interaction = null;
            // 
            // ReportSummaryBand1
            // 
            this.ReportSummaryBand1 = new Stimulsoft.Report.Components.StiReportSummaryBand();
            this.ReportSummaryBand1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 21.6, 28.7, 6.36);
            this.ReportSummaryBand1.BeforePrint += new System.EventHandler(this.ReportSummaryBand1_Conditions);
            this.ReportSummaryBand1.Name = "ReportSummaryBand1";
            this.ReportSummaryBand1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.ReportSummaryBand1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            // 
            // Text97
            // 
            this.Text97 = new Stimulsoft.Report.Components.StiText();
            this.Text97.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.76, 0.36, 24.04, 5.89);
            this.Text97.Name = "Text97";
            this.Text97.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text97__GetValue);
            this.Text97.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
            this.Text97.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
            this.Text97.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
            this.Text97.Font = new System.Drawing.Font("Arial", 8F);
            this.Text97.Guid = null;
            this.Text97.Interaction = null;
            this.Text97.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
            this.Text97.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
            this.Text97.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
            this.ReportSummaryBand1.Guid = null;
            this.ReportSummaryBand1.Interaction = null;
            this.Page1.ExcelSheetValue = null;
            this.Page1.Interaction = null;
            this.Page1.Margins = new Stimulsoft.Report.Components.StiMargins(0.5, 0.5, 0.5, 0.5);
            this.Page1_Watermark = new Stimulsoft.Report.Components.StiWatermark();
            this.Page1_Watermark.Font = new System.Drawing.Font("Arial", 100F);
            this.Page1_Watermark.Image = null;
            this.Page1_Watermark.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.FromArgb(50, 0, 0, 0));
            this.Report_PrinterSettings = new Stimulsoft.Report.Print.StiPrinterSettings();
            this.PrinterSettings = this.Report_PrinterSettings;
            this.Page1.Report = this;
            this.Page1.Watermark = this.Page1_Watermark;
            this.ReportTitleBand1.Page = this.Page1;
            this.ReportTitleBand1.Parent = this.Page1;
            this.Text1.Page = this.Page1;
            this.Text1.Parent = this.ReportTitleBand1;
            this.Text2.Page = this.Page1;
            this.Text2.Parent = this.ReportTitleBand1;
            this.Text3.Page = this.Page1;
            this.Text3.Parent = this.ReportTitleBand1;
            this.Text268.Page = this.Page1;
            this.Text268.Parent = this.ReportTitleBand1;
            this.HeaderBand1.Page = this.Page1;
            this.HeaderBand1.Parent = this.Page1;
            this.Text4.Page = this.Page1;
            this.Text4.Parent = this.HeaderBand1;
            this.Text5.Page = this.Page1;
            this.Text5.Parent = this.HeaderBand1;
            this.Text6.Page = this.Page1;
            this.Text6.Parent = this.HeaderBand1;
            this.Text21.Page = this.Page1;
            this.Text21.Parent = this.HeaderBand1;
            this.Text22.Page = this.Page1;
            this.Text22.Parent = this.HeaderBand1;
            this.Text23.Page = this.Page1;
            this.Text23.Parent = this.HeaderBand1;
            this.Text7.Page = this.Page1;
            this.Text7.Parent = this.HeaderBand1;
            this.Text8.Page = this.Page1;
            this.Text8.Parent = this.HeaderBand1;
            this.Text9.Page = this.Page1;
            this.Text9.Parent = this.HeaderBand1;
            this.Text10.Page = this.Page1;
            this.Text10.Parent = this.HeaderBand1;
            this.Text11.Page = this.Page1;
            this.Text11.Parent = this.HeaderBand1;
            this.Text12.Page = this.Page1;
            this.Text12.Parent = this.HeaderBand1;
            this.Text13.Page = this.Page1;
            this.Text13.Parent = this.HeaderBand1;
            this.Text14.Page = this.Page1;
            this.Text14.Parent = this.HeaderBand1;
            this.Text15.Page = this.Page1;
            this.Text15.Parent = this.HeaderBand1;
            this.Text16.Page = this.Page1;
            this.Text16.Parent = this.HeaderBand1;
            this.Text17.Page = this.Page1;
            this.Text17.Parent = this.HeaderBand1;
            this.Text18.Page = this.Page1;
            this.Text18.Parent = this.HeaderBand1;
            this.Text19.Page = this.Page1;
            this.Text19.Parent = this.HeaderBand1;
            this.Text20.Page = this.Page1;
            this.Text20.Parent = this.HeaderBand1;
            this.Text24.Page = this.Page1;
            this.Text24.Parent = this.HeaderBand1;
            this.Text25.Page = this.Page1;
            this.Text25.Parent = this.HeaderBand1;
            this.Text26.Page = this.Page1;
            this.Text26.Parent = this.HeaderBand1;
            this.Text27.Page = this.Page1;
            this.Text27.Parent = this.HeaderBand1;
            this.Text28.Page = this.Page1;
            this.Text28.Parent = this.HeaderBand1;
            this.Text29.Page = this.Page1;
            this.Text29.Parent = this.HeaderBand1;
            this.Text30.Page = this.Page1;
            this.Text30.Parent = this.HeaderBand1;
            this.Text31.Page = this.Page1;
            this.Text31.Parent = this.HeaderBand1;
            this.Text32.Page = this.Page1;
            this.Text32.Parent = this.HeaderBand1;
            this.Text33.Page = this.Page1;
            this.Text33.Parent = this.HeaderBand1;
            this.Text34.Page = this.Page1;
            this.Text34.Parent = this.HeaderBand1;
            this.Text35.Page = this.Page1;
            this.Text35.Parent = this.HeaderBand1;
            this.Text36.Page = this.Page1;
            this.Text36.Parent = this.HeaderBand1;
            this.Text37.Page = this.Page1;
            this.Text37.Parent = this.HeaderBand1;
            this.GroupHeaderBand1.Page = this.Page1;
            this.GroupHeaderBand1.Parent = this.Page1;
            this.Text110.Page = this.Page1;
            this.Text110.Parent = this.GroupHeaderBand1;
            this.GroupHeaderBand2.Page = this.Page1;
            this.GroupHeaderBand2.Parent = this.Page1;
            this.Text38.Page = this.Page1;
            this.Text38.Parent = this.GroupHeaderBand2;
            this.DataBand2.Page = this.Page1;
            this.DataBand2.Parent = this.Page1;
            this.Text39.Page = this.Page1;
            this.Text39.Parent = this.DataBand2;
            this.Text391.Page = this.Page1;
            this.Text391.Parent = this.DataBand2;
            this.Text40.Page = this.Page1;
            this.Text40.Parent = this.DataBand2;
            this.Text41.Page = this.Page1;
            this.Text41.Parent = this.DataBand2;
            this.Text42.Page = this.Page1;
            this.Text42.Parent = this.DataBand2;
            this.Text43.Page = this.Page1;
            this.Text43.Parent = this.DataBand2;
            this.Text44.Page = this.Page1;
            this.Text44.Parent = this.DataBand2;
            this.Text45.Page = this.Page1;
            this.Text45.Parent = this.DataBand2;
            this.Text46.Page = this.Page1;
            this.Text46.Parent = this.DataBand2;
            this.Text47.Page = this.Page1;
            this.Text47.Parent = this.DataBand2;
            this.Text48.Page = this.Page1;
            this.Text48.Parent = this.DataBand2;
            this.Text49.Page = this.Page1;
            this.Text49.Parent = this.DataBand2;
            this.Text50.Page = this.Page1;
            this.Text50.Parent = this.DataBand2;
            this.Text51.Page = this.Page1;
            this.Text51.Parent = this.DataBand2;
            this.Text52.Page = this.Page1;
            this.Text52.Parent = this.DataBand2;
            this.Text53.Page = this.Page1;
            this.Text53.Parent = this.DataBand2;
            this.Text54.Page = this.Page1;
            this.Text54.Parent = this.DataBand2;
            this.Text55.Page = this.Page1;
            this.Text55.Parent = this.DataBand2;
            this.Text56.Page = this.Page1;
            this.Text56.Parent = this.DataBand2;
            this.Text57.Page = this.Page1;
            this.Text57.Parent = this.DataBand2;
            this.Text58.Page = this.Page1;
            this.Text58.Parent = this.DataBand2;
            this.Text59.Page = this.Page1;
            this.Text59.Parent = this.DataBand2;
            this.Text60.Page = this.Page1;
            this.Text60.Parent = this.DataBand2;
            this.Text61.Page = this.Page1;
            this.Text61.Parent = this.DataBand2;
            this.Text62.Page = this.Page1;
            this.Text62.Parent = this.DataBand2;
            this.Text63.Page = this.Page1;
            this.Text63.Parent = this.DataBand2;
            this.Text64.Page = this.Page1;
            this.Text64.Parent = this.DataBand2;
            this.Text65.Page = this.Page1;
            this.Text65.Parent = this.DataBand2;
            this.Text66.Page = this.Page1;
            this.Text66.Parent = this.DataBand2;
            this.Text67.Page = this.Page1;
            this.Text67.Parent = this.DataBand2;
            this.Text68.Page = this.Page1;
            this.Text68.Parent = this.DataBand2;
            this.Text69.Page = this.Page1;
            this.Text69.Parent = this.DataBand2;
            this.Text70.Page = this.Page1;
            this.Text70.Parent = this.DataBand2;
            this.Text71.Page = this.Page1;
            this.Text71.Parent = this.DataBand2;
            this.Text72.Page = this.Page1;
            this.Text72.Parent = this.DataBand2;
            this.Text73.Page = this.Page1;
            this.Text73.Parent = this.DataBand2;
            this.Text74.Page = this.Page1;
            this.Text74.Parent = this.DataBand2;
            this.Text75.Page = this.Page1;
            this.Text75.Parent = this.DataBand2;
            this.Text76.Page = this.Page1;
            this.Text76.Parent = this.DataBand2;
            this.Text77.Page = this.Page1;
            this.Text77.Parent = this.DataBand2;
            this.Text78.Page = this.Page1;
            this.Text78.Parent = this.DataBand2;
            this.Text79.Page = this.Page1;
            this.Text79.Parent = this.DataBand2;
            this.Text80.Page = this.Page1;
            this.Text80.Parent = this.DataBand2;
            this.Text81.Page = this.Page1;
            this.Text81.Parent = this.DataBand2;
            this.Text82.Page = this.Page1;
            this.Text82.Parent = this.DataBand2;
            this.Text83.Page = this.Page1;
            this.Text83.Parent = this.DataBand2;
            this.Text84.Page = this.Page1;
            this.Text84.Parent = this.DataBand2;
            this.Text85.Page = this.Page1;
            this.Text85.Parent = this.DataBand2;
            this.Text86.Page = this.Page1;
            this.Text86.Parent = this.DataBand2;
            this.Text87.Page = this.Page1;
            this.Text87.Parent = this.DataBand2;
            this.Text88.Page = this.Page1;
            this.Text88.Parent = this.DataBand2;
            this.Text89.Page = this.Page1;
            this.Text89.Parent = this.DataBand2;
            this.Text90.Page = this.Page1;
            this.Text90.Parent = this.DataBand2;
            this.Text91.Page = this.Page1;
            this.Text91.Parent = this.DataBand2;
            this.Text92.Page = this.Page1;
            this.Text92.Parent = this.DataBand2;
            this.Text93.Page = this.Page1;
            this.Text93.Parent = this.DataBand2;
            this.Text94.Page = this.Page1;
            this.Text94.Parent = this.DataBand2;
            this.Text95.Page = this.Page1;
            this.Text95.Parent = this.DataBand2;
            this.Text96.Page = this.Page1;
            this.Text96.Parent = this.DataBand2;
            this.GroupFooterBand1.Page = this.Page1;
            this.GroupFooterBand1.Parent = this.Page1;
            this.Text200.Page = this.Page1;
            this.Text200.Parent = this.GroupFooterBand1;
            this.Text98.Page = this.Page1;
            this.Text98.Parent = this.GroupFooterBand1;
            this.Text99.Page = this.Page1;
            this.Text99.Parent = this.GroupFooterBand1;
            this.Text100.Page = this.Page1;
            this.Text100.Parent = this.GroupFooterBand1;
            this.Text101.Page = this.Page1;
            this.Text101.Parent = this.GroupFooterBand1;
            this.Text102.Page = this.Page1;
            this.Text102.Parent = this.GroupFooterBand1;
            this.Text103.Page = this.Page1;
            this.Text103.Parent = this.GroupFooterBand1;
            this.Text104.Page = this.Page1;
            this.Text104.Parent = this.GroupFooterBand1;
            this.Text105.Page = this.Page1;
            this.Text105.Parent = this.GroupFooterBand1;
            this.Text106.Page = this.Page1;
            this.Text106.Parent = this.GroupFooterBand1;
            this.Text107.Page = this.Page1;
            this.Text107.Parent = this.GroupFooterBand1;
            this.Text108.Page = this.Page1;
            this.Text108.Parent = this.GroupFooterBand1;
            this.Text109.Page = this.Page1;
            this.Text109.Parent = this.GroupFooterBand1;
            this.Text111.Page = this.Page1;
            this.Text111.Parent = this.GroupFooterBand1;
            this.Text112.Page = this.Page1;
            this.Text112.Parent = this.GroupFooterBand1;
            this.Text113.Page = this.Page1;
            this.Text113.Parent = this.GroupFooterBand1;
            this.Text114.Page = this.Page1;
            this.Text114.Parent = this.GroupFooterBand1;
            this.Text115.Page = this.Page1;
            this.Text115.Parent = this.GroupFooterBand1;
            this.Text116.Page = this.Page1;
            this.Text116.Parent = this.GroupFooterBand1;
            this.Text117.Page = this.Page1;
            this.Text117.Parent = this.GroupFooterBand1;
            this.Text118.Page = this.Page1;
            this.Text118.Parent = this.GroupFooterBand1;
            this.Text119.Page = this.Page1;
            this.Text119.Parent = this.GroupFooterBand1;
            this.Text120.Page = this.Page1;
            this.Text120.Parent = this.GroupFooterBand1;
            this.Text121.Page = this.Page1;
            this.Text121.Parent = this.GroupFooterBand1;
            this.Text122.Page = this.Page1;
            this.Text122.Parent = this.GroupFooterBand1;
            this.Text123.Page = this.Page1;
            this.Text123.Parent = this.GroupFooterBand1;
            this.Text124.Page = this.Page1;
            this.Text124.Parent = this.GroupFooterBand1;
            this.Text125.Page = this.Page1;
            this.Text125.Parent = this.GroupFooterBand1;
            this.Text126.Page = this.Page1;
            this.Text126.Parent = this.GroupFooterBand1;
            this.Text127.Page = this.Page1;
            this.Text127.Parent = this.GroupFooterBand1;
            this.Text128.Page = this.Page1;
            this.Text128.Parent = this.GroupFooterBand1;
            this.Text129.Page = this.Page1;
            this.Text129.Parent = this.GroupFooterBand1;
            this.Text130.Page = this.Page1;
            this.Text130.Parent = this.GroupFooterBand1;
            this.Text131.Page = this.Page1;
            this.Text131.Parent = this.GroupFooterBand1;
            this.Text132.Page = this.Page1;
            this.Text132.Parent = this.GroupFooterBand1;
            this.Text133.Page = this.Page1;
            this.Text133.Parent = this.GroupFooterBand1;
            this.Text134.Page = this.Page1;
            this.Text134.Parent = this.GroupFooterBand1;
            this.Text135.Page = this.Page1;
            this.Text135.Parent = this.GroupFooterBand1;
            this.Text136.Page = this.Page1;
            this.Text136.Parent = this.GroupFooterBand1;
            this.Text137.Page = this.Page1;
            this.Text137.Parent = this.GroupFooterBand1;
            this.Text138.Page = this.Page1;
            this.Text138.Parent = this.GroupFooterBand1;
            this.Text139.Page = this.Page1;
            this.Text139.Parent = this.GroupFooterBand1;
            this.Text140.Page = this.Page1;
            this.Text140.Parent = this.GroupFooterBand1;
            this.Text141.Page = this.Page1;
            this.Text141.Parent = this.GroupFooterBand1;
            this.Text142.Page = this.Page1;
            this.Text142.Parent = this.GroupFooterBand1;
            this.Text143.Page = this.Page1;
            this.Text143.Parent = this.GroupFooterBand1;
            this.Text144.Page = this.Page1;
            this.Text144.Parent = this.GroupFooterBand1;
            this.Text145.Page = this.Page1;
            this.Text145.Parent = this.GroupFooterBand1;
            this.Text146.Page = this.Page1;
            this.Text146.Parent = this.GroupFooterBand1;
            this.Text147.Page = this.Page1;
            this.Text147.Parent = this.GroupFooterBand1;
            this.Text148.Page = this.Page1;
            this.Text148.Parent = this.GroupFooterBand1;
            this.Text149.Page = this.Page1;
            this.InitializeComponent7();
        }
        
        public void InitializeComponent7()
        {
            this.Text149.Parent = this.GroupFooterBand1;
            this.Text150.Page = this.Page1;
            this.Text150.Parent = this.GroupFooterBand1;
            this.Text151.Page = this.Page1;
            this.Text151.Parent = this.GroupFooterBand1;
            this.Text152.Page = this.Page1;
            this.Text152.Parent = this.GroupFooterBand1;
            this.Text153.Page = this.Page1;
            this.Text153.Parent = this.GroupFooterBand1;
            this.Text154.Page = this.Page1;
            this.Text154.Parent = this.GroupFooterBand1;
            this.GroupFooterBand2.Page = this.Page1;
            this.GroupFooterBand2.Parent = this.Page1;
            this.Text272.Page = this.Page1;
            this.Text272.Parent = this.GroupFooterBand2;
            this.Text155.Page = this.Page1;
            this.Text155.Parent = this.GroupFooterBand2;
            this.Text156.Page = this.Page1;
            this.Text156.Parent = this.GroupFooterBand2;
            this.Text157.Page = this.Page1;
            this.Text157.Parent = this.GroupFooterBand2;
            this.Text158.Page = this.Page1;
            this.Text158.Parent = this.GroupFooterBand2;
            this.Text159.Page = this.Page1;
            this.Text159.Parent = this.GroupFooterBand2;
            this.Text160.Page = this.Page1;
            this.Text160.Parent = this.GroupFooterBand2;
            this.Text161.Page = this.Page1;
            this.Text161.Parent = this.GroupFooterBand2;
            this.Text162.Page = this.Page1;
            this.Text162.Parent = this.GroupFooterBand2;
            this.Text163.Page = this.Page1;
            this.Text163.Parent = this.GroupFooterBand2;
            this.Text164.Page = this.Page1;
            this.Text164.Parent = this.GroupFooterBand2;
            this.Text165.Page = this.Page1;
            this.Text165.Parent = this.GroupFooterBand2;
            this.Text166.Page = this.Page1;
            this.Text166.Parent = this.GroupFooterBand2;
            this.Text167.Page = this.Page1;
            this.Text167.Parent = this.GroupFooterBand2;
            this.Text168.Page = this.Page1;
            this.Text168.Parent = this.GroupFooterBand2;
            this.Text169.Page = this.Page1;
            this.Text169.Parent = this.GroupFooterBand2;
            this.Text170.Page = this.Page1;
            this.Text170.Parent = this.GroupFooterBand2;
            this.Text171.Page = this.Page1;
            this.Text171.Parent = this.GroupFooterBand2;
            this.Text172.Page = this.Page1;
            this.Text172.Parent = this.GroupFooterBand2;
            this.Text173.Page = this.Page1;
            this.Text173.Parent = this.GroupFooterBand2;
            this.Text174.Page = this.Page1;
            this.Text174.Parent = this.GroupFooterBand2;
            this.Text175.Page = this.Page1;
            this.Text175.Parent = this.GroupFooterBand2;
            this.Text176.Page = this.Page1;
            this.Text176.Parent = this.GroupFooterBand2;
            this.Text177.Page = this.Page1;
            this.Text177.Parent = this.GroupFooterBand2;
            this.Text178.Page = this.Page1;
            this.Text178.Parent = this.GroupFooterBand2;
            this.Text179.Page = this.Page1;
            this.Text179.Parent = this.GroupFooterBand2;
            this.Text180.Page = this.Page1;
            this.Text180.Parent = this.GroupFooterBand2;
            this.Text181.Page = this.Page1;
            this.Text181.Parent = this.GroupFooterBand2;
            this.Text182.Page = this.Page1;
            this.Text182.Parent = this.GroupFooterBand2;
            this.Text183.Page = this.Page1;
            this.Text183.Parent = this.GroupFooterBand2;
            this.Text184.Page = this.Page1;
            this.Text184.Parent = this.GroupFooterBand2;
            this.Text185.Page = this.Page1;
            this.Text185.Parent = this.GroupFooterBand2;
            this.Text186.Page = this.Page1;
            this.Text186.Parent = this.GroupFooterBand2;
            this.Text187.Page = this.Page1;
            this.Text187.Parent = this.GroupFooterBand2;
            this.Text188.Page = this.Page1;
            this.Text188.Parent = this.GroupFooterBand2;
            this.Text189.Page = this.Page1;
            this.Text189.Parent = this.GroupFooterBand2;
            this.Text190.Page = this.Page1;
            this.Text190.Parent = this.GroupFooterBand2;
            this.Text191.Page = this.Page1;
            this.Text191.Parent = this.GroupFooterBand2;
            this.Text192.Page = this.Page1;
            this.Text192.Parent = this.GroupFooterBand2;
            this.Text193.Page = this.Page1;
            this.Text193.Parent = this.GroupFooterBand2;
            this.Text194.Page = this.Page1;
            this.Text194.Parent = this.GroupFooterBand2;
            this.Text195.Page = this.Page1;
            this.Text195.Parent = this.GroupFooterBand2;
            this.Text196.Page = this.Page1;
            this.Text196.Parent = this.GroupFooterBand2;
            this.Text197.Page = this.Page1;
            this.Text197.Parent = this.GroupFooterBand2;
            this.Text198.Page = this.Page1;
            this.Text198.Parent = this.GroupFooterBand2;
            this.Text199.Page = this.Page1;
            this.Text199.Parent = this.GroupFooterBand2;
            this.Text201.Page = this.Page1;
            this.Text201.Parent = this.GroupFooterBand2;
            this.Text202.Page = this.Page1;
            this.Text202.Parent = this.GroupFooterBand2;
            this.Text203.Page = this.Page1;
            this.Text203.Parent = this.GroupFooterBand2;
            this.Text208.Page = this.Page1;
            this.Text208.Parent = this.GroupFooterBand2;
            this.Text209.Page = this.Page1;
            this.Text209.Parent = this.GroupFooterBand2;
            this.Text210.Page = this.Page1;
            this.Text210.Parent = this.GroupFooterBand2;
            this.Text211.Page = this.Page1;
            this.Text211.Parent = this.GroupFooterBand2;
            this.Text204.Page = this.Page1;
            this.Text204.Parent = this.GroupFooterBand2;
            this.Text205.Page = this.Page1;
            this.Text205.Parent = this.GroupFooterBand2;
            this.Text206.Page = this.Page1;
            this.Text206.Parent = this.GroupFooterBand2;
            this.Text207.Page = this.Page1;
            this.Text207.Parent = this.GroupFooterBand2;
            this.ReportSummaryBand2.Page = this.Page1;
            this.ReportSummaryBand2.Parent = this.Page1;
            this.Text273.Page = this.Page1;
            this.Text273.Parent = this.ReportSummaryBand2;
            this.Text212.Page = this.Page1;
            this.Text212.Parent = this.ReportSummaryBand2;
            this.Text213.Page = this.Page1;
            this.Text213.Parent = this.ReportSummaryBand2;
            this.Text214.Page = this.Page1;
            this.Text214.Parent = this.ReportSummaryBand2;
            this.Text215.Page = this.Page1;
            this.Text215.Parent = this.ReportSummaryBand2;
            this.Text216.Page = this.Page1;
            this.Text216.Parent = this.ReportSummaryBand2;
            this.Text217.Page = this.Page1;
            this.Text217.Parent = this.ReportSummaryBand2;
            this.Text218.Page = this.Page1;
            this.Text218.Parent = this.ReportSummaryBand2;
            this.Text219.Page = this.Page1;
            this.Text219.Parent = this.ReportSummaryBand2;
            this.Text220.Page = this.Page1;
            this.Text220.Parent = this.ReportSummaryBand2;
            this.Text221.Page = this.Page1;
            this.Text221.Parent = this.ReportSummaryBand2;
            this.Text222.Page = this.Page1;
            this.Text222.Parent = this.ReportSummaryBand2;
            this.Text223.Page = this.Page1;
            this.Text223.Parent = this.ReportSummaryBand2;
            this.Text224.Page = this.Page1;
            this.Text224.Parent = this.ReportSummaryBand2;
            this.Text225.Page = this.Page1;
            this.Text225.Parent = this.ReportSummaryBand2;
            this.Text226.Page = this.Page1;
            this.Text226.Parent = this.ReportSummaryBand2;
            this.Text227.Page = this.Page1;
            this.Text227.Parent = this.ReportSummaryBand2;
            this.Text228.Page = this.Page1;
            this.Text228.Parent = this.ReportSummaryBand2;
            this.Text229.Page = this.Page1;
            this.Text229.Parent = this.ReportSummaryBand2;
            this.Text230.Page = this.Page1;
            this.Text230.Parent = this.ReportSummaryBand2;
            this.Text231.Page = this.Page1;
            this.Text231.Parent = this.ReportSummaryBand2;
            this.Text232.Page = this.Page1;
            this.Text232.Parent = this.ReportSummaryBand2;
            this.Text233.Page = this.Page1;
            this.Text233.Parent = this.ReportSummaryBand2;
            this.Text234.Page = this.Page1;
            this.Text234.Parent = this.ReportSummaryBand2;
            this.Text235.Page = this.Page1;
            this.Text235.Parent = this.ReportSummaryBand2;
            this.Text236.Page = this.Page1;
            this.Text236.Parent = this.ReportSummaryBand2;
            this.Text237.Page = this.Page1;
            this.Text237.Parent = this.ReportSummaryBand2;
            this.Text238.Page = this.Page1;
            this.Text238.Parent = this.ReportSummaryBand2;
            this.Text239.Page = this.Page1;
            this.Text239.Parent = this.ReportSummaryBand2;
            this.Text240.Page = this.Page1;
            this.Text240.Parent = this.ReportSummaryBand2;
            this.Text241.Page = this.Page1;
            this.Text241.Parent = this.ReportSummaryBand2;
            this.Text242.Page = this.Page1;
            this.Text242.Parent = this.ReportSummaryBand2;
            this.Text243.Page = this.Page1;
            this.Text243.Parent = this.ReportSummaryBand2;
            this.Text244.Page = this.Page1;
            this.Text244.Parent = this.ReportSummaryBand2;
            this.Text245.Page = this.Page1;
            this.Text245.Parent = this.ReportSummaryBand2;
            this.Text246.Page = this.Page1;
            this.Text246.Parent = this.ReportSummaryBand2;
            this.Text247.Page = this.Page1;
            this.Text247.Parent = this.ReportSummaryBand2;
            this.Text248.Page = this.Page1;
            this.Text248.Parent = this.ReportSummaryBand2;
            this.Text249.Page = this.Page1;
            this.Text249.Parent = this.ReportSummaryBand2;
            this.Text250.Page = this.Page1;
            this.Text250.Parent = this.ReportSummaryBand2;
            this.Text251.Page = this.Page1;
            this.Text251.Parent = this.ReportSummaryBand2;
            this.Text252.Page = this.Page1;
            this.Text252.Parent = this.ReportSummaryBand2;
            this.Text253.Page = this.Page1;
            this.Text253.Parent = this.ReportSummaryBand2;
            this.Text254.Page = this.Page1;
            this.Text254.Parent = this.ReportSummaryBand2;
            this.Text255.Page = this.Page1;
            this.Text255.Parent = this.ReportSummaryBand2;
            this.Text256.Page = this.Page1;
            this.Text256.Parent = this.ReportSummaryBand2;
            this.Text257.Page = this.Page1;
            this.Text257.Parent = this.ReportSummaryBand2;
            this.Text258.Page = this.Page1;
            this.Text258.Parent = this.ReportSummaryBand2;
            this.Text259.Page = this.Page1;
            this.Text259.Parent = this.ReportSummaryBand2;
            this.Text264.Page = this.Page1;
            this.Text264.Parent = this.ReportSummaryBand2;
            this.Text265.Page = this.Page1;
            this.Text265.Parent = this.ReportSummaryBand2;
            this.Text266.Page = this.Page1;
            this.Text266.Parent = this.ReportSummaryBand2;
            this.Text267.Page = this.Page1;
            this.Text267.Parent = this.ReportSummaryBand2;
            this.Text260.Page = this.Page1;
            this.Text260.Parent = this.ReportSummaryBand2;
            this.Text261.Page = this.Page1;
            this.Text261.Parent = this.ReportSummaryBand2;
            this.Text262.Page = this.Page1;
            this.Text262.Parent = this.ReportSummaryBand2;
            this.Text263.Page = this.Page1;
            this.Text263.Parent = this.ReportSummaryBand2;
            this.ReportSummaryBand1.Page = this.Page1;
            this.ReportSummaryBand1.Parent = this.Page1;
            this.Text97.Page = this.Page1;
            this.Text97.Parent = this.ReportSummaryBand1;
            this.GroupHeaderBand2.BeginRender += new System.EventHandler(this.GroupHeaderBand2__BeginRender);
            this.GroupHeaderBand2.EndRender += new System.EventHandler(this.GroupHeaderBand2__EndRender);
            this.GroupHeaderBand1.BeginRender += new System.EventHandler(this.GroupHeaderBand1__BeginRender);
            this.GroupHeaderBand1.EndRender += new System.EventHandler(this.GroupHeaderBand1__EndRender);
            this.DataBand2.BeginRender += new System.EventHandler(this.DataBand2__BeginRender);
            this.DataBand2.EndRender += new System.EventHandler(this.DataBand2__EndRender);
            this.GroupHeaderBand2.Rendering += new System.EventHandler(this.GroupHeaderBand2__Rendering);
            this.DataBand2.Rendering += new System.EventHandler(this.DataBand2__Rendering);
            this.AggregateFunctions = new object[] {
                    this.Text102_Sum,
                    this.Text103_Sum,
                    this.Text104_Sum,
                    this.Text105_Sum,
                    this.Text106_Sum,
                    this.Text107_Sum,
                    this.Text108_Sum,
                    this.Text109_Sum,
                    this.Text111_Sum,
                    this.Text112_Sum,
                    this.Text113_Sum,
                    this.Text114_Sum,
                    this.Text115_Sum,
                    this.Text116_Sum,
                    this.Text117_Sum,
                    this.Text118_Sum,
                    this.Text119_Sum,
                    this.Text120_Sum,
                    this.Text121_Sum,
                    this.Text122_Sum,
                    this.Text123_Sum,
                    this.Text124_Sum,
                    this.Text125_Sum,
                    this.Text126_Sum,
                    this.Text127_Sum,
                    this.Text128_Sum,
                    this.Text129_Sum,
                    this.Text130_Sum,
                    this.Text131_Sum,
                    this.Text132_Sum,
                    this.Text133_Sum,
                    this.Text134_Sum,
                    this.Text135_Sum,
                    this.Text136_Sum,
                    this.Text137_Sum,
                    this.Text138_Sum,
                    this.Text139_Sum,
                    this.Text140_Sum,
                    this.Text141_Sum,
                    this.Text142_Sum,
                    this.Text143_Sum,
                    this.Text144_Sum,
                    this.Text145_Sum,
                    this.Text146_Sum,
                    this.Text147_Sum,
                    this.Text148_Sum,
                    this.Text149_Sum,
                    this.Text150_Sum,
                    this.Text151_Sum,
                    this.Text152_Sum,
                    this.Text153_Sum,
                    this.Text154_Sum,
                    this.Text159_Sum,
                    this.Text160_Sum,
                    this.Text161_Sum,
                    this.Text162_Sum,
                    this.Text163_Sum,
                    this.Text164_Sum,
                    this.Text165_Sum,
                    this.Text166_Sum,
                    this.Text167_Sum,
                    this.Text168_Sum,
                    this.Text169_Sum,
                    this.Text170_Sum,
                    this.Text171_Sum,
                    this.Text172_Sum,
                    this.Text173_Sum,
                    this.Text174_Sum,
                    this.Text175_Sum,
                    this.Text176_Sum,
                    this.Text177_Sum,
                    this.Text178_Sum,
                    this.Text179_Sum,
                    this.Text180_Sum,
                    this.Text181_Sum,
                    this.Text182_Sum,
                    this.Text183_Sum,
                    this.Text184_Sum,
                    this.Text185_Sum,
                    this.Text186_Sum,
                    this.Text187_Sum,
                    this.Text188_Sum,
                    this.Text189_Sum,
                    this.Text190_Sum,
                    this.Text191_Sum,
                    this.Text192_Sum,
                    this.Text193_Sum,
                    this.Text194_Sum,
                    this.Text195_Sum,
                    this.Text196_Sum,
                    this.Text197_Sum,
                    this.Text198_Sum,
                    this.Text199_Sum,
                    this.Text201_Sum,
                    this.Text202_Sum,
                    this.Text203_Sum,
                    this.Text208_Sum,
                    this.Text209_Sum,
                    this.Text210_Sum,
                    this.Text211_Sum,
                    this.Text204_Sum,
                    this.Text205_Sum,
                    this.Text206_Sum,
                    this.Text207_Sum,
                    this.Text216_Sum,
                    this.Text217_Sum,
                    this.Text218_Sum,
                    this.Text219_Sum,
                    this.Text220_Sum,
                    this.Text221_Sum,
                    this.Text222_Sum,
                    this.Text223_Sum,
                    this.Text224_Sum,
                    this.Text225_Sum,
                    this.Text226_Sum,
                    this.Text227_Sum,
                    this.Text228_Sum,
                    this.Text229_Sum,
                    this.Text230_Sum,
                    this.Text231_Sum,
                    this.Text232_Sum,
                    this.Text233_Sum,
                    this.Text234_Sum,
                    this.Text235_Sum,
                    this.Text236_Sum,
                    this.Text237_Sum,
                    this.Text238_Sum,
                    this.Text239_Sum,
                    this.Text240_Sum,
                    this.Text241_Sum,
                    this.Text242_Sum,
                    this.Text243_Sum,
                    this.Text244_Sum,
                    this.Text245_Sum,
                    this.Text246_Sum,
                    this.Text247_Sum,
                    this.Text248_Sum,
                    this.Text249_Sum,
                    this.Text250_Sum,
                    this.Text251_Sum,
                    this.Text252_Sum,
                    this.Text253_Sum,
                    this.Text254_Sum,
                    this.Text255_Sum,
                    this.Text256_Sum,
                    this.Text257_Sum,
                    this.Text258_Sum,
                    this.Text259_Sum,
                    this.Text264_Sum,
                    this.Text265_Sum,
                    this.Text266_Sum,
                    this.Text267_Sum,
                    this.Text260_Sum,
                    this.Text261_Sum,
                    this.Text262_Sum,
                    this.Text263_Sum};
            // 
            // Add to ReportTitleBand1.Components
            // 
            this.ReportTitleBand1.Components.Clear();
            this.ReportTitleBand1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.Text1,
                        this.Text2,
                        this.Text3,
                        this.Text268});
            // 
            // Add to HeaderBand1.Components
            // 
            this.HeaderBand1.Components.Clear();
            this.HeaderBand1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.Text4,
                        this.Text5,
                        this.Text6,
                        this.Text21,
                        this.Text22,
                        this.Text23,
                        this.Text7,
                        this.Text8,
                        this.Text9,
                        this.Text10,
                        this.Text11,
                        this.Text12,
                        this.Text13,
                        this.Text14,
                        this.Text15,
                        this.Text16,
                        this.Text17,
                        this.Text18,
                        this.Text19,
                        this.Text20,
                        this.Text24,
                        this.Text25,
                        this.Text26,
                        this.Text27,
                        this.Text28,
                        this.Text29,
                        this.Text30,
                        this.Text31,
                        this.Text32,
                        this.Text33,
                        this.Text34,
                        this.Text35,
                        this.Text36,
                        this.Text37});
            // 
            // Add to GroupHeaderBand1.Components
            // 
            this.GroupHeaderBand1.Components.Clear();
            this.GroupHeaderBand1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.Text110});
            // 
            // Add to GroupHeaderBand2.Components
            // 
            this.GroupHeaderBand2.Components.Clear();
            this.GroupHeaderBand2.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.Text38});
            // 
            // Add to DataBand2.Components
            // 
            this.DataBand2.Components.Clear();
            this.DataBand2.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.Text39,
                        this.Text391,
                        this.Text40,
                        this.Text41,
                        this.Text42,
                        this.Text43,
                        this.Text44,
                        this.Text45,
                        this.Text46,
                        this.Text47,
                        this.Text48,
                        this.Text49,
                        this.Text50,
                        this.Text51,
                        this.Text52,
                        this.Text53,
                        this.Text54,
                        this.Text55,
                        this.Text56,
                        this.Text57,
                        this.Text58,
                        this.Text59,
                        this.Text60,
                        this.Text61,
                        this.Text62,
                        this.Text63,
                        this.Text64,
                        this.Text65,
                        this.Text66,
                        this.Text67,
                        this.Text68,
                        this.Text69,
                        this.Text70,
                        this.Text71,
                        this.Text72,
                        this.Text73,
                        this.Text74,
                        this.Text75,
                        this.Text76,
                        this.Text77,
                        this.Text78,
                        this.Text79,
                        this.Text80,
                        this.Text81,
                        this.Text82,
                        this.Text83,
                        this.Text84,
                        this.Text85,
                        this.Text86,
                        this.Text87,
                        this.Text88,
                        this.Text89,
                        this.Text90,
                        this.Text91,
                        this.Text92,
                        this.Text93,
                        this.Text94,
                        this.Text95,
                        this.Text96});
            // 
            // Add to GroupFooterBand1.Components
            // 
            this.GroupFooterBand1.Components.Clear();
            this.GroupFooterBand1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.Text200,
                        this.Text98,
                        this.Text99,
                        this.Text100,
                        this.Text101,
                        this.Text102,
                        this.Text103,
                        this.Text104,
                        this.Text105,
                        this.Text106,
                        this.Text107,
                        this.Text108,
                        this.Text109,
                        this.Text111,
                        this.Text112,
                        this.Text113,
                        this.Text114,
                        this.Text115,
                        this.Text116,
                        this.Text117,
                        this.Text118,
                        this.Text119,
                        this.Text120,
                        this.Text121,
                        this.Text122,
                        this.Text123,
                        this.Text124,
                        this.Text125,
                        this.Text126,
                        this.Text127,
                        this.Text128,
                        this.Text129,
                        this.Text130,
                        this.Text131,
                        this.Text132,
                        this.Text133,
                        this.Text134,
                        this.Text135,
                        this.Text136,
                        this.Text137,
                        this.Text138,
                        this.Text139,
                        this.Text140,
                        this.Text141,
                        this.Text142,
                        this.Text143,
                        this.Text144,
                        this.Text145,
                        this.Text146,
                        this.Text147,
                        this.Text148,
                        this.Text149,
                        this.Text150,
                        this.Text151,
                        this.Text152,
                        this.Text153,
                        this.Text154});
            // 
            // Add to GroupFooterBand2.Components
            // 
            this.GroupFooterBand2.Components.Clear();
            this.GroupFooterBand2.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.Text272,
                        this.Text155,
                        this.Text156,
                        this.Text157,
                        this.Text158,
                        this.Text159,
                        this.Text160,
                        this.Text161,
                        this.Text162,
                        this.Text163,
                        this.Text164,
                        this.Text165,
                        this.Text166,
                        this.Text167,
                        this.Text168,
                        this.Text169,
                        this.Text170,
                        this.Text171,
                        this.Text172,
                        this.Text173,
                        this.Text174,
                        this.Text175,
                        this.Text176,
                        this.Text177,
                        this.Text178,
                        this.Text179,
                        this.Text180,
                        this.Text181,
                        this.Text182,
                        this.Text183,
                        this.Text184,
                        this.Text185,
                        this.Text186,
                        this.Text187,
                        this.Text188,
                        this.Text189,
                        this.Text190,
                        this.Text191,
                        this.Text192,
                        this.Text193,
                        this.Text194,
                        this.Text195,
                        this.Text196,
                        this.Text197,
                        this.Text198,
                        this.Text199,
                        this.Text201,
                        this.Text202,
                        this.Text203,
                        this.Text208,
                        this.Text209,
                        this.Text210,
                        this.Text211,
                        this.Text204,
                        this.Text205,
                        this.Text206,
                        this.Text207});
            // 
            // Add to ReportSummaryBand2.Components
            // 
            this.ReportSummaryBand2.Components.Clear();
            this.ReportSummaryBand2.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.Text273,
                        this.Text212,
                        this.Text213,
                        this.Text214,
                        this.Text215,
                        this.Text216,
                        this.Text217,
                        this.Text218,
                        this.Text219,
                        this.Text220,
                        this.Text221,
                        this.Text222,
                        this.Text223,
                        this.Text224,
                        this.Text225,
                        this.Text226,
                        this.Text227,
                        this.Text228,
                        this.Text229,
                        this.Text230,
                        this.Text231,
                        this.Text232,
                        this.Text233,
                        this.Text234,
                        this.Text235,
                        this.Text236,
                        this.Text237,
                        this.Text238,
                        this.Text239,
                        this.Text240,
                        this.Text241,
                        this.Text242,
                        this.Text243,
                        this.Text244,
                        this.Text245,
                        this.Text246,
                        this.Text247,
                        this.Text248,
                        this.Text249,
                        this.Text250,
                        this.Text251,
                        this.Text252,
                        this.Text253,
                        this.Text254,
                        this.Text255,
                        this.Text256,
                        this.Text257,
                        this.Text258,
                        this.Text259,
                        this.Text264,
                        this.Text265,
                        this.Text266,
                        this.Text267,
                        this.Text260,
                        this.Text261,
                        this.Text262,
                        this.Text263});
            // 
            // Add to ReportSummaryBand1.Components
            // 
            this.ReportSummaryBand1.Components.Clear();
            this.ReportSummaryBand1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.Text97});
            // 
            // Add to Page1.Components
            // 
            this.Page1.Components.Clear();
            this.Page1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
                        this.ReportTitleBand1,
                        this.HeaderBand1,
                        this.GroupHeaderBand1,
                        this.GroupHeaderBand2,
                        this.DataBand2,
                        this.GroupFooterBand1,
                        this.GroupFooterBand2,
                        this.ReportSummaryBand2,
                        this.ReportSummaryBand1});
            // 
            // Add to Pages
            // 
            this.Pages.Clear();
            this.Pages.AddRange(new Stimulsoft.Report.Components.StiPage[] {
                        this.Page1});
            this.Dictionary.Relations.Add(this.Parentun1);
            this.Dictionary.Relations.Add(this.Parentun2);
            this.usm7HSelect.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
                        new Stimulsoft.Report.Dictionary.StiDataColumn("TIN", "TIN", "TIN", typeof(string)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("ShortName", "ShortName", "ShortName", typeof(string)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c4_1_2", "c4_1_2", "c4_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c4_2", "c4_2", "c4_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c4_3", "c4_3", "c4_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c4_4", "c4_4", "c4_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c5_1_2", "c5_1_2", "c5_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c5_2", "c5_2", "c5_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c5_3", "c5_3", "c5_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c5_4", "c5_4", "c5_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c6_1_2", "c6_1_2", "c6_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c6_2", "c6_2", "c6_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c6_3", "c6_3", "c6_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c6_4", "c6_4", "c6_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c7_1_2", "c7_1_2", "c7_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c7_2", "c7_2", "c7_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c7_3", "c7_3", "c7_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c7_4", "c7_4", "c7_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c8_1_2", "c8_1_2", "c8_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c8_2", "c8_2", "c8_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c8_3", "c8_3", "c8_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c8_4", "c8_4", "c8_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c9_1_2", "c9_1_2", "c9_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c9_2", "c9_2", "c9_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c9_3", "c9_3", "c9_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c9_4", "c9_4", "c9_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c10_1_2", "c10_1_2", "c10_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c10_2", "c10_2", "c10_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c10_3", "c10_3", "c10_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c10_4", "c10_4", "c10_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c11_1_2", "c11_1_2", "c11_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c11_2", "c11_2", "c11_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c11_3", "c11_3", "c11_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c11_4", "c11_4", "c11_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c12_1_2", "c12_1_2", "c12_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c12_2", "c12_2", "c12_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c12_3", "c12_3", "c12_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c12_4", "c12_4", "c12_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c13_1_2", "c13_1_2", "c13_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c13_2", "c13_2", "c13_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c13_3", "c13_3", "c13_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c13_4", "c13_4", "c13_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c14_1_2", "c14_1_2", "c14_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c14_2", "c14_2", "c14_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c14_3", "c14_3", "c14_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c14_4", "c14_4", "c14_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("rayonCode", "rayonCode", "rayonCode", typeof(string)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c15_1_2", "c15_1_2", "c15_1_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c15_2", "c15_2", "c15_2", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c15_3", "c15_3", "c15_3", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("c15_4", "c15_4", "c15_4", typeof(decimal)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("dateCompilation", "dateCompilation", "dateCompilation", typeof(DateTime))});
            this.usm7HSelect.Parameters.AddRange(new Stimulsoft.Report.Dictionary.StiDataParameter[] {
                        new Stimulsoft.Report.Dictionary.StiDataParameter("date", 31, 0),
                        new Stimulsoft.Report.Dictionary.StiDataParameter("rayonCode", 22, 3),
                        new Stimulsoft.Report.Dictionary.StiDataParameter("diop", 8, 0),
                        new Stimulsoft.Report.Dictionary.StiDataParameter("languageIDPar", 8, 0)});
            this.DataSources.Add(this.usm7HSelect);
            this.RayonName.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
                        new Stimulsoft.Report.Dictionary.StiDataColumn("RayonName", "RayonName", "RayonName", typeof(string))});
            this.RayonName.Parameters.AddRange(new Stimulsoft.Report.Dictionary.StiDataParameter[] {
                        new Stimulsoft.Report.Dictionary.StiDataParameter("languageIDPar", 8, 0),
                        new Stimulsoft.Report.Dictionary.StiDataParameter("rayonCodePar", 22, 3)});
            this.DataSources.Add(this.RayonName);
            this.obl.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
                        new Stimulsoft.Report.Dictionary.StiDataColumn("DecodeNameScreen", "DecodeNameScreen", "DecodeNameScreen", typeof(string)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("CodeValue", "CodeValue", "CodeValue", typeof(string)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("TypeCodeID", "TypeCodeID", "TypeCodeID", typeof(int)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("CodeID", "CodeID", "CodeID", typeof(int))});
            this.obl.Parameters.AddRange(new Stimulsoft.Report.Dictionary.StiDataParameter[] {
                        new Stimulsoft.Report.Dictionary.StiDataParameter("languageID", 8, 0),
                        new Stimulsoft.Report.Dictionary.StiDataParameter("rayonCode", 22, 3)});
            this.DataSources.Add(this.obl);
            this.rayon.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
                        new Stimulsoft.Report.Dictionary.StiDataColumn("ParentID", "ParentID", "ParentID", typeof(int)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("DecodeNameScreen", "DecodeNameScreen", "DecodeNameScreen", typeof(string)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("CodeValue", "CodeValue", "CodeValue", typeof(string)),
                        new Stimulsoft.Report.Dictionary.StiDataColumn("TypeCodeID", "TypeCodeID", "TypeCodeID", typeof(int))});
            this.rayon.Parameters.AddRange(new Stimulsoft.Report.Dictionary.StiDataParameter[] {
                        new Stimulsoft.Report.Dictionary.StiDataParameter("rayonCode", 22, 3),
                        new Stimulsoft.Report.Dictionary.StiDataParameter("languageID", 8, 0)});
            this.DataSources.Add(this.rayon);
            this.Dictionary.Databases.Add(new Stimulsoft.Report.Dictionary.StiSqlDatabase("Connection", "Connection", "Asynchronous Processing=True;Integrated Security=False;Password=12345;Connect Tim" +
"eout=10000000;Max Pool Size=100000;User ID=sa;Data Source=sinampc-8;Initial Cata" +
"log=ITAS_PROD4", false));
            this.usm7HSelect.Connecting += new System.EventHandler(this.Getusm7HSelect_SqlCommand);
            this.RayonName.Connecting += new System.EventHandler(this.GetRayonName_SqlCommand);
            this.obl.Connecting += new System.EventHandler(this.Getobl_SqlCommand);
            this.rayon.Connecting += new System.EventHandler(this.Getrayon_SqlCommand);
        }
        
        public void Getusm7HSelect_SqlCommand(object sender, System.EventArgs e)
        {
            this.usm7HSelect.SqlCommand = "execute usm7HSelect @date, @rayonCode,@diop, @languageIDPar";
            this.usm7HSelect.Parameters["date"].ParameterValue = reciveDateVar;
            this.usm7HSelect.Parameters["rayonCode"].ParameterValue = rayonCodeVar;
            this.usm7HSelect.Parameters["diop"].ParameterValue = diopVar;
            this.usm7HSelect.Parameters["languageIDPar"].ParameterValue = languageIDVar;
        }
        
        public void GetRayonName_SqlCommand(object sender, System.EventArgs e)
        {
            this.RayonName.SqlCommand = "select c1.DecodeNameScreen as RayonName \r\n\tfrom Code c\r\n\tleft join CodeLocalizati" +
"on c1 on c.CodeID=c1.CodeID and c1.CultureID = @languageIDPar\r\nwhere c.CodeValue" +
" = @rayonCodePar and c.CodeCategoryID=15";
            this.RayonName.Parameters["languageIDPar"].ParameterValue = languageIDVar;
            this.RayonName.Parameters["rayonCodePar"].ParameterValue = rayonCodeVar;
        }
        
        public void Getobl_SqlCommand(object sender, System.EventArgs e)
        {
            this.obl.SqlCommand = "SELECT\r\n\tc.CodeID,\r\n\tcl.DecodeNameScreen,\r\n\tchbc.CodeValue,\r\n\tchbc.TypeCodeID\r\n\tF" +
"ROM\r\n\tdbo.CodeHierarhyByCategory(15,@rayonCode) chbc\r\n\tLEFT JOIN  code c ON c.Co" +
"deValue = chbc.CodeValue AND c.CodeCategoryID=15\r\n\tLEFT JOIN CodeLocalization cl" +
" ON cl.CodeID = c.CodeID AND cl.CultureID=@languageID\r\nWHERE chbc.TypeCodeID IN " +
"(89,92)";
            this.obl.Parameters["languageID"].ParameterValue = languageIDVar;
            this.obl.Parameters["rayonCode"].ParameterValue = rayonCodeVar;
        }
        
        public void Getrayon_SqlCommand(object sender, System.EventArgs e)
        {
            this.rayon.SqlCommand = "\r\nSELECT\r\n\tc.ParentID,\r\n\tcl.DecodeNameScreen,\r\n\tchbc.CodeValue,\r\n\tchbc.TypeCodeID" +
"\r\n\tFROM\r\n\tdbo.CodeHierarhyByCategory(15,@rayonCode) chbc\r\n\tLEFT JOIN  code c ON " +
"c.CodeValue = chbc.CodeValue AND c.CodeCategoryID=15\r\n\tLEFT JOIN CodeLocalizatio" +
"n cl ON cl.CodeID = c.CodeID AND cl.CultureID=@languageID\r\nWHERE chbc.TypeCodeID" +
" not IN (89,92) ";
            this.rayon.Parameters["rayonCode"].ParameterValue = rayonCodeVar;
            this.rayon.Parameters["languageID"].ParameterValue = languageIDVar;
        }
        
        #region Relation Parentun1
        public class Parentun1Relation : Stimulsoft.Report.Dictionary.StiDataRow
        {
            
            public Parentun1Relation(Stimulsoft.Report.Dictionary.StiDataRow dataRow) : 
                    base(dataRow)
            {
            }
            
            public virtual string DecodeNameScreen
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["DecodeNameScreen"], typeof(string), true)));
                }
            }
            
            public virtual string CodeValue
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["CodeValue"], typeof(string), true)));
                }
            }
            
            public virtual int TypeCodeID
            {
                get
                {
                    return ((int)(StiReport.ChangeType(this["TypeCodeID"], typeof(int), true)));
                }
            }
            
            public virtual int CodeID
            {
                get
                {
                    return ((int)(StiReport.ChangeType(this["CodeID"], typeof(int), true)));
                }
            }
        }
        #endregion Relation Parentun1
        
        #region Relation Parentun2
        public class Parentun2Relation : Stimulsoft.Report.Dictionary.StiDataRow
        {
            
            public Parentun2Relation(Stimulsoft.Report.Dictionary.StiDataRow dataRow) : 
                    base(dataRow)
            {
            }
            
            public virtual int ParentID
            {
                get
                {
                    return ((int)(StiReport.ChangeType(this["ParentID"], typeof(int), true)));
                }
            }
            
            public virtual string DecodeNameScreen
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["DecodeNameScreen"], typeof(string), true)));
                }
            }
            
            public virtual string CodeValue
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["CodeValue"], typeof(string), true)));
                }
            }
            
            public virtual int TypeCodeID
            {
                get
                {
                    return ((int)(StiReport.ChangeType(this["TypeCodeID"], typeof(int), true)));
                }
            }
            
            public virtual Parentun1Relation un1
            {
                get
                {
                    return new Parentun1Relation(this.GetParentData("un1"));
                }
            }
        }
        #endregion Relation Parentun2
        
        #region DataSource usm7HSelect
        public class usm7HSelectDataSource : Stimulsoft.Report.Dictionary.StiSqlSource
        {
            
            public usm7HSelectDataSource() : 
                    base("Connection", "usm7HSelect", "usm7HSelect", "", true, false, 300000)
            {
            }
            
            public virtual string TIN
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["TIN"], typeof(string), true)));
                }
            }
            
            public virtual string ShortName
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["ShortName"], typeof(string), true)));
                }
            }
            
            public virtual decimal c4_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c4_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c4_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c4_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c4_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c4_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c4_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c4_4"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c5_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c5_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c5_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c5_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c5_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c5_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c5_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c5_4"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c6_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c6_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c6_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c6_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c6_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c6_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c6_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c6_4"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c7_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c7_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c7_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c7_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c7_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c7_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c7_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c7_4"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c8_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c8_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c8_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c8_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c8_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c8_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c8_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c8_4"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c9_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c9_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c9_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c9_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c9_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c9_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c9_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c9_4"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c10_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c10_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c10_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c10_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c10_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c10_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c10_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c10_4"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c11_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c11_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c11_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c11_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c11_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c11_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c11_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c11_4"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c12_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c12_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c12_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c12_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c12_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c12_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c12_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c12_4"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c13_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c13_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c13_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c13_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c13_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c13_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c13_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c13_4"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c14_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c14_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c14_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c14_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c14_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c14_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c14_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c14_4"], typeof(decimal), true)));
                }
            }
            
            public virtual string rayonCode
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["rayonCode"], typeof(string), true)));
                }
            }
            
            public virtual decimal c15_1_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c15_1_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c15_2
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c15_2"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c15_3
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c15_3"], typeof(decimal), true)));
                }
            }
            
            public virtual decimal c15_4
            {
                get
                {
                    return ((decimal)(StiReport.ChangeType(this["c15_4"], typeof(decimal), true)));
                }
            }
            
            public virtual DateTime dateCompilation
            {
                get
                {
                    return ((DateTime)(StiReport.ChangeType(this["dateCompilation"], typeof(DateTime), true)));
                }
            }
            
            public virtual Parentun2Relation un2
            {
                get
                {
                    return new Parentun2Relation(this.GetParentData("un2"));
                }
            }
        }
        #endregion DataSource usm7HSelect
        
        #region DataSource RayonName
        public class RayonNameDataSource : Stimulsoft.Report.Dictionary.StiSqlSource
        {
            
            public RayonNameDataSource() : 
                    base("Connection", "RayonName", "RayonName", "", true, false, 30)
            {
            }
            
            public virtual string RayonName
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["RayonName"], typeof(string), true)));
                }
            }
        }
        #endregion DataSource RayonName
        
        #region DataSource obl
        public class oblDataSource : Stimulsoft.Report.Dictionary.StiSqlSource
        {
            
            public oblDataSource() : 
                    base("Connection", "obl", "obl", "", true, false, 30)
            {
            }
            
            public virtual string DecodeNameScreen
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["DecodeNameScreen"], typeof(string), true)));
                }
            }
            
            public virtual string CodeValue
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["CodeValue"], typeof(string), true)));
                }
            }
            
            public virtual int TypeCodeID
            {
                get
                {
                    return ((int)(StiReport.ChangeType(this["TypeCodeID"], typeof(int), true)));
                }
            }
            
            public virtual int CodeID
            {
                get
                {
                    return ((int)(StiReport.ChangeType(this["CodeID"], typeof(int), true)));
                }
            }
        }
        #endregion DataSource obl
        
        #region DataSource rayon
        public class rayonDataSource : Stimulsoft.Report.Dictionary.StiSqlSource
        {
            
            public rayonDataSource() : 
                    base("Connection", "rayon", "rayon", "", true, false, 30)
            {
            }
            
            public virtual int ParentID
            {
                get
                {
                    return ((int)(StiReport.ChangeType(this["ParentID"], typeof(int), true)));
                }
            }
            
            public virtual string DecodeNameScreen
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["DecodeNameScreen"], typeof(string), true)));
                }
            }
            
            public virtual string CodeValue
            {
                get
                {
                    return ((string)(StiReport.ChangeType(this["CodeValue"], typeof(string), true)));
                }
            }
            
            public virtual int TypeCodeID
            {
                get
                {
                    return ((int)(StiReport.ChangeType(this["TypeCodeID"], typeof(int), true)));
                }
            }
            
            public virtual Parentun1Relation un1
            {
                get
                {
                    return new Parentun1Relation(this.GetParentData("un1"));
                }
            }
        }
        #endregion DataSource rayon
        #endregion StiReport Designer generated code - do not modify
    }
}</Script>
  <ScriptLanguage>CSharp</ScriptLanguage>
  <Styles isList="true" count="0" />
</StiSerializer>