<?xml version="1.0" encoding="utf-8"?>
<TfrxReport Version="4.10.16" DotMatrixReport="False" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="2032" PreviewOptions.Zoom="1" PrintOptions.Printer="Ïî óìîë÷àíèþ" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="40800,6671715972" ReportOptions.Description.Text="" ReportOptions.LastChange="41425,4742563657" ScriptLanguage="PascalScript" ScriptText.Text="// Ïîçåìåëüíà êíèãà version 1.0                                                                                   &#13;&#10;var&#13;&#10;  MemoCounter:Integer;                         &#13;&#10;  S,S2:String;                      &#13;&#10;  I,N:Integer;                                  &#13;&#10;  DecDelimeter:Char;&#13;&#10;  XMLMode:Boolean;&#13;&#10;  CadNumber,CadNumberClear:String; //Êàäàñòðîâèé íîìåð (ç &#34;:&#34; òà ÷èñòèé)                                                                                          &#13;&#10;  WorkDir:String;            // ðîáî÷à ïàïêà&#13;&#10;  XML573Root:String;         //ïóòü ê êîðíþ XML573&#13;&#10;  NMList:String; Neighbours1:String;    &#13;&#10;  TX:String;&#13;&#10;  AD:String;&#13;&#10;  ChiefPosition,ChiefName,ExecutorPosition,ExecutorName:String; Nambe:String;    &#13;&#10;  ExecName,ExecCity,ExecDate:String;                                                                                    &#13;&#10;  ParcelAddress:String; &#13;&#10;  MapScale:String;&#13;&#10;       UDKZName:String;&#13;&#10;  UZRNM:String;  &#13;&#10;ÐàäàÐîä :String;&#13;&#10;  ÐàäàÍàç:String;&#13;&#10;  Ãîëîâàñð:String;&#13;&#10;  Çåìëåâï:String;&#13;&#10;  Óïðàâë³ííÿÄàâ:String;&#13;&#10;  Íà÷Óïðàâë³ííÿ:String;&#13;&#10;  ÊÑÏ:String;&#13;&#10;  ÐàéîíÐîäîâ:String;&#13;&#10; Nach:String;DocumentationType:String;                  &#13;&#10;procedure AddExplication(ParentPage:TfrxReportPage; ParentMemo:TfrxMemoView);&#13;&#10;var HeaderMemo,BodyMemo,FooterMemo,PageGrid:TList;&#13;&#10;    Log,SL:TStringList;  &#13;&#10;    DecDelimeter:Char;&#13;&#10;    BodyHeight,BodyTop:array of Integer;                                                                                                      &#13;&#10;    HeaderHeight,i,j,k,l,m,n,LeftCol,SumCol:Integer;&#13;&#10;    s1,s2,s3:String;&#13;&#10;    AreaCN:Real;&#13;&#10;    b:Boolean;&#13;&#10;    Areas:array of Real;                                                  &#13;&#10;    w:Integer;&#13;&#10;    Res:Extended;                                                              &#13;&#10;const&#13;&#10;  SuperWideColWidth = 200;&#13;&#10;  WideColWidth      = 150;&#13;&#10;  AverageColWidth   = 100;&#13;&#10;  SlimColWidth      = 65;&#13;&#10;  SuperSlimColWidth = 50;&#13;&#10;  HeaderBandHeight=20;                &#13;&#10;  BodyBandHeight=48;&#13;&#10;  FooterBandHeight=12;                                            &#13;&#10;  ColsFileName='6ZemCols.txt';&#13;&#10;    &#13;&#10;function AnyStrToFloat(S:string):Real;&#13;&#10;var N:string;&#13;&#10;    i:Integer;                                              &#13;&#10;begin&#13;&#10; N:='';              &#13;&#10; for I:=1 to Length(S) do&#13;&#10; if S[I] in ['0'..'9',',','.'] &#13;&#10;   then begin&#13;&#10;     if S[I] in ['0'..'9']&#13;&#10;       then N:=N+S[I]&#13;&#10;       else N:=N+DecDelimeter;                            &#13;&#10;   end;                      &#13;&#10; if N&#60;&#62;'' then Result:=StrToFloat(N) else Result:=0;                                                                                                            &#13;&#10;end;&#13;&#10;&#13;&#10;function GetAreaByCN(N:Integer; CN:string):Real;&#13;&#10;var II:Integer; S:string;                                               &#13;&#10;begin&#13;&#10;  Result:=0;&#13;&#10;  for II:=1 to ChildCount(N) do&#13;&#10;    begin&#13;&#10;      S:=PARAM(-7,N,II);&#13;&#10;      //åñëè ïðîøëè âñå óãîäèÿ, âûõîäèì                                                       &#13;&#10;      if S='20000' then exit;&#13;&#10;      //ïîëó÷àåì çíà÷åíèå ïàðàìåòðà CN                                                                                     &#13;&#10;      S:=PARAM('CN',N,II);&#13;&#10;      if Pos(' ',S)&#60;&#62;0&#13;&#10;        then S:=Copy(S,1,Pos(' ',S)-1);&#13;&#10;      if S=CN then&#13;&#10;        begin&#13;&#10;          //íàéäåíî óãîäèå ñ òðåáóåìûì êîäîì CN                                                                                       &#13;&#10;          S:=PARAM('AL',N,II);&#13;&#10;          //äîáàâëÿåì åãî ïëîùàäü ê ðåçóëüòàòó                                                                                                &#13;&#10;          if S&#60;&#62;'' then Result:=Result+AnyStrToFloat(S);&#13;&#10;        end;                 &#13;&#10;    end;&#13;&#10;end;          &#13;&#10;&#13;&#10;function XMLGetAreaByCN(CN:string):Real;&#13;&#10;var II,NN:Integer; S,S2:string;                                               &#13;&#10;begin&#13;&#10;  Result:=0;&#13;&#10;  S:=XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/LandsParcel';                &#13;&#10;  NN:=NodesCount(S,'LandParcelInfo');&#13;&#10;  if NN&#60;1 then Exit;&#13;&#10;  for II:=1 to NN do&#13;&#10;    begin&#13;&#10;      S2:=Trim(XPath(S+'/LandParcelInfo['+IntToStr(II)+']/LandCode'));&#13;&#10;      if Length(S2)=1 then S2:='0'+S2;                                                                           &#13;&#10;      if S2=Trim(CN)&#13;&#10;        then Result:=Result+AnyStrToFloat(XPath(S+'/LandParcelInfo['+IntToStr(II)+']/MetricInfo/Area/Size'));&#13;&#10;    end;                                &#13;&#10;end;          &#13;&#10;  &#13;&#10;function GetColByNum(Num:String):Integer; // âîçâðàùàåò èíäåêñ ñòîëáöà Num, åñëè íå íàõîäèò òî -1&#13;&#10;  var i:Integer;&#13;&#10;      s:String;                                                &#13;&#10;begin&#13;&#10;  result:=-1;                                 &#13;&#10;  for i:=1 to SL.Count-1 do&#13;&#10;    begin&#13;&#10;      s:=StringPart(SL[i],1,chr(9));&#13;&#10;      if s[1]='&#38;' then Delete(s,1,1);&#13;&#10;      if Num=s&#13;&#10;        then&#13;&#10;          begin&#13;&#10;            result:=i;&#13;&#10;            Exit;                      &#13;&#10;          end;&#13;&#10;    end;                                            &#13;&#10;end;          &#13;&#10;&#13;&#10;function GetColByNum2(Num:String):Integer; // åñëè íå íàõîäèò Num, òî âîçâðàùàåò èíäåêñ ñòîëáöà ïðàâåå                                                                                                                                           &#13;&#10;  var i:Integer;&#13;&#10;      s:String;                                                &#13;&#10;begin&#13;&#10;  result:=-1;                                 &#13;&#10;  for i:=SumCol to SL.Count-1 do&#13;&#10;    begin&#13;&#10;      s:=StringPart(SL[i],1,chr(9));&#13;&#10;      if s[1]='&#38;' then Delete(s,1,1);&#13;&#10;      if CompareText(Num,s)&#60;0      &#13;&#10;        then&#13;&#10;          begin&#13;&#10;            result:=i-1;            &#13;&#10;            Exit;                      &#13;&#10;          end;&#13;&#10;    end;                                            &#13;&#10;  if result=-1&#13;&#10;    then result:=i;&#13;&#10;end;&#13;&#10;                                       &#13;&#10;function AddMemoToHeader(Col:Integer; Level:Integer):Integer;&#13;&#10;var Num,w,h1,h2,i,j,k,ip:Integer;&#13;&#10;    s1,s2,s3:String;&#13;&#10;    MemoText:TStringList;&#13;&#10;begin&#13;&#10;  HeaderMemo.Add(TfrxMemoView.Create(ParentPage));&#13;&#10;  MemoText:=TStringList.Create;&#13;&#10;  Num:=HeaderMemo.Count-1;&#13;&#10;  with TfrxMemoView(HeaderMemo[Num]) do&#13;&#10;    begin&#13;&#10;      Name:='HDRMemo'+IntToStr(Num)+;                                                             &#13;&#10;      case Level of&#13;&#10;        8:if Col=1&#13;&#10;             then Left:=ParentMemo.Left+LeftCol &#13;&#10;             else Left:=TfrxMemoView(HeaderMemo[Num-1]).Left+TfrxMemoView(HeaderMemo[Num-1]).Width;&#13;&#10;       -2:Left:=TfrxMemoView(HeaderMemo[Col]).Left;&#13;&#10;       -1:Left:=TfrxMemoView(HeaderMemo[Col-1]).Left&#13;&#10;       else&#13;&#10;         Left:=TfrxMemoView(HeaderMemo[Col-1]).Left;//+TfrxMemoView(HeaderMemo[Col-1]).Width                                  &#13;&#10;      end;                         &#13;&#10;      w:=StrToInt(StringPart(SL[Col],3,chr(9)));&#13;&#10;      if Level=8 &#13;&#10;        then begin             &#13;&#10;          case w of&#13;&#10;            1:Width:=SuperWideColWidth;&#13;&#10;            2:Width:=WideColWidth;&#13;&#10;            3:Width:=AverageColWidth;&#13;&#10;            4:Width:=SlimColWidth;&#13;&#10;            5:Width:=SuperSlimColWidth&#13;&#10;            else Width:=w                                   &#13;&#10;          end;&#13;&#10;        end&#13;&#10;        else Width:=TfrxMemoView(HeaderMemo[Col-1]).Width;&#13;&#10;      ParentFont:=True;  &#13;&#10;      h1:=StrToInt(StringPart(SL[Col],6,chr(9)));&#13;&#10;      h2:=StrToInt(StringPart(SL[Col],7,chr(9)));&#13;&#10;      case Level of&#13;&#10;         8:begin&#13;&#10;             s3:=StringPart(SL[Col],1,chr(9));&#13;&#10;             if (s3='Ã') or (s3='Ä') then s3:='';  &#13;&#10;           end;                                                           &#13;&#10;        -1:s3:=StringPart(SL[Col],2,chr(9));  &#13;&#10;        -2:s3:=StringPart(SL[Col],10,chr(9))  &#13;&#10;        else &#13;&#10;          if Level=h1&#13;&#10;            then s3:=StringPart(SL[Col],2,chr(9))&#13;&#10;            else s3:=StringPart(SL[Col],9,chr(9))  &#13;&#10;      end;&#13;&#10;      repeat&#13;&#10;        MemoText.Add(StringPart(s3,1,'^'));&#13;&#10;        ip:=Pos('^',s3);&#13;&#10;        if ip&#60;&#62;0 then Delete(s3,1,ip);&#13;&#10;      until ip=0;&#13;&#10;      case Level of&#13;&#10;       8:begin&#13;&#10;           Top:=ParentMemo.Top+8*HeaderBandHeight;&#13;&#10;           Height:=HeaderBandHeight;&#13;&#10;           Memo.Text:=MemoText.Text;                &#13;&#10;         end;&#13;&#10;      -1:begin&#13;&#10;           Top:=ParentMemo.Top+h1*HeaderBandHeight;&#13;&#10;           Height:=(8-h1)*HeaderBandHeight;&#13;&#10;           Memo.Text:=MemoText.Text;&#13;&#10;         end;&#13;&#10;      -2:begin&#13;&#10;           Top:=ParentMemo.Top+(h1+1)*HeaderBandHeight;&#13;&#10;           Height:=(h2-h1-1)*HeaderBandHeight;&#13;&#10;           Memo.Text:=MemoText.Text;&#13;&#10;           s1:=StringPart(SL[Col],8,chr(9));&#13;&#10;           k:=GetColByNum(s1);&#13;&#10;           Width:=TfrxMemoView(HeaderMemo[k-1]).Left+TfrxMemoView(HeaderMemo[k-1]).Width-Left;&#13;&#10;         end;&#13;&#10;       else&#13;&#10;         if Level=h1&#13;&#10;           then&#13;&#10;             begin&#13;&#10;               Top:=ParentMemo.Top+h1*HeaderBandHeight;                            &#13;&#10;               if Length(StringPart(SL[Col],10,chr(9)))&#62;1 &#13;&#10;                 then Height:=HeaderBandHeight*1&#13;&#10;                 else Height:=HeaderBandHeight*(h2-h1);&#13;&#10;               Memo.Text:=MemoText.Text;  &#13;&#10;               s1:=StringPart(SL[Col],8,chr(9));&#13;&#10;               k:=GetColByNum(s1);&#13;&#10;               Width:=TfrxMemoView(HeaderMemo[k-1]).Left+TfrxMemoView(HeaderMemo[k-1]).Width-Left;////        &#13;&#10;             end&#13;&#10;           else&#13;&#10;             begin&#13;&#10;               if Length(StringPart(SL[Col],10,chr(9)))&#62;1&#13;&#10;                 then&#13;&#10;                   begin&#13;&#10;                     Top:=ParentMemo.Top+(h1+1)*HeaderBandHeight;&#13;&#10;                     Height:=(7-h1)*HeaderBandHeight;&#13;&#10;                     Memo.Text:=s3;&#13;&#10;                   end&#13;&#10;                 else&#13;&#10;                   begin&#13;&#10;                     Top:=ParentMemo.Top+h2*HeaderBandHeight;&#13;&#10;                     Height:=(8-h2)*HeaderBandHeight;&#13;&#10;                     Memo.Text:=s3;&#13;&#10;                   end;                             &#13;&#10;             end;                       &#13;&#10;      end;                                    &#13;&#10;      Visible:=True;&#13;&#10;      Frame.Typ:=ftLeft+ftTop+ftRight+ftBottom;&#13;&#10;      Frame.Style:=fsSolid;&#13;&#10;      Frame.Color:=clBlack;&#13;&#10;      VAlign:=vaCenter;                                              &#13;&#10;      HAlign:=haCenter;&#13;&#10;      case StringPart(SL[Col],5,chr(9)) of&#13;&#10;        'H':Rotation:=0;&#13;&#10;        'V':Rotation:=90&#13;&#10;        else Rotation:=StrToInt(StringPart(SL[Col],5,chr(9)))&#13;&#10;      end;&#13;&#10;      if Level=8 then Rotation:=0;&#13;&#10;      StrechMode:=smDontStrech;&#13;&#10;      if ((Width*Height)/Length(Memo.Text))&#60;45&#13;&#10;        then Font.Size:=Font.Size-1;   //äëÿ ìàëåíüêèõ ÿ÷ååê è äëèííûõ íàäïèñåé óìåíüøàåì øðèôò                                                                                                                                                  &#13;&#10;    end;&#13;&#10;  result:=Num;&#13;&#10;  MemoText.Free;&#13;&#10;end;          &#13;&#10;          &#13;&#10;procedure AddMemoToBody(Row: Integer; Col:Integer);&#13;&#10;var s1,s2,s3,s4:String;&#13;&#10;    ar:Real;&#13;&#10;    i,j,k,l,m,n:Integer;                                &#13;&#10;begin&#13;&#10;  if Col=1&#13;&#10;    then &#13;&#10;       begin&#13;&#10;         BodyHeight[Row-1]:=BodyBandHeight;&#13;&#10;         if Row=1 &#13;&#10;           then BodyTop[Row-1]:=0&#13;&#10;           else BodyTop[Row-1]:=BodyTop[Row-2]+BodyHeight[Row-2];                                                          &#13;&#10;       end;                                         &#13;&#10;  BodyMemo.Add(TfrxMemoView.Create(ParentPage));&#13;&#10;  with TfrxMemoView(BodyMemo[BodyMemo.Count-1]) do&#13;&#10;    begin&#13;&#10;      Name:='BodyMemo'+IntToStr(MemoCounter);&#13;&#10;      Inc(MemoCounter);                                          &#13;&#10;      Left:=TfrxMemoView(HeaderMemo[Col-1]).Left;&#13;&#10;      Top:=BodyTop[Row-1]+ParentMemo.Top+9*HeaderBandHeight;&#13;&#10;      Width:=TfrxMemoView(HeaderMemo[Col-1]).Width;                            &#13;&#10;      Height:=BodyBandHeight;&#13;&#10;      ParentFont:=True;  &#13;&#10;      Frame.Typ:=ftLeft+ftTop+ftRight+ftBottom;&#13;&#10;      HAlign:=haCenter;&#13;&#10;      VAlign:=vaCenter;&#13;&#10;      s1:=SEF(Copy(Param('KZ',Row),1,Pos(' ',Param('KZ',Row))-1),'KZ.txt');&#13;&#10;      S2:=Copy(Param('KZ',Row),1,Pos(' ',Param('KZ',Row))-1);            &#13;&#10;      case StringPart(SL[Col],1,chr(9)) of&#13;&#10;        'À':if XMLMode&#13;&#10;                then Memo.Text:=SEF(XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/Proprietors/ProprietorInfo/ProprietorCode'),'KZ.txt')                                            &#13;&#10;                else Memo.Text:=SEF(Param('KZ',Row),'KZ.txt');  &#13;&#10;        'Á':begin              &#13;&#10;              if XMLMode&#13;&#10;                then Memo.Text:=PrepareXMLNMList(',')&#13;&#10;                else Memo.Text:='   '+Param('NM',Row);&#13;&#10;              HAlign:=haLeft;                                              &#13;&#10;            end;                                                      &#13;&#10;        'Â':if XMLMode&#13;&#10;              then Memo.Text:=XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/Proprietors/ProprietorInfo/ProprietorCode')&#13;&#10;              else Memo.Text:=Param('KZ',Row);&#13;&#10;        'Ã':if XMLMode&#13;&#10;              then Memo.Text:=XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/CategoryPurposeInfo/Purpose')  &#13;&#10;              else Memo.Text:=Param('CV',Row);&#13;&#10;        'Ä':begin&#13;&#10;              Font.Size:=Font.Size-2;                                                                                                                         &#13;&#10;              if XMLMode&#13;&#10;                then Memo.Text:=XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/CategoryPurposeInfo/Use')  &#13;&#10;                else Memo.Text:=Param('TX',Row);&#13;&#10;            end;                                                                                                      &#13;&#10;       '02':begin&#13;&#10;              if XMLMode &#13;&#10;                then Memo.Text:=XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/ParcelMetricInfo/Area/Size')      &#13;&#10;                else begin                                     &#13;&#10;                  Memo.Text:=Param('AS',Row);  &#13;&#10;                  if Areas[(Row-1)*SL.Count+Col]&#60;&#62;AnyStrToFloat(Param('AS',Row))&#13;&#10;                    then Font.Color:=clRed;&#13;&#10;                end;                                                                    &#13;&#10;            end                                                                                            &#13;&#10;        else&#13;&#10;          Memo.Text:=FormatFloat('0.0000',Areas[(Row-1)*SL.Count+Col])    &#13;&#10;      end;                                      &#13;&#10;    end;&#13;&#10;  l:=(Row-1)*SL.Count+Col;              &#13;&#10;end;&#13;&#10;&#13;&#10;procedure HeaderPrint;&#13;&#10;var i,w,h1,h2:Integer; ww:Extended;                                                            &#13;&#10;begin&#13;&#10;  HeaderMemo:=TList.Create;&#13;&#10;  for i:=1 to SL.Count-1 do&#13;&#10;    AddMemoToHeader(i,8);&#13;&#10;  ww:=0;            &#13;&#10;  for i:=1 to SL.Count-1 do&#13;&#10;    ww:=ww+TfrxMemoView(HeaderMemo[i-1]).Width;&#13;&#10;  for i:=1 to SL.Count-1 do&#13;&#10;    begin&#13;&#10;      if i&#60;&#62;1 then TfrxMemoView(HeaderMemo[i-1]).Left:=TfrxMemoView(HeaderMemo[i-2]).Left+TfrxMemoView(HeaderMemo[i-2]).Width;                                                               &#13;&#10;      TfrxMemoView(HeaderMemo[i-1]).Width:=Trunc(TfrxMemoView(HeaderMemo[i-1]).Width*ParentMemo.Width/ww);&#13;&#10;    end;              &#13;&#10;  for i:=1 to SL.Count-1 do&#13;&#10;    begin&#13;&#10;      h1:=StrToInt(StringPart(SL[i],6,chr(9)));&#13;&#10;      h2:=StrToInt(StringPart(SL[i],7,chr(9)));&#13;&#10;      if h1=h2 &#13;&#10;        then AddMemoToHeader(i,-1)&#13;&#10;        else&#13;&#10;          begin&#13;&#10;            AddMemoToHeader(i,h1);&#13;&#10;            AddMemoToHeader(i,h2);&#13;&#10;            if Length(StringPart(SL[i],10,chr(9)))&#62;1&#13;&#10;              then AddMemoToHeader(i,-2);&#13;&#10;          end;                    &#13;&#10;    end;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure BodyPrint;&#13;&#10;var i,w,N:Integer;                                 &#13;&#10;begin&#13;&#10;  BodyMemo:=TList.Create;&#13;&#10;  if XMLMode &#13;&#10;    then N:=1&#13;&#10;    else N:=ObjCount;                             &#13;&#10;  for i:=1 to N do&#13;&#10;    for j:=1 to SL.Count-1 do                                                                   &#13;&#10;      AddMemoToBody(i,j);&#13;&#10;end;&#13;&#10;&#13;&#10;begin&#13;&#10;  DecDelimeter:=Copy(FloatToStr(1/10),2,1);&#13;&#10;  SL:=TStringList.Create;&#13;&#10;  if XMLMode&#13;&#10;    then SL.LoadFromFile(GetProgramDir+'\Templates\6ZemLB.txt')&#13;&#10;    else SL.LoadFromFile(GetProgramDir+'\Templates\'+ColsFileName);&#13;&#10;  //ïîìå÷àåì '&#38;' ñòîëáöû ñî çíà÷åíèÿìè &#60;&#62;0                                                                                                                                                               &#13;&#10;  for k:=SL.Count-1 downto 1 do&#13;&#10;    if Copy(SL[k],1,1)&#60;&#62;'&#38;'&#13;&#10;      then&#13;&#10;        begin&#13;&#10;          AreaCN:=0.0;&#13;&#10;          if XMLMode&#13;&#10;            then AreaCN:=XMLGetAreaByCN(StringPart(SL[k],1,chr(9)))    &#13;&#10;            else&#13;&#10;              for i:=1 to ObjCount do&#13;&#10;                AreaCN:=AreaCN+GetAreaByCN(i,StringPart(SL[k],1,chr(9)));&#13;&#10;          if (AreaCN&#62;0.0) then Insert('&#38;',SL[k],1);&#13;&#10;        end;&#13;&#10;  //ïîìå÷àåì '&#38;' ñòîëáöû-ñóììû ñî çíà÷åíèÿìè &#60;&#62;0                                                                                                                                                      &#13;&#10;  for k:=SL.Count-1 downto 1 do&#13;&#10;    if (StringPart(SL[k],11,chr(9))&#60;&#62;'') and (Copy(StringPart(SL[k],1,chr(9)),1,1)&#60;&#62;'&#38;')                                                           &#13;&#10;      then&#13;&#10;        begin&#13;&#10;          s1:=StringPart(SL[k],11,chr(9));&#13;&#10;          b:=False;&#13;&#10;          j:=0;                        &#13;&#10;          repeat&#13;&#10;            inc(j);&#13;&#10;            s2:=StringPart(s1,j,'+');&#13;&#10;            if s2&#60;&#62;''&#13;&#10;              then&#13;&#10;                begin                                                             &#13;&#10;                  i:=GetColByNum(s2);                                                &#13;&#10;                  b:=Copy(SL[i],1,1)='&#38;';&#13;&#10;                end;                                              &#13;&#10;          until b or (s2='');&#13;&#10;          if b then Insert('&#38;',SL[k],1);                                     &#13;&#10;        end;&#13;&#10;  //óäàëÿåì ëèøíèå ñòîëáöû                                                                                          &#13;&#10;  for k:=SL.Count-1 downto 1 do&#13;&#10;    if Copy(SL[k],1,1)&#60;&#62;'&#38;'&#13;&#10;      then SL.Delete(k)&#13;&#10;      else Delete(SL[k],1,1);&#13;&#10;  //óáèðàåì èç Sum íåèñïîëüçóåìûå ñòîëáöû                                                                                                          &#13;&#10;  for k:=SL.Count-1 downto 1 do&#13;&#10;    if StringPart(SL[k],11,chr(9))&#60;&#62;''&#13;&#10;      then&#13;&#10;        begin&#13;&#10;          s1:=StringPart(SL[k],11,chr(9));&#13;&#10;          s3:='';                          &#13;&#10;          j:=0;                        &#13;&#10;          repeat&#13;&#10;            inc(j);&#13;&#10;            s2:=StringPart(s1,j,'+');&#13;&#10;            if s2&#60;&#62;''&#13;&#10;              then&#13;&#10;                begin                                                             &#13;&#10;                  i:=GetColByNum(s2);&#13;&#10;                  if i&#60;&#62;-1&#13;&#10;                    then&#13;&#10;                      if s3=''&#13;&#10;                        then s3:=s2&#13;&#10;                        else s3:=s3+'+'+s2;                                                               &#13;&#10;                end;                                              &#13;&#10;          until s2='';&#13;&#10;          i:=Pos(chr(9)+s1,SL[k])+1;&#13;&#10;          Delete(SL[k],i,Length(s1));&#13;&#10;          Insert(s3,SL[k],i);                                            &#13;&#10;        end;&#13;&#10;  //Areas - ìàññèâ çíà÷åíèé ïëîùàäåé óãîäèé&#13;&#10;  if XMLMode &#13;&#10;    then l:=SL.Count&#13;&#10;    else l:=SL.Count*ObjCount;&#13;&#10;  SetLength(Areas,l);&#13;&#10;  for i:=0 to l-1 do&#13;&#10;    Areas[i]:=0.0;&#13;&#10;  SumCol:=6;//GetColByNum('02');&#13;&#10;  for k:=SL.Count-1 downto SumCol do&#13;&#10;    begin&#13;&#10;      s1:=StringPart(SL[k],8,chr(9));&#13;&#10;      s2:=StringPart(SL[k],1,chr(9));&#13;&#10;      if s1&#60;&#62;s2&#13;&#10;        then&#13;&#10;          begin&#13;&#10;            i:=GetColByNum2(s1);&#13;&#10;            ip:=Pos(s1,SL[k]);&#13;&#10;            s2:=StringPart(SL[i],1,chr(9));                                        &#13;&#10;            Delete(SL[k],ip,Length(s1));&#13;&#10;            Insert(s2,SL[k],ip);&#13;&#10;          end;                                                      &#13;&#10;    end;&#13;&#10;  //Çàïîëíÿåì ìàññèâ ïëîùàäåé                                                                                                          &#13;&#10;  for k:=SL.Count-1 downto SumCol do&#13;&#10;    begin&#13;&#10;      s1:=StringPart(SL[k],11,chr(9));&#13;&#10;      s2:=StringPart(SL[k],1,chr(9));&#13;&#10;      if s2[1]='&#38;' then Delete(s2,1,1);                                                                           &#13;&#10;      for i:=1 to StrToInt(IIF(XMLMode,1,ObjCount)) do&#13;&#10;        if s1=''&#13;&#10;          then&#13;&#10;            begin                                                 &#13;&#10;              l:=k+(i-1)*SL.Count;&#13;&#10;              if XMLMode&#13;&#10;                then begin&#13;&#10;                  Areas[l]:=XMLGetAreaByCN(s2);&#13;&#10;                end                            &#13;&#10;                else begin&#13;&#10;                  Areas[l]:=GetAreaByCN(i,s2);&#13;&#10;                end;                                              &#13;&#10;            end                                      &#13;&#10;          else&#13;&#10;            begin&#13;&#10;              AreaCN:=0.0;&#13;&#10;              j:=0;                            &#13;&#10;              repeat&#13;&#10;                inc(j);&#13;&#10;                s3:=StringPart(s1,j,'+');&#13;&#10;                if S3&#60;&#62;''&#13;&#10;                  then &#13;&#10;                    begin&#13;&#10;                      l:=GetColByNum(s3)+(i-1)*SL.Count;&#13;&#10;                      AreaCN:=AreaCN+Areas[l];&#13;&#10;                    end;                                                      &#13;&#10;              until s3='';&#13;&#10;              Areas[k+(i-1)*SL.Count]:=AreaCN;                                      &#13;&#10;            end;&#13;&#10;    end;&#13;&#10;  if XMLMode&#13;&#10;    then begin&#13;&#10;      SetLength(BodyTop,1);                                  &#13;&#10;      SetLength(BodyHeight,1);&#13;&#10;    end&#13;&#10;    else begin&#13;&#10;      SetLength(BodyTop,ObjCount);                                  &#13;&#10;      SetLength(BodyHeight,ObjCount);&#13;&#10;    end;              &#13;&#10;  w:=0;&#13;&#10;  for k:=SL.Count-1 downto 1 do&#13;&#10;    begin&#13;&#10;      l:=Round(AnyStrToFloat(StringPart(SL[k],3,chr(9))));&#13;&#10;      case l of&#13;&#10;        1:w:=w+SuperWideColWidth;&#13;&#10;        2:w:=w+WideColWidth;&#13;&#10;        3:w:=w+AverageColWidth;&#13;&#10;        4:w:=w+SlimColWidth;&#13;&#10;        5:w:=w+SuperSlimColWidth&#13;&#10;        else w:=w+l    &#13;&#10;      end;                          &#13;&#10;    end;&#13;&#10;  HeaderPrint;&#13;&#10;  BodyPrint;&#13;&#10;//  FooterPrint;&#13;&#10;  ParentMemo.Visible:=False;                                                        &#13;&#10;end;    &#13;&#10;&#13;&#10;procedure CreateMultiRowTable(Page:TfrxReportPage; Body:TfrxChild; TableName:String; SL:TStringList);&#13;&#10;var Row,N,I,J,MemoHeight:Integer; Cols,MemoList:TList;&#13;&#10;    Ex:Boolean; Memo:TfrxMemoView;&#13;&#10;  function PlaceReturns(S:String):String;&#13;&#10;  var I:Integer;                                                                                          &#13;&#10;  begin&#13;&#10;   Result:='';                           &#13;&#10;   for I:=1 to Length(S) do if S[I]&#60;&#62;'~' then Result:=Result+S[I] else Result:=Result+chr(13)+chr(10);  &#13;&#10;  end;             &#13;&#10;begin&#13;&#10;  Cols:=TList.Create;&#13;&#10;  MemoList:=TList.Create;                          &#13;&#10;  N:=0;&#13;&#10;  repeat&#13;&#10;    inc(N);&#13;&#10;    Ex:=True;                          &#13;&#10;    for I:=0 to Page.AllObjects.Count-1 do&#13;&#10;      if Page.AllObjects[I] is TfrxMemoView then&#13;&#10;        if TfrxMemoView(Page.AllObjects[I]).TagStr=TableName then                                                  &#13;&#10;          if TfrxMemoView(Page.AllObjects[I]).Tag=N&#13;&#10;            then begin&#13;&#10;              Cols.Add(Page.AllObjects[I]);&#13;&#10;              Ex:=False;&#13;&#10;              Break;                          &#13;&#10;            end;&#13;&#10;  until Ex;&#13;&#10;  if Cols.Count&#60;1 then Exit;                                                                            &#13;&#10;  if SL.Count&#60;1 then Exit;&#13;&#10;  if TfrxMemoView(Cols[0]).Height*SL.Count&#62;Body.Height &#13;&#10;    then begin&#13;&#10;      MemoHeight:=Trunc(Trunc(Body.Height) div SL.Count);                                                                                                                    &#13;&#10;      Body.Height:=MemoHeight*SL.Count;&#13;&#10;    end&#13;&#10;    else begin&#13;&#10;      MemoHeight:=Trunc(TfrxMemoView(Cols[0]).Height);                                                 &#13;&#10;      Body.Height:=TfrxMemoView(Cols[0]).Height*SL.Count;                         &#13;&#10;    end;              &#13;&#10;  for Row:=0 to SL.Count-1 do&#13;&#10;    if Row=0&#13;&#10;      then &#13;&#10;        for J:=0 to Cols.Count-1 do&#13;&#10;          begin                                           &#13;&#10;            TfrxMemoView(Cols[J]).Memo.Text:=PlaceReturns(StringPart(SL[Row],J+1,chr(9)));&#13;&#10;            TfrxMemoView(Cols[J]).Height:=MemoHeight;&#13;&#10;            TfrxMemoView(Cols[J]).Top:=0;&#13;&#10;          end                                &#13;&#10;      else begin&#13;&#10;        for J:=0 to Cols.Count-1 do&#13;&#10;          begin&#13;&#10;            Memo:=TfrxMemoView.Create(Body);                                                                &#13;&#10;            Memo.Memo.Text:=PlaceReturns(StringPart(SL[Row],J+1,chr(9)));&#13;&#10;            Memo.Name:=TfrxMemoView(Cols[J]).Name+'Row'+IntToStr(Row);                                                                            &#13;&#10;            Memo.Left:=TfrxMemoView(Cols[J]).Left;                                                                            &#13;&#10;            Memo.Top:=Row*MemoHeight;                                                                            &#13;&#10;            Memo.Width:=TfrxMemoView(Cols[J]).Width;                                                                            &#13;&#10;            Memo.Height:=MemoHeight;                                                                            &#13;&#10;            Memo.Font:=TfrxMemoView(Cols[J]).Font;                                                                            &#13;&#10;            Memo.Frame:=TfrxMemoView(Cols[J]).Frame;&#13;&#10;            Memo.HAlign:=TfrxMemoView(Cols[J]).HAlign;&#13;&#10;            Memo.VAlign:=TfrxMemoView(Cols[J]).VAlign;                                                        &#13;&#10;            Memo.Rotation:=TfrxMemoView(Cols[J]).Rotation;                                                        &#13;&#10;            MemoList.Add(Memo);                                                    &#13;&#10;          end;                                  &#13;&#10;      end;&#13;&#10;  Cols.Free;&#13;&#10;  MemoList.Free;                                  &#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;function PrepareXMLNMList(Delimeter:Char):String;&#13;&#10;var I,N:Integer; S,PPath:String;                                                                  &#13;&#10;begin&#13;&#10;  Result:='';&#13;&#10;  PPath:=XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/Proprietors';                          &#13;&#10;  N:=NodesCount(PPath,'ProprietorInfo');&#13;&#10;  if N&#60;1 then Exit;&#13;&#10;  for I:=1 to N do&#13;&#10;    if IsNodeExists(PPath+'/ProprietorInfo/Authentication/NaturalPerson')&#13;&#10;      then Result:=Result+&#13;&#10;                XPath(PPath+'/ProprietorInfo['+IntToStr(I)+']/Authentication/NaturalPerson/FullName/LastName')+' '+&#13;&#10;                XPath(PPath+'/ProprietorInfo['+IntToStr(I)+']/Authentication/NaturalPerson/FullName/FirstName')+' '+&#13;&#10;                XPath(PPath+'/ProprietorInfo['+IntToStr(I)+']/Authentication/NaturalPerson/FullName/MiddleName')+IIF(I&#60;&#62;N,Delimeter+' ','')&#13;&#10;      else Result:=Result+XPath(PPath+'/ProprietorInfo['+IntToStr(I)+']/Authentication/LegalEntity/Name')+IIF(I&#60;&#62;N,Delimeter+' ','')                                                                                          &#13;&#10;end;          &#13;&#10;function AnyStrToFloat(S:string):Real;&#13;&#10;var N:string;&#13;&#10;    i:Integer;                                              &#13;&#10;begin&#13;&#10; N:='';              &#13;&#10; for I:=1 to Length(S) do&#13;&#10; if S[I] in ['0'..'9',',','.'] &#13;&#10;   then begin&#13;&#10;     if S[I] in ['0'..'9']&#13;&#10;       then N:=N+S[I]&#13;&#10;       else N:=N+DecDelimeter;                            &#13;&#10;   end;                      &#13;&#10; if N&#60;&#62;'' then Result:=StrToFloat(N) else Result:=0;&#13;&#10;end;&#13;&#10;  &#13;&#10;function GetLandParcel(ParcelNumber:Integer; LPNumber:Integer):Real;&#13;&#10; var Path,S:String;                                                                                                    &#13;&#10;begin&#13;&#10;  Path:=XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo['&#13;&#10;        +IntToStr(ParcelNumber)+']/LandsParcel/LandParcelInfo['+IntToStr(LPNumber)+']/LandCode';&#13;&#10;  if IsNodeExists(Path)&#13;&#10;    then begin&#13;&#10;      S:=XPath(Path);&#13;&#10;      if S&#60;&#62;'' then Result:=AnyStrToFloat(S) else Result:=0.0;                                      &#13;&#10;    end                        &#13;&#10;    else Result:=0.0;                                       &#13;&#10;end;&#13;&#10;function PrepareExplication(ParcelNumber:Integer; var SL:TStringList):Boolean;&#13;&#10;var Path:String; N:Integer; S,LCode:String;                                                                                                                        &#13;&#10;begin&#13;&#10;  if SL&#60;&#62;nil                          &#13;&#10;    then SL.Clear&#13;&#10;    else SL:=TStringList.Create;&#13;&#10;  Path:=XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo['+IntToStr(ParcelNumber)+']/LandsParcel';&#13;&#10;  N:=NodesCount(Path,'LandParcelInfo');&#13;&#10;  for I:=1 to N do&#13;&#10;    begin&#13;&#10;      LCode:=XPath(Path+'/LandParcelInfo['+IntToStr(N)+']/LandCode');                                            &#13;&#10;      S:=XPath(Path+'/LandParcelInfo['+IntToStr(N)+']/MetricInfo/Area/Size');&#13;&#10;      AnyStrToFloat(S);                                            &#13;&#10;      SL.Add('');                             &#13;&#10;    end            &#13;&#10;end;&#13;&#10;&#13;&#10;function FormatXMLAddress:String;&#13;&#10;var ST,SN,BN,Settlement,District,Region,Res:String;                             &#13;&#10;begin&#13;&#10;  Res:='';                               &#13;&#10;  ST:=Trim(XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/ParcelAddress/StreetType'));&#13;&#10;  SN:=Trim(XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/ParcelAddress/StreetType'));                                        &#13;&#10;  BN:=Trim(XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/ParcelAddress/Building'));                                        &#13;&#10;  Settlement:=Trim(XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/ParcelLocationInfo/Settlement'));                                        &#13;&#10;  District:=Trim(XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/ParcelLocationInfo/District'));                                        &#13;&#10;  Region:=Trim(XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/ParcelLocationInfo/Region'));&#13;&#10;  if (ST&#60;&#62;'') and (SN&#60;&#62;'') then Res:=Res+ST+' '+SN;&#13;&#10;  if BN&#60;&#62;'' then Res:=Res+', '+BN;&#13;&#10;  if Settlement&#60;&#62;'' then Res:=Res+', '+Settlement;&#13;&#10;  if District&#60;&#62;'' then Res:=Res+', '+District;&#13;&#10;  if Region&#60;&#62;'' then Res:=Res+', '+Region;&#13;&#10;  if IsNodeExists('InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/ParcelLocationInfo/ParcelLocation/Urban') &#13;&#10;    then Res:=Res+' çà ìåæàìè íàñåëåííîãî ïóíêòà';&#13;&#10;  while Pos(', ',Res)=1 &#13;&#10;    do begin&#13;&#10;      Delete(Res,1,2);&#13;&#10;      Res:=Trim(Res);                                      &#13;&#10;    end;                      &#13;&#10;  Result:=Res;                            &#13;&#10;end;          &#13;&#10;&#13;&#10;procedure Picture1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;var FN:String;                               &#13;&#10;begin&#13;&#10;  FN:=XPath('Graphics[1]/Graphic[1]/ImageFilename[1]');                                 &#13;&#10;//  FN:=WorkDir+'\Pictures\LBCP'+CadNumberClear+'.bmp';                     &#13;&#10;  Picture1.LoadFromFile(FN);    &#13;&#10;end;&#13;&#10;     &#13;&#10;begin&#13;&#10;  DecDelimeter:=Copy(FloatToStr(1/10),2,1);&#13;&#10;  MemoCounter:=1000;                          &#13;&#10;  XMLMode:=ObjCount=0;&#13;&#10;  if XMLMode&#13;&#10;    then XML573Root:=IIF(IsNodeExists('InfoPart'),'','EmbeddedXML/UkrainianCadastralExchangeFile/');                                         &#13;&#10;  if XMLMode&#13;&#10;    then begin&#13;&#10;      CadNumber:=XPath(XML573Root+'InfoPart/CadastralZoneInfo/KOATUU')+':'+&#13;&#10;                 XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralZoneNumber')+':'+      &#13;&#10;                 XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/CadastralQuarterNumber')+':'+  &#13;&#10;                 XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/ParcelMetricInfo/ParcelID');  &#13;&#10;      CadNumberClear:=XPath(XML573Root+'InfoPart/CadastralZoneInfo/KOATUU')+&#13;&#10;                 XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralZoneNumber')+      &#13;&#10;                 XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/CadastralQuarterNumber')+  &#13;&#10;                 XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/ParcelMetricInfo/ParcelID');  &#13;&#10;    end                                                 &#13;&#10;    else begin&#13;&#10;      CadNumber:=Param('ID106');         &#13;&#10;      CadNumberClear:=Copy(CadNumber,1,10)+Copy(CadNumber,12,2)+Copy(CadNumber,15,3)+Copy(CadNumber,19,4);                                                                                                  &#13;&#10;    end;          &#13;&#10;   DocumentationType:=SEF(XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/TechnicalDocumentationInfo/DocumentationType'),'TDNames.txt');          &#13;&#10;  RegionID:=Copy(CadNumberClear,1,2);                                                                &#13;&#10;  RayonID:=Copy(CadNumberClear,1,5);                                                                &#13;&#10;  RadaID:=Copy(CadNumberClear,1,8);&#13;&#10;  UZRNM:=File('Setup.ini','RepÍà÷àëüíèê(ÓÇÐ)');             &#13;&#10;  Óïðàâë³ííÿÄàâ:=File('Setup.ini','RepÍàçâàÄ(ÓÇÐ)');                                                         &#13;&#10;  ÐàäàÐîä:=File('Setup.ini','RepÍàçâàÐ(Ñ³ëüðàäà)');  &#13;&#10;  ÐàäàÍàç:=File('Setup.ini','RepÍàçâà(Ñ³ëüðàäà)');&#13;&#10;  Ãîëîâàñð:=File('Setup.ini','RepÍà÷àëüíèê(Ñ³ëüðàäà)');&#13;&#10;  Çåìëåâï:=File('Setup.ini','RepÍàçâà(Çåìëåâïîðÿäíèê)');&#13;&#10;  Íà÷Óïðàâë³íííÿ:=File('Setup.ini','RepÏîñàäà(ÓÇÐ)');        &#13;&#10;  ÊÑÏ:=File('Setup.ini','RepÍàçâà(Íàçâà ÊÑÏ)');&#13;&#10;  ÐàéîíÐîäîâ:=File('Setup.ini','RepÍàçâàÐ(Ðàéîí)');                            &#13;&#10;  RegistratorName:=File('Setup.ini','Ðåºñòðàòîð');&#13;&#10;  Nambe:=File('Setup.ini','Íîìåð äîãîâîððó');      &#13;&#10;  if XMLMode and (XML573Root&#60;&#62;'')  &#13;&#10;    then UDKZName:=XPath('AppDetails/Common_Part/DKZ_Name')&#13;&#10;    else UDKZName:=File('Setup.ini','RepÍàçâà(ÓÇÐ)');              &#13;&#10;  WorkDir:=GetProgramDir;&#13;&#10;  AddExplication(Page1,ExplicationMemo);&#13;&#10;  MapScale:=XPath('Graphics/Graphic/ObjectScale');                                              &#13;&#10;  if XMLMode&#13;&#10;    then begin                                    &#13;&#10;      NMList:=PrepareXMLNMList(',');&#13;&#10;      TX:=XPath(XML573Root+'InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/Parcels/ParcelInfo/CategoryPurposeInfo/Use');&#13;&#10;      ChiefPosition:=XPath(XML573Root+'AdditionalPart/InfoLandWork/Executor/Chief/ChiefPosition');&#13;&#10;      ChiefName:=XPath(XML573Root+'AdditionalPart/InfoLandWork/Executor/Chief/ChiefName/LastName');&#13;&#10;      S:=Trim(XPath(XML573Root+'AdditionalPart/InfoLandWork/Executor/Chief/ChiefName/FirstName'));&#13;&#10;      if S&#60;&#62;'' then ChiefName:=ChiefName+' '+Copy(S,1,1)+'.';                        &#13;&#10;      S:=Trim(XPath(XML573Root+'AdditionalPart/InfoLandWork/Executor/Chief/ChiefName/MiddleName'));&#13;&#10;      if S&#60;&#62;'' then ChiefName:=ChiefName+' '+Copy(S,1,1)+'.';                        &#13;&#10;      ExecutorPosition:=XPath(XML573Root+'AdditionalPart/InfoLandWork/Executor/Executor/ExecutorPosition');&#13;&#10;      ExecutorName:=XPath(XML573Root+'AdditionalPart/InfoLandWork/Executor/Executor/ExecutorName/LastName');&#13;&#10;      S:=Trim(XPath(XML573Root+'AdditionalPart/InfoLandWork/Executor/Executor/ExecutorName/FirstName'));&#13;&#10;      if S&#60;&#62;'' then ExecutorName:=ExecutorName+' '+Copy(S,1,1)+'.';                        &#13;&#10;      S:=Trim(XPath(XML573Root+'AdditionalPart/InfoLandWork/Executor/Executor/ExecutorName/MiddleName'));&#13;&#10;      if S&#60;&#62;'' then ExecutorName:=ExecutorName+' '+Copy(S,1,1)+'.';&#13;&#10;      ParcelAddress:=FormatXMLAddress;&#13;&#10;    end  &#13;&#10;               &#13;&#10;    else begin&#13;&#10;      NMList:=Param('NM');&#13;&#10;      TX:=Param('TX');&#13;&#10;      ChiefPosition:='Ãîëîâíèé ³íæåíåð';&#13;&#10;      ChiefName:=File('setup.ini',ChiefPosition);&#13;&#10;      ExecutorPosition:='Âèêîíàâ';&#13;&#10;      ExecutorName:=File('setup.ini',ChiefPosition);&#13;&#10;      ParcelAddress:=Param('AU');&#13;&#10;       Nach:=Trim(Xpath(XML573Root+'/InfoPart/CadastralZoneInfo/CadastralQuarters/CadastralQuarterInfo/RegionalContacts/DKZRHead'));&#13;&#10;                       &#13;&#10;    end;&#13;&#10;  ExecName:=Trim(XPath(XML573Root+'AdditionalPart/InfoLandWork/Executor/CompanyName'));  &#13;&#10;  ExecCity:=Trim(XPath(XML573Root+'AdditionalPart/InfoLandWork/Executor/Address/Settlement'));&#13;&#10;  ExecDate:=FormatDateTime('YYYY',Date)+'ð.';  &#13;&#10;end." StoreInDFM="False" PropData="044C65667403800103546F70026808446174617365747301010C2E00000020446174615365743D224F626A446174617365742220446174615365744E616D653D224F626A446174617365742200010C2E00000020446174615365743D22436174446174617365742220446174615365744E616D653D22436174446174617365742200010C3200000020446174615365743D224C61796572446174617365742220446174615365744E616D653D224C61796572446174617365742200010C3200000020446174615365743D22506172616D446174617365742220446174615365744E616D653D22506172616D44617461736574220000095661726961626C65730100055374796C650100">
  <TfrxDataPage Name="Data" Height="1000" Left="0" Top="0" Width="1000"/>
  <TfrxReportPage Name="Page1" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" PaperWidth="210" PaperHeight="297" PaperSize="9" LeftMargin="15" RightMargin="10" TopMargin="7" BottomMargin="10" ColumnWidth="0" ColumnPositions.Text="" Frame.ShadowWidth="1" Frame.Typ="15" HGuides.Text="" VGuides.Text="">
    <TfrxMemoView Name="Memo1" Left="2" Top="-37,41606055" Width="629" Height="997,05511811" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0,5" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo55" Left="264,5" Top="850,5" Width="434,64566929" Height="37,98818898" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-15" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="10" ParentFont="False" VAlign="vaCenter" Text="ÐŸÐ— /  [Nambe]"/>
    <TfrxMemoView Name="Memo57" Left="623,62245" Top="963,94156" Width="75,59055118" Height="37,79527559" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="1"/>
    <TfrxMemoView Name="Memo56" Left="623,62245" Top="945,04391" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="ÐÑ€ÐºÑƒÑˆÑ–Ð²"/>
    <TfrxMemoView Name="Memo54" Left="557,48031496" Top="963,94156" Width="66,14173228" Height="37,79527559" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="1"/>
    <TfrxMemoView Name="Memo53" Left="557,48031496" Top="945,04391" Width="66,14173228" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="ÐÑ€ÐºÑƒÑˆ"/>
    <TfrxMemoView Name="Memo52" Left="491,3389" Top="1001,73686" Width="207,87401575" Height="56,69291339" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="1" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="5" ParentFont="False" VAlign="vaCenter" Text="[ExecName]&#13;&#10;[ExecCity]-[ExecDate]"/>
    <TfrxMemoView Name="Memo51" Left="491,3389" Top="963,94156" Width="66,14173228" Height="37,79527559" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="ÐŸÐ—"/>
    <TfrxMemoView Name="Memo50" Left="491,3389" Top="945,04391" Width="66,14173228" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð¡Ñ‚Ð°Ð´Ñ–Ñ"/>
    <TfrxMemoView Name="Memo49" Left="264,5671" Top="1001,73686" Width="226,77165354" Height="56,69291339" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="5" ParentFont="False" VAlign="vaCenter" Text="ÐšÐ°Ð´Ð°ÑÑ‚Ñ€Ð¾Ð²Ð¸Ð¹ Ð¿Ð»Ð°Ð½&#13;&#10;Ð·ÐµÐ¼ÐµÐ»ÑŒÐ½Ð¾Ñ— Ð´Ñ–Ð»ÑÐ½ÐºÐ¸&#13;&#10;ÐœÐ°ÑÑˆÑ‚Ð°Ð± 1:[MapScale]"/>
    <TfrxMemoView Name="Memo48" Left="264,5671" Top="945,04391" Width="226,77165354" Height="56,69291339" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="5" ParentFont="False" VAlign="vaCenter" Text="ÐŸÐ ÐžÐ•ÐšÐ¢ Ð—Ð•ÐœÐ›Ð•Ð£Ð¡Ð¢Ð ÐžÐ®&#13;&#10;Ñ‰Ð¾Ð´Ð¾ Ð²Ñ–Ð´Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð·ÐµÐ¼ÐµÐ»ÑŒÐ½Ð¾Ñ— Ð´Ñ–Ð»ÑÐ½ÐºÐ¸"/>
    <TfrxMemoView Name="Memo47" Left="264,5671" Top="888,55566" Width="434,64566929" Height="56,48818898" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="1" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="10" ParentFont="False" Text=""/>
    <TfrxMemoView Name="Memo46" Left="226,7718" Top="1039,53216" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo45" Left="226,7718" Top="1020,63451" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo44" Left="226,7718" Top="1001,73686" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo43" Left="226,7718" Top="982,83921" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo42" Left="226,7718" Top="963,94156" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo41" Left="226,7718" Top="945,04391" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo40" Left="226,7718" Top="926,14626" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo39" Left="226,7718" Top="907,24861" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo38" Left="226,7718" Top="888,35096" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-7" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo37" Left="226,7718" Top="869,45331" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo36" Left="226,7718" Top="850,55566" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-7" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo35" Left="179,52755906" Top="1039,53216" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo34" Left="179,52755906" Top="1020,63451" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo33" Left="179,52755906" Top="1001,73686" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo32" Left="179,52755906" Top="982,83921" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo31" Left="179,52755906" Top="963,94156" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo30" Left="179,52755906" Top="945,04391" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo29" Left="179,52755906" Top="926,14626" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo28" Left="179,52755906" Top="907,24861" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo27" Left="179,52755906" Top="888,35096" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo26" Left="179,52755906" Top="869,45331" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo25" Left="179,52755906" Top="850,55566" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo24" Left="75,5906" Top="1039,53216" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo23" Left="75,5906" Top="1020,63451" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo22" Left="75,5906" Top="1001,73686" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="[ExecutorName]"/>
    <TfrxMemoView Name="Memo21" Left="75,5906" Top="982,83921" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo20" Left="75,5906" Top="963,94156" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð”ÐµÐ¼Ñ‡ÑƒÐº Ð¢.Ð’."/>
    <TfrxMemoView Name="Memo19" Left="75,5906" Top="945,04391" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo18" Left="75,5906" Top="926,14626" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="ÐŸÑ€Ð¸Ð¹Ð¼Ð°Ðº Ðœ.Ð."/>
    <TfrxMemoView Name="Memo17" Left="75,5906" Top="907,24861" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo16" Left="75,5906" Top="888,35096" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð”Ð¾Ñ€Ð¾ÑˆÑƒÐº Ð.ÐŸ."/>
    <TfrxMemoView Name="Memo15" Left="75,5906" Top="869,45331" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo14" Left="75,5906" Top="850,55566" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð”ÐµÐ¼ÐµÐ½Ñ‡ÑƒÐº Ð“.Ðž."/>
    <TfrxMemoView Name="Memo13" Left="0" Top="1039,53216" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo12" Left="0" Top="1020,63451" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo11" Left="0" Top="1001,73686" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð’Ð¸ÐºÐ¾Ð½Ð°Ð»Ð°"/>
    <TfrxMemoView Name="Memo10" Left="0" Top="982,83921" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo9" Left="0" Top="963,94156" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="ÐÐ¾Ñ€Ð¼Ð¾ÐºÐ¾Ð½Ñ‚Ñ€."/>
    <TfrxMemoView Name="Memo8" Left="0" Top="945,04391" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo7" Left="0" Top="926,14626" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð—Ð°ÑÑ‚.Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð°"/>
    <TfrxMemoView Name="Memo6" Left="0" Top="907,24861" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo5" Left="0" Top="888,35096" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð“Ð¾Ð»Ð¾Ð². Ñ–Ð½Ð¶ÐµÐ½ÐµÑ€"/>
    <TfrxMemoView Name="Memo4" Left="0" Top="869,45331" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo3" Left="0" Top="850,55566" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€"/>
    <TfrxPictureView Name="Picture1" Left="13,96536115" Top="-78,06123501" Width="661,41732283" Height="536,69291339" OnBeforePrint="Picture1OnBeforePrint" ShowHint="False" HightQuality="False" Transparent="False" TransparentColor="16777215"/>
    <TfrxMemoView Name="Memo60" Left="0" Top="0" Width="699,21259843" Height="0" Restrictions="31" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-16" Font.Name="Tahoma" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="ExplicationMemo" Left="17,32140091" Top="613,30958988" Width="661,41775" Height="230,22907489" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,1" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Explication"/>
    <TfrxMemoView Name="Memo58" Left="-10,09407769" Top="423,78020972" Width="725,98825" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-16" Font.Name="Times New Roman" Font.Style="1" HAlign="haCenter" ParentFont="False" Text="ÐŸÐžÐ“ÐžÐ”Ð–Ð•ÐÐž:"/>
    <TfrxMemoView Name="Memo61" Left="27,44850096" Top="425,35117499" Width="254,69077352" Height="47,39765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" ParentFont="False" VAlign="vaCenter" Text="&#13;&#10;[ÐÐ°Ñ‡Ð£Ð¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ð½Ñ]"/>
    <TfrxMemoView Name="Memo62" Left="537" Top="448,04581982" Width="163,48825" Height="19,89765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" ParentFont="False" Text="[UZRNM]"/>
    <TfrxMemoView Name="Memo63" Left="537" Top="538,74452812" Width="162,98825" Height="20,89765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" ParentFont="False" Text="[Ð“Ð¾Ð»Ð¾Ð²Ð°ÑÑ€]"/>
    <TfrxMemoView Name="Memo64" Left="25,14355339" Top="540,9732388" Width="297,48825" Height="17,89765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" ParentFont="False" Text="Ð“Ð¾Ð»Ð¾Ð²Ð° [Ð Ð°Ð´Ð°Ð Ð¾Ð´] Ñ€Ð°Ð´Ð¸"/>
    <TfrxMemoView Name="Memo2" Left="27,44850096" Top="574,67721164" Width="96,98825" Height="17,89765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" ParentFont="False" Text="Ð—ÐµÐ¼Ð»ÐµÐ²Ð»Ð°ÑÐ½Ð¸Ðº"/>
    <TfrxMemoView Name="Memo66" Left="537" Top="574,67721163" Width="163,48825" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0,5" ParentFont="False" Text="[FIO(NMList)]"/>
    <TfrxLineView Name="Line1" Left="0,5" Top="1" Width="0" Height="1058" ShowHint="False" Frame.Typ="1"/>
    <TfrxMemoView Name="Memo59" Left="21,38118446" Top="594,84752623" Width="661,48825" Height="17,89765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-15" Font.Name="Times New Roman" Font.Style="1" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Ð•ÐšÐ¡ÐŸÐ›Ð†ÐšÐÐ¦Ð†Ð¯ Ð—Ð•ÐœÐ•Ð›Ð¬ÐÐ˜Ð¥ Ð£Ð“Ð†Ð”Ð¬"/>
    <TfrxMemoView Name="Memo67" Left="264,5" Top="888,5" Width="433,98825" Height="56,39765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Times New Roman" Font.Style="0" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Ð—ÐµÐ¼ÐµÐ»ÑŒÐ½Ð° Ð´Ñ–Ð»ÑÐ½ÐºÐ° Ð³Ñ€.[ROP(NMList)]&#13;&#10;Ð½Ð° Ñ‚ÐµÑ€Ð¸Ñ‚Ð¾Ñ€Ñ–Ñ— [Ð Ð°Ð´Ð°Ð Ð¾Ð´] Ñ€Ð°Ð´Ð¸ [Ð Ð°Ð¹Ð¾Ð½Ð Ð¾Ð´Ð¾Ð²] Ð Ñ–Ð²Ð½ÐµÐ½ÑÑŒÐºÐ¾Ñ— Ð¾Ð±Ð»Ð°ÑÑ‚Ñ–&#13;&#10;[TX]"/>
    <TfrxMemoView Name="Memo68" Left="23,62571259" Top="478,2766207" Width="309,01298785" Height="51,31938976" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" ParentFont="False" Text="ÐÐ°Ñ‡Ð°Ð»ÑŒÐ½Ð¸Ðº Ð²Ñ–Ð´Ð´Ñ–Ñ–Ð»Ñƒ Ð¼Ñ–ÑÑ‚Ð¾Ð±ÑƒÐ´ÑƒÐ²Ð°Ð½Ð½Ñ, Ð°Ñ€Ñ…Ñ–Ñ‚ÐµÐºÑ‚ÑƒÑ€Ð¸ Ñ‚Ð° Ð¶Ð¸Ñ‚Ð»Ð¾Ð²Ð¾-ÐºÐ¾Ð¼ÑƒÐ½Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ Ð³Ð¾ÑÐ¿Ð¾Ð´Ð°Ñ€ÑÑ‚Ð²Ð° Ð Ñ–Ð²Ð½ÐµÐ½ÑÑŒÐºÐ¾Ñ— Ñ€Ð°Ð¹Ð¾Ð½Ð½Ð¾Ñ— Ð´ÐµÑ€Ð¶Ð°Ð²Ð½Ð¾Ñ— Ð°Ð´Ð¼Ñ–Ð½Ñ–ÑÑ‚Ñ€Ð°Ñ†Ñ–Ñ—"/>
    <TfrxMemoView Name="Memo69" Left="535,32407305" Top="508,24093911" Width="163,48825" Height="19,89765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" ParentFont="False" Text="Ð¥Ñ€Ð°Ð±Ð°Ð½ Ð.Ð†."/>
  </TfrxReportPage>
  <TfrxReportPage Name="Page2" PaperWidth="210" PaperHeight="297" PaperSize="9" LeftMargin="15" RightMargin="10" TopMargin="10" BottomMargin="10" ColumnWidth="0" ColumnPositions.Text="" Frame.Typ="15" HGuides.Text="" VGuides.Text="">
    <TfrxMemoView Name="Memo139" Left="60,13775984" Top="692,29737244" Width="650,26510577" Height="162,50079436" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" ParentFont="False" VAlign="vaCenter" Text="&#13;&#10;&#13;&#10;ÐŸÑ€ÐµÐ´ÑÑ‚Ð°Ð²Ð½Ð¸Ðº ÐŸÐÐ¢ &#34;ÐÐ•Ð¡ Ð Ñ–Ð²Ð½ÐµÐ¾Ð±Ð»ÐµÐ½ÐµÑ€Ð³Ð¾&#34;&#13;&#10;Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€ Ñ‚ÐµÑ…Ð½Ñ–Ñ‡Ð½Ð¸Ð¹                                                                                                 ÐšÑ€Ð°ÑÑ–Ð½ÑÑŒÐºÐ¸Ð¹ Ð†.Ð’.&#13;&#10;&#13;&#10;&#13;&#10;Ð—ÐµÐ¼Ð»ÐµÐ²Ð»Ð°ÑÐ½Ð¸Ðº                                                                                                            [FIO(NMList)]&#13;&#10;                                                                                                                   "/>
    <TfrxLineView Name="Line2" Left="19,96766506" Top="518,09009557" Width="6,55220228" Height="-6,36787329" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxLineView Name="Line3" Left="19,66203568" Top="523,3064081" Width="12,8788493" Height="-11,97147493" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxLineView Name="Line4" Left="21,37926845" Top="526,83125429" Width="16,85559885" Height="-15,58670179" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxLineView Name="Line6" Left="33,58065911" Top="527,10239632" Width="18,39207028" Height="-15,67708247" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxLineView Name="Line9" Left="52,28945814" Top="527,19277699" Width="8,49578313" Height="-6,6881697" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxMemoView Name="Memo65" Left="57,62398545" Top="43,9046646" Width="629" Height="997,05511811" GroupIndex="1" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0,5" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo70" Left="264,2321428" Top="838,77137786" Width="434,64566929" Height="37,98818898" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-15" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="10" ParentFont="False" VAlign="vaCenter" Text="ÐŸÐ— /  [Nambe]"/>
    <TfrxMemoView Name="Memo71" Left="623,3545928" Top="952,21293786" Width="75,59055118" Height="37,79527559" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="1"/>
    <TfrxMemoView Name="Memo72" Left="623,3545928" Top="933,31528786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="ÐÑ€ÐºÑƒÑˆÑ–Ð²"/>
    <TfrxMemoView Name="Memo73" Left="557,21245776" Top="952,21293786" Width="66,14173228" Height="37,79527559" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="1"/>
    <TfrxMemoView Name="Memo74" Left="557,21245776" Top="933,31528786" Width="66,14173228" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="ÐÑ€ÐºÑƒÑˆ"/>
    <TfrxMemoView Name="Memo75" Left="491,0710428" Top="990,00823786" Width="207,87401575" Height="56,69291339" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="1" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="5" ParentFont="False" VAlign="vaCenter" Text="[ExecName]&#13;&#10;[ExecCity]-[ExecDate]"/>
    <TfrxMemoView Name="Memo76" Left="491,0710428" Top="952,21293786" Width="66,14173228" Height="37,79527559" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="ÐŸÐ—"/>
    <TfrxMemoView Name="Memo77" Left="491,0710428" Top="933,31528786" Width="66,14173228" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð¡Ñ‚Ð°Ð´Ñ–Ñ"/>
    <TfrxMemoView Name="Memo78" Left="264,2992428" Top="990,00823786" Width="226,77165354" Height="56,69291339" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="5" ParentFont="False" VAlign="vaCenter" Text="ÐŸÐ»Ð°Ð½ Ð¼ÐµÐ¶ Ð·Ð¾Ð½ Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½ÑŒ Ñ– ÑÐµÑ€Ð²Ñ–Ñ‚ÑƒÑ‚Ñ–Ð² &#13;&#10;Ð·ÐµÐ¼ÐµÐ»ÑŒÐ½Ð¾Ñ— Ð´Ñ–Ð»ÑÐ½ÐºÐ¸&#13;&#10;ÐœÐ°ÑÑˆÑ‚Ð°Ð± 1:[MapScale]"/>
    <TfrxMemoView Name="Memo79" Left="264,2992428" Top="933,31528786" Width="226,77165354" Height="56,69291339" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="5" ParentFont="False" VAlign="vaCenter" Text="Ð”Ð¾Ð´Ð°Ñ‚Ð¾Ðº Ð´Ð¾ Ð´Ð¾Ð³Ð¾Ð²Ð¾Ñ€Ñƒ Ð½Ð°&#13;&#10;Ð²ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð·ÐµÐ¼ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ ÑÐµÑ€Ð²Ñ–Ñ‚ÑƒÑ‚Ñƒ"/>
    <TfrxMemoView Name="Memo80" Left="264,2992428" Top="876,82703786" Width="434,64566929" Height="56,48818898" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="1" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="10" ParentFont="False" Text=""/>
    <TfrxMemoView Name="Memo81" Left="226,5039428" Top="1027,80353786" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo82" Left="226,5039428" Top="1008,90588786" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo83" Left="226,5039428" Top="990,00823786" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo84" Left="226,5039428" Top="971,11058786" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo85" Left="226,5039428" Top="952,21293786" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo86" Left="226,5039428" Top="933,31528786" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo87" Left="226,5039428" Top="914,41763786" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo88" Left="226,5039428" Top="895,51998786" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo89" Left="226,5039428" Top="876,62233786" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-7" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo90" Left="226,5039428" Top="857,72468786" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo91" Left="226,5039428" Top="838,82703786" Width="37,79527559" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-7" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo92" Left="179,25970186" Top="1027,80353786" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo93" Left="179,25970186" Top="1008,90588786" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo94" Left="179,25970186" Top="990,00823786" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo95" Left="179,25970186" Top="971,11058786" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo96" Left="179,25970186" Top="952,21293786" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo97" Left="179,25970186" Top="933,31528786" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo98" Left="179,25970186" Top="914,41763786" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo99" Left="179,25970186" Top="895,51998786" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo100" Left="179,25970186" Top="876,62233786" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo101" Left="179,25970186" Top="857,72468786" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo102" Left="179,25970186" Top="838,82703786" Width="47,24409449" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo103" Left="75,3227428" Top="1027,80353786" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo104" Left="75,3227428" Top="1008,90588786" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo105" Left="75,3227428" Top="990,00823786" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="[ExecutorName]"/>
    <TfrxMemoView Name="Memo106" Left="75,3227428" Top="971,11058786" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo107" Left="75,3227428" Top="952,21293786" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð”ÐµÐ¼Ñ‡ÑƒÐº Ð¢.Ð’."/>
    <TfrxMemoView Name="Memo108" Left="75,3227428" Top="933,31528786" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo109" Left="75,3227428" Top="914,41763786" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="ÐŸÑ€Ð¸Ð¹Ð¼Ð°Ðº Ðœ.Ð."/>
    <TfrxMemoView Name="Memo110" Left="75,3227428" Top="895,51998786" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo111" Left="75,3227428" Top="876,62233786" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð”Ð¾Ñ€Ð¾ÑˆÑƒÐº Ð.ÐŸ."/>
    <TfrxMemoView Name="Memo112" Left="75,3227428" Top="857,72468786" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo113" Left="75,3227428" Top="838,82703786" Width="103,93700787" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð”ÐµÐ¼ÐµÐ½Ñ‡ÑƒÐº Ð“.Ðž."/>
    <TfrxMemoView Name="Memo114" Left="-0,2678572" Top="1027,80353786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo115" Left="-0,2678572" Top="1008,90588786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo116" Left="-0,2678572" Top="990,00823786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð’Ð¸ÐºÐ¾Ð½Ð°Ð»Ð°"/>
    <TfrxMemoView Name="Memo117" Left="-0,2678572" Top="971,11058786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo118" Left="-0,2678572" Top="952,21293786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="ÐÐ¾Ñ€Ð¼Ð¾ÐºÐ¾Ð½Ñ‚Ñ€."/>
    <TfrxMemoView Name="Memo119" Left="-0,2678572" Top="933,31528786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo120" Left="-0,2678572" Top="914,41763786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð—Ð°ÑÑ‚.Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð°"/>
    <TfrxMemoView Name="Memo121" Left="-0,2678572" Top="895,51998786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo122" Left="-0,2678572" Top="876,62233786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð“Ð¾Ð»Ð¾Ð². Ñ–Ð½Ð¶ÐµÐ½ÐµÑ€"/>
    <TfrxMemoView Name="Memo123" Left="-0,2678572" Top="857,72468786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text=""/>
    <TfrxMemoView Name="Memo124" Left="-0,2678572" Top="838,82703786" Width="75,59055118" Height="18,89765" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0,5" HAlign="haCenter" LineSpacing="0" ParentFont="False" VAlign="vaCenter" Text="Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€"/>
    <TfrxMemoView Name="Memo129" Left="264,2321428" Top="876,77137786" Width="433,98825" Height="56,39765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-12" Font.Name="Times New Roman" Font.Style="0" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Ð—ÐµÐ¼ÐµÐ»ÑŒÐ½Ð° Ð´Ñ–Ð»ÑÐ½ÐºÐ° Ð³Ñ€.[ROP(NMList)]&#13;&#10;Ð½Ð° Ñ‚ÐµÑ€Ð¸Ñ‚Ð¾Ñ€Ñ–Ñ— [Ð Ð°Ð´Ð°Ð Ð¾Ð´] Ñ€Ð°Ð´Ð¸ [Ð Ð°Ð¹Ð¾Ð½Ð Ð¾Ð´Ð¾Ð²] Ð Ñ–Ð²Ð½ÐµÐ½ÑÑŒÐºÐ¾Ñ— Ð¾Ð±Ð»Ð°ÑÑ‚Ñ–&#13;&#10;[TX]"/>
    <TfrxShapeView Name="Shape1" Left="553,90147222" Top="522,34866017" Width="16,3080292" Height="15,44683815" GroupIndex="1" ShowHint="False" Frame.Width="0,5"/>
    <TfrxMemoView Name="Memo125" Left="20,80275846" Top="442,00315178" Width="397,21109261" Height="18,89765" GroupIndex="1" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-16" Font.Name="Times New Roman" Font.Style="1" HAlign="haCenter" ParentFont="False" Text="Ð£Ð¼Ð¾Ð²Ð½Ñ– Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ:"/>
    <TfrxShapeView Name="Shape2" Left="19,59940087" Top="483,92311192" Width="41,05433309" Height="16,08886026" GroupIndex="1" ShowHint="False" Frame.Width="0,5"/>
    <TfrxMemoView Name="Memo128" Left="70,86814736" Top="459,04402745" Width="350,87403167" Height="275,3915969" GroupIndex="1" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" ParentFont="False" Text="&#13;&#10;&#13;&#10;- Ð¼ÐµÐ¶Ñ– ÐºÐ¾Ð½Ñ‚ÑƒÑ€Ñ–Ð² ÑƒÐ³Ñ–Ð´ÑŒ;&#13;&#10;&#13;&#10;- Ñ‡Ð°ÑÑ‚Ð¸Ð½Ð° Ð·ÐµÐ¼ÐµÐ»ÑŒÐ½Ð¾Ñ— Ð´Ñ–Ð»ÑÐ½ÐºÐ¸, Ð½Ð° ÑÐºÑ–Ð¹ Ð²ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¾ Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ;&#13;&#10;&#13;&#10;- Ð·ÐµÐ¼ÐµÐ»ÑŒÐ½Ð° Ð´Ñ–Ð»ÑÐ½ÐºÐ° Ð¿Ð»Ð¾Ñ‰ÐµÑŽ_____Ð³Ð°, Ð½Ð° ÑÐºÑƒ Ð²ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¾ Ð·ÐµÐ¼ÐµÐ»ÑŒÐ½Ð¸Ð¹ ÑÐµÑ€Ð²Ñ–Ñ‚ÑƒÑ‚ &#13;&#10;  Ð½Ð° Ð¿Ñ€Ð°Ð²Ð¾ Ð¿Ñ€Ð¾Ñ—Ð·Ð´Ñƒ Ð½Ð° Ñ‚Ñ€Ð°Ð½ÑÐ¿Ð¾Ñ€Ñ‚Ð½Ð¾Ð¼Ñƒ Ð·Ð°ÑÐ¾Ð±Ñ– Ð¿Ð¾ Ð½Ð°ÑÐ²Ð½Ð¾Ð¼Ñƒ ÑˆÐ»ÑÑ…Ñƒ (ÐºÐ¾Ð´ 07.02);&#13;&#10;  &#13;&#10;- ÐºÐ¾Ð´ Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ;&#13;&#10;  Ð¿Ð»Ð¾Ñ‰Ð° Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ;&#13;&#10;&#13;&#10;- Ð¼ÐµÑ‚Ñ€Ð¸Ñ‡Ð½Ñ– Ð´Ð°Ð½Ñ– Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ;"/>
    <TfrxShapeView Name="Shape3" Left="19,70064916" Top="511,20981708" Width="41,05433309" Height="16,08886026" GroupIndex="1" ShowHint="False" Frame.Style="fsDash" Frame.Width="0,5"/>
    <TfrxLineView Name="Line5" Left="27,61553478" Top="527,10239631" Width="16,85559886" Height="-15,49632112" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxLineView Name="Line7" Left="40,6303515" Top="527,19277699" Width="18,12092825" Height="-15,67708247" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxLineView Name="Line8" Left="46,59547583" Top="526,92163496" Width="14,09938477" Height="-12,11101" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxMemoView Name="Memo130" Left="22,3023697" Top="572,36495463" Width="40,52702944" Height="28,40510315" GroupIndex="1" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0,5" ParentFont="False" VAlign="vaCenter" Text="01.05&#13;&#10;0,0081"/>
    <TfrxLineView Name="Line10" Left="20,64944165" Top="585,76552285" Width="43,16897645" Height="0" GroupIndex="1" ShowHint="False" Frame.Typ="4" Frame.Width="0,5"/>
    <TfrxShapeView Name="Shape4" Left="19,61100515" Top="539,25734956" Width="41,05433309" Height="16,08886026" GroupIndex="1" ShowHint="False" Frame.Style="fsDashDotDot" Frame.Width="0,5"/>
    <TfrxShapeView Name="Shape5" Left="19,58132067" Top="612,74251001" Width="41,05433309" Height="16,08886026" GroupIndex="1" ShowHint="False" Frame.Width="0,5"/>
    <TfrxLineView Name="Line11" Left="19,64695239" Top="620,89632911" Width="40,81702875" Height="0" GroupIndex="1" ShowHint="False" Frame.Typ="4" Frame.Width="0,5"/>
    <TfrxLineView Name="Line12" Left="19,81287527" Top="620,64744478" Width="3,31845762" Height="-1,99107457" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxLineView Name="Line13" Left="19,66287527" Top="621,09632911" Width="2,97068898" Height="1,62515169" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxLineView Name="Line14" Left="60,46398114" Top="620,56448334" Width="-2,98661186" Height="-1,99107457" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxLineView Name="Line15" Left="60,21509682" Top="621,06225198" Width="-2,48884322" Height="1,57626737" GroupIndex="1" ShowHint="False" Frame.Width="0,5" Diagonal="True"/>
    <TfrxMemoView Name="Memo126" Left="30,15955761" Top="612,70180024" Width="26,56517307" Height="9,82072692" GroupIndex="1" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0,5" ParentFont="False" VAlign="vaCenter" Text="4.00"/>
    <TfrxMemoView Name="Memo127" Left="468,72585236" Top="425,44747044" Width="186,38985761" Height="80,89765" GroupIndex="1" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="1" Frame.Width="0,5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="ÐšÐ¾Ð½Ñ‚ÑƒÑ€ â„–II&#13;&#10;(Ð¾Ð´Ð¸Ð½Ð¾Ñ‡Ð½Ð° Ð¾Ð¿Ð¾Ñ€Ð° Ð½Ð°Ð¿Ñ€ÑƒÐ³Ð¾ÑŽ 10 ÐºÐ’, Ð¿Ð»Ð¾Ñ‰ÐµÑŽ 0,0003Ð³Ð°)"/>
    <TfrxMemoView Name="Memo131" Left="550,89544853" Top="506,47267789" Width="21,34296691" Height="18,89765" GroupIndex="1" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" HAlign="haCenter" ParentFont="False" Text="1,80"/>
    <TfrxMemoView Name="Memo132" Left="572,0292018" Top="522,30754062" Width="21,34296691" Height="18,89765" GroupIndex="1" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" HAlign="haCenter" ParentFont="False" Text="1,80"/>
    <TfrxMemoView Name="Memo133" Left="529,43192944" Top="522,15567946" Width="21,34296691" Height="18,89765" GroupIndex="1" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" HAlign="haCenter" ParentFont="False" Text="1,80"/>
    <TfrxMemoView Name="Memo134" Left="550,69966119" Top="541,07580773" Width="21,34296691" Height="18,89765" GroupIndex="1" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" HAlign="haCenter" ParentFont="False" Text="1,80"/>
    <TfrxMemoView Name="Memo135" Left="515,02547" Top="581,13847954" Width="94,48825" Height="18,89765" GroupIndex="1" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Times New Roman" Font.Style="1" HAlign="haCenter" ParentFont="False" Text="Ðœ 1:500"/>
    <TfrxLineView Name="Line16" Left="465,80644615" Top="153,31790074" Width="205,96617856" Height="0" GroupIndex="2" ShowHint="False" Frame.Typ="4"/>
    <TfrxLineView Name="Line17" Left="465,80644615" Top="152,98238415" Width="-23,93310879" Height="21,20428131" GroupIndex="2" ShowHint="False" Diagonal="True"/>
    <TfrxMemoView Name="Memo136" Left="460,42207992" Top="132,91547803" Width="214,71136503" Height="18,89765" GroupIndex="2" ShowHint="False" Font.Charset="204" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="1" Frame.Width="0,5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="ÐšÐ¾Ð½Ñ‚ÑƒÑ€ â„–I (Ð±Ð°Ð³Ð°Ñ‚Ð¾Ñ€Ñ–Ñ‡Ð½Ñ– Ð½Ð°ÑÐ°Ð´Ð¶ÐµÐ½Ð½Ñ)"/>
    <TfrxMemoView Name="Memo137" Left="1,28479386" Top="631,37993647" Width="698,53979993" Height="20,10938831" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-16" Font.Name="Times New Roman" Font.Style="1" HAlign="haCenter" ParentFont="False" Text="ÐŸÐžÐ“ÐžÐ”Ð–Ð•ÐÐž:"/>
    <TfrxMemoView Name="Memo140" Left="500,96333361" Top="697,0794722" Width="200,84370497" Height="19,89765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" ParentFont="False" Text="[UZRNM]"/>
    <TfrxMemoView Name="Memo141" Left="58,03436754" Top="666,39463419" Width="246,68603317" Height="47,39765" ShowHint="False" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" ParentFont="False" VAlign="vaCenter" Text="&#13;&#10;[ÐÐ°Ñ‡Ð£Ð¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ð½Ñ]"/>
  </TfrxReportPage>
</TfrxReport>
